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
| `[test name]` | The path to the test being executed, using the Cairo module structure. Indicates which test case produced this trace. |
77
+
| `[selector]` | The name of the contract function being called. The structure shows nested calls when one function triggers another. |
78
+
| `[contract name]` | The name of the contract where the selector (function) was invoked. Helps trace calls across contracts. |
79
+
| `[entry point type]` | (In detailed view) Type of entry point used: External, Constructor, L1Handler. Useful to differentiate the context in which the call is executed. |
80
+
| `[calldata]` | (In standard view and above) The arguments passed into the function call. |
81
+
| `[storage address]` | (In detailed view) The storage address of the specific contract instance called. Helps identify which deployment is used if you're testing multiple. |
82
+
|`[caller address]`| (In detailed view) The address of the account or contract that made this call. Important to identify who triggered the function. |
83
+
|`[call type]`| (In detailed view) Call, Delegate. Describes how the functionis being invoked. |
84
+
|`[call result]`| (In standard view and above) The return value of the call, success or panic. |
85
+
86
+
87
+
88
+
## Backtrace
89
+
90
+
### Prerequisites
4
91
5
92
Backtrace feature relies on debug information provided by Scarb. To generate the necessary debug information, you need
6
93
to have:
@@ -9,14 +96,15 @@ to have:
9
96
2. `Scarb.toml` file with the following Cairo compiler configuration:
10
97
11
98
> 📝 **Note**
12
-
>
13
-
> If you are using `scarb nightly-2025-03-27` there is a way to improve backtrace for panic in contracts if you set `panic-backtrace` to true in Scarb.toml
99
+
>
100
+
> If you are using `scarb nightly-2025-03-27` or later there is a way to improve backtrace forpanicin contracts if
0 commit comments