mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 22:06:21 +00:00
7ea51d5b0b
* spec updates * make several constants uint64 to help minimize casting * document data type woes - will have to revisit these * change comment style on fields and constants to make room for better comments * add BLSVerify and BLSAddPbkeys facades to insulate spec code from milagro * fix proof of possession type * drop explicitly ordered container fields from ssz - there's an issue open to sort this out before committing it to the spec
31 lines
1021 B
Nim
31 lines
1021 B
Nim
import
|
|
asyncdispatch2, json_rpc/rpcclient,
|
|
spec/[datatypes, digest]
|
|
|
|
type
|
|
MainchainMonitor* = object
|
|
gethAddress: string
|
|
gethPort: Port
|
|
|
|
proc init*(T: type MainchainMonitor, gethAddress: string, gethPort: Port): T =
|
|
result.gethAddress = gethAddress
|
|
result.gethPort = gethPort
|
|
|
|
proc start*(m: var MainchainMonitor) =
|
|
# TODO
|
|
# Start an async loop following the new blocks using the ETH1 JSON-RPC
|
|
# interface and keep an always-up-to-date receipt reference here
|
|
discard
|
|
|
|
proc getBeaconBlockRef*(m: MainchainMonitor): Eth2Digest =
|
|
# This should be a simple accessor for the reference kept above
|
|
discard
|
|
|
|
# TODO update after spec change removed Specials
|
|
# iterator getValidatorActions*(m: MainchainMonitor,
|
|
# fromBlock, toBlock: Eth2Digest): SpecialRecord =
|
|
# # It's probably better if this doesn't return a SpecialRecord, but
|
|
# # rather a more readable description of the change that can be packed
|
|
# # in a SpecialRecord by the client of the API.
|
|
# discard
|