File tree Expand file tree Collapse file tree 8 files changed +8
-1
lines changed Expand file tree Collapse file tree 8 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @pythnetwork/price-pusher" ,
3
- "version" : " 9.3.3 " ,
3
+ "version" : " 9.3.4 " ,
4
4
"description" : " Pyth Price Pusher" ,
5
5
"homepage" : " https://pyth.network" ,
6
6
"main" : " lib/index.js" ,
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ export class AptosPricePusher implements IPricePusher {
109
109
async getPriceFeedsUpdateData ( priceIds : string [ ] ) : Promise < number [ ] [ ] > {
110
110
const response = await this . hermesClient . getLatestPriceUpdates ( priceIds , {
111
111
encoding : "base64" ,
112
+ ignoreInvalidPriceIds : true ,
112
113
} ) ;
113
114
return response . binary . data . map ( ( data ) =>
114
115
Array . from ( Buffer . from ( data , "base64" ) ) ,
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ export class FuelPricePusher implements IPricePusher {
101
101
try {
102
102
const response = await this . hermesClient . getLatestPriceUpdates ( priceIds , {
103
103
encoding : "base64" ,
104
+ ignoreInvalidPriceIds : true ,
104
105
} ) ;
105
106
priceFeedUpdateData = response . binary . data ;
106
107
} catch ( err : any ) {
Original file line number Diff line number Diff line change @@ -301,6 +301,7 @@ export class InjectivePricePusher implements IPricePusher {
301
301
try {
302
302
const response = await this . hermesClient . getLatestPriceUpdates ( priceIds , {
303
303
encoding : "base64" ,
304
+ ignoreInvalidPriceIds : true ,
304
305
} ) ;
305
306
const vaas = response . binary . data ;
306
307
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ export class NearPricePusher implements IPricePusher {
131
131
) : Promise < string [ ] > {
132
132
const response = await this . hermesClient . getLatestPriceUpdates ( priceIds , {
133
133
encoding : "base64" ,
134
+ ignoreInvalidPriceIds : true ,
134
135
} ) ;
135
136
return response . binary . data ;
136
137
}
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ export class SolanaPricePusher implements IPricePusher {
118
118
shuffledPriceIds ,
119
119
{
120
120
encoding : "base64" ,
121
+ ignoreInvalidPriceIds : true ,
121
122
} ,
122
123
) ;
123
124
priceFeedUpdateData = response . binary . data ;
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ export class SuiPricePusher implements IPricePusher {
225
225
priceIdChunk ,
226
226
{
227
227
encoding : "base64" ,
228
+ ignoreInvalidPriceIds : true ,
228
229
} ,
229
230
) ;
230
231
if ( response . binary . data . length !== 1 ) {
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ export class TonPricePusher implements IPricePusher {
98
98
try {
99
99
const response = await this . hermesClient . getLatestPriceUpdates ( priceIds , {
100
100
encoding : "base64" ,
101
+ ignoreInvalidPriceIds : true ,
101
102
} ) ;
102
103
priceFeedUpdateData = response . binary . data ;
103
104
} catch ( err : any ) {
You can’t perform that action at this time.
0 commit comments