TableDeltaResponse

Type TableDeltaResponse

Properties

type
required
String     The transaction_lifecycle string
data
required
TableDelta     The change operation from a table, navigating forks with the step element.

Example Payload

{
  "type": "table_delta",
  "req_id": "your-request-id",
  "data": {
    "block_num": 123,
    "step": "new",
    "dbop": {
      "op": "ins",
      "old": {},
      "new": {}
    }
  }
}