12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * 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 {
- getAddressEncoder,
- getProgramDerivedAddress,
- type Address,
- type ProgramDerivedAddress,
- } from '@solana/kit';
- export type AssociatedTokenSeeds = {
- /** The wallet address of the associated token account. */
- owner: Address;
- /** The address of the token program to use. */
- tokenProgram: Address;
- /** The mint address of the associated token account. */
- mint: Address;
- };
- export async function findAssociatedTokenPda(
- seeds: AssociatedTokenSeeds,
- config: { programAddress?: Address | undefined } = {}
- ): Promise<ProgramDerivedAddress> {
- const {
- programAddress = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL' as Address<'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL'>,
- } = config;
- return await getProgramDerivedAddress({
- programAddress,
- seeds: [
- getAddressEncoder().encode(seeds.owner),
- getAddressEncoder().encode(seeds.tokenProgram),
- getAddressEncoder().encode(seeds.mint),
- ],
- });
- }
|