INTERFACE
SubWallet
link GraphQL Schema definition
- interface SubWallet {
- # SubWallet address
- String :
- # Unique id for the subWallet. String format of the subWalletId (id/type/index)
- String! @deprecated( reason: "use subWalletId" ) :
- String! :
- # name of the subWallet
- String! :
- # Creation time stamp (ISO 8601 UTC time)
- String! :
- # Modified time stamp (ISO 8601 UTC time)
- String! :
- # SubWallet Type
- WalletType! :
- # Transaction connection
- #
- # Arguments
- # limit:
- # nextToken:
- # assetSymbols:
- # address:
- (
- Int, :
- String, :
- String], : [
- String :
- ): TransactionConnection!
- # 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:
- Int, : String): BalanceConnection! ( :
- # Users transactions in csv string, csv will be sent to a registered email,
- # optionally can pass asset
- #
- # Arguments
- # assetSymbols:
- # toDate:
- # fromDate:
- # count:
- (
- String], : [
- String, :
- String!, :
- Int :
- ): RequestTransactionsCsv @deprecated( reason: "use requestCsvTransactions mutation" )
- }