@@ -20,6 +20,17 @@ const parser = yargs(hideBin(process.argv))
20
20
type : "string" ,
21
21
desc : "Hermes endpoint to use, defaults to https://hermes.pyth.network" ,
22
22
} ,
23
+ encoding : {
24
+ type : "string" ,
25
+ desc : "Encoding to use for the price feeds (hex or base64), defaults to hex" ,
26
+ choices : [ "hex" , "base64" ] ,
27
+ default : "hex" ,
28
+ } ,
29
+ "chunk-size" : {
30
+ type : "number" ,
31
+ desc : "Chunk size to use for the price feeds, defaults to 150" ,
32
+ default : 150 ,
33
+ } ,
23
34
} ) ;
24
35
25
36
// This script is intended to update all pricefeeds after we deploy pyth pricefeeds contract.
@@ -32,6 +43,7 @@ async function main() {
32
43
) ;
33
44
const contract = DefaultStore . contracts [ argv . contract ] ;
34
45
const privateKey = toPrivateKey ( argv [ "private-key" ] ) ;
46
+ const encoding = argv . encoding || "hex" ;
35
47
36
48
priceFeedsMetadata = await client . getPriceFeeds ( ) ;
37
49
@@ -40,8 +52,13 @@ async function main() {
40
52
41
53
// We can adjust the chunk size based on the chain. Don't exceed 150 for now.
42
54
// TODO: Add a check for the chain's block gas limit and adjust the chunk size accordingly.
43
- const chunkSize = 150 ;
55
+ const chunkSize = argv . chunkSize ;
44
56
for ( let i = 0 ; i < priceFeedIds . length ; i += chunkSize ) {
57
+ console . log (
58
+ `Processing chunk ${ i / chunkSize + 1 } of ${ Math . ceil (
59
+ priceFeedIds . length / chunkSize
60
+ ) } `
61
+ ) ;
45
62
const chunk = priceFeedIds . slice ( i , i + chunkSize ) ;
46
63
console . log ( `length: ${ chunk . length } ` ) ;
47
64
const updates = await client . getLatestPriceUpdates ( chunk , {
@@ -50,7 +67,11 @@ async function main() {
50
67
console . log (
51
68
await contract . executeUpdatePriceFeed (
52
69
privateKey ,
53
- updates . binary . data . map ( ( update ) => Buffer . from ( update , "hex" ) )
70
+ updates . binary . data . map ( ( update ) =>
71
+ encoding === "hex"
72
+ ? Buffer . from ( update , "hex" )
73
+ : Buffer . from ( update , "base64" )
74
+ )
54
75
)
55
76
) ;
56
77
}
0 commit comments