pub trait InterceptingExtT {
// Provided method
fn intercept_call(
&self,
_contract_address: Vec<u8>,
_is_call: bool,
_input_data: Vec<u8>
) -> Vec<u8> ⓘ { ... }
}
Expand description
This trait describes a runtime extension that can be used to intercept contract calls.