You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Configuration object for the tracer."
1179
+
"description": "Configuration object for the tracer. Supports two formats: 1) Standard nested format with 'tracer' and 'tracerConfig' properties, 2) Simplified format with opcodeLogger config properties directly at top level (when no explicit 'tracer' is specified, defaults to opcodeLogger)."
1180
1180
}
1181
1181
],
1182
1182
"result": {
@@ -1665,6 +1665,10 @@
1665
1665
},
1666
1666
"disableStorage": {
1667
1667
"type": "boolean"
1668
+
},
1669
+
"fullStorage": {
1670
+
"type": "boolean",
1671
+
"description": "Non-standard parameter sometimes sent by Remix - accepted for compatibility but ignored in implementation"
1668
1672
}
1669
1673
}
1670
1674
},
@@ -1694,6 +1698,22 @@
1694
1698
},
1695
1699
"tracerConfig": {
1696
1700
"$ref": "#/components/schemas/TracerConfig"
1701
+
},
1702
+
"enableMemory": {
1703
+
"type": "boolean",
1704
+
"description": "Top-level opcodeLogger config property. Only valid when no explicit 'tracer' is specified (defaults to opcodeLogger)."
1705
+
},
1706
+
"disableStack": {
1707
+
"type": "boolean",
1708
+
"description": "Top-level opcodeLogger config property. Only valid when no explicit 'tracer' is specified (defaults to opcodeLogger)."
1709
+
},
1710
+
"disableStorage": {
1711
+
"type": "boolean",
1712
+
"description": "Top-level opcodeLogger config property. Only valid when no explicit 'tracer' is specified (defaults to opcodeLogger)."
1713
+
},
1714
+
"fullStorage": {
1715
+
"type": "boolean",
1716
+
"description": "Top-level opcodeLogger config property. Non-standard parameter for Remix compatibility - accepted but ignored. Only valid when no explicit 'tracer' is specified."
0 commit comments