OBJECT
BlockchainWallet
link GraphQL Schema definition
- type BlockchainWallet implements Wallet {
- # Convenience property showing the current address. For enhanced security,
- # generate on the address on the client from the wallet public key after verifying
- # the signature
- String :
- # Unique id for the HD wallet
- String! :
- # Unique identifier for the sub wallet
- SubWalletId! @deprecated( reason: "use subWalletIdString instead" ) :
- # Unique identifier for the subWallet in string format
- String! :
- # The name of the account (wallet)
- 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 wallet - used to generate the address on the client side
- String! :
- # The chain of the wallet
- Chain! :
- # The TrustVault signature over the public key
- String! :
- # Bitcoin Addresses associated with this wallet
- #
- # Arguments
- # limit:
- # nextToken:
- Int, : String): AddressConnection! ( :
- # Transaction connection
- #
- # Arguments
- # limit:
- # nextToken:
- # assetSymbols:
- # address:
- (
- Int, :
- String, :
- String], : [
- String :
- ): TransactionConnection!
- # List of token assets with balances associated with the wallet (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 wallet
- Amount! :
- }
link Require by
This element is not required by anyone