forked from evmos/evmos
-
Notifications
You must be signed in to change notification settings - Fork 3
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
06e1c4c
commit a5f880e
Showing
1 changed file
with
16 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
This is branch [rename-chain/original](https://github.com/EscanBE/evermint/tree/rename-chain/original), the original Evermint chain before renamed as example in [PR #1](https://github.com/EscanBE/evermint/pull/1) | ||
This is branch [rename-chain/after](https://github.com/EscanBE/evermint/tree/rename-chain/after), the new chain Nevermind after renamed from Escan/Evermint as example in [PR #1](https://github.com/EscanBE/evermint/pull/1) | ||
|
||
Summary original symbols of the chain before rename: | ||
Summary new symbols of the chain after renamed: | ||
```golang | ||
const ( | ||
ApplicationName = "evermint" | ||
ApplicationBinaryName = "evmd" | ||
ApplicationHome = ".evermint" | ||
ApplicationName = "nevermind" // renamed from "evermint" | ||
ApplicationBinaryName = "nvmd" // renamed from "evmd" | ||
ApplicationHome = ".nevermind" // renamed from ".evermint" | ||
|
||
GitHubRepo = "https://github.com/EscanBE/evermint" // must be well-formed url pattern: "https://github.com/owner/repo" | ||
GitHubRepo = "https://github.com/VictorTrustyDev/nevermind" // renamed from "https://github.com/EscanBE/evermint" | ||
|
||
BaseDenom = "wei" | ||
DisplayDenom = "ether" | ||
SymbolDenom = "ETH" | ||
BaseDenom = "uever" // renamed from "wei" | ||
DisplayDenom = "ever" // renamed from "ether" | ||
SymbolDenom = "EVER" // renamed from "ETH" | ||
BaseDenomExponent = 18 | ||
|
||
Bech32Prefix = "evm" | ||
Bech32Prefix = "ever" // renamed from "evm" | ||
|
||
MainnetFullChainId = "evermint_90909-1" | ||
TestnetFullChainId = "evermint_80808-1" | ||
DevnetFullChainId = "evermint_70707-1" | ||
MainnetFullChainId = "nevermind_123567-1" // renamed from "evermint_90909-1" | ||
TestnetFullChainId = "nevermind_5678-1" // renamed from "evermint_80808-1" | ||
DevnetFullChainId = "nevermind_1234-1" // renamed from "evermint_70707-1" | ||
|
||
MainnetEIP155ChainId = 90909 | ||
TestnetEIP155ChainId = 80808 | ||
DevnetEIP155ChainId = 70707 | ||
MainnetEIP155ChainId = 123567 // renamed from 90909 | ||
TestnetEIP155ChainId = 5678 // renamed from 80808 | ||
DevnetEIP155ChainId = 1234 // renamed from 70707 | ||
) | ||
``` |