pub struct IArbSys<M>(/* private fields */);
Implementations§
Source§impl<M: Middleware> IArbSys<M>
impl<M: Middleware> IArbSys<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 arb_block_hash(&self, arb_block_num: U256) -> ContractCall<M, [u8; 32]>
pub fn arb_block_hash(&self, arb_block_num: U256) -> ContractCall<M, [u8; 32]>
Calls the contract’s arbBlockHash
(0x2b407a82) function
Sourcepub fn arb_block_number(&self) -> ContractCall<M, U256>
pub fn arb_block_number(&self) -> ContractCall<M, U256>
Calls the contract’s arbBlockNumber
(0xa3b1b31d) function
Sourcepub fn arb_chain_id(&self) -> ContractCall<M, U256>
pub fn arb_chain_id(&self) -> ContractCall<M, U256>
Calls the contract’s arbChainID
(0xd127f54a) function
Sourcepub fn arb_os_version(&self) -> ContractCall<M, U256>
pub fn arb_os_version(&self) -> ContractCall<M, U256>
Calls the contract’s arbOSVersion
(0x051038f2) function
Sourcepub fn get_storage_gas_available(&self) -> ContractCall<M, U256>
pub fn get_storage_gas_available(&self) -> ContractCall<M, U256>
Calls the contract’s getStorageGasAvailable
(0xa94597ff) function
Sourcepub fn is_top_level_call(&self) -> ContractCall<M, bool>
pub fn is_top_level_call(&self) -> ContractCall<M, bool>
Calls the contract’s isTopLevelCall
(0x08bd624c) function
Sourcepub fn map_l1_sender_contract_address_to_l2_alias(
&self,
sender: Address,
unused: Address,
) -> ContractCall<M, Address>
pub fn map_l1_sender_contract_address_to_l2_alias( &self, sender: Address, unused: Address, ) -> ContractCall<M, Address>
Calls the contract’s mapL1SenderContractAddressToL2Alias
(0x4dbbd506) function
Sourcepub fn my_callers_address_without_aliasing(&self) -> ContractCall<M, Address>
pub fn my_callers_address_without_aliasing(&self) -> ContractCall<M, Address>
Calls the contract’s myCallersAddressWithoutAliasing
(0xd74523b3) function
Sourcepub fn send_merkle_tree_state(
&self,
) -> ContractCall<M, (U256, [u8; 32], Vec<[u8; 32]>)>
pub fn send_merkle_tree_state( &self, ) -> ContractCall<M, (U256, [u8; 32], Vec<[u8; 32]>)>
Calls the contract’s sendMerkleTreeState
(0x7aeecd2a) function
Sourcepub fn send_tx_to_l1(
&self,
destination: Address,
data: Bytes,
) -> ContractCall<M, U256>
pub fn send_tx_to_l1( &self, destination: Address, data: Bytes, ) -> ContractCall<M, U256>
Calls the contract’s sendTxToL1
(0x928c169a) function
Sourcepub fn was_my_callers_address_aliased(&self) -> ContractCall<M, bool>
pub fn was_my_callers_address_aliased(&self) -> ContractCall<M, bool>
Calls the contract’s wasMyCallersAddressAliased
(0x175a260b) function
Sourcepub fn withdraw_eth(&self, destination: Address) -> ContractCall<M, U256>
pub fn withdraw_eth(&self, destination: Address) -> ContractCall<M, U256>
Calls the contract’s withdrawEth
(0x25e16063) function
Sourcepub fn l2_to_l1_transaction_filter(
&self,
) -> Event<Arc<M>, M, L2ToL1TransactionFilter>
pub fn l2_to_l1_transaction_filter( &self, ) -> Event<Arc<M>, M, L2ToL1TransactionFilter>
Gets the contract’s L2ToL1Transaction
event
Sourcepub fn l2_to_l1_tx_filter(&self) -> Event<Arc<M>, M, L2ToL1TxFilter>
pub fn l2_to_l1_tx_filter(&self) -> Event<Arc<M>, M, L2ToL1TxFilter>
Gets the contract’s L2ToL1Tx
event
Sourcepub fn send_merkle_update_filter(
&self,
) -> Event<Arc<M>, M, SendMerkleUpdateFilter>
pub fn send_merkle_update_filter( &self, ) -> Event<Arc<M>, M, SendMerkleUpdateFilter>
Gets the contract’s SendMerkleUpdate
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.