gill
gill/programs/token/Type aliases

ThawAccountInput

type ThawAccountInput<TAccountAccount, TAccountMint, TAccountOwner> = {
  account: Address<TAccountAccount>;
  mint: Address<TAccountMint>;
  multiSigners?: TransactionSigner[];
  owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
};

Type Parameters

Type ParameterDefault type
TAccountAccount extends stringstring
TAccountMint extends stringstring
TAccountOwner extends stringstring

Properties

account

account: Address<TAccountAccount>;

The account to thaw.


mint

mint: Address<TAccountMint>;

The token mint.


multiSigners?

optional multiSigners: TransactionSigner[];

owner

owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;

The mint freeze authority or its multisignature account.

On this page