fuels-macros 0.77.0

Fuel Rust SDK macros to generate types from ABI.
Documentation
1
2
3
4
5
6
7
8
9
use fuels_macros::setup_program_test;

setup_program_test!(
    Wallets("wallet1"),
    Wallets("wallet2"),
    Abigen(Contract(name = "MyContract", project = "some_project"))
);

fn main() {}