gill
gill/programs/token/Type aliases

PauseInput

type PauseInput<TAccountMint, TAccountAuthority> = {
  authority:   | Address<TAccountAuthority>
     | TransactionSigner<TAccountAuthority>;
  mint: Address<TAccountMint>;
};

Type Parameters

Type ParameterDefault type
TAccountMint extends stringstring
TAccountAuthority extends stringstring

Properties

authority

authority: 
  | Address<TAccountAuthority>
| TransactionSigner<TAccountAuthority>;

The pausable authority that can pause the mint.


mint

mint: Address<TAccountMint>;

The mint.

On this page