OBJECT

AccountValues

Represents a current account state, which is broadcasted to subscribers on account's update

link GraphQL Schema definition

  • type AccountValues {
  • # Account's [public
  • # key](https://www.stellar.org/developers/guides/concepts/accounts.html#account-id)
  • id: AccountID!
  • # The current transaction sequence number of the account
  • sequenceNumber: String!
  • # Number of other
  • # [entries](https://www.stellar.org/developers/guides/concepts/ledger.html#ledger-entries)
  • # the account owns
  • numSubentries: Int!
  • # Account designated to receive
  • # [inflation](https://www.stellar.org/developers/guides/concepts/inflation.html)
  • inflationDestination: Account
  • # A domain name that can be added to the account. [More
  • # info](https://www.stellar.org/developers/guides/concepts/accounts.html#home-domain)
  • homeDomain: String
  • # Thresholds for different access levels this account set
  • thresholds: AccountThresholds!
  • # [Signers](https://www.stellar.org/developers/guides/concepts/multi-sig.html) of
  • # the account
  • signers: [Signer]
  • }