pub trait IntoVMQuery {
type VMQuery;
// Required method
fn into_vm_query(self) -> Self::VMQuery;
}
Expand description
Converts a ContractCall
into a scenario object that encodes a SC query.
pub trait IntoVMQuery {
type VMQuery;
// Required method
fn into_vm_query(self) -> Self::VMQuery;
}
Converts a ContractCall
into a scenario object that encodes a SC query.