/** * This code was AUTOGENERATED using the codama library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun codama to update it. * * @see https://github.com/codama-idl/codama */ import { AccountRole, combineCodec, getAddressDecoder, getAddressEncoder, getOptionDecoder, getOptionEncoder, getStructDecoder, getStructEncoder, getU8Decoder, getU8Encoder, transformEncoder, type Address, type Codec, type Decoder, type Encoder, type IAccountMeta, type IAccountSignerMeta, type IInstruction, type IInstructionWithAccounts, type IInstructionWithData, type Option, type OptionOrNullable, type ReadonlyAccount, type ReadonlySignerAccount, type TransactionSigner, type WritableAccount, } from '@solana/kit'; import { TOKEN_PROGRAM_ADDRESS } from '../programs'; import { getAccountMetaFactory, type ResolvedAccount } from '../shared'; import { getAuthorityTypeDecoder, getAuthorityTypeEncoder, type AuthorityType, type AuthorityTypeArgs, } from '../types'; export const SET_AUTHORITY_DISCRIMINATOR = 6; export function getSetAuthorityDiscriminatorBytes() { return getU8Encoder().encode(SET_AUTHORITY_DISCRIMINATOR); } export type SetAuthorityInstruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountOwned extends string | IAccountMeta = string, TAccountOwner extends string | IAccountMeta = string, TRemainingAccounts extends readonly IAccountMeta[] = [], > = IInstruction & IInstructionWithData & IInstructionWithAccounts< [ TAccountOwned extends string ? WritableAccount : TAccountOwned, TAccountOwner extends string ? ReadonlyAccount : TAccountOwner, ...TRemainingAccounts, ] >; export type SetAuthorityInstructionData = { discriminator: number; /** The type of authority to update. */ authorityType: AuthorityType; /** The new authority */ newAuthority: Option
; }; export type SetAuthorityInstructionDataArgs = { /** The type of authority to update. */ authorityType: AuthorityTypeArgs; /** The new authority */ newAuthority: OptionOrNullable
; }; export function getSetAuthorityInstructionDataEncoder(): Encoder { return transformEncoder( getStructEncoder([ ['discriminator', getU8Encoder()], ['authorityType', getAuthorityTypeEncoder()], ['newAuthority', getOptionEncoder(getAddressEncoder())], ]), (value) => ({ ...value, discriminator: SET_AUTHORITY_DISCRIMINATOR }) ); } export function getSetAuthorityInstructionDataDecoder(): Decoder { return getStructDecoder([ ['discriminator', getU8Decoder()], ['authorityType', getAuthorityTypeDecoder()], ['newAuthority', getOptionDecoder(getAddressDecoder())], ]); } export function getSetAuthorityInstructionDataCodec(): Codec< SetAuthorityInstructionDataArgs, SetAuthorityInstructionData > { return combineCodec( getSetAuthorityInstructionDataEncoder(), getSetAuthorityInstructionDataDecoder() ); } export type SetAuthorityInput< TAccountOwned extends string = string, TAccountOwner extends string = string, > = { /** The mint or account to change the authority of. */ owned: Address; /** The current authority or the multisignature account of the mint or account to update. */ owner: Address | TransactionSigner; authorityType: SetAuthorityInstructionDataArgs['authorityType']; newAuthority: SetAuthorityInstructionDataArgs['newAuthority']; multiSigners?: Array; }; export function getSetAuthorityInstruction< TAccountOwned extends string, TAccountOwner extends string, TProgramAddress extends Address = typeof TOKEN_PROGRAM_ADDRESS, >( input: SetAuthorityInput, config?: { programAddress?: TProgramAddress } ): SetAuthorityInstruction< TProgramAddress, TAccountOwned, (typeof input)['owner'] extends TransactionSigner ? ReadonlySignerAccount & IAccountSignerMeta : TAccountOwner > { // Program address. const programAddress = config?.programAddress ?? TOKEN_PROGRAM_ADDRESS; // Original accounts. const originalAccounts = { owned: { value: input.owned ?? null, isWritable: true }, owner: { value: input.owner ?? null, isWritable: false }, }; const accounts = originalAccounts as Record< keyof typeof originalAccounts, ResolvedAccount >; // Original args. const args = { ...input }; // Remaining accounts. const remainingAccounts: IAccountMeta[] = (args.multiSigners ?? []).map( (signer) => ({ address: signer.address, role: AccountRole.READONLY_SIGNER, signer, }) ); const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); const instruction = { accounts: [ getAccountMeta(accounts.owned), getAccountMeta(accounts.owner), ...remainingAccounts, ], programAddress, data: getSetAuthorityInstructionDataEncoder().encode( args as SetAuthorityInstructionDataArgs ), } as SetAuthorityInstruction< TProgramAddress, TAccountOwned, (typeof input)['owner'] extends TransactionSigner ? ReadonlySignerAccount & IAccountSignerMeta : TAccountOwner >; return instruction; } export type ParsedSetAuthorityInstruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountMetas extends readonly IAccountMeta[] = readonly IAccountMeta[], > = { programAddress: Address; accounts: { /** The mint or account to change the authority of. */ owned: TAccountMetas[0]; /** The current authority or the multisignature account of the mint or account to update. */ owner: TAccountMetas[1]; }; data: SetAuthorityInstructionData; }; export function parseSetAuthorityInstruction< TProgram extends string, TAccountMetas extends readonly IAccountMeta[], >( instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData ): ParsedSetAuthorityInstruction { if (instruction.accounts.length < 2) { // TODO: Coded error. throw new Error('Not enough accounts'); } let accountIndex = 0; const getNextAccount = () => { const accountMeta = instruction.accounts![accountIndex]!; accountIndex += 1; return accountMeta; }; return { programAddress: instruction.programAddress, accounts: { owned: getNextAccount(), owner: getNextAccount(), }, data: getSetAuthorityInstructionDataDecoder().decode(instruction.data), }; }