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)
- : AccountID!
- # The current transaction sequence number of the account
- : String!
- # Number of other
- # [entries](https://www.stellar.org/developers/guides/concepts/ledger.html#ledger-entries)
- # the account owns
- : Int!
- # Account designated to receive
- # [inflation](https://www.stellar.org/developers/guides/concepts/inflation.html)
- : Account
- # A domain name that can be added to the account. [More
- # info](https://www.stellar.org/developers/guides/concepts/accounts.html#home-domain)
- : String
- # Thresholds for different access levels this account set
- : AccountThresholds!
- # [Signers](https://www.stellar.org/developers/guides/concepts/multi-sig.html) of
- # the account
- : [Signer]
- }