mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 02:52:19 +00:00
18 lines
1.0 KiB
Go
18 lines
1.0 KiB
Go
|
package systemcontracts
|
||
|
|
||
|
import "github.com/ledgerwatch/erigon/common"
|
||
|
|
||
|
var (
|
||
|
// genesis contracts
|
||
|
ValidatorContract = common.HexToAddress("0x0000000000000000000000000000000000001000")
|
||
|
SlashContract = common.HexToAddress("0x0000000000000000000000000000000000001001")
|
||
|
SystemRewardContract = common.HexToAddress("0x0000000000000000000000000000000000001002")
|
||
|
LightClientContract = common.HexToAddress("0x0000000000000000000000000000000000001003")
|
||
|
TokenHubContract = common.HexToAddress("0x0000000000000000000000000000000000001004")
|
||
|
RelayerIncentivizeContract = common.HexToAddress("0x0000000000000000000000000000000000001005")
|
||
|
RelayerHubContract = common.HexToAddress("0x0000000000000000000000000000000000001006")
|
||
|
GovHubContract = common.HexToAddress("0x0000000000000000000000000000000000001007")
|
||
|
TokenManagerContract = common.HexToAddress("0x0000000000000000000000000000000000001008")
|
||
|
CrossChainContract = common.HexToAddress("0x0000000000000000000000000000000000002000")
|
||
|
)
|