UNPKG

consequunturatque

Version:

A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges

45 lines (42 loc) 1.19 kB
'use strict'; const errorHierarchy = { 'BaseError': { 'ExchangeError': { 'AuthenticationError': { 'PermissionDenied': {}, 'AccountSuspended': {}, }, 'ArgumentsRequired': {}, 'BadRequest': { 'BadSymbol': {}, }, 'BadResponse': { 'NullResponse': {}, }, 'InsufficientFunds': {}, 'InvalidAddress': { 'AddressPending': {}, }, 'InvalidOrder': { 'OrderNotFound': {}, 'OrderNotCached': {}, 'CancelPending': {}, 'OrderImmediatelyFillable': {}, 'OrderNotFillable': {}, 'DuplicateOrderId': {}, }, 'NotSupported': {}, }, 'NetworkError': { 'DDoSProtection': { 'RateLimitExceeded': {}, }, 'ExchangeNotAvailable': { 'OnMaintenance': {}, }, 'InvalidNonce': {}, 'RequestTimeout': {}, }, }, }; module.exports = errorHierarchy;