TypeAlias.TransferERC20Params
type TransferERC20Params: {
contractAddress: Address;
to: Address;
txOptions: TransactionOptions;
value: bigint;
};
Represents the parameters for transferring ERC20 tokens.
Type declaration
Name | Type |
---|---|
contractAddress | Address |
to | Address |
txOptions ? | TransactionOptions |
value | bigint |