OBJECT

Account

Deprecated as of 31st March 2020 along with UserWallet query

link GraphQL Schema definition

  • type Account {
  • # The address of the account (wallet)
  • address: String!
  • # The name of the account (wallet)
  • accountName: String!
  • # Unique id for the specific path / address in the HD Wallet
  • assetGuid: String!
  • # Public key of the account (wallet)
  • accountPublicKey: String!
  • # Unique id for the HD wallet
  • walletId: String!
  • # Name of the asset (i.e BTC / ETH)
  • assetName: String!
  • # Public key of the device related to the wallet
  • devicePublicKey: String!
  • # Signature of the HSM over the policy
  • policyHSMProvenanceSignature: String!
  • # Signature of the HSM over the account (wallet)
  • accountHSMProvenanceSignature: String!
  • # The specific path in the HD wallet
  • accountWalletPath: [String]!
  • # Policy of wallet
  • policy: Policy!
  • #  The version of the recoverer's policy
  • recoverersVersion: Int!
  • # Creation time stamp
  • creationTimestamp: Int!
  • # Modified time stamp
  • modifiedTimestamp: Int!
  • }