Skip to content

Commit

Permalink
add verify scripts (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Michael-Pratt authored Nov 6, 2023
1 parent 7644c61 commit 5b42a3b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/verify/verifyPositionFarmRewardDistributor.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import "dotenv/config";

const document = require(`../../deployments/${process.env.CHAIN_ID}.json`);

module.exports = [`0x2288A79e5EFA061719EDaF8C69968c6e166ce322`, `${document.deployments.EQU}`];
10 changes: 10 additions & 0 deletions scripts/verify/verifyRewardCollectorV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import "dotenv/config";

const document = require(`../../deployments/${process.env.CHAIN_ID}.json`);

module.exports = [
`${document.deployments.Router}`,
`${document.deployments.EQU}`,
`${document.deployments.EFC}`,
`${document.deployments.PositionFarmRewardDistributor}`,
];

0 comments on commit 5b42a3b

Please sign in to comment.