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