API Docs
Wallets & Payment
Get Wallet

Get Wallet

Get wallet entity informations given a username and a coin.

Example

query getWallet($uname: String!, $coinId: CurrencyProfileName!) {
  getWallet(uname: $uname, coinId: $coinId) {
    id
    rowId
    address
    paymentIntervalHours
    paymentThreshold
    currencyProfileName
    paymentMode
    weeklyIntervalPaymentFrequency
    isFrozen
    pendingBalance
    remainingFreezingTime
  }
}

Response

{
  "data": {
    "getWallet": {
      "id": "",
      "address": "your_wallet_address",
      "paymentIntervalHours": 1,
      "paymentThreshold": 0.002,
      "currencyProfileName": "BTC",
      "isFrozen": false,
      "pendingBalance": "",
      "remainingFreezingTime": 0
    }
  }
}

Arguments

  • uname (String!)

  • coinId (CurrencyProfileName!)

    enum CurrencyProfileName {
      ARRR
      BTC
      DASH
      DCR
      KMD
      LBC
      SC
      SCP
      ZEC
      ZEN
      USD
      TBTC
      ETH
      TETH
      USDT
    }

Type

  • Wallet (Wallet) The public wallet type exposed to end users