TransferCheckedInput
type TransferCheckedInput<TAccountSource, TAccountMint, TAccountDestination, TAccountAuthority> = {
amount: TransferCheckedInstructionDataArgs["amount"];
authority: | Address<TAccountAuthority>
| TransactionSigner<TAccountAuthority>;
decimals: TransferCheckedInstructionDataArgs["decimals"];
destination: Address<TAccountDestination>;
mint: Address<TAccountMint>;
multiSigners?: TransactionSigner[];
source: Address<TAccountSource>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TAccountSource extends string | string |
TAccountMint extends string | string |
TAccountDestination extends string | string |
TAccountAuthority extends string | string |
Properties
amount
amount: TransferCheckedInstructionDataArgs["amount"];authority
authority:
| Address<TAccountAuthority>
| TransactionSigner<TAccountAuthority>;The source account's owner/delegate or its multisignature account.
decimals
decimals: TransferCheckedInstructionDataArgs["decimals"];destination
destination: Address<TAccountDestination>;The destination account.
mint
mint: Address<TAccountMint>;The token mint.
multiSigners?
optional multiSigners: TransactionSigner[];source
source: Address<TAccountSource>;The source account.