Docs

Connect to a deployed smart contract to start interacting with it.

Usage

Contract contract = sdk.GetContract("{{contract_address}}");

Configuration

address (required)

The address of the smart contract you want to connect to.

Must be a string.

Using Contract ABI

The ABI must be a C#-escaped string without spaces or line breaks for the best experience.

Contract contract = sdk.GetContract("0x...", "my-abi");