Struct fuels_programs::contract::ContractCallHandler
source · pub struct ContractCallHandler<D> {
pub contract_call: ContractCall,
pub tx_parameters: TxParameters,
pub wallet: WalletUnlocked,
pub provider: Provider,
pub datatype: PhantomData<D>,
pub log_decoder: LogDecoder,
}Expand description
Helper that handles submitting a call to a client and formatting the response
Fields§
§contract_call: ContractCall§tx_parameters: TxParameters§wallet: WalletUnlocked§provider: Provider§datatype: PhantomData<D>§log_decoder: LogDecoderImplementations§
source§impl<D> ContractCallHandler<D>where
D: Tokenizable + Debug,
impl<D> ContractCallHandler<D>where
D: Tokenizable + Debug,
sourcepub fn set_contract_ids(self, contract_ids: &[Bech32ContractId]) -> Self
pub fn set_contract_ids(self, contract_ids: &[Bech32ContractId]) -> Self
Sets external contracts as dependencies to this contract’s call.
Effectively, this will be used to create fuel_tx::Input::Contract/fuel_tx::Output::Contract
pairs and set them into the transaction. Note that this is a builder
method, i.e. use it as a chain:
my_contract_instance.my_method(...).set_contract_ids(&[another_contract_id]).call()sourcepub fn set_contracts(self, contracts: &[&dyn SettableContract]) -> Self
pub fn set_contracts(self, contracts: &[&dyn SettableContract]) -> Self
Sets external contract instances as dependencies to this contract’s call.
Effectively, this will be used to: merge LogDecoders and create
fuel_tx::Input::Contract/fuel_tx::Output::Contract pairs and set them into the transaction.
Note that this is a builder method, i.e. use it as a chain:
my_contract_instance.my_method(...).set_contracts(&[another_contract_instance]).call()sourcepub fn add_custom_asset(
self,
asset_id: AssetId,
amount: u64,
to: Option<Bech32Address>
) -> Self
pub fn add_custom_asset(
self,
asset_id: AssetId,
amount: u64,
to: Option<Bech32Address>
) -> Self
Adds a custom asset_id with its amount and an optional address to be used for
generating outputs to this contract’s call.
Parameters
asset_id: The unique identifier of the asset being added.amount: The amount of the asset being added.address: The optional wallet address that the output amount will be sent to. If not provided, the asset will be sent to the users wallet address. Note that this is a builder method, i.e. use it as a chain:
let asset_id = AssetId::from([3u8; 32]);
let amount = 5000;
my_contract_instance.my_method(...).add_custom_asset(asset_id, amount, None).call()sourcepub fn append_contract(self, contract_id: Bech32ContractId) -> Self
pub fn append_contract(self, contract_id: Bech32ContractId) -> Self
Appends additional external contracts as dependencies to this contract’s
call. Effectively, this will be used to create additional
fuel_tx::Input::Contract/fuel_tx::Output::Contract
pairs and set them into the transaction. Note that this is a builder
method, i.e. use it as a chain:
my_contract_instance.my_method(...).append_contracts(additional_contract_id).call()sourcepub fn tx_params(self, params: TxParameters) -> Self
pub fn tx_params(self, params: TxParameters) -> Self
Sets the transaction parameters for a given transaction. Note that this is a builder method, i.e. use it as a chain:
let params = TxParameters { gas_price: 100, gas_limit: 1000000 };
my_contract_instance.my_method(...).tx_params(params).call()sourcepub fn call_params(self, params: CallParameters) -> Self
pub fn call_params(self, params: CallParameters) -> Self
Sets the call parameters for a given contract call. Note that this is a builder method, i.e. use it as a chain:
let params = CallParameters { amount: 1, asset_id: BASE_ASSET_ID };
my_contract_instance.my_method(...).call_params(params).call()sourcepub fn append_variable_outputs(self, num: u64) -> Self
pub fn append_variable_outputs(self, num: u64) -> Self
Appends num fuel_tx::Output::Variables to the transaction.
Note that this is a builder method, i.e. use it as a chain:
my_contract_instance.my_method(...).add_variable_outputs(num).call()sourcepub fn append_message_outputs(self, num: u64) -> Self
pub fn append_message_outputs(self, num: u64) -> Self
Appends num fuel_tx::Output::Messages to the transaction.
Note that this is a builder method, i.e. use it as a chain:
my_contract_instance.my_method(...).add_message_outputs(num).call()sourcepub async fn get_executable_call(&self) -> Result<ExecutableFuelCall>
pub async fn get_executable_call(&self) -> Result<ExecutableFuelCall>
Returns the script that executes the contract call
sourcepub async fn call(self) -> Result<FuelCallResponse<D>>
pub async fn call(self) -> Result<FuelCallResponse<D>>
Call a contract’s method on the node, in a state-modifying manner.
sourcepub async fn simulate(self) -> Result<FuelCallResponse<D>>
pub async fn simulate(self) -> Result<FuelCallResponse<D>>
Call a contract’s method on the node, in a simulated manner, meaning the state of the
blockchain is not modified but simulated.
It is the same as the call method because the API is more user-friendly this way.
sourcepub async fn estimate_tx_dependencies(
self,
max_attempts: Option<u64>
) -> Result<Self>
pub async fn estimate_tx_dependencies(
self,
max_attempts: Option<u64>
) -> Result<Self>
Simulates the call and attempts to resolve missing tx dependencies. Forwards the received error if it cannot be fixed.
sourcepub async fn estimate_transaction_cost(
&self,
tolerance: Option<f64>
) -> Result<TransactionCost>
pub async fn estimate_transaction_cost(
&self,
tolerance: Option<f64>
) -> Result<TransactionCost>
Get a contract’s estimated cost
sourcepub fn get_response(&self, receipts: Vec<Receipt>) -> Result<FuelCallResponse<D>>
pub fn get_response(&self, receipts: Vec<Receipt>) -> Result<FuelCallResponse<D>>
Create a FuelCallResponse from call receipts
Trait Implementations§
Auto Trait Implementations§
impl<D> RefUnwindSafe for ContractCallHandler<D>where
D: RefUnwindSafe,
impl<D> Send for ContractCallHandler<D>where
D: Send,
impl<D> Sync for ContractCallHandler<D>where
D: Sync,
impl<D> Unpin for ContractCallHandler<D>where
D: Unpin,
impl<D> UnwindSafe for ContractCallHandler<D>where
D: UnwindSafe,
Blanket Implementations§
source§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere
T: Any + Debug,
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Any.