Skip to content

Commit

Permalink
Merge pull request #161 from starkware-libs/trace_fixes
Browse files Browse the repository at this point in the history
Add state_diff to L1_HANDLER and DELEGATE call type (#161)
  • Loading branch information
ArielElp committed Nov 6, 2023
2 parents 5a90e1d + 9f90bf0 commit a08d7ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion api/starknet_trace_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,11 @@
"description": "the trace of the __execute__ call or constructor call, depending on the transaction type (none for declare transactions)",
"$ref": "#/components/schemas/FUNCTION_INVOCATION"
},
"state_diff": {
"title": "state_diff",
"description": "the state diffs induced by the transaction",
"$ref": "#/components/schemas/STATE_DIFF"
},
"type": {
"title": "Type",
"type": "string",
Expand All @@ -288,6 +293,7 @@
},
"required": [
"function_invocation",
"state_diff",
"type"
]
}
Expand Down Expand Up @@ -386,7 +392,8 @@
"type": "string",
"enum": [
"LIBRARY_CALL",
"CALL"
"CALL",
"DELEGATE"
]
},
"ORDERED_EVENT": {
Expand Down

0 comments on commit a08d7ca

Please sign in to comment.