anvil_zksync_api_decl/namespaces/
eth_test.rs

1
2
3
4
5
6
7
8
9
10
11
use jsonrpsee::core::RpcResult;
use jsonrpsee::proc_macros::rpc;
use zksync_types::transaction_request::CallRequest;
use zksync_types::H256;

/// API bindings for the `eth` namespace that are not normally supported by core ZKsync.
#[rpc(server, namespace = "eth")]
pub trait EthTestNamespace {
    #[method(name = "sendTransaction")]
    async fn send_transaction(&self, tx: CallRequest) -> RpcResult<H256>;
}