Skip to content

Commit 9109f5f

Browse files
authored
chore: export getPriceFeedAccountForProgram (#1927)
* go * finish exporting
1 parent 4f174e4 commit 9109f5f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

target_chains/solana/sdk/js/pyth_solana_receiver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/pyth-solana-receiver",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Pyth solana receiver SDK",
55
"homepage": "https://pyth.network",
66
"main": "lib/index.js",

target_chains/solana/sdk/js/pyth_solana_receiver/src/PythSolanaReceiver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ export class PythSolanaReceiver {
795795
* @param pushOracleProgramId The program ID of the Pyth Push Oracle program. If not provided, the default deployment will be used.
796796
* @returns The address of the price feed account
797797
*/
798-
function getPriceFeedAccountForProgram(
798+
export function getPriceFeedAccountForProgram(
799799
shardId: number,
800800
priceFeedId: Buffer | string,
801801
pushOracleProgramId?: PublicKey

target_chains/solana/sdk/js/pyth_solana_receiver/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export {
22
PythSolanaReceiver,
33
PythTransactionBuilder,
4+
getPriceFeedAccountForProgram,
45
} from "./PythSolanaReceiver";
56
export {
67
TransactionBuilder,

0 commit comments

Comments
 (0)