multiversx-sc-snippets 0.65.1

MultiversX framework for building smart contract interaction snippets
Documentation
use multiversx_sc_scenario::{
    ScenarioTxEnv, ScenarioTxEnvData,
    api::StaticApi,
    imports::TxId,
    multiversx_sc::types::{
        H256, ManagedAddress, ManagedBuffer, Tx, TxBaseWithEnv, TxEnv, TxEnvWithTxHash,
    },
    scenario_model::TxExpect,
};
use multiversx_sdk::gateway::GatewayAsyncService;

use crate::InteractorBase;

impl<GatewayProxy> InteractorBase<GatewayProxy>
where
    GatewayProxy: GatewayAsyncService,
{
    pub fn tx(&mut self) -> TxBaseWithEnv<InteractorEnvExec<'_, GatewayProxy>> {
        let data = self.new_env_data();
        let env = InteractorEnvExec { world: self, data };
        Tx::new_with_env(env)
    }
}

/// Environment for executing transactions.
pub struct InteractorEnvExec<'w, GatewayProxy>
where
    GatewayProxy: GatewayAsyncService,
{
    pub world: &'w mut InteractorBase<GatewayProxy>,
    pub data: ScenarioTxEnvData,
}

impl<GatewayProxy> TxEnv for InteractorEnvExec<'_, GatewayProxy>
where
    GatewayProxy: GatewayAsyncService,
{
    type Api = StaticApi;

    type RHExpect = TxExpect;

    fn resolve_sender_address(&self) -> ManagedAddress<Self::Api> {
        panic!("Explicit sender address expected")
    }

    fn default_gas_annotation(&self) -> ManagedBuffer<Self::Api> {
        self.data.default_gas_annotation()
    }

    fn default_gas_value(&self) -> u64 {
        self.data.default_gas_value()
    }
}

impl<GatewayProxy> ScenarioTxEnv for InteractorEnvExec<'_, GatewayProxy>
where
    GatewayProxy: GatewayAsyncService,
{
    fn env_data(&self) -> &ScenarioTxEnvData {
        &self.data
    }
}

impl<GatewayProxy> TxEnvWithTxHash for InteractorEnvExec<'_, GatewayProxy>
where
    GatewayProxy: GatewayAsyncService,
{
    fn set_tx_id(&mut self, tx_id: TxId) {
        self.data.set_tx_id(tx_id);
    }

    fn take_tx_id(&mut self) -> Option<TxId> {
        self.data.take_tx_id()
    }

    fn set_tx_hash(&mut self, tx_hash: H256) {
        self.data.set_tx_hash(tx_hash);
    }

    fn take_tx_hash(&mut self) -> Option<H256> {
        self.data.take_tx_hash()
    }
}