Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Spl Token 2022 in getBalances #728

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion platforms/solana/src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
} from '@wormhole-foundation/sdk-connect';
import { SolanaChain } from './chain.js';

import { TOKEN_PROGRAM_ID } from '@solana/spl-token';
import { TOKEN_PROGRAM_ID, TOKEN_2022_PROGRAM_ID } from '@solana/spl-token';
import type {
Commitment,
ConnectionConfig,
Expand Down Expand Up @@ -157,6 +157,17 @@ export class SolanaPlatform<N extends Network>
},
);

// Fetch 2022 tokens
const splParsedToken2022Accounts = await rpc.getParsedTokenAccountsByOwner(
new PublicKey(walletAddress),
{
programId: new PublicKey(TOKEN_2022_PROGRAM_ID),
},
);

// Merge the two token account lists
splParsedTokenAccounts.value.push(...splParsedToken2022Accounts.value);

const balancesArr = tokens.map((token) => {
if (isNative(token)) {
return { ['native']: native };
Expand Down
Loading