OBJECT

ExchangeSubWallet

link GraphQL Schema definition

  • type ExchangeSubWallet implements SubWallet {
  • # subWallet address
  • address: String
  • # Unique id for the subWallet. String format of the subWalletId (id/type/index)
  • id: String! @deprecated( reason: "use subWalletId" )
  • subWalletId: String!
  • # The name of the subWallet
  • name: String!
  • # Creation time stamp (ISO 8601 UTC date time):
  • createdAt: String!
  • # Modified time stamp (ISO 8601 UTC date time):
  • updatedAt: String!
  • # Wallet Type
  • walletType: WalletType!
  • # Transaction connection (see supported-assets docs for available assetSymbols)
  • #
  • # Arguments
  • # limit:
  • # nextToken:
  • # assetSymbols:
  • # address:
  • transactions(
  • limit: Int,
  • nextToken: String,
  • assetSymbols: [String],
  • address: String
  • ): TransactionConnection!
  • # Name of the exchange if it's an exchange subWallet
  • exchangeName: String
  • # Status of the exchange subWallet
  • status: ExchangeSubWalletStatus
  • # List of token assets with balances associated with the subWallet (ETH + ERC20 if
  • # Ethereum else BTC on Bitcoin)
  • # NOTE: pagination is not implemented yet - limit and nextToken are currently
  • # ignored
  • #
  • # Arguments
  • # limit:
  • # nextToken:
  • balances(limit: Int, nextToken: String): BalanceConnection!
  • # All the wallets that this wallet can send to for each supported asset.
  • #
  • # Arguments
  • # asset:
  • allowedDestinations(asset: AssetSymbol): [AllowedDestinationsResponse!]!
  • # Users transactions in csv string, csv will be sent to a registered email,
  • # optionally can pass asset
  • #
  • # Arguments
  • # assetSymbols:
  • # toDate:
  • # fromDate:
  • # count:
  • requestCsvTransactions(
  • assetSymbols: [String],
  • toDate: String,
  • fromDate: String!,
  • count: Int
  • ): RequestTransactionsCsv @deprecated( reason: "use requestCsvTransactions mutation" )
  • }

link Require by

This element is not required by anyone