gill
gill/programs/token/Type aliases

InitializeAccountInput

type InitializeAccountInput<TAccountAccount, TAccountMint, TAccountOwner, TAccountRent> = {
  account: Address<TAccountAccount>;
  mint: Address<TAccountMint>;
  owner: Address<TAccountOwner>;
  rent?: Address<TAccountRent>;
};

Type Parameters

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

Properties

account

account: Address<TAccountAccount>;

The account to initialize.


mint

mint: Address<TAccountMint>;

The mint this account will be associated with.


owner

owner: Address<TAccountOwner>;

The new account's owner/multisignature.


rent?

optional rent: Address<TAccountRent>;

Rent sysvar.

On this page