Queries/SDK: Update Solana SDK (#4180)

This commit is contained in:
bruce-riley 2024-12-04 10:44:41 -06:00 committed by GitHub
parent db19128b6a
commit 6c484440ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 211 additions and 568 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@wormhole-foundation/wormhole-query-sdk",
"version": "0.0.13",
"version": "0.0.14",
"description": "Wormhole cross-chain query SDK",
"homepage": "https://wormhole.com",
"main": "./lib/cjs/index.js",
@ -34,7 +34,7 @@
"sideEffects": false,
"dependencies": {
"@ethersproject/keccak256": "^5.7.0",
"@solana/web3.js": "^1.66.2",
"@solana/addresses": "^2.0.0",
"@types/elliptic": "^6.4.14",
"axios": "^1.6.7",
"bs58": "^4.0.1",

View File

@ -23,7 +23,7 @@ import {
} from "../query";
import { BinaryWriter } from "../query/BinaryWriter";
import { PublicKey } from "@solana/web3.js";
import { getAddressDecoder, getProgramDerivedAddress } from "@solana/addresses";
// (2**64)-1
const SOLANA_MAX_RENT_EPOCH = BigInt("18446744073709551615");
@ -515,18 +515,18 @@ export class QueryProxyMock {
let accounts: string[] = [];
let bumps: number[] = [];
query.pdas.forEach((pda) => {
for (const pda of query.pdas) {
if (pda.programAddress.length != 32) {
throw new Error(`invalid program address length`);
}
const [acct, bump] = PublicKey.findProgramAddressSync(
pda.seeds,
new PublicKey(pda.programAddress)
);
accounts.push(acct.toString());
const [acct, bump] = await getProgramDerivedAddress({
programAddress: getAddressDecoder().decode(pda.programAddress),
seeds: pda.seeds,
});
accounts.push(acct);
bumps.push(bump);
});
}
let opts: SolanaGetMultipleAccountsOpts = {
commitment: query.commitment,