├── .c8rc.coverage.json ├── .c8rc.json ├── .editorconfig ├── .env.defaults ├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── continuous-integration.yml │ ├── create-release.yml │ └── merge-dependencies.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc.json ├── .prettierrc.json ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── codecov.yml ├── coinbase-api-screenshot.png ├── coinbase-exchange-v1.0.json ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── assets │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── AccountAPI.html │ ├── AccountAPI.md │ ├── CandleBucketUtil.html │ ├── CandleBucketUtil.md │ ├── CoinbasePro.html │ ├── CoinbasePro.md │ ├── CurrencyAPI.html │ ├── CurrencyAPI.md │ ├── FeeAPI.html │ ├── FeeAPI.md │ ├── FillAPI.html │ ├── FillAPI.md │ ├── OrderAPI.html │ ├── OrderAPI.md │ ├── ProductAPI.html │ ├── ProductAPI.md │ ├── ProfileAPI.html │ ├── ProfileAPI.md │ ├── RESTClient.html │ ├── RESTClient.md │ ├── TimeAPI.html │ ├── TimeAPI.md │ ├── UserAPI.html │ ├── UserAPI.md │ ├── WebSocketClient.html │ └── WebSocketClient.md ├── enums │ ├── AccountType.html │ ├── AccountType.md │ ├── CancelOrderPeriod.html │ ├── CancelOrderPeriod.md │ ├── CandleGranularity.html │ ├── CandleGranularity.md │ ├── CurrencyType.html │ ├── CurrencyType.md │ ├── Liquidity.html │ ├── Liquidity.md │ ├── OrderBookLevel.html │ ├── OrderBookLevel.md │ ├── OrderStatus.html │ ├── OrderStatus.md │ ├── OrderType.html │ ├── OrderType.md │ ├── ProductEvent.html │ ├── ProductEvent.md │ ├── SelfTradePrevention.html │ ├── SelfTradePrevention.md │ ├── TimeInForce.html │ ├── TimeInForce.md │ ├── WebSocketChannelName.html │ ├── WebSocketChannelName.md │ ├── WebSocketEvent.html │ ├── WebSocketEvent.md │ ├── WebSocketRequestType.html │ ├── WebSocketRequestType.md │ ├── WebSocketResponseType.html │ └── WebSocketResponseType.md ├── hierarchy.html ├── index.html ├── interfaces │ ├── Account.html │ ├── Account.md │ ├── AccountHistory.html │ ├── AccountHistory.md │ ├── AccountHistoryDetails.html │ ├── AccountHistoryDetails.md │ ├── AddressInfo.html │ ├── AddressInfo.md │ ├── AutoCancelLimitOrder.html │ ├── AutoCancelLimitOrder.md │ ├── BaseHistoricRateRequest.html │ ├── BaseHistoricRateRequest.md │ ├── Candle.html │ ├── Candle.md │ ├── CandleBatchBucket.html │ ├── CandleBatchBucket.md │ ├── ClientAuthenticationBase.html │ ├── ClientAuthenticationBase.md │ ├── ClientAuthenticationBaseUrls.html │ ├── ClientAuthenticationBaseUrls.md │ ├── ClientAuthenticationCustomUrls.html │ ├── ClientAuthenticationCustomUrls.md │ ├── ClientConnection.html │ ├── ClientConnection.md │ ├── CoinbaseAccount.html │ ├── CoinbaseAccount.md │ ├── Currency.html │ ├── Currency.md │ ├── CurrencyDetail.html │ ├── CurrencyDetail.md │ ├── FeeTier.html │ ├── FeeTier.md │ ├── Fill.html │ ├── Fill.md │ ├── FilledOrder.html │ ├── FilledOrder.md │ ├── FundTransfer.html │ ├── FundTransfer.md │ ├── GeneratedAddress.html │ ├── GeneratedAddress.md │ ├── HistoricRateRequestWithTimeSpan.html │ ├── HistoricRateRequestWithTimeSpan.md │ ├── Hold.html │ ├── Hold.md │ ├── LimitOrder.html │ ├── LimitOrder.md │ ├── OrderBookLevel1.html │ ├── OrderBookLevel1.md │ ├── OrderBookLevel2.html │ ├── OrderBookLevel2.md │ ├── OrderBookLevel3.html │ ├── OrderBookLevel3.md │ ├── OrderBookRequestParameters.html │ ├── OrderBookRequestParameters.md │ ├── OrderListQueryParam.html │ ├── OrderListQueryParam.md │ ├── PendingOrder.html │ ├── PendingOrder.md │ ├── PostOnlyLimitOrder.html │ ├── PostOnlyLimitOrder.md │ ├── Product.html │ ├── Product.md │ ├── ProductStats.html │ ├── ProductStats.md │ ├── ProductTicker.html │ ├── ProductTicker.md │ ├── Profile.html │ ├── Profile.md │ ├── SEPADepositInformation.html │ ├── SEPADepositInformation.md │ ├── TimeSkew.html │ ├── TimeSkew.md │ ├── Trade.html │ ├── Trade.md │ ├── TrailingVolume.html │ ├── TrailingVolume.md │ ├── VerifiedUser.html │ ├── VerifiedUser.md │ ├── Warning.html │ ├── Warning.md │ ├── WebSocketChannel.html │ ├── WebSocketChannel.md │ ├── WebSocketErrorMessage.html │ ├── WebSocketErrorMessage.md │ ├── WebSocketFullActivateMessage.html │ ├── WebSocketFullActivateMessage.md │ ├── WebSocketFullChangeMessage.html │ ├── WebSocketFullChangeMessage.md │ ├── WebSocketFullDoneMessage.html │ ├── WebSocketFullDoneMessage.md │ ├── WebSocketFullOpenMessage.html │ ├── WebSocketFullOpenMessage.md │ ├── WebSocketFullReceivedMessage.html │ ├── WebSocketFullReceivedMessage.md │ ├── WebSocketL2SnapshotMessage.html │ ├── WebSocketL2SnapshotMessage.md │ ├── WebSocketL2UpdateMessage.html │ ├── WebSocketL2UpdateMessage.md │ ├── WebSocketMatchMessage.html │ ├── WebSocketMatchMessage.md │ ├── WebSocketRequest.html │ ├── WebSocketRequest.md │ ├── WebSocketStatusMessage.html │ ├── WebSocketStatusMessage.md │ ├── WebSocketSubscription.html │ ├── WebSocketSubscription.md │ ├── WebSocketTickerMessage.html │ ├── WebSocketTickerMessage.md │ ├── WireDepositInformation.html │ └── WireDepositInformation.md ├── media │ ├── LICENSE │ └── coinbase-api-screenshot.png ├── modules.html ├── modules.md └── types │ ├── ClientAuthentication.html │ ├── HistoricRateRequest.html │ ├── MarketOrder.html │ ├── NewOrder.html │ ├── Order.html │ ├── OrderBook.html │ ├── WebSocketLastMatchMessage.html │ └── WebSocketResponse.html ├── jasmine.json ├── package.json ├── src ├── CoinbasePro.test.ts ├── CoinbasePro.ts ├── account │ ├── AccountAPI.test.ts │ ├── AccountAPI.ts │ └── index.ts ├── auth │ ├── RequestSigner.test.ts │ └── RequestSigner.ts ├── client │ ├── RESTClient.test.ts │ ├── RESTClient.ts │ ├── WebSocketClient.test.ts │ ├── WebSocketClient.ts │ └── index.ts ├── currency │ ├── CurrencyAPI.test.ts │ ├── CurrencyAPI.ts │ └── index.ts ├── demo │ ├── dump-candles.ts │ ├── init-client.ts │ ├── rest-get-candles.ts │ ├── rest-watch-candles.ts │ ├── websocket-ticker.ts │ ├── websocket-unsubscribe-all.ts │ └── websocket-user.ts ├── error │ ├── ErrorUtil.test.ts │ └── ErrorUtil.ts ├── exchange-rate │ ├── ExchangeRateAPI.test.ts │ └── ExchangeRateAPI.ts ├── fee │ ├── FeeAPI.test.ts │ ├── FeeAPI.ts │ └── index.ts ├── fill │ ├── FillAPI.test.ts │ ├── FillAPI.ts │ └── index.ts ├── index.ts ├── order │ ├── OrderAPI.test.ts │ ├── OrderAPI.ts │ └── index.ts ├── payload │ ├── common.ts │ └── index.ts ├── product │ ├── CandleBucketUtil.test.ts │ ├── CandleBucketUtil.ts │ ├── ProductAPI.test.ts │ ├── ProductAPI.ts │ └── index.ts ├── profile │ ├── ProfileAPI.test.ts │ ├── ProfileAPI.ts │ └── index.ts ├── test │ ├── fixtures │ │ ├── rest │ │ │ ├── accounts │ │ │ │ ├── 322dfa88-e10d-4678-856d-2930eac3e62d │ │ │ │ │ ├── GET-200.json │ │ │ │ │ ├── addresses │ │ │ │ │ │ └── POST-200.json │ │ │ │ │ ├── holds │ │ │ │ │ │ └── GET-200.json │ │ │ │ │ └── ledger │ │ │ │ │ │ └── GET-200.json │ │ │ │ └── GET-200.json │ │ │ ├── fills │ │ │ │ └── product_id │ │ │ │ │ └── BTC-EUR │ │ │ │ │ └── GET-200.json │ │ │ ├── products │ │ │ │ ├── BTC-EUR │ │ │ │ │ ├── book │ │ │ │ │ │ ├── level-1.json │ │ │ │ │ │ └── level-2.json │ │ │ │ │ └── trades │ │ │ │ │ │ └── GET-200.json │ │ │ │ └── BTC-USD │ │ │ │ │ ├── book │ │ │ │ │ ├── level-2.json │ │ │ │ │ └── level-3.json │ │ │ │ │ └── candles │ │ │ │ │ ├── 2020-03-20-00-00.json │ │ │ │ │ ├── 2020-03-20-05-00.json │ │ │ │ │ ├── BTC-USD-1581292800000-60.json │ │ │ │ │ └── GET-200.json │ │ │ ├── users │ │ │ │ └── self │ │ │ │ │ ├── trailing-volume │ │ │ │ │ └── GET-200.json │ │ │ │ │ └── verify │ │ │ │ │ └── GET-200.json │ │ │ └── v2 │ │ │ │ └── exchange-rates │ │ │ │ ├── GET-200-EUR.json │ │ │ │ └── GET-200.json │ │ └── ws │ │ │ ├── empty-subscriptions.json │ │ │ ├── full │ │ │ ├── activate.json │ │ │ ├── change.json │ │ │ ├── done.json │ │ │ ├── open.json │ │ │ └── received-limit.json │ │ │ ├── heartbeat │ │ │ └── ETH-EUR.json │ │ │ ├── level2 │ │ │ ├── l2update.json │ │ │ └── snapshot.json │ │ │ ├── matches │ │ │ └── BTC-USD.json │ │ │ ├── status │ │ │ └── status.json │ │ │ └── ticker │ │ │ ├── BTC-USD.json │ │ │ ├── subscribe-success.json │ │ │ └── unsubscribe-error.json │ └── helpers │ │ └── SetupCoinbasePro.ts ├── time │ ├── TimeAPI.test.ts │ ├── TimeAPI.ts │ └── index.ts ├── transfer │ ├── TransferAPI.test.ts │ ├── TransferAPI.ts │ └── index.ts ├── user │ ├── UserAPI.test.ts │ ├── UserAPI.ts │ └── index.ts └── withdraw │ ├── WithdrawAPI.test.ts │ ├── WithdrawAPI.ts │ └── index.ts ├── tsconfig.json ├── typedoc.json └── yarn.lock /.c8rc.coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.c8rc.coverage.json -------------------------------------------------------------------------------- /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.env.defaults -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.github/workflows/merge-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "*.{js,jsx,ts,tsx}": ["yarn fix:code"] 3 | } 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/codecov.yml -------------------------------------------------------------------------------- /coinbase-api-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/coinbase-api-screenshot.png -------------------------------------------------------------------------------- /coinbase-exchange-v1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/coinbase-exchange-v1.0.json -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- 1 | - [Home](/) 2 | - [API](/modules.md) 3 | -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/AccountAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/AccountAPI.html -------------------------------------------------------------------------------- /docs/classes/AccountAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/AccountAPI.md -------------------------------------------------------------------------------- /docs/classes/CandleBucketUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CandleBucketUtil.html -------------------------------------------------------------------------------- /docs/classes/CandleBucketUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CandleBucketUtil.md -------------------------------------------------------------------------------- /docs/classes/CoinbasePro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CoinbasePro.html -------------------------------------------------------------------------------- /docs/classes/CoinbasePro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CoinbasePro.md -------------------------------------------------------------------------------- /docs/classes/CurrencyAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CurrencyAPI.html -------------------------------------------------------------------------------- /docs/classes/CurrencyAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/CurrencyAPI.md -------------------------------------------------------------------------------- /docs/classes/FeeAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/FeeAPI.html -------------------------------------------------------------------------------- /docs/classes/FeeAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/FeeAPI.md -------------------------------------------------------------------------------- /docs/classes/FillAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/FillAPI.html -------------------------------------------------------------------------------- /docs/classes/FillAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/FillAPI.md -------------------------------------------------------------------------------- /docs/classes/OrderAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/OrderAPI.html -------------------------------------------------------------------------------- /docs/classes/OrderAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/OrderAPI.md -------------------------------------------------------------------------------- /docs/classes/ProductAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/ProductAPI.html -------------------------------------------------------------------------------- /docs/classes/ProductAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/ProductAPI.md -------------------------------------------------------------------------------- /docs/classes/ProfileAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/ProfileAPI.html -------------------------------------------------------------------------------- /docs/classes/ProfileAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/ProfileAPI.md -------------------------------------------------------------------------------- /docs/classes/RESTClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/RESTClient.html -------------------------------------------------------------------------------- /docs/classes/RESTClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/RESTClient.md -------------------------------------------------------------------------------- /docs/classes/TimeAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/TimeAPI.html -------------------------------------------------------------------------------- /docs/classes/TimeAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/TimeAPI.md -------------------------------------------------------------------------------- /docs/classes/UserAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/UserAPI.html -------------------------------------------------------------------------------- /docs/classes/UserAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/UserAPI.md -------------------------------------------------------------------------------- /docs/classes/WebSocketClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/WebSocketClient.html -------------------------------------------------------------------------------- /docs/classes/WebSocketClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/classes/WebSocketClient.md -------------------------------------------------------------------------------- /docs/enums/AccountType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/AccountType.html -------------------------------------------------------------------------------- /docs/enums/AccountType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/AccountType.md -------------------------------------------------------------------------------- /docs/enums/CancelOrderPeriod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CancelOrderPeriod.html -------------------------------------------------------------------------------- /docs/enums/CancelOrderPeriod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CancelOrderPeriod.md -------------------------------------------------------------------------------- /docs/enums/CandleGranularity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CandleGranularity.html -------------------------------------------------------------------------------- /docs/enums/CandleGranularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CandleGranularity.md -------------------------------------------------------------------------------- /docs/enums/CurrencyType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CurrencyType.html -------------------------------------------------------------------------------- /docs/enums/CurrencyType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/CurrencyType.md -------------------------------------------------------------------------------- /docs/enums/Liquidity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/Liquidity.html -------------------------------------------------------------------------------- /docs/enums/Liquidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/Liquidity.md -------------------------------------------------------------------------------- /docs/enums/OrderBookLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderBookLevel.html -------------------------------------------------------------------------------- /docs/enums/OrderBookLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderBookLevel.md -------------------------------------------------------------------------------- /docs/enums/OrderStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderStatus.html -------------------------------------------------------------------------------- /docs/enums/OrderStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderStatus.md -------------------------------------------------------------------------------- /docs/enums/OrderType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderType.html -------------------------------------------------------------------------------- /docs/enums/OrderType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/OrderType.md -------------------------------------------------------------------------------- /docs/enums/ProductEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/ProductEvent.html -------------------------------------------------------------------------------- /docs/enums/ProductEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/ProductEvent.md -------------------------------------------------------------------------------- /docs/enums/SelfTradePrevention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/SelfTradePrevention.html -------------------------------------------------------------------------------- /docs/enums/SelfTradePrevention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/SelfTradePrevention.md -------------------------------------------------------------------------------- /docs/enums/TimeInForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/TimeInForce.html -------------------------------------------------------------------------------- /docs/enums/TimeInForce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/TimeInForce.md -------------------------------------------------------------------------------- /docs/enums/WebSocketChannelName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketChannelName.html -------------------------------------------------------------------------------- /docs/enums/WebSocketChannelName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketChannelName.md -------------------------------------------------------------------------------- /docs/enums/WebSocketEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketEvent.html -------------------------------------------------------------------------------- /docs/enums/WebSocketEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketEvent.md -------------------------------------------------------------------------------- /docs/enums/WebSocketRequestType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketRequestType.html -------------------------------------------------------------------------------- /docs/enums/WebSocketRequestType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketRequestType.md -------------------------------------------------------------------------------- /docs/enums/WebSocketResponseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketResponseType.html -------------------------------------------------------------------------------- /docs/enums/WebSocketResponseType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/enums/WebSocketResponseType.md -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/Account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Account.html -------------------------------------------------------------------------------- /docs/interfaces/Account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Account.md -------------------------------------------------------------------------------- /docs/interfaces/AccountHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AccountHistory.html -------------------------------------------------------------------------------- /docs/interfaces/AccountHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AccountHistory.md -------------------------------------------------------------------------------- /docs/interfaces/AccountHistoryDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AccountHistoryDetails.html -------------------------------------------------------------------------------- /docs/interfaces/AccountHistoryDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AccountHistoryDetails.md -------------------------------------------------------------------------------- /docs/interfaces/AddressInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AddressInfo.html -------------------------------------------------------------------------------- /docs/interfaces/AddressInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AddressInfo.md -------------------------------------------------------------------------------- /docs/interfaces/AutoCancelLimitOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AutoCancelLimitOrder.html -------------------------------------------------------------------------------- /docs/interfaces/AutoCancelLimitOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/AutoCancelLimitOrder.md -------------------------------------------------------------------------------- /docs/interfaces/BaseHistoricRateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/BaseHistoricRateRequest.html -------------------------------------------------------------------------------- /docs/interfaces/BaseHistoricRateRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/BaseHistoricRateRequest.md -------------------------------------------------------------------------------- /docs/interfaces/Candle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Candle.html -------------------------------------------------------------------------------- /docs/interfaces/Candle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Candle.md -------------------------------------------------------------------------------- /docs/interfaces/CandleBatchBucket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CandleBatchBucket.html -------------------------------------------------------------------------------- /docs/interfaces/CandleBatchBucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CandleBatchBucket.md -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationBase.html -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationBase.md -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationBaseUrls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationBaseUrls.html -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationBaseUrls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationBaseUrls.md -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationCustomUrls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationCustomUrls.html -------------------------------------------------------------------------------- /docs/interfaces/ClientAuthenticationCustomUrls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientAuthenticationCustomUrls.md -------------------------------------------------------------------------------- /docs/interfaces/ClientConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientConnection.html -------------------------------------------------------------------------------- /docs/interfaces/ClientConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ClientConnection.md -------------------------------------------------------------------------------- /docs/interfaces/CoinbaseAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CoinbaseAccount.html -------------------------------------------------------------------------------- /docs/interfaces/CoinbaseAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CoinbaseAccount.md -------------------------------------------------------------------------------- /docs/interfaces/Currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Currency.html -------------------------------------------------------------------------------- /docs/interfaces/Currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Currency.md -------------------------------------------------------------------------------- /docs/interfaces/CurrencyDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CurrencyDetail.html -------------------------------------------------------------------------------- /docs/interfaces/CurrencyDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/CurrencyDetail.md -------------------------------------------------------------------------------- /docs/interfaces/FeeTier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FeeTier.html -------------------------------------------------------------------------------- /docs/interfaces/FeeTier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FeeTier.md -------------------------------------------------------------------------------- /docs/interfaces/Fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Fill.html -------------------------------------------------------------------------------- /docs/interfaces/Fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Fill.md -------------------------------------------------------------------------------- /docs/interfaces/FilledOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FilledOrder.html -------------------------------------------------------------------------------- /docs/interfaces/FilledOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FilledOrder.md -------------------------------------------------------------------------------- /docs/interfaces/FundTransfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FundTransfer.html -------------------------------------------------------------------------------- /docs/interfaces/FundTransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/FundTransfer.md -------------------------------------------------------------------------------- /docs/interfaces/GeneratedAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/GeneratedAddress.html -------------------------------------------------------------------------------- /docs/interfaces/GeneratedAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/GeneratedAddress.md -------------------------------------------------------------------------------- /docs/interfaces/HistoricRateRequestWithTimeSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/HistoricRateRequestWithTimeSpan.html -------------------------------------------------------------------------------- /docs/interfaces/HistoricRateRequestWithTimeSpan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/HistoricRateRequestWithTimeSpan.md -------------------------------------------------------------------------------- /docs/interfaces/Hold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Hold.html -------------------------------------------------------------------------------- /docs/interfaces/Hold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Hold.md -------------------------------------------------------------------------------- /docs/interfaces/LimitOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/LimitOrder.html -------------------------------------------------------------------------------- /docs/interfaces/LimitOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/LimitOrder.md -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel1.html -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel1.md -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel2.html -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel2.md -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel3.html -------------------------------------------------------------------------------- /docs/interfaces/OrderBookLevel3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookLevel3.md -------------------------------------------------------------------------------- /docs/interfaces/OrderBookRequestParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookRequestParameters.html -------------------------------------------------------------------------------- /docs/interfaces/OrderBookRequestParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderBookRequestParameters.md -------------------------------------------------------------------------------- /docs/interfaces/OrderListQueryParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderListQueryParam.html -------------------------------------------------------------------------------- /docs/interfaces/OrderListQueryParam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/OrderListQueryParam.md -------------------------------------------------------------------------------- /docs/interfaces/PendingOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/PendingOrder.html -------------------------------------------------------------------------------- /docs/interfaces/PendingOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/PendingOrder.md -------------------------------------------------------------------------------- /docs/interfaces/PostOnlyLimitOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/PostOnlyLimitOrder.html -------------------------------------------------------------------------------- /docs/interfaces/PostOnlyLimitOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/PostOnlyLimitOrder.md -------------------------------------------------------------------------------- /docs/interfaces/Product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Product.html -------------------------------------------------------------------------------- /docs/interfaces/Product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Product.md -------------------------------------------------------------------------------- /docs/interfaces/ProductStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ProductStats.html -------------------------------------------------------------------------------- /docs/interfaces/ProductStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ProductStats.md -------------------------------------------------------------------------------- /docs/interfaces/ProductTicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ProductTicker.html -------------------------------------------------------------------------------- /docs/interfaces/ProductTicker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/ProductTicker.md -------------------------------------------------------------------------------- /docs/interfaces/Profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Profile.html -------------------------------------------------------------------------------- /docs/interfaces/Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Profile.md -------------------------------------------------------------------------------- /docs/interfaces/SEPADepositInformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/SEPADepositInformation.html -------------------------------------------------------------------------------- /docs/interfaces/SEPADepositInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/SEPADepositInformation.md -------------------------------------------------------------------------------- /docs/interfaces/TimeSkew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/TimeSkew.html -------------------------------------------------------------------------------- /docs/interfaces/TimeSkew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/TimeSkew.md -------------------------------------------------------------------------------- /docs/interfaces/Trade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Trade.html -------------------------------------------------------------------------------- /docs/interfaces/Trade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Trade.md -------------------------------------------------------------------------------- /docs/interfaces/TrailingVolume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/TrailingVolume.html -------------------------------------------------------------------------------- /docs/interfaces/TrailingVolume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/TrailingVolume.md -------------------------------------------------------------------------------- /docs/interfaces/VerifiedUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/VerifiedUser.html -------------------------------------------------------------------------------- /docs/interfaces/VerifiedUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/VerifiedUser.md -------------------------------------------------------------------------------- /docs/interfaces/Warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Warning.html -------------------------------------------------------------------------------- /docs/interfaces/Warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/Warning.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketChannel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketChannel.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketChannel.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketErrorMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketErrorMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketErrorMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketErrorMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullActivateMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullActivateMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullActivateMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullActivateMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullChangeMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullChangeMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullChangeMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullChangeMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullDoneMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullDoneMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullDoneMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullDoneMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullOpenMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullOpenMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullOpenMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullOpenMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullReceivedMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullReceivedMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketFullReceivedMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketFullReceivedMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketL2SnapshotMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketL2SnapshotMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketL2SnapshotMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketL2SnapshotMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketL2UpdateMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketL2UpdateMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketL2UpdateMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketL2UpdateMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketMatchMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketMatchMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketMatchMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketMatchMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketRequest.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketRequest.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketStatusMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketStatusMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketStatusMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketStatusMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketSubscription.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketSubscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketSubscription.md -------------------------------------------------------------------------------- /docs/interfaces/WebSocketTickerMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketTickerMessage.html -------------------------------------------------------------------------------- /docs/interfaces/WebSocketTickerMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WebSocketTickerMessage.md -------------------------------------------------------------------------------- /docs/interfaces/WireDepositInformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WireDepositInformation.html -------------------------------------------------------------------------------- /docs/interfaces/WireDepositInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/interfaces/WireDepositInformation.md -------------------------------------------------------------------------------- /docs/media/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/media/LICENSE -------------------------------------------------------------------------------- /docs/media/coinbase-api-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/media/coinbase-api-screenshot.png -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/modules.md -------------------------------------------------------------------------------- /docs/types/ClientAuthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/ClientAuthentication.html -------------------------------------------------------------------------------- /docs/types/HistoricRateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/HistoricRateRequest.html -------------------------------------------------------------------------------- /docs/types/MarketOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/MarketOrder.html -------------------------------------------------------------------------------- /docs/types/NewOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/NewOrder.html -------------------------------------------------------------------------------- /docs/types/Order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/Order.html -------------------------------------------------------------------------------- /docs/types/OrderBook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/OrderBook.html -------------------------------------------------------------------------------- /docs/types/WebSocketLastMatchMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/WebSocketLastMatchMessage.html -------------------------------------------------------------------------------- /docs/types/WebSocketResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/docs/types/WebSocketResponse.html -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/jasmine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/package.json -------------------------------------------------------------------------------- /src/CoinbasePro.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/CoinbasePro.test.ts -------------------------------------------------------------------------------- /src/CoinbasePro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/CoinbasePro.ts -------------------------------------------------------------------------------- /src/account/AccountAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/account/AccountAPI.test.ts -------------------------------------------------------------------------------- /src/account/AccountAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/account/AccountAPI.ts -------------------------------------------------------------------------------- /src/account/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AccountAPI.js'; 2 | -------------------------------------------------------------------------------- /src/auth/RequestSigner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/auth/RequestSigner.test.ts -------------------------------------------------------------------------------- /src/auth/RequestSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/auth/RequestSigner.ts -------------------------------------------------------------------------------- /src/client/RESTClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/client/RESTClient.test.ts -------------------------------------------------------------------------------- /src/client/RESTClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/client/RESTClient.ts -------------------------------------------------------------------------------- /src/client/WebSocketClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/client/WebSocketClient.test.ts -------------------------------------------------------------------------------- /src/client/WebSocketClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/client/WebSocketClient.ts -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/client/index.ts -------------------------------------------------------------------------------- /src/currency/CurrencyAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/currency/CurrencyAPI.test.ts -------------------------------------------------------------------------------- /src/currency/CurrencyAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/currency/CurrencyAPI.ts -------------------------------------------------------------------------------- /src/currency/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CurrencyAPI.js'; 2 | -------------------------------------------------------------------------------- /src/demo/dump-candles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/dump-candles.ts -------------------------------------------------------------------------------- /src/demo/init-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/init-client.ts -------------------------------------------------------------------------------- /src/demo/rest-get-candles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/rest-get-candles.ts -------------------------------------------------------------------------------- /src/demo/rest-watch-candles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/rest-watch-candles.ts -------------------------------------------------------------------------------- /src/demo/websocket-ticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/websocket-ticker.ts -------------------------------------------------------------------------------- /src/demo/websocket-unsubscribe-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/websocket-unsubscribe-all.ts -------------------------------------------------------------------------------- /src/demo/websocket-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/demo/websocket-user.ts -------------------------------------------------------------------------------- /src/error/ErrorUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/error/ErrorUtil.test.ts -------------------------------------------------------------------------------- /src/error/ErrorUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/error/ErrorUtil.ts -------------------------------------------------------------------------------- /src/exchange-rate/ExchangeRateAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/exchange-rate/ExchangeRateAPI.test.ts -------------------------------------------------------------------------------- /src/exchange-rate/ExchangeRateAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/exchange-rate/ExchangeRateAPI.ts -------------------------------------------------------------------------------- /src/fee/FeeAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/fee/FeeAPI.test.ts -------------------------------------------------------------------------------- /src/fee/FeeAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/fee/FeeAPI.ts -------------------------------------------------------------------------------- /src/fee/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeeAPI.js'; 2 | -------------------------------------------------------------------------------- /src/fill/FillAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/fill/FillAPI.test.ts -------------------------------------------------------------------------------- /src/fill/FillAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/fill/FillAPI.ts -------------------------------------------------------------------------------- /src/fill/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FillAPI.js'; 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/order/OrderAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/order/OrderAPI.test.ts -------------------------------------------------------------------------------- /src/order/OrderAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/order/OrderAPI.ts -------------------------------------------------------------------------------- /src/order/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OrderAPI.js'; 2 | -------------------------------------------------------------------------------- /src/payload/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/payload/common.ts -------------------------------------------------------------------------------- /src/payload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common.js'; 2 | -------------------------------------------------------------------------------- /src/product/CandleBucketUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/product/CandleBucketUtil.test.ts -------------------------------------------------------------------------------- /src/product/CandleBucketUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/product/CandleBucketUtil.ts -------------------------------------------------------------------------------- /src/product/ProductAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/product/ProductAPI.test.ts -------------------------------------------------------------------------------- /src/product/ProductAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/product/ProductAPI.ts -------------------------------------------------------------------------------- /src/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/product/index.ts -------------------------------------------------------------------------------- /src/profile/ProfileAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/profile/ProfileAPI.test.ts -------------------------------------------------------------------------------- /src/profile/ProfileAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/profile/ProfileAPI.ts -------------------------------------------------------------------------------- /src/profile/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProfileAPI.js'; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/addresses/POST-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/addresses/POST-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/holds/GET-200.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/test/fixtures/rest/accounts/322dfa88-e10d-4678-856d-2930eac3e62d/ledger/GET-200.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/test/fixtures/rest/accounts/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/accounts/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/fills/product_id/BTC-EUR/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/fills/product_id/BTC-EUR/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-EUR/book/level-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-EUR/book/level-1.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-EUR/book/level-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-EUR/book/level-2.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-EUR/trades/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-EUR/trades/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/book/level-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/book/level-2.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/book/level-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/book/level-3.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/candles/2020-03-20-00-00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/candles/2020-03-20-00-00.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/candles/2020-03-20-05-00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/candles/2020-03-20-05-00.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/candles/BTC-USD-1581292800000-60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/candles/BTC-USD-1581292800000-60.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/products/BTC-USD/candles/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/products/BTC-USD/candles/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/users/self/trailing-volume/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/users/self/trailing-volume/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/users/self/verify/GET-200.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "7cbb4d09b95cee4dea90e9a7" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/fixtures/rest/v2/exchange-rates/GET-200-EUR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/v2/exchange-rates/GET-200-EUR.json -------------------------------------------------------------------------------- /src/test/fixtures/rest/v2/exchange-rates/GET-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/rest/v2/exchange-rates/GET-200.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/empty-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/empty-subscriptions.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/full/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/full/activate.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/full/change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/full/change.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/full/done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/full/done.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/full/open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/full/open.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/full/received-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/full/received-limit.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/heartbeat/ETH-EUR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/heartbeat/ETH-EUR.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/level2/l2update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/level2/l2update.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/level2/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/level2/snapshot.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/matches/BTC-USD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/matches/BTC-USD.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/status/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/status/status.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/ticker/BTC-USD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/ticker/BTC-USD.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/ticker/subscribe-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/ticker/subscribe-success.json -------------------------------------------------------------------------------- /src/test/fixtures/ws/ticker/unsubscribe-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/fixtures/ws/ticker/unsubscribe-error.json -------------------------------------------------------------------------------- /src/test/helpers/SetupCoinbasePro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/test/helpers/SetupCoinbasePro.ts -------------------------------------------------------------------------------- /src/time/TimeAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/time/TimeAPI.test.ts -------------------------------------------------------------------------------- /src/time/TimeAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/time/TimeAPI.ts -------------------------------------------------------------------------------- /src/time/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TimeAPI.js'; 2 | -------------------------------------------------------------------------------- /src/transfer/TransferAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/transfer/TransferAPI.test.ts -------------------------------------------------------------------------------- /src/transfer/TransferAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/transfer/TransferAPI.ts -------------------------------------------------------------------------------- /src/transfer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TransferAPI.js'; 2 | -------------------------------------------------------------------------------- /src/user/UserAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/user/UserAPI.test.ts -------------------------------------------------------------------------------- /src/user/UserAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/user/UserAPI.ts -------------------------------------------------------------------------------- /src/user/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UserAPI.js'; 2 | -------------------------------------------------------------------------------- /src/withdraw/WithdrawAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/withdraw/WithdrawAPI.test.ts -------------------------------------------------------------------------------- /src/withdraw/WithdrawAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/src/withdraw/WithdrawAPI.ts -------------------------------------------------------------------------------- /src/withdraw/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WithdrawAPI.js'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennycode/coinbase-pro-node/HEAD/yarn.lock --------------------------------------------------------------------------------