Skip to content

Commit 2497f27

Browse files
devin-ai-integration[bot]Jayant Krishnamurthy
andcommitted
style: apply prettier formatting fixes
Co-Authored-By: Jayant Krishnamurthy <[email protected]>
1 parent 29a204a commit 2497f27

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

contract_manager/scripts/get_pyth_pricefeed_details.ts

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@ const parser = yargs(hideBin(process.argv))
4141

4242
async 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

0 commit comments

Comments
 (0)