| 46 | const version = 'v0.0.1'; |
| 47 | |
| 48 | interface CLIOptions { |
| 49 | verbose?: boolean; |
| 50 | debug?: boolean; |
| 51 | poll?: boolean; |
| 52 | noSend?: boolean; |
| 53 | noLoadMarkets?: boolean; |
| 54 | details?: boolean; |
| 55 | noTable?: boolean; |
| 56 | table?: boolean; |
| 57 | iso8601?: boolean; |
| 58 | cors?: boolean; |
| 59 | refreshMarkets?: boolean; |
| 60 | testnet?: boolean; |
| 61 | sandbox?: boolean; |
| 62 | demo?: boolean; |
| 63 | signIn?: boolean; |
| 64 | spot?: boolean; |
| 65 | swap?: boolean; |
| 66 | future?: boolean; |
| 67 | option?: boolean; |
| 68 | request?: boolean; |
| 69 | response?: boolean; |
| 70 | static?: boolean; |
| 71 | raw?: boolean; |
| 72 | noKeys?: boolean; |
| 73 | i?: boolean; |
| 74 | name?: string; |
| 75 | param?: any; |
| 76 | config?: any; |
| 77 | clipboard?: boolean; |
| 78 | history?: boolean; |
| 79 | } |
| 80 | |
| 81 | const exchanges = Object.keys (ccxt.exchanges) as string[]; |
| 82 | const commandToShow = local ? 'node ./cli' : 'ccxt'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…