diff --git a/genesis/testnet.json b/genesis/testnet.json index b25909e3f..15c098949 100644 --- a/genesis/testnet.json +++ b/genesis/testnet.json @@ -41,6 +41,7 @@ "cancunBlock": 35554400, "venokiBlock": 35554400, "whiteListDeployerContractV2Address": "0x50a7e07Aa75eB9C04281713224f50403cA79851F", + "roninTreasuryAddresss": "0x5cfca565c09cc32bb7ba7222a648f1b014d6c30b", "roninTrustedOrgUpgrade": { "proxyAddress": "0x7507dc433a98E1fE105d69f19f3B40E4315A4F32", "implementationAddress": "0x6A51C2B073a6daDBeCAC1A420AFcA7788C81612f" diff --git a/params/config.go b/params/config.go index 2060f51f9..7b63a3671 100644 --- a/params/config.go +++ b/params/config.go @@ -307,7 +307,7 @@ var ( RoninTestnetProfileContractAddress = common.HexToAddress("0x3b67c8D22a91572a6AB18acC9F70787Af04A4043") RoninTestnetFinalityTrackingAddress = common.HexToAddress("0x41aCDFe786171824a037f2Cd6224c5916A58969a") RoninTestnetWhiteListDeployerContractV2Address = common.HexToAddress("0x50a7e07Aa75eB9C04281713224f50403cA79851F") - + RoninTestnetTreasuryAddress = common.HexToAddress("0x5cfca565c09cc32bb7ba7222a648f1b014d6c30b") RoninTestnetChainConfig = &ChainConfig{ ChainID: big.NewInt(2021), HomesteadBlock: big.NewInt(0), @@ -354,7 +354,7 @@ var ( ShanghaiBlock: big.NewInt(35554400), CancunBlock: big.NewInt(35554400), VenokiBlock: big.NewInt(35554400), - RoninTreasuryAddress: nil, + RoninTreasuryAddress: &RoninTestnetTreasuryAddress, } // GoerliTrustedCheckpoint contains the light client trusted checkpoint for the Görli test network.