INTERFACE

Account

link GraphQL Schema definition

  • interface Account {
  • # Public key that uniquely identifies the account
  • public_key: String!
  • # Thresholds for the account
  • thresholds: Thresholds
  • # Asset balances for the account
  • balances: [Balance]
  • # Signers for the account
  • signers: [Signer]
  • # Accounts may optionally have a home domain specified. This allows an account to
  • # specify where is the main provider for that account.
  • home_domain: String
  • # Flags for the account
  • flags: Flags
  • }