fuels-macros 0.77.0

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

setup_program_test!(
    Abigen(Contract(project = "some_project", name = "SomeContract")),
    Deploy(
        name = "some_instance",
        contract = "SomeContract",
        wallet = "some_wallet"
    ),
    UnknownCommand()
);

fn main() {}