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 a5f880e
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 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
)
```

0 comments on commit a5f880e

Please sign in to comment.