123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- /**
- * 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,
- getStructDecoder,
- getStructEncoder,
- getU8Decoder,
- getU8Encoder,
- transformEncoder,
- type AccountMeta,
- type AccountSignerMeta,
- type Address,
- type FixedSizeCodec,
- type FixedSizeDecoder,
- type FixedSizeEncoder,
- type Instruction,
- type InstructionWithAccounts,
- type InstructionWithData,
- type ReadonlyAccount,
- type ReadonlySignerAccount,
- type ReadonlyUint8Array,
- type TransactionSigner,
- type WritableAccount,
- } from '@solana/kit';
- import { TOKEN_PROGRAM_ADDRESS } from '../programs';
- import { getAccountMetaFactory, type ResolvedAccount } from '../shared';
- export const REVOKE_DISCRIMINATOR = 5;
- export function getRevokeDiscriminatorBytes() {
- return getU8Encoder().encode(REVOKE_DISCRIMINATOR);
- }
- export type RevokeInstruction<
- TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS,
- TAccountSource extends string | AccountMeta<string> = string,
- TAccountOwner extends string | AccountMeta<string> = string,
- TRemainingAccounts extends readonly AccountMeta<string>[] = [],
- > = Instruction<TProgram> &
- InstructionWithData<ReadonlyUint8Array> &
- InstructionWithAccounts<
- [
- TAccountSource extends string
- ? WritableAccount<TAccountSource>
- : TAccountSource,
- TAccountOwner extends string
- ? ReadonlyAccount<TAccountOwner>
- : TAccountOwner,
- ...TRemainingAccounts,
- ]
- >;
- export type RevokeInstructionData = { discriminator: number };
- export type RevokeInstructionDataArgs = {};
- export function getRevokeInstructionDataEncoder(): FixedSizeEncoder<RevokeInstructionDataArgs> {
- return transformEncoder(
- getStructEncoder([['discriminator', getU8Encoder()]]),
- (value) => ({ ...value, discriminator: REVOKE_DISCRIMINATOR })
- );
- }
- export function getRevokeInstructionDataDecoder(): FixedSizeDecoder<RevokeInstructionData> {
- return getStructDecoder([['discriminator', getU8Decoder()]]);
- }
- export function getRevokeInstructionDataCodec(): FixedSizeCodec<
- RevokeInstructionDataArgs,
- RevokeInstructionData
- > {
- return combineCodec(
- getRevokeInstructionDataEncoder(),
- getRevokeInstructionDataDecoder()
- );
- }
- export type RevokeInput<
- TAccountSource extends string = string,
- TAccountOwner extends string = string,
- > = {
- /** The source account. */
- source: Address<TAccountSource>;
- /** The source account owner or its multisignature. */
- owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
- multiSigners?: Array<TransactionSigner>;
- };
- export function getRevokeInstruction<
- TAccountSource extends string,
- TAccountOwner extends string,
- TProgramAddress extends Address = typeof TOKEN_PROGRAM_ADDRESS,
- >(
- input: RevokeInput<TAccountSource, TAccountOwner>,
- config?: { programAddress?: TProgramAddress }
- ): RevokeInstruction<
- TProgramAddress,
- TAccountSource,
- (typeof input)['owner'] extends TransactionSigner<TAccountOwner>
- ? ReadonlySignerAccount<TAccountOwner> & AccountSignerMeta<TAccountOwner>
- : TAccountOwner
- > {
- // Program address.
- const programAddress = config?.programAddress ?? TOKEN_PROGRAM_ADDRESS;
- // Original accounts.
- const originalAccounts = {
- source: { value: input.source ?? 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: AccountMeta[] = (args.multiSigners ?? []).map(
- (signer) => ({
- address: signer.address,
- role: AccountRole.READONLY_SIGNER,
- signer,
- })
- );
- const getAccountMeta = getAccountMetaFactory(programAddress, 'programId');
- return Object.freeze({
- accounts: [
- getAccountMeta(accounts.source),
- getAccountMeta(accounts.owner),
- ...remainingAccounts,
- ],
- data: getRevokeInstructionDataEncoder().encode({}),
- programAddress,
- } as RevokeInstruction<
- TProgramAddress,
- TAccountSource,
- (typeof input)['owner'] extends TransactionSigner<TAccountOwner>
- ? ReadonlySignerAccount<TAccountOwner> & AccountSignerMeta<TAccountOwner>
- : TAccountOwner
- >);
- }
- export type ParsedRevokeInstruction<
- TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS,
- TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
- > = {
- programAddress: Address<TProgram>;
- accounts: {
- /** The source account. */
- source: TAccountMetas[0];
- /** The source account owner or its multisignature. */
- owner: TAccountMetas[1];
- };
- data: RevokeInstructionData;
- };
- export function parseRevokeInstruction<
- TProgram extends string,
- TAccountMetas extends readonly AccountMeta[],
- >(
- instruction: Instruction<TProgram> &
- InstructionWithAccounts<TAccountMetas> &
- InstructionWithData<ReadonlyUint8Array>
- ): ParsedRevokeInstruction<TProgram, TAccountMetas> {
- if (instruction.accounts.length < 2) {
- // TODO: Coded error.
- throw new Error('Not enough accounts');
- }
- let accountIndex = 0;
- const getNextAccount = () => {
- const accountMeta = (instruction.accounts as TAccountMetas)[accountIndex]!;
- accountIndex += 1;
- return accountMeta;
- };
- return {
- programAddress: instruction.programAddress,
- accounts: { source: getNextAccount(), owner: getNextAccount() },
- data: getRevokeInstructionDataDecoder().decode(instruction.data),
- };
- }
|