mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-03 11:53:41 +02:00
docs/messages.md: Update ActionTrace
This commit is contained in:
parent
4f7b899571
commit
547d53a6a2
1 changed files with 37 additions and 9 deletions
|
|
@ -23,12 +23,40 @@ Heartbeat messages are posted to the heartbeat channel periodically.
|
||||||
|
|
||||||
### ActionTrace
|
### ActionTrace
|
||||||
|
|
||||||
| Field | Datatype | Description |
|
| Field | Datatype | Description |
|
||||||
| -------- | -------- | ----------------------------------------------------------------- |
|
| -------------- | ----------------- | ----------------------------------------------------------------- |
|
||||||
| tx_id | string | Transaction ID |
|
| tx_id | string | Transaction ID |
|
||||||
| blocknum | int | Block number where this action trace (and transaction) belongs to |
|
| blocknum | int | Block number where this action trace (and transaction) belongs to |
|
||||||
| receiver | string | Receiver account |
|
| blocktimestamp | time | Block timestamp |
|
||||||
| contract | string | Contract account |
|
| receipt | ActionReceipt | Action receipt |
|
||||||
| action | string | What action was executed on the contract |
|
| receiver | string | Receiver account |
|
||||||
| data | any | Contract specific data (decoded using the contracts abi) |
|
| contract | string | Contract account |
|
||||||
| hex_data | string | Contract specific data (undecoded hex) |
|
| action | string | What action was executed on the contract |
|
||||||
|
| data | any | Contract specific data (decoded using the contracts abi) |
|
||||||
|
| authorization | PermissionLevel[] | Authorization |
|
||||||
|
|
||||||
|
### ActionReceipt
|
||||||
|
|
||||||
|
| Field | Datatype | Description |
|
||||||
|
| --------------- | --------------------- | ------------------ |
|
||||||
|
| receiver | string | Actor account name |
|
||||||
|
| act_digest | string | Action digest |
|
||||||
|
| global_sequence | int | Global sequence |
|
||||||
|
| recv_sequence | int | Receive sequence |
|
||||||
|
| auth_sequence | AccountAuthSequence[] | Auth sequence |
|
||||||
|
| code_sequence | int | Code sequence |
|
||||||
|
| abi_sequence | int | ABI sequence |
|
||||||
|
|
||||||
|
### PermisssionLevel
|
||||||
|
|
||||||
|
| Field | Datatype | Description |
|
||||||
|
| ---------- | -------- | -------------------------------- |
|
||||||
|
| actor | string | Actor account name |
|
||||||
|
| permission | string | Permission (for example: active) |
|
||||||
|
|
||||||
|
### AccountAuthSequence
|
||||||
|
|
||||||
|
| Field | Datatype | Description |
|
||||||
|
| -------- | -------- | ------------ |
|
||||||
|
| account | string | Account name |
|
||||||
|
| sequence | int | Sequence |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue