gill
gill/programs/token/Type aliases

EnableConfidentialCreditsInput

type EnableConfidentialCreditsInput<TAccountToken, TAccountAuthority> = {
  authority:   | Address<TAccountAuthority>
     | TransactionSigner<TAccountAuthority>;
  multiSigners?: TransactionSigner[];
  token: Address<TAccountToken>;
};

Type Parameters

Type ParameterDefault type
TAccountToken extends stringstring
TAccountAuthority extends stringstring

Properties

authority

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

The source account's owner/delegate or its multisignature account.


multiSigners?

optional multiSigners: TransactionSigner[];

token

token: Address<TAccountToken>;

The SPL Token account.

On this page