-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.13.2-0.0.1: [fix] - Circle CI build (#108) * Update CI node version * Change node version CI * Fix build issue by upping resources for yarn build in config.yml, small refactors to create a networks enum, es6 arrow func standards * bump version * fix naming of network enum file * fix naming of network enum file Co-authored-by: Adam Carpenter <Adam@blocknative.com> * 0.13.2-0.0.2: [fix] - Increase resources for circleCI prod build (#109) * Increase resources for circleCI prod build * increment version Co-authored-by: Adam Carpenter <Adam@blocknative.com> * 0.13.2-0.0.3: [enhancement] - Add popular networks support, reformatting using prettier (#110) * Added popular networks to enum * Reformat code using prettier * increment version * Add Main tag to Eth network * add returns to new blocks and remove consoleLog Co-authored-by: Adam Carpenter <Adam@blocknative.com> * Increase circleCI build resources, code enhancements * 0.13.2-0.0.4: Depandabot - Bump tmpl from 1.0.4 to 1.0.5 (#107) * Update CI node version * Change node version CI * Bump tmpl from 1.0.4 to 1.0.5 Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. - [Release notes](https://github.com/daaku/nodejs-tmpl/releases) - [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5) --- updated-dependencies: - dependency-name: tmpl dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Aaron Barnard <abarnard@protonmail.com> Co-authored-by: Taylor Dawson <taylorjdawson@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Taylor Dawson <taylorjdawson@gmail.com> Co-authored-by: Adam Carpenter <Adam@blocknative.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aaron Barnard <abarnard@protonmail.com>
- Loading branch information
1 parent
fbe044c
commit ec50718
Showing
5 changed files
with
48 additions
and
44 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
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,14 @@ | ||
const networkEnum = Object.freeze({ | ||
1: 'Ethereum Main', | ||
3: 'Ropsten', | ||
4: 'Rinkeby', | ||
5: 'Goerli', | ||
25: 'Cronos', | ||
42: 'Kovan', | ||
56: 'BSC', | ||
100: 'XDai', | ||
137: 'Polygon', | ||
250: 'Fantom', | ||
localhost: 'localhost' | ||
}); | ||
export default networkEnum; |
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