mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-10 13:01:21 +00:00
529d359ca6
An update to the devnet to introduce a local heimdall to facilitate multiple validators without the need for an external process, and hence validator registration/staking etc. In this initial release only span generation is supported. It has the following changes: * Introduction of a local grpc heimdall interface * Allocation of accounts via a devnet account generator () * Introduction on 'Services' for the network config "--chain bor-devnet --bor.localheimdall" will run a 2 validator network with a local service "--chain bor-devnet --bor.withoutheimdall" will sun a single validator with no heimdall service as before --------- Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
14 lines
798 B
Go
14 lines
798 B
Go
package contracts
|
|
|
|
// rootsender.sol
|
|
//go:generate solc --allow-paths ., --abi --bin --overwrite --optimize -o build rootsender.sol
|
|
//go:generate abigen -abi build/RootSender.abi -bin build/RootSender.bin -pkg contracts -type RootSender -out ./gen_rootsender.go
|
|
|
|
// teststatesender.sol
|
|
//go:generate solc --allow-paths ., --abi --bin --overwrite --optimize -o build teststatesender.sol
|
|
//go:generate abigen -abi build/TestStateSender.abi -bin build/TestStateSender.bin -pkg contracts -type TestStateSender -out ./gen_teststatesender.go
|
|
|
|
// childreceiver.sol
|
|
//go:generate solc --allow-paths ., --abi --bin --overwrite --optimize -o build childreceiver.sol
|
|
//go:generate abigen -abi build/ChildReceiver.abi -bin build/ChildReceiver.bin -pkg contracts -type ChildReceiver -out ./gen_childreceiver.go
|