Skip to content

Commit 08b7e5b

Browse files
committed
style: format deploy staking script
Apply Prettier formatting to scripts/deploy-staking-only.js to satisfy format checks.
1 parent 4684d23 commit 08b7e5b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/deploy-staking-only.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// scripts/deploy-staking-only.js
22
// Deploys only sOHM, gOHM, and Staking contracts (no other legacy contracts)
3-
const {ethers} = require("hardhat");
3+
const { ethers } = require("hardhat");
44

55
async function main() {
66
const INDEX = 269238508004; // Exact mainnet index
@@ -42,7 +42,7 @@ async function main() {
4242
EPOCH_LENGTH,
4343
0,
4444
Math.floor(Date.now() / 1000),
45-
AUTHORITY,
45+
AUTHORITY
4646
);
4747
await staking.deployed();
4848
console.log("Staking deployed:", staking.address);
@@ -75,4 +75,4 @@ main()
7575
.catch((error) => {
7676
console.error(error);
7777
process.exit(1);
78-
});
78+
});

0 commit comments

Comments
 (0)