OBJECT
BlockchainSubWallet
link GraphQL Schema definition
- type BlockchainSubWallet implements SubWallet {
- # Convenience property showing the current address. For enhanced security,
- # generate on the address on the client from the subWallet public key after
- # verifying the signature
- String :
- # Unique id for the subWallet. String format of the subWalletId (id/type/index)
- String! @deprecated( reason: "use subWalletId" ) :
- String! :
- # The name of the subWallet
- String! :
- # Creation time stamp (ISO 8601 UTC time)
- String! :
- # Modified time stamp (ISO 8601 UTC time)
- String! :
- # Wallet Type
- WalletType! :
- # The public key of the subWallet - used to generate the address on the client
- # side
- String! :
- # The chain of the subWallet
- Chain! :
- # The TrustVault signature over the public key
- String! :
- # Bitcoin Addresses associated with this subWallet
- #
- # Arguments
- # limit:
- # nextToken:
- Int, : String): AddressConnection! ( :
- # Transaction connection (see supported-assets docs for available assetSymbols)
- #
- # 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! ( :
- # The total value of all the tokens associated with the subWallet
- Amount! :
- # 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" )
- }
link Require by
This element is not required by anyone