Type alias HistoricalAccountBalance

HistoricalAccountBalance: {
    __typename?: "HistoricalAccountBalance";
    accountId: Scalars["String"];
    assetId: Scalars["String"];
    balance: Scalars["BigInt"];
    blockNumber: Scalars["Int"];
    dBalance: Scalars["BigInt"];
    event: Scalars["String"];
    id: Scalars["String"];
    timestamp: Scalars["DateTime"];
}

Balance history of a particular asset in an account. Records all transactions associated with the account.

Type declaration

  • Optional __typename?: "HistoricalAccountBalance"
  • accountId: Scalars["String"]

    Account address

  • assetId: Scalars["String"]

    Zeitgeist's identifier for asset

  • balance: Scalars["BigInt"]

    Balance of the asset

  • blockNumber: Scalars["Int"]

    Height of the block

  • dBalance: Scalars["BigInt"]

    Balance difference

  • event: Scalars["String"]

    Event method which initiated this change

  • id: Scalars["String"]

    Unique identifier of the object

  • timestamp: Scalars["DateTime"]

    Timestamp of the block

Generated using TypeDoc