From 9f90bf05f99ad4faebfb15ec0d87c81bb93e6e29 Mon Sep 17 00:00:00 2001 From: Ariel Elperin Date: Sun, 5 Nov 2023 17:41:28 +0200 Subject: [PATCH] trace_minor_fixes --- api/starknet_trace_api_openrpc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/api/starknet_trace_api_openrpc.json b/api/starknet_trace_api_openrpc.json index 48193a0..e5b2520 100644 --- a/api/starknet_trace_api_openrpc.json +++ b/api/starknet_trace_api_openrpc.json @@ -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", @@ -288,6 +293,7 @@ }, "required": [ "function_invocation", + "state_diff", "type" ] } @@ -386,7 +392,8 @@ "type": "string", "enum": [ "LIBRARY_CALL", - "CALL" + "CALL", + "DELEGATE" ] }, "ORDERED_EVENT": {