TypeAlias.TransferERC20Params
type TransferERC20Params<TFeeDetails> = {
contractAddress: Address;
fees?: TFeeDetails;
to: Address;
value: bigint;
};
Represents the parameters for transferring ERC20 tokens.
See
Type Parameters
Type Parameter | Default type |
---|---|
TFeeDetails | FeeDetails |
Properties
Property | Type | Description |
---|---|---|
contractAddress | Address | The address of the ERC20 token contract |
fees? | TFeeDetails | The transaction fees details |
to | Address | The recipient's address |
value | bigint | The transfer amount in the smallest token unit |