INTERFACE
Account
link GraphQL Schema definition
- interface Account {
- # Public key that uniquely identifies the account
- : String!
- # Thresholds for the account
- : Thresholds
- # Asset balances for the account
- : [Balance]
- # Signers for the account
- : [Signer]
- # Accounts may optionally have a home domain specified. This allows an account to
- # specify where is the main provider for that account.
- : String
- # Flags for the account
- : Flags
- }