TypeAlias.TransferERC20Params
type TransferERC20Params<TFeeDetails> = {
contractAddress: Address;
fees?: TFeeDetails;
to: Address;
value: bigint;
};
Parameters for transferring ERC‑20-like fungible tokens.
See
Type Parameters
Type Parameter | Default type | Description |
---|---|---|
TFeeDetails | FeeDetails | Network-specific fee type (defaults to FeeDetails). |
Properties
Property | Type | Description |
---|---|---|
contractAddress | Address | The token contract address. |
fees? | TFeeDetails | Optional network-specific fee parameters. |
to | Address | The recipient wallet address. |
value | bigint | Amount to transfer, in the token's smallest unit. |