mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-14 06:48:20 +00:00
ee99f17fbe
* Add Parlia consensus engine for Binance Smart Chain support * Leave RamanujanBlock as nil in params/config.go * Run `go fmt` on files needing it * Add comment for PoSA * Remove empty branches and ineffectual assignments in parlia.go * Remove commented imports * Fix compilation error * Remove EIP155Signer in transaction_signing.go * Fix compilation issue * Fix go fmt issues * Remove Ramanujan from print statement * Remove references to EthAPIBackend approach * Fix Finalize method across consensus engines * Run go fmt * More linting * Remove more changes * remove a comment * Remove unneeded hashing function * Remove bytes check and fix actual vs expected mistake
16 lines
807 B
Go
16 lines
807 B
Go
package systemcontracts
|
|
|
|
const (
|
|
// genesis contracts
|
|
ValidatorContract = "0x0000000000000000000000000000000000001000"
|
|
SlashContract = "0x0000000000000000000000000000000000001001"
|
|
SystemRewardContract = "0x0000000000000000000000000000000000001002"
|
|
LightClientContract = "0x0000000000000000000000000000000000001003"
|
|
TokenHubContract = "0x0000000000000000000000000000000000001004"
|
|
RelayerIncentivizeContract = "0x0000000000000000000000000000000000001005"
|
|
RelayerHubContract = "0x0000000000000000000000000000000000001006"
|
|
GovHubContract = "0x0000000000000000000000000000000000001007"
|
|
TokenManagerContract = "0x0000000000000000000000000000000000001008"
|
|
CrossChainContract = "0x0000000000000000000000000000000000002000"
|
|
)
|