diff --git a/target_chains/solana/sdk/js/pyth_solana_receiver/examples/post_price_update.ts b/target_chains/solana/sdk/js/pyth_solana_receiver/examples/post_price_update.ts index 474f8389dc..189eb73a67 100644 --- a/target_chains/solana/sdk/js/pyth_solana_receiver/examples/post_price_update.ts +++ b/target_chains/solana/sdk/js/pyth_solana_receiver/examples/post_price_update.ts @@ -32,7 +32,7 @@ async function main() { ); // Use a stable treasury ID of 0, since its address is indexed in the address lookup table. // This is a tx size optimization and is optional. If not provided, a random treasury account will be used. - const treasuryId = 1; + const treasuryId = 0; const pythSolanaReceiver = new PythSolanaReceiver({ connection, wallet, diff --git a/target_chains/solana/sdk/js/pyth_solana_receiver/examples/update_price_feed.ts b/target_chains/solana/sdk/js/pyth_solana_receiver/examples/update_price_feed.ts index 5012f41960..370f15f5a0 100644 --- a/target_chains/solana/sdk/js/pyth_solana_receiver/examples/update_price_feed.ts +++ b/target_chains/solana/sdk/js/pyth_solana_receiver/examples/update_price_feed.ts @@ -34,7 +34,7 @@ async function main() { ); // Use a stable treasury ID of 0, since its address is indexed in the address lookup table. // This is a tx size optimization and is optional. If not provided, a random treasury account will be used. - const treasuryId = 1; + const treasuryId = 0; const pythSolanaReceiver = new PythSolanaReceiver({ connection, wallet, diff --git a/target_chains/solana/sdk/js/pyth_solana_receiver/package.json b/target_chains/solana/sdk/js/pyth_solana_receiver/package.json index de3883b589..729458449d 100644 --- a/target_chains/solana/sdk/js/pyth_solana_receiver/package.json +++ b/target_chains/solana/sdk/js/pyth_solana_receiver/package.json @@ -1,6 +1,6 @@ { "name": "@pythnetwork/pyth-solana-receiver", - "version": "0.10.0", + "version": "0.10.1", "description": "Pyth solana receiver SDK", "homepage": "https://pyth.network", "main": "lib/index.js",