Unparsed Account Updates
Whenever a Solana account is modified, this stream emits an event with the new content of the account. If multiple updates occur within a single block this stream only includes the last update.
Data source: UnparsedAccountUpdate
Name | DataType | Description |
---|---|---|
blockId | number | Numeric identifier of a block describing the slot that the block was produced in. |
transactionId | string | First signature in a transaction, which can be used to uniquely identify the transaction across the whole ledger. This will be null if the account update was not caused by a transaction. |
accountAddress | string | Address (pubkey) of the account being updated. |
accountOwner | string | Address of the owner of the account being updated. |
lamports | number | The lamports held by the account after the update. |
executable | bool | This account's data contains a loaded program. |
rentEpoch | number | The epoch at which this account will next owe rent. |
data | string | The raw account data associated with the account after the update, encoded in Base64. |
Webhooks
Webhooks will deliver a JSON array of objects matching the above schema
Updated over 1 year ago