File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,14 @@ const parser = yargs(hideBin(process.argv))
4141
4242async function getPythPriceFeedDetails ( chain : EvmChain , config : Config ) {
4343 // Get wormhole contract from store
44- const wormholeContract = await getOrDeployWormholeContract ( chain , {
45- ...config ,
46- saveContract : true ,
47- } , ".cache-get-details" ) ;
44+ const wormholeContract = await getOrDeployWormholeContract (
45+ chain ,
46+ {
47+ ...config ,
48+ saveContract : true ,
49+ } ,
50+ ".cache-get-details"
51+ ) ;
4852
4953 // Deploy PythUpgradable contract
5054 const pythImplAddr = await deployIfNotCached (
@@ -100,10 +104,12 @@ async function main() {
100104 } ;
101105
102106 console . log ( `Getting Pyth price feed details for chain ${ chain . getId ( ) } ...` ) ;
103-
107+
104108 const details = await getPythPriceFeedDetails ( chain , config ) ;
105-
106- console . log ( `\nPyth Price Feed Implementation Address: ${ details . pythImplAddr } ` ) ;
109+
110+ console . log (
111+ `\nPyth Price Feed Implementation Address: ${ details . pythImplAddr } `
112+ ) ;
107113 console . log ( `Pyth Init Data: ${ details . pythInitData } ` ) ;
108114}
109115
You can’t perform that action at this time.
0 commit comments