Skip to content

Commit

Permalink
Rename 'ui' list
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur Badretdinov committed Aug 10, 2020
1 parent a2a242d commit e88de96
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

* `eligible.json`: assets eligible for BAL mining as per weekly proposals
* `listed.json`: assets listed on balancer.exchange
* `ui.json`: assets vetted by community members (but not eligible for mining)
* `ui-not-eligible.json`: assets vetted by community members
* `untrusted.json`: assets that are incompatible with Balancer

## Generated
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function getLists() {
const eligible = JSON.parse(eligibleFile);
const listedFile = await fs.readFileSync('lists/listed.json');
const listed = JSON.parse(listedFile);
const uiFile = await fs.readFileSync('lists/ui.json');
const uiFile = await fs.readFileSync('lists/ui-not-eligible.json');
const ui = JSON.parse(uiFile);
const untrustedFile = await fs.readFileSync('lists/untrusted.json');
const untrusted = JSON.parse(untrustedFile);
Expand Down

0 comments on commit e88de96

Please sign in to comment.