Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorTrustyDev committed Dec 30, 2023
1 parent 06e1c4c commit f2f2ce2
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
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 original Evermint chain before renamed 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"
ApplicationBinaryName = "nvmd"
ApplicationHome = ".nevermind"

GitHubRepo = "https://github.com/EscanBE/evermint" // must be well-formed url pattern: "https://github.com/owner/repo"
GitHubRepo = "https://github.com/VictorTrustyDev/nevermind" // must be well-formed url pattern: "https://github.com/owner/repo"

BaseDenom = "wei"
DisplayDenom = "ether"
SymbolDenom = "ETH"
BaseDenom = "uever"
DisplayDenom = "ever"
SymbolDenom = "EVER"
BaseDenomExponent = 18

Bech32Prefix = "evm"
Bech32Prefix = "ever"

MainnetFullChainId = "evermint_90909-1"
TestnetFullChainId = "evermint_80808-1"
DevnetFullChainId = "evermint_70707-1"
MainnetFullChainId = "nevermind_123567-1"
TestnetFullChainId = "nevermind_5678-1"
DevnetFullChainId = "nevermind_1234-1"

MainnetEIP155ChainId = 90909
TestnetEIP155ChainId = 80808
DevnetEIP155ChainId = 70707
MainnetEIP155ChainId = 123567
TestnetEIP155ChainId = 5678
DevnetEIP155ChainId = 1234
)
```

0 comments on commit f2f2ce2

Please sign in to comment.