Skip to content

Commit

Permalink
fix: be explicit when referring to mainnet (#17)
Browse files Browse the repository at this point in the history
* fix: be explicit when referring to mainnet

* fix: api report
  • Loading branch information
nicosantangelo authored Sep 1, 2021
1 parent 2935ec4 commit 8613a79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export enum ChainName {
// (undocumented)
ETHEREUM_KOVAN = "Kovan",
// (undocumented)
ETHEREUM_MAINNET = "Ethereum",
ETHEREUM_MAINNET = "Ethereum Mainnet",
// (undocumented)
ETHEREUM_RINKEBY = "Rinkeby",
// (undocumented)
Expand Down
2 changes: 1 addition & 1 deletion src/dapps/chain-name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ChainId } from './chain-id'
* @alpha
*/
export enum ChainName {
ETHEREUM_MAINNET = 'Ethereum',
ETHEREUM_MAINNET = 'Ethereum Mainnet',
ETHEREUM_ROPSTEN = 'Ropsten',
ETHEREUM_RINKEBY = 'Rinkeby',
ETHEREUM_GOERLI = 'Goerli',
Expand Down

0 comments on commit 8613a79

Please sign in to comment.