gill
gill/programs/system/Type aliases

TransferSolInput

type TransferSolInput<TAccountSource, TAccountDestination> = {
  amount: TransferSolInstructionDataArgs["amount"];
  destination: Address<TAccountDestination>;
  source: TransactionSigner<TAccountSource>;
};

Type Parameters

Type ParameterDefault type
TAccountSource extends stringstring
TAccountDestination extends stringstring

Properties

amount

amount: TransferSolInstructionDataArgs["amount"];

destination

destination: Address<TAccountDestination>;

source

source: TransactionSigner<TAccountSource>;

On this page