gill
gill/programs/token/Type aliases

RemoveTokenMetadataKeyInput

type RemoveTokenMetadataKeyInput<TAccountMetadata, TAccountUpdateAuthority> = {
  idempotent?: RemoveTokenMetadataKeyInstructionDataArgs["idempotent"];
  key: RemoveTokenMetadataKeyInstructionDataArgs["key"];
  metadata: Address<TAccountMetadata>;
  updateAuthority: TransactionSigner<TAccountUpdateAuthority>;
};

Type Parameters

Type ParameterDefault type
TAccountMetadata extends stringstring
TAccountUpdateAuthority extends stringstring

Properties

idempotent?

optional idempotent: RemoveTokenMetadataKeyInstructionDataArgs["idempotent"];

key

key: RemoveTokenMetadataKeyInstructionDataArgs["key"];

metadata

metadata: Address<TAccountMetadata>;

updateAuthority

updateAuthority: TransactionSigner<TAccountUpdateAuthority>;

On this page