MCPcopy Create free account
hub / github.com/EnsoBuild/temper / SimulationResponse

Class SimulationResponse

src/simulation.rs:46–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
45#[serde(rename_all = "camelCase")]
46pub struct SimulationResponse {
47 pub simulation_id: u64,
48 pub gas_used: u64,
49 pub block_number: u64,
50 pub success: bool,
51 pub trace: Vec<CallTrace>,
52 pub formatted_trace: Option<String>,
53 pub logs: Vec<Log>,
54 pub exit_reason: InstructionResult,
55 pub return_data: Bytes,
56}
57
58#[derive(Debug, Clone, Serialize, Deserialize)]
59#[serde(rename_all = "camelCase")]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected