npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gateio-nodejs-api

v1.0.9

Published

This service was created simply for GateIO spot API transactions. The heavily used processes were simplified and coded on a single page

Downloads

9

Readme

GateIO nodejs api

https://www.npmjs.com/package/gateio-nodejs-api

Installation

npm install gateio-nodejs-api

Authentication Required Features

  - myWallet,
  - orderCreate,
  - getOrder,
  - getOpenOrders,
  - cancelOrder,
  - withdrawalStatus,
  - withdrawals,
  - pairs,
  - trades,
  - tickers,
  - order_book,
  - history,
  - listOrders,
  - candlesticks,
  - currencies,
  - total_balance,
  - fee,
  - saved_address,
  - deposits_list,
  - withdrawals_list,
  - deposit_address,
  - currency_chains

Import for public endpoints

const gateioApi = require('gateio')
client = gateioApi()

Import for private (auth required) endpoints

const gateioApi = require('gateio')
client = gateioApi(API_KEY, API_SECRET)

Usage

Authentication Required Methods

  • My Wallet

    
    client.myWallet().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
            { currency: 'BTC', available: '0.00000028', locked: '0' },
            { currency: 'USDT', available: '0.000000000009', locked: '0' },
          ]
  • currency_chains

    • @param {*} currency
    
    client.currency_chains().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
              {
                  chain: 'BTC',
                  name_cn: '比特币OMNI',
                  name_en: 'BTC/OMNI',
                  is_disabled: 0,
                  is_deposit_disabled: 0,
                  is_withdraw_disabled: 0
              },
              {
                  chain: 'ETH',
                  name_cn: '以太坊ERC20',
                  name_en: 'ETH/ERC20',
                  is_disabled: 0,
                  is_deposit_disabled: 0,
                  is_withdraw_disabled: 0
              },
              {
                  chain: 'TRX',
                  name_cn: '波场TRC20',
                  name_en: 'Tron/TRC20',
                  is_disabled: 0,
                  is_deposit_disabled: 0,
                  is_withdraw_disabled: 0
              }
           ]
  • withdrawals_list

    • @param {} currency
    • @param {} from date 2022-08-01
    • @param {} to date 2022-08-20
    • @param {} limit
    
    client.withdrawals_list().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
              {
                  "id": "210496",
                  "timestamp": "1542000000",
                  "currency": "USDT",
                  "address": "1HkxtBAMrA3tP5ENnYY2CZortjZvFDH5Cs",
                  "txid": "128988928203223323290",
                  "amount": "222.61",
                  "memo": "",
                  "status": "DONE",
                  "chain": "TRX"
              }
          ]
    • deposits_list

      • @param {} currency
      • @param {} from date 2022-08-01
      • @param {} to date 2022-08-20
      • @param {} limit
    
    client.deposits_list().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
              {
                  "id": "210496",
                  "timestamp": "1542000000",
                  "currency": "USDT",
                  "address": "1HkxtBAMrA3tP5ENnYY2CZortjZvFDH5Cs",
                  "txid": "128988928203223323290",
                  "amount": "222.61",
                  "memo": "",
                  "status": "DONE",
                  "chain": "TRX"
              }
          ]
    • saved_address

      • @param {*} currency
      • @param {*} chain
    
    client.saved_address().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
              {
                  "currency": "usdt",
                  "chain": "TRX",
                  "address": "TWYirLzw2RARB2jfeFcfRPmeuU3rC7rakT",
                  "name": "gate",
                  "tag": "",
                  "verified": "1"
              }
         ]
    • fee

    • @param {*} currency_pair
    
    client.fee().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

         {
          "user_id": 10001,
          "taker_fee": "0.002",
          "maker_fee": "0.002",
          "futures_taker_fee": "-0.00025",
          "futures_maker_fee": "0.00075",
          "gt_discount": false,
          "gt_taker_fee": "0",
          "gt_maker_fee": "0",
          "loan_fee": "0.18",
          "point_type": "1"
          }
    • total_balance

      • @param {*} currency Currency unit used to calculate the balance amount. BTC, CNY, USD and USDT are allowed. USDT is the default.
    
    client.total_balance('USDT').then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          {
          total: { amount: '65.6720817126853324', currency: 'USDT' },
          details: {
              cbbc: { amount: '0', currency: 'USDT' },
              cross_margin: { amount: '0', currency: 'USDT' },
              delivery: { amount: '0', currency: 'USDT' },
              finance: { amount: '0', currency: 'USDT' },
              futures: { amount: '0', currency: 'USDT' },
              margin: { amount: '0', currency: 'USDT' },
              quant: { amount: '0', currency: 'USDT' },
              spot: { amount: '65.6720817126853324', currency: 'USDT' }
          }
          }
    • listOrders

      • @param {*} currency_pair
      • @param {*} status
      • @param {} side
      • @param {} page
      • @param {} limit
    
    client.listOrders().then(async res=>{
          console.log(res)  
          }); 
    

    Result:

          [
              {
                  id: '192133015275',
                  text: '101',
                  create_time: '1660916180',
                  update_time: '1660916180',
                  create_time_ms: 1660916180111,
                  update_time_ms: 1660916180111,
                  status: 'closed',
                  currency_pair: 'GALA_USDT',
                  type: 'limit',
                  account: 'spot',
                  side: 'buy',
                  amount: '465.55',
                  price: '0.053164',
                  time_in_force: 'gtc',
                  iceberg: '0',
                  left: '0.00',
                  fill_price: '24.75003465',
                  filled_total: '24.75003465',
                  fee: '0.83799',
                  fee_currency: 'GALA',
                  point_fee: '0',
                  gt_fee: '0',
                  gt_discount: false,
                  rebated_fee_currency: 'USDT'
              }
          ]
  • Create Order

    • @param {*} symbol string
    • @param {*} quantity string
    • @param {*} price string
    • @param {*} side BUY,SELL
    • @param {} type MARKET,LIMIT
           client.orderCreate('SHIB_USDT','1000000','0.000030','sell').then(async res=>{
              console.log(res)  
            });  

    Result:

              {
              id: '190597614648',
              text: 'apiv4',
              create_time: '1660507366',
              update_time: '1660507366',
              create_time_ms: 1660507366350,
              update_time_ms: 1660507366350,
              status: 'open',
              currency_pair: 'SHIB_USDT',
              type: 'limit',
              account: 'spot',
              side: 'sell',
              amount: '1000000',
              price: '0.00003',
              time_in_force: 'gtc',
              iceberg: '0',
              left: '1000000',
              fill_price: '0',
              filled_total: '0',
              fee: '0',
              fee_currency: 'USDT',
              point_fee: '0',
              gt_fee: '0',
              gt_discount: false,
              rebated_fee: '0',
              rebated_fee_currency: 'SHIB'
          }
  • Get Order

    • @param {*} orderId orderID
    • @param {*} symbol
           client.getOrder(190597614648, 'SHIB_USDT').then(async res => {
          console.log(res)
        });

    Result:

         {
                  id: '190597614648',
                  text: 'apiv4',
                  create_time: '1660507366',
                  update_time: '1660507366',
                  create_time_ms: 1660507366360,
                  update_time_ms: 1660507366360,
                  status: 'open',
                  currency_pair: 'SHIB_USDT',
                  type: 'limit',
                  account: 'spot',
                  side: 'sell',
                  amount: '1000000',
                  price: '0.00003',
                  time_in_force: 'gtc',
                  iceberg: '0',
                  left: '1000000',
                  fill_price: '0',
                  filled_total: '0',
                  fee: '0',
                  fee_currency: 'USDT',
                  point_fee: '0',
                  gt_fee: '0',
                  gt_discount: false,
                  rebated_fee: '0',
                  rebated_fee_currency: 'SHIB'
              } 
  • Get Open Orders

         client.getOpenOrders().then(async res => {
          console.log(res)
        }); 
    
        client.getOpenOrders('SHIB_USDT').then(async res => {
          console.log(res)
        }); 

    Result:

    • Params : SHIB_USDT
          
              [
                  {
                      id: '190597614648',
                      text: 'apiv4',
                      create_time: '1660507366',
                      update_time: '1660507366',
                      create_time_ms: 1660507366357,
                      update_time_ms: 1660507366357,
                      status: 'open',
                      currency_pair: 'SHIB_USDT',
                      type: 'limit',
                      account: 'spot',
                      side: 'sell',
                      amount: '1000000',
                      price: '0.00003',
                      time_in_force: 'gtc',
                      iceberg: '0',
                      left: '1000000',
                      fill_price: '0',
                      filled_total: '0',
                      fee: '0',
                      fee_currency: 'USDT',
                      point_fee: '0',
                      gt_fee: '0',
                      gt_discount: false,
                      rebated_fee: '0',
                      rebated_fee_currency: 'SHIB'
                  }
          ]

    Null Param

     [ { currency_pair: 'SHIB_USDT', total: 1, orders: [ [Object] ] } ]  
     ```
    
    
  • Cancel Order

         client.cancelOrderor(190597614648, 'SHIB_USDT').then(async res => {
           console.log(res)
         });

    Result:

        {
                id: '190597614648',
                text: 'apiv4',
                create_time: '1660507366',
                update_time: '1660509931',
                create_time_ms: 1660507366350,
                update_time_ms: 1660509931032,
                status: 'cancelled',
                currency_pair: 'SHIB_USDT',
                type: 'limit',
                account: 'spot',
                side: 'sell',
                amount: '1000000',
                price: '0.00003',
                time_in_force: 'gtc',
                iceberg: '0',
                left: '1000000',
                fill_price: '0',
                filled_total: '0',
                fee: '0',
                fee_currency: 'USDT',
                point_fee: '0',
                gt_fee: '0',
                gt_discount: false,
                rebated_fee: '0',
                rebated_fee_currency: 'SHIB'
             }
  • Public Methods

        client.pairs('SHIB_USDT').then(async res => {
         console.log(res)
       }) 
       client.trades('SHIB_USDT').then(async res => {
        console.log(res)
      }) 
       client.tickers('SHIB_USDT').then(async res => {
        console.log(res)
      }) 
       client.order_book('SHIB_USDT').then(async res => {
        console.log(res)
      }) 
  • candlesticks

    • @param {*} currency_pair
    • @param {*} interval interval 10s interval 1m interval 5m interval 15m interval 30m interval 1h interval 4h interval 8h interval 1d interval 7d interval 30d

client.candlesticks().then(async res=>{
      console.log(res)  
      }); 

Result:

        [
          [
              '1660829400',
              '2068154.5862748175',
              '23451.21',
              '23518.9',
              '23439.57',
              '23518.9',
              '88.077584055'
          ]
      ] 
  • currencies


client.currencies().then(async res=>{
      console.log(res)  
      }); 

Result:

  • @param {*} currency
     {
      currency: 'BTC',
      delisted: false,
      withdraw_disabled: false,
      withdraw_delayed: false,
      deposit_disabled: false,
      trade_disabled: false,
      chain: 'BTC'
      }
currency param is null
  [
    {
      currency: 'BTC',
      delisted: false,
      withdraw_disabled: false,
      withdraw_delayed: false,
      deposit_disabled: false,
      trade_disabled: false,
      chain: 'BTC'
      }  
     ]