25 releases (6 breaking)

new 0.6.2 Nov 7, 2024
0.5.4 Oct 23, 2024
0.2.0 Jul 16, 2024
0.0.0-reserved Jan 29, 2024

#264 in Magic Beans

Download history 6169/week @ 2024-07-19 6944/week @ 2024-07-26 8785/week @ 2024-08-02 12262/week @ 2024-08-09 10338/week @ 2024-08-16 10602/week @ 2024-08-23 11091/week @ 2024-08-30 11806/week @ 2024-09-06 12801/week @ 2024-09-13 15346/week @ 2024-09-20 15574/week @ 2024-09-27 26127/week @ 2024-10-04 26915/week @ 2024-10-11 25126/week @ 2024-10-18 31734/week @ 2024-10-25 23127/week @ 2024-11-01

111,174 downloads per month
Used in 59 crates (14 directly)

MIT/Apache

2MB
24K SLoC

alloy-contract

Interact with on-chain contracts.

The main type is CallBuilder, which is a builder for constructing calls to on-chain contracts. It provides a way to encode and decode data for on-chain calls, and to send those calls to the chain. See its documentation for more details.

Usage

Combined with the sol! macro's #[sol(rpc)] attribute, CallBuilder can be used to interact with on-chain contracts. The #[sol(rpc)] attribute generates a method for each function in a contract that returns a CallBuilder for that function. See its documentation for more details.

# async fn test() -> Result<(), Box<dyn std::error::Error>> {
use alloy_contract::SolCallBuilder;
use alloy_network::Ethereum;
use alloy_primitives::{Address, U256};
use alloy_provider::ProviderBuilder;
use alloy_sol_types::sol;

sol! {
    #[sol(rpc)] // <-- Important! Generates the necessary `MyContract` struct and function methods.
    #[sol(bytecode = "0x1234")] // <-- Generates the `BYTECODE` static and the `deploy` method.
    contract MyContract {
        constructor(address) {} // The `deploy` method will also include any constructor arguments.

        #[derive(Debug)]
        function doStuff(uint a, bool b) public payable returns(address c, bytes32 d);
    }
}

// Build a provider.
let provider = ProviderBuilder::new().with_recommended_fillers().on_builtin("http://localhost:8545").await?;

// If `#[sol(bytecode = "0x...")]` is provided, the contract can be deployed with `MyContract::deploy`,
// and a new instance will be created.
let constructor_arg = Address::ZERO;
let contract = MyContract::deploy(&provider, constructor_arg).await?;

// Otherwise, or if already deployed, a new contract instance can be created with `MyContract::new`.
let address = Address::ZERO;
let contract = MyContract::new(address, &provider);

// Build a call to the `doStuff` function and configure it.
let a = U256::from(123);
let b = true;
let call_builder = contract.doStuff(a, b).value(U256::from(50e18 as u64));

// Send the call. Note that this is not broadcasted as a transaction.
let call_return = call_builder.call().await?;
println!("{call_return:?}"); // doStuffReturn { c: 0x..., d: 0x... }

// Use `send` to broadcast the call as a transaction.
let _pending_tx = call_builder.send().await?;
# Ok(())
# }

Dependencies

~28–38MB
~702K SLoC