gill
gill/programs/token/Type aliases

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 ParameterDefault type
TAccountSource extends stringstring
TAccountMint extends stringstring
TAccountDestination extends stringstring
TAccountAuthority extends stringstring

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.

On this page