pub trait ExecutionState: StorageView + SuiResolver {
    // Required methods
    fn as_sui_resolver(&self) -> &dyn SuiResolver;
    fn as_child_resolver(&self) -> &dyn ChildObjectResolver;
}
Expand description

Interface with the store necessary to execute a programmable transaction

Required Methods§

Implementors§