Skip to content

Commit

Permalink
Merge pull request #36 from JJ-Cro/latencyCheck
Browse files Browse the repository at this point in the history
feat(): added latency check, removed link from examples
  • Loading branch information
tiagosiebler authored Oct 22, 2024
2 parents 0ae094a + b722aba commit acb467a
Show file tree
Hide file tree
Showing 275 changed files with 344 additions and 564 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ ws-private-perp-futures-wsapi-readonly.ts
privatetest.ts

privaterepotracker
restClientRegex.ts
restClientRegex.ts

testfile.ts
539 changes: 269 additions & 270 deletions docs/endpointFunctionList.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion examples/apidoc/RestClient/addUsersToStpGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /account/stp_groups/{stp_id}/users
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3864

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/batchCancelFuturesOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/batch_cancel_orders
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2477

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/batchCancelSpotOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/cancel_batch_orders
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1226

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/batchUpdateFuturesOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/batch_amend_orders
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2496

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/batchUpdateSpotOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/amend_batch_orders
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1340

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllDeliveryOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2819

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllFuturesOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2273

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllOpenDeliveryOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/price_orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2948

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllOpenFuturesOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/price_orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2537

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllOpenOptionsOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /options/orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3236

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelAllOpenSpotOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/price_orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1378

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelDeliveryOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2853

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelFuturesOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2343

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /futures/{settle}/price_orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2568

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelOptionsOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /options/orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3262

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelSpotOpenOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/orders
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1209

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelSpotOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1277

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelSpotTriggeredOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /spot/price_orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1403

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelTriggeredDeliveryOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/price_orders/{order_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2979

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/cancelWithdrawal.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /withdrawals/{withdrawal_id}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L383

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/convertSmallBalance.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /wallet/small_balance
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L626

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/createDepositAddress.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /wallet/deposit_address
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L410

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/createStpGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /account/stp_groups
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3834

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/createSubAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /sub_accounts
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L666

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/createSubAccountApiKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /sub_accounts/{user_id}/keys
// METHOD: POST
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L697

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/deleteSubAccountApiKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /sub_accounts/{user_id}/keys/{key}
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L732

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/deleteUserFromStpGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /account/stp_groups/{stp_id}/users
// METHOD: DELETE
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3880

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAccountDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /account/detail
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3815

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAccountRateLimit.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /account/rate_limit
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3824

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAgencyCommissionHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /rebate/agency/commission_history
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3938

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAgencyTransactionHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /rebate/agency/transaction_history
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L3925

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAllDeliveryContracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/contracts
// METHOD: GET
// PUBLIC: YES
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2588

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getAutoRepaymentSetting.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/auto_repay
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1481

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getBalances.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /wallet/total_balance
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L607

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getBrokerCommissionHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /rebate/broker/commission_history
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L4004

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getBrokerTransactionHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /rebate/broker/transaction_history
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L4017

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/accounts
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1532

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginAccountHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/account_book
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1544

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginBorrowHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/loans
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1572

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginBorrowLoan.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/loans/{loan_id}
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1584

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/borrowable
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1667

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginCurrencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/currencies
// METHOD: GET
// PUBLIC: YES
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1511

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginCurrency.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/currencies/{currency}
// METHOD: GET
// PUBLIC: YES
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1521

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/interest_records
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1624

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCrossMarginRepayments.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/repayments
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1612

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /margin/cross/transferable
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L1639

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getCurrencyChains.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /wallet/currency_chains
// METHOD: GET
// PUBLIC: YES
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L400

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
1 change: 0 additions & 1 deletion examples/apidoc/RestClient/getDeliveryAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { RestClient } = require('gateio-api');
// ENDPOINT: /delivery/{settle}/accounts
// METHOD: GET
// PUBLIC: NO
// Link to function: https://github.com/tiagosiebler/gateio-api/blob/master/src/RestClient.ts#L2689

const client = new RestClient({
apiKey: 'insert_api_key_here',
Expand Down
Loading

0 comments on commit acb467a

Please sign in to comment.