TransferSolInput
type TransferSolInput<TAccountSource, TAccountDestination> = {
amount: TransferSolInstructionDataArgs["amount"];
destination: Address<TAccountDestination>;
source: TransactionSigner<TAccountSource>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TAccountSource extends string | string |
TAccountDestination extends string | string |
Properties
amount
amount: TransferSolInstructionDataArgs["amount"];destination
destination: Address<TAccountDestination>;source
source: TransactionSigner<TAccountSource>;