TypeAlias.TransferERC20Params
type TransferERC20Params = {
contractAddress: Address;
to: Address;
txOptions: TransactionOptions;
value: bigint;
};
Represents the parameters for transferring ERC20 tokens.
See
Properties
Property | Type | Description |
---|---|---|
contractAddress | Address | The address of the ERC20 token contract |
to | Address | The recipient's address |
txOptions? | TransactionOptions | The transaction options |
value | bigint | The transfer amount in the smallest token unit |