Mainnet docs are version-pinned. Check each section's exact version in the sidebar; it can lag the newest upstream release.
You might have noticed this snippet in the previous sections:
abigen!(Contract(
name = "MyContract",
abi = "e2e/sway/contracts/contract_test/out/release/contract_test-abi.json"
));The SDK lets you transform ABI methods of a smart contract, specified as JSON objects (which you can get from Forc ), into Rust structs and methods that are type-checked at compile time. In order to call your contracts, scripts or predicates, you first need to generate the Rust bindings for them.
The following subsections contain more details about the abigen! syntax and the code generated from it.