forked from 0xPolygon/static
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d0a51b
commit 803dd3b
Showing
233 changed files
with
238 additions
and
1,413,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
var fs = require('fs'); | ||
var files = fs.readdirSync('network'); | ||
|
||
const networks = ['mainnet', 'testnet'] | ||
networks.forEach(n => { | ||
const versions = fs.readdirSync(`network/${n}`) | ||
versions.forEach(v => { | ||
const artifacts = fs.readdirSync(`network/${n}/${v}/artifacts`) | ||
artifacts.forEach(a => { | ||
const name = `network/${n}/${v}/artifacts/${a}` | ||
const abi = JSON.parse(fs.readFileSync(name)).abi | ||
if (!abi.length) { | ||
fs.unlinkSync(name) | ||
} else { | ||
fs.writeFileSync(name, JSON.stringify({ abi })) | ||
} | ||
}) | ||
}) | ||
}) |
Oops, something went wrong.