TokenTransferTransactionParams
Type Alias: TokenTransferTransactionParams
Properties overview
type TokenTransferTransactionParams = DeployedTokenTransactionBaseParams & {
amount: number;
to: string;
txType: "token:transfer";
};
Defined in: packages/api/src/client/types.gen.ts:669
Type declaration
amount
amount: number;
The amount of tokens to transfer.
to
to: string;
The address to which tokens are to be transferred.
txType?
optional txType: "token:transfer";
Must be "token:transfer"
Updated 10 days ago