Skip to content

Commit

Permalink
fix: counter script
Browse files Browse the repository at this point in the history
  • Loading branch information
tHeMaskedMan981 committed Oct 17, 2023
1 parent b132629 commit 2c915d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ scripts/deploy/gasEstimate.ts

# coverage
lcov.info

dev_switchboards.json
prod_switchboards.json
switchboards.json
5 changes: 1 addition & 4 deletions scripts/deploy/connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@ export const main = async () => {

const siblingIntegrationtype: IntegrationTypes[] = siblingSlugs.map(
(chainSlug) => {
return getDefaultIntegrationType(
ChainSlugToKey[chain],
ChainSlugToKey[chainSlug]
);
return getDefaultIntegrationType(chain, chainSlug);
}
);

Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy/scripts/switchboardData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const getSwitchboardData = async () => {
);
console.log("total switchboards: ", switchboards.length);
fs.writeFileSync(
"./switchboards.json",
`./${mode}_switchboards.json`,
JSON.stringify(switchboards, null, 2)
);
};
Expand Down

0 comments on commit 2c915d2

Please sign in to comment.