Struct openzeppelin_rs::IAMB
source · pub struct IAMB<M>(_);
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>>§
pub fn address(&self) -> H160
pub fn address(&self) -> H160
Returns the contract’s address
pub fn abi(&self) -> &Contract
pub fn abi(&self) -> &Contract
Returns a reference to the contract’s ABI.
pub fn client_ref(&self) -> &M
pub fn client_ref(&self) -> &M
Returns a reference to the contract’s client.
pub 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
pub 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
pub fn event_with_filter<D>(&self, filter: Filter) -> Event<B, M, D>where
D: EthLogDecode,
pub fn event_with_filter<D>(&self, filter: Filter) -> Event<B, M, D>where D: EthLogDecode,
Returns an Event
builder with the provided filter.
pub 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.
pub fn event_for_name<D>(&self, name: &str) -> Result<Event<B, M, D>, Error>where
D: EthLogDecode,
pub fn event_for_name<D>(&self, name: &str) -> Result<Event<B, M, D>, Error>where D: EthLogDecode,
Returns an Event
builder with the provided name.
pub 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
pub 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.
Methods from Deref<Target = BaseContract>§
pub 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
pub 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
pub fn decode<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>where
D: Detokenize,
T: AsRef<[u8]>,
pub fn decode<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>where D: Detokenize, T: AsRef<[u8]>,
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
pub fn decode_raw<T>(
&self,
name: &str,
bytes: T
) -> Result<Vec<Token, Global>, AbiError>where
T: AsRef<[u8]>,
pub fn decode_raw<T>( &self, name: &str, bytes: T ) -> Result<Vec<Token, Global>, AbiError>where T: AsRef<[u8]>,
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.
pub fn decode_output<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>where
D: Detokenize,
T: AsRef<[u8]>,
pub fn decode_output<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>where D: Detokenize, T: AsRef<[u8]>,
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
pub fn decode_output_raw<T>(
&self,
name: &str,
bytes: T
) -> Result<Vec<Token, Global>, AbiError>where
T: AsRef<[u8]>,
pub fn decode_output_raw<T>( &self, name: &str, bytes: T ) -> Result<Vec<Token, Global>, AbiError>where T: AsRef<[u8]>,
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.
pub fn decode_event<D>(
&self,
name: &str,
topics: Vec<H256, Global>,
data: Bytes
) -> Result<D, AbiError>where
D: Detokenize,
pub fn decode_event<D>( &self, name: &str, topics: Vec<H256, Global>, 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
pub fn decode_event_raw(
&self,
name: &str,
topics: Vec<H256, Global>,
data: Bytes
) -> Result<Vec<Token, Global>, AbiError>
pub fn decode_event_raw( &self, name: &str, topics: Vec<H256, Global>, data: Bytes ) -> Result<Vec<Token, Global>, 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.
pub fn decode_with_selector_raw<T>(
&self,
signature: [u8; 4],
bytes: T
) -> Result<Vec<Token, Global>, AbiError>where
T: AsRef<[u8]>,
pub fn decode_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T ) -> Result<Vec<Token, Global>, AbiError>where T: AsRef<[u8]>,
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.
pub fn decode_with_selector<D, T>(
&self,
signature: [u8; 4],
bytes: T
) -> Result<D, AbiError>where
D: Detokenize,
T: AsRef<[u8]>,
pub fn decode_with_selector<D, T>( &self, signature: [u8; 4], bytes: T ) -> Result<D, AbiError>where D: Detokenize, T: AsRef<[u8]>,
Decodes the provided ABI encoded bytes with the selected function selector
pub fn decode_input_raw<T>(
&self,
bytes: T
) -> Result<Vec<Token, Global>, AbiError>where
T: AsRef<[u8]>,
pub fn decode_input_raw<T>( &self, bytes: T ) -> Result<Vec<Token, Global>, AbiError>where T: AsRef<[u8]>,
Decodes the provided ABI encoded input bytes
Returns a [Token
] vector, which lets you decode function arguments dynamically
without knowing the return type.
pub fn decode_input<D, T>(&self, bytes: T) -> Result<D, AbiError>where
D: Detokenize,
T: AsRef<[u8]>,
pub fn decode_input<D, T>(&self, bytes: T) -> Result<D, AbiError>where D: Detokenize, T: AsRef<[u8]>,
Decodes the provided ABI encoded input bytes
pub fn decode_output_with_selector<D, T>(
&self,
signature: [u8; 4],
bytes: T
) -> Result<D, AbiError>where
D: Detokenize,
T: AsRef<[u8]>,
pub fn decode_output_with_selector<D, T>( &self, signature: [u8; 4], bytes: T ) -> Result<D, AbiError>where D: Detokenize, T: AsRef<[u8]>,
Decode the provided ABI encoded bytes as the output of the provided function selector
pub fn decode_output_with_selector_raw<T>(
&self,
signature: [u8; 4],
bytes: T
) -> Result<Vec<Token, Global>, AbiError>where
T: AsRef<[u8]>,
pub fn decode_output_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T ) -> Result<Vec<Token, Global>, AbiError>where T: AsRef<[u8]>,
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.
pub fn abi(&self) -> &Contract
pub fn abi(&self) -> &Contract
Returns a reference to the contract’s ABI