pub struct IAMB<M>(/* private fields */);
Implementations§
Source§impl<M: Middleware> IAMB<M>
impl<M: Middleware> IAMB<M>
Sourcepub fn new<T: Into<Address>>(address: T, client: Arc<M>) -> Self
pub fn new<T: Into<Address>>(address: T, client: Arc<M>) -> Self
Creates a new contract instance with the specified ethers
client at
address
. The contract derefs to a ethers::Contract
object.
Sourcepub fn destination_chain_id(&self) -> ContractCall<M, U256>
pub fn destination_chain_id(&self) -> ContractCall<M, U256>
Calls the contract’s destinationChainId
(0xb0750611) function
Sourcepub fn failed_message_data_hash(
&self,
message_id: [u8; 32],
) -> ContractCall<M, [u8; 32]>
pub fn failed_message_data_hash( &self, message_id: [u8; 32], ) -> ContractCall<M, [u8; 32]>
Calls the contract’s failedMessageDataHash
(0xe37c3289) function
Sourcepub fn failed_message_receiver(
&self,
message_id: [u8; 32],
) -> ContractCall<M, Address>
pub fn failed_message_receiver( &self, message_id: [u8; 32], ) -> ContractCall<M, Address>
Calls the contract’s failedMessageReceiver
(0x3f9a8e7e) function
Sourcepub fn failed_message_sender(
&self,
message_id: [u8; 32],
) -> ContractCall<M, Address>
pub fn failed_message_sender( &self, message_id: [u8; 32], ) -> ContractCall<M, Address>
Calls the contract’s failedMessageSender
(0x4a610b04) function
Sourcepub fn max_gas_per_tx(&self) -> ContractCall<M, U256>
pub fn max_gas_per_tx(&self) -> ContractCall<M, U256>
Calls the contract’s maxGasPerTx
(0xe5789d03) function
Sourcepub fn message_call_status(&self, message_id: [u8; 32]) -> ContractCall<M, bool>
pub fn message_call_status(&self, message_id: [u8; 32]) -> ContractCall<M, bool>
Calls the contract’s messageCallStatus
(0xcb08a10c) function
Sourcepub fn message_id(&self) -> ContractCall<M, [u8; 32]>
pub fn message_id(&self) -> ContractCall<M, [u8; 32]>
Calls the contract’s messageId
(0x669f618b) function
Sourcepub fn message_sender(&self) -> ContractCall<M, Address>
pub fn message_sender(&self) -> ContractCall<M, Address>
Calls the contract’s messageSender
(0xd67bdd25) function
Sourcepub fn message_source_chain_id(&self) -> ContractCall<M, [u8; 32]>
pub fn message_source_chain_id(&self) -> ContractCall<M, [u8; 32]>
Calls the contract’s messageSourceChainId
(0x9e307dff) function
Sourcepub fn require_to_confirm_message(
&self,
contract: Address,
data: Bytes,
gas: U256,
) -> ContractCall<M, [u8; 32]>
pub fn require_to_confirm_message( &self, contract: Address, data: Bytes, gas: U256, ) -> ContractCall<M, [u8; 32]>
Calls the contract’s requireToConfirmMessage
(0x94643f71) function
Sourcepub fn require_to_pass_message(
&self,
contract: Address,
data: Bytes,
gas: U256,
) -> ContractCall<M, [u8; 32]>
pub fn require_to_pass_message( &self, contract: Address, data: Bytes, gas: U256, ) -> ContractCall<M, [u8; 32]>
Calls the contract’s requireToPassMessage
(0xdc8601b3) function
Sourcepub fn source_chain_id(&self) -> ContractCall<M, U256>
pub fn source_chain_id(&self) -> ContractCall<M, U256>
Calls the contract’s sourceChainId
(0x1544298e) function
Sourcepub fn transaction_hash(&self) -> ContractCall<M, [u8; 32]>
pub fn transaction_hash(&self) -> ContractCall<M, [u8; 32]>
Calls the contract’s transactionHash
(0x0ac1c313) function
Sourcepub fn affirmation_completed_filter(
&self,
) -> Event<Arc<M>, M, AffirmationCompletedFilter>
pub fn affirmation_completed_filter( &self, ) -> Event<Arc<M>, M, AffirmationCompletedFilter>
Gets the contract’s AffirmationCompleted
event
Sourcepub fn relayed_message_filter(&self) -> Event<Arc<M>, M, RelayedMessageFilter>
pub fn relayed_message_filter(&self) -> Event<Arc<M>, M, RelayedMessageFilter>
Gets the contract’s RelayedMessage
event
Sourcepub fn user_request_for_affirmation_filter(
&self,
) -> Event<Arc<M>, M, UserRequestForAffirmationFilter>
pub fn user_request_for_affirmation_filter( &self, ) -> Event<Arc<M>, M, UserRequestForAffirmationFilter>
Gets the contract’s UserRequestForAffirmation
event
Sourcepub fn user_request_for_signature_filter(
&self,
) -> Event<Arc<M>, M, UserRequestForSignatureFilter>
pub fn user_request_for_signature_filter( &self, ) -> Event<Arc<M>, M, UserRequestForSignatureFilter>
Gets the contract’s UserRequestForSignature
event
Methods from Deref<Target = Contract<M>>§
Sourcepub fn client_ref(&self) -> &M
pub fn client_ref(&self) -> &M
Returns a reference to the contract’s client.
Sourcepub fn connect<N>(&self, client: Arc<N>) -> ContractInstance<Arc<N>, N>where
N: Middleware,
pub fn connect<N>(&self, client: Arc<N>) -> ContractInstance<Arc<N>, N>where
N: Middleware,
Returns a new contract instance using the provided client
Clones self
internally
Sourcepub fn connect_with<C, N>(&self, client: C) -> ContractInstance<C, N>where
C: Borrow<N>,
pub fn connect_with<C, N>(&self, client: C) -> ContractInstance<C, N>where
C: Borrow<N>,
Returns a new contract instance using the provided client
Clones self
internally
Sourcepub fn event_with_filter<D>(&self, filter: Filter) -> Event<B, M, D>
pub fn event_with_filter<D>(&self, filter: Filter) -> Event<B, M, D>
Returns an Event
builder with the provided filter.
Sourcepub fn event<D>(&self) -> Event<B, M, D>where
D: EthEvent,
pub fn event<D>(&self) -> Event<B, M, D>where
D: EthEvent,
Returns an Event
builder for the provided event.
Sourcepub fn event_for_name<D>(&self, name: &str) -> Result<Event<B, M, D>, Error>
pub fn event_for_name<D>(&self, name: &str) -> Result<Event<B, M, D>, Error>
Returns an Event
builder with the provided name.
Sourcepub fn method_hash<T, D>(
&self,
signature: [u8; 4],
args: T,
) -> Result<FunctionCall<B, M, D>, AbiError>where
T: Tokenize,
D: Detokenize,
pub fn method_hash<T, D>(
&self,
signature: [u8; 4],
args: T,
) -> Result<FunctionCall<B, M, D>, AbiError>where
T: Tokenize,
D: Detokenize,
Returns a transaction builder for the selected function signature. This should be preferred if there are overloaded functions in your smart contract
Sourcepub fn method<T, D>(
&self,
name: &str,
args: T,
) -> Result<FunctionCall<B, M, D>, AbiError>where
T: Tokenize,
D: Detokenize,
pub fn method<T, D>(
&self,
name: &str,
args: T,
) -> Result<FunctionCall<B, M, D>, AbiError>where
T: Tokenize,
D: Detokenize,
Returns a transaction builder for the provided function name. If there are
multiple functions with the same name due to overloading, consider using
the method_hash
method instead, since this will use the first match.
Sourcepub fn at<T>(&self, address: T) -> ContractInstance<B, M>
pub fn at<T>(&self, address: T) -> ContractInstance<B, M>
Returns a new contract instance at address
.
Clones self
internally
Methods from Deref<Target = BaseContract>§
Sourcepub fn encode<T>(&self, name: &str, args: T) -> Result<Bytes, AbiError>where
T: Tokenize,
pub fn encode<T>(&self, name: &str, args: T) -> Result<Bytes, AbiError>where
T: Tokenize,
Returns the ABI encoded data for the provided function and arguments
If the function exists multiple times and you want to use one of the overloaded
versions, consider using encode_with_selector
Sourcepub fn encode_with_selector<T>(
&self,
signature: [u8; 4],
args: T,
) -> Result<Bytes, AbiError>where
T: Tokenize,
pub fn encode_with_selector<T>(
&self,
signature: [u8; 4],
args: T,
) -> Result<Bytes, AbiError>where
T: Tokenize,
Returns the ABI encoded data for the provided function selector and arguments
Sourcepub fn decode<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
pub fn decode<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
Decodes the provided ABI encoded function arguments with the selected function name.
If the function exists multiple times and you want to use one of the overloaded
versions, consider using decode_with_selector
Sourcepub fn decode_raw<T>(
&self,
name: &str,
bytes: T,
) -> Result<Vec<Token>, AbiError>
pub fn decode_raw<T>( &self, name: &str, bytes: T, ) -> Result<Vec<Token>, AbiError>
Decodes the provided ABI encoded function arguments with the selected function name.
If the function exists multiple times and you want to use one of the overloaded
versions, consider using decode_with_selector
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.
Sourcepub fn decode_output<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
pub fn decode_output<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
Decodes the provided ABI encoded function output with the selected function name.
If the function exists multiple times and you want to use one of the overloaded
versions, consider using decode_with_selector
Sourcepub fn decode_output_raw<T>(
&self,
name: &str,
bytes: T,
) -> Result<Vec<Token>, AbiError>
pub fn decode_output_raw<T>( &self, name: &str, bytes: T, ) -> Result<Vec<Token>, AbiError>
Decodes the provided ABI encoded function output with the selected function name.
If the function exists multiple times and you want to use one of the overloaded
versions, consider using decode_with_selector
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.
Sourcepub fn decode_event<D>(
&self,
name: &str,
topics: Vec<H256>,
data: Bytes,
) -> Result<D, AbiError>where
D: Detokenize,
pub fn decode_event<D>(
&self,
name: &str,
topics: Vec<H256>,
data: Bytes,
) -> Result<D, AbiError>where
D: Detokenize,
Decodes for a given event name, given the log.topics
and
log.data
fields from the transaction receipt
Sourcepub fn decode_event_raw(
&self,
name: &str,
topics: Vec<H256>,
data: Bytes,
) -> Result<Vec<Token>, AbiError>
pub fn decode_event_raw( &self, name: &str, topics: Vec<H256>, data: Bytes, ) -> Result<Vec<Token>, AbiError>
Decodes for a given event name, given the log.topics
and
log.data
fields from the transaction receipt
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.
Sourcepub fn decode_with_selector_raw<T>(
&self,
signature: [u8; 4],
bytes: T,
) -> Result<Vec<Token>, AbiError>
pub fn decode_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T, ) -> Result<Vec<Token>, AbiError>
Decodes the provided ABI encoded bytes with the selected function selector
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.
Sourcepub fn decode_with_selector<D, T>(
&self,
signature: [u8; 4],
bytes: T,
) -> Result<D, AbiError>
pub fn decode_with_selector<D, T>( &self, signature: [u8; 4], bytes: T, ) -> Result<D, AbiError>
Decodes the provided ABI encoded bytes with the selected function selector
Sourcepub fn decode_input_raw<T>(&self, bytes: T) -> Result<Vec<Token>, AbiError>
pub fn decode_input_raw<T>(&self, bytes: T) -> Result<Vec<Token>, AbiError>
Decodes the provided ABI encoded input bytes
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.
Sourcepub fn decode_input<D, T>(&self, bytes: T) -> Result<D, AbiError>
pub fn decode_input<D, T>(&self, bytes: T) -> Result<D, AbiError>
Decodes the provided ABI encoded input bytes
Sourcepub fn decode_output_with_selector<D, T>(
&self,
signature: [u8; 4],
bytes: T,
) -> Result<D, AbiError>
pub fn decode_output_with_selector<D, T>( &self, signature: [u8; 4], bytes: T, ) -> Result<D, AbiError>
Decode the provided ABI encoded bytes as the output of the provided function selector
Sourcepub fn decode_output_with_selector_raw<T>(
&self,
signature: [u8; 4],
bytes: T,
) -> Result<Vec<Token>, AbiError>
pub fn decode_output_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T, ) -> Result<Vec<Token>, AbiError>
Decodes the provided ABI encoded bytes with the selected function selector
Returns a Token
vector, which lets you decode function arguments dynamically
without knowing the return type.