Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions genesis/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
"trippBlock": 36052600,
"trippPeriod": 19907,
"aaronBlock": 36052600,
"shanghaiBlock": 43447600,
"cancunBlock": 43447600,
"venokiBlock": 43447600,
"whiteListDeployerContractV2Address": "0xc1876d5C4BFAF0eE325E4226B2bdf216D9896AE1",
"roninTreasuryAddress": "0xb903E3936d3ca90b69b29F1df2810083a2DC0d71",
"roninTrustedOrgUpgrade": {
"proxyAddress": "0x98D0230884448B3E2f09a177433D60fb1E19C090",
"implementationAddress": "0x59646258Ec25CC329f5ce93223e0A50ccfA3e885"
Expand Down
10 changes: 5 additions & 5 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ var (
TrippBlock: big.NewInt(36052600),
TrippPeriod: big.NewInt(19907),
AaronBlock: big.NewInt(36052600),
ShanghaiBlock: big.NewInt(43254600),
CancunBlock: big.NewInt(43254600),
VenokiBlock: big.NewInt(43254600),
ShanghaiBlock: big.NewInt(43447600),
CancunBlock: big.NewInt(43447600),
VenokiBlock: big.NewInt(43447600),
RoninTreasuryAddress: nil,
}

Expand All @@ -307,8 +307,8 @@ var (
RoninTestnetProfileContractAddress = common.HexToAddress("0x3b67c8D22a91572a6AB18acC9F70787Af04A4043")
RoninTestnetFinalityTrackingAddress = common.HexToAddress("0x41aCDFe786171824a037f2Cd6224c5916A58969a")
RoninTestnetWhiteListDeployerContractV2Address = common.HexToAddress("0x50a7e07Aa75eB9C04281713224f50403cA79851F")
RoninTestnetTreasuryAddress = common.HexToAddress("0x5cfca565c09cc32bb7ba7222a648f1b014d6c30b")
RoninTestnetChainConfig = &ChainConfig{
RoninTestnetTreasuryAddress = common.HexToAddress("0x5cfca565c09cc32bb7ba7222a648f1b014d6c30b")
RoninTestnetChainConfig = &ChainConfig{
ChainID: big.NewInt(2021),
HomesteadBlock: big.NewInt(0),
EIP150Block: big.NewInt(0),
Expand Down
6 changes: 3 additions & 3 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
VersionPatch = 2 // Patch version component of the current release
VersionMeta = "" // Version metadata to append to the version string
)

// Version holds the textual version string.
Expand Down