Trait t3rn_primitives::threevm::Contracts
source · pub trait Contracts<AccountId, Balance, EventRecord> {
type Outcome;
// Required method
fn call(
origin: AccountId,
dest: AccountId,
value: Balance,
gas_limit: Weight,
storage_deposit_limit: Option<Balance>,
data: Vec<u8>,
debug: bool
) -> Self::Outcome;
}