Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cl+el poc[WiP] #2804

Draft
wants to merge 39 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ecc8c51
initial commit: simple project structure with makefile, readme and bu…
Oct 18, 2024
9478aba
setting control-c handler
Oct 18, 2024
82e72ef
types and initial Monitor-Worker threading pattern
Oct 19, 2024
1855efb
added chronicles support
Oct 19, 2024
1804471
moved configs to dedicated directory
Oct 19, 2024
14d5488
added wrappers for execution an consensus layers
Oct 19, 2024
7997686
added monitoring skeleton
Oct 19, 2024
5e07b08
copy&paste beacon node from eth2
Oct 21, 2024
0c202a7
added secp256k1 support
Oct 21, 2024
2b9aadb
refactored types
Oct 21, 2024
7b15c09
fixed gcsafe error on createPidFile
Oct 21, 2024
79aa0fb
small repairs and additions
Oct 23, 2024
f461760
inital exec run script
Oct 23, 2024
6b91c3a
changes:
Oct 28, 2024
8d9652b
Improved synchronization mechanism
Oct 29, 2024
58340c6
synch achieved:
Oct 30, 2024
54007f7
Fixed metrics library warnings by deactivating metrics collection.
Nov 5, 2024
4b5834c
added software version
Nov 19, 2024
a6f8022
fixed create databasedir and fil limits bug
Nov 20, 2024
d19a075
added startup command with trusted synch
Nov 21, 2024
b9e58ae
nph format
Nov 25, 2024
2c5581c
trusted sync fixes
Nov 26, 2024
9da97e9
startup fixes
Nov 27, 2024
2c7eca1
Fix pid file creation
Nov 28, 2024
382296f
Start using eth2 code.
Nov 29, 2024
2476492
activate known P2P agents on makefile
Dec 4, 2024
78816d2
removed file adapted_block_chain_dag.nim
Dec 5, 2024
02e1127
Removal adapted beacon node code from eth2
Dec 9, 2024
1e30ed0
Removed unused imports
Dec 10, 2024
0e72162
nimbus_unified unit tests
Dec 11, 2024
63bac76
consensus wrapper unit tests
Dec 11, 2024
91a2fed
Use nimbus-eth2 draft branch
Dec 13, 2024
17c7cdb
bump nimbus-eth2 to '07389c2f4d29d57895f9c02d529250f82f0ee864a'
Dec 20, 2024
5a677ad
Added network metadata for mainnet, holesky and sepolia.
Dec 21, 2024
fa8fc41
small fixes:
Jan 4, 2025
25e162f
changed copyright year (2025)
Jan 6, 2025
64a0c3b
eth1 integration:
Jan 17, 2025
e6737ac
bump nimbus-eth2 to special PR latest commit 4f83c
Jan 17, 2025
65cb048
bump nimbus-eth2 to aadcfa8d7e927e12065b8b198b866fc53b1609c3
Jan 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
[submodule "vendor/nimbus-eth2"]
path = vendor/nimbus-eth2
url = https://github.com/status-im/nimbus-eth2.git
branch = unstable
branch = dev/pedro/unified_changes
[submodule "vendor/nim-taskpools"]
path = vendor/nim-taskpools
url = https://github.com/status-im/nim-taskpools.git
Expand Down Expand Up @@ -241,3 +241,23 @@
path = vendor/nim-minilru
url = https://github.com/status-im/nim-minilru.git
branch = master
[submodule "vendor/mainnet"]
path = vendor/mainnet
url = https://github.com/eth-clients/mainnet.git
ignore = untracked
branch = master
[submodule "vendor/holesky"]
path = vendor/holesky
url = https://github.com/eth-clients/holesky.git
ignore = untracked
branch = master
[submodule "vendor/sepolia"]
path = vendor/sepolia
url = https://github.com/eth-clients/sepolia.git
ignore = untracked
branch = master
[submodule "vendor/gnosis-chain-configs"]
path = vendor/gnosis-chain-configs
url = https://github.com/gnosischain/configs.git
ignore = untracked
branch = master
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ VERIF_PROXY_OUT_PATH ?= build/libverifproxy/
update \
nimbus \
nimbus_execution_client \
nimbus_unified \
fluffy \
nimbus_verified_proxy \
libverifproxy \
Expand Down Expand Up @@ -359,13 +360,20 @@ txparse: | build deps

# usual cleaning
clean: | clean-common
rm -rf build/{nimbus,nimbus_execution_client,fluffy,libverifproxy,nimbus_verified_proxy,$(TOOLS_CSV),$(FLUFFY_TOOLS_CSV),all_tests,test_kvstore_rocksdb,test_rpc,all_fluffy_tests,all_history_network_custom_chain_tests,test_portal_testnet,utp_test_app,utp_test,*.dSYM}
rm -rf build/{nimbus_unified,nimbus,nimbus_execution_client,fluffy,libverifproxy,nimbus_verified_proxy,$(TOOLS_CSV),$(FLUFFY_TOOLS_CSV),all_tests,test_kvstore_rocksdb,test_rpc,all_fluffy_tests,all_history_network_custom_chain_tests,test_portal_testnet,utp_test_app,utp_test,*.dSYM}
rm -rf tools/t8n/{t8n,t8n_test}
rm -rf tools/evmstate/{evmstate,evmstate_test}
ifneq ($(USE_LIBBACKTRACE), 0)
+ $(MAKE) -C vendor/nim-libbacktrace clean $(HANDLE_OUTPUT)
endif

# Nimbus unified related targets

# builds the unified client
NIM_PARAMS := -d:release --parallelBuild:1 -d:libp2p_agents_metrics -d:KnownLibP2PAgents=nimbus,lighthouse,lodestar,prysm,teku,grandine $(NIM_PARAMS)
nimbus_unified: | build deps
echo -e $(BUILD_MSG) "build/$@" && \
$(ENV_SCRIPT) nim c $(NIM_PARAMS) -d:disable_libbacktrace -d:libp2p_pki_schemes=secp256k1 -u:metrics -o:build/$@ "nimbus_unified/[email protected]"
# Note about building Nimbus as a library:
#
# There were `wrappers`, `wrappers-static`, `libnimbus.so` and `libnimbus.a`
Expand Down
4 changes: 3 additions & 1 deletion config.nims
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ if not defined(windows):
--opt:speed
--excessiveStackTrace:on
# enable metric collection
--define:metrics
when not defined(unified):
--define:metrics

# for heap-usage-by-instance-type metrics and object base-type strings
--define:nimTypeNames
--styleCheck:usages
Expand Down
10 changes: 9 additions & 1 deletion nimbus.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ requires "nim >= 1.6.0",
"blscurve",
"evmc",
"web3",
"minilru"
"minilru",
"secp256k1"

binDir = "build"

Expand All @@ -40,6 +41,7 @@ when declared(namedBin):
"nimbus/nimbus_execution_client": "nimbus_execution_client",
"fluffy/fluffy": "fluffy",
"nimbus_verified_proxy/nimbus_verified_proxy": "nimbus_verified_proxy",
"nimbus_unified":"nimbus_unified"
}.toTable()

import std/os
Expand Down Expand Up @@ -129,3 +131,9 @@ task nimbus_verified_proxy, "Build Nimbus verified proxy":

task nimbus_verified_proxy_test, "Run Nimbus verified proxy tests":
test "nimbus_verified_proxy/tests", "test_proof_validation", "-d:chronicles_log_level=ERROR -d:nimbus_db_backend=sqlite"


## nimbus unified tasks

task nimbus_unified, "Build nimbus unified":
buildBinary "nimbus_unified", "nimbus_unified/", "-d:chronicles_log_level=TRACE"
42 changes: 20 additions & 22 deletions nimbus/nimbus_execution_client.nim
Original file line number Diff line number Diff line change
Expand Up @@ -173,35 +173,33 @@ proc preventLoadingDataDirForTheWrongNetwork(db: CoreDbRef; conf: NimbusConf) =
expected=calculatedId
quit(QuitFailure)

proc run(nimbus: NimbusNode, conf: NimbusConf) =
## logging
setLogLevel(conf.logLevel)
if conf.logFile.isSome:
let logFile = string conf.logFile.get()
defaultChroniclesStream.output.outFile = nil # to avoid closing stdout
discard defaultChroniclesStream.output.open(logFile, fmAppend)
proc run*(nimbus: NimbusNode, conf: NimbusConf) =
# ## logging
# setLogLevel(conf.logLevel)
# if conf.logFile.isSome:
# let logFile = string conf.logFile.get()
# defaultChroniclesStream.output.outFile = nil # to avoid closing stdout
# discard defaultChroniclesStream.output.open(logFile, fmAppend)

setupFileLimits()
# setupFileLimits()

info "Launching execution client",
version = FullVersionStr,
conf
# info "Launching execution client", version = FullVersionStr, conf

when defined(evmc_enabled):
evmcSetLibraryPath(conf.evm)

# Trusted setup is needed for processing Cancun+ blocks
if conf.trustedSetupFile.isSome:
let fileName = conf.trustedSetupFile.get()
let res = loadTrustedSetup(fileName, 0)
if res.isErr:
fatal "Cannot load Kzg trusted setup from file", msg=res.error
quit(QuitFailure)
else:
let res = loadKzgTrustedSetup()
if res.isErr:
fatal "Cannot load baked in Kzg trusted setup", msg=res.error
quit(QuitFailure)
# if conf.trustedSetupFile.isSome:
# let fileName = conf.trustedSetupFile.get()
# let res = loadTrustedSetup(fileName, 0)
# if res.isErr:
# fatal "Cannot load Kzg trusted setup from file", msg=res.error
# quit(QuitFailure)
# else:
# let res = loadKzgTrustedSetup()
# if res.isErr:
# fatal "Cannot load baked in Kzg trusted setup", msg=res.error
# quit(QuitFailure)

createDir(string conf.dataDir)
let coreDB =
Expand Down
92 changes: 92 additions & 0 deletions nimbus_unified/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# Nimbus Unified

<!-- [![Github Actions CI](tbd) -->
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

[![Discord: Nimbus](https://img.shields.io/badge/discord-nimbus-orange.svg)](https://discord.gg/XRxWahP)
[![Status: #nimbus-general](https://img.shields.io/badge/status-nimbus--general-orange.svg)](https://join.status.im/nimbus-general)


# NOTE - whole document to be concluded...

# description
Nimbus Unified combines Ethereum execution and consensus layer functionalities, featuring a fully integrated beacon node, validator duties, and execution layer support. This setup allows the Nimbus client to handle both Ethereum consensus (Eth2) and execution (Eth1) services within a single package.
tbd
# documentation
For in-depth configuration and functionality of Nimbus Eth1 and Nimbus Eth2, refer to:

- [Nimbus-eth1 - Execution layer client](https://github.com/status-im/nimbus-eth1) Documentation
- [Nimbus-eth2 - Consensus layer client](https://github.com/status-im/nimbus-eth2) Documentation

--- to be concluded
# dependencies
tbd
# how to
## configuration
todo
## commands
todo
## build
Execute the make command on nimbus-eth1 directory
```
]$ make -j<#threads> nimbus_unified
```

### trusted node synchronization

Same options as nimbus-eth2 trusted node synchronization
```
]$ nimbus_unified -- trustedNodeSync

```

### known issues
<b>NOTE</b>
- theres is an issue with SIGINT handling. if process is hanged after ctrl^c send a SIGQUIT (ctrl+\\)

### run node
<b>NOTE</b>
- eth1 is running with default engine-api option
- current recommended options

```
--network
--datadir (will be shared with consensus)
--tcp-port=9000 (default)
--udp-port=9000 (default)
--rest
--rest-port=5052
--metrics
--el=http://127.0.0.1:8551 (default)
--jwt-secret=
```


1) generate jason web token


2) you can use the auxiliary script (do note that this script is temporary and to be removed)
```
]$ nimbus_unified/run_nimbus_unified.sh --el=http://127.0.0.1:8551 --jwt-secret="/tmp/jwtsecret" --web3-url=http://127.0.0.1:8551
```



## colaborate
We welcome contributions to Nimbus Unified! Please adhere to the following guidelines:

- Follow the [Nimbus Code of Conduct](https://github.com/status-im/nimbus-eth2/blob/master/CODE_OF_CONDUCT.md).
- Use the [Nimbus Code Style Guide](https://github.com/status-im/nimbus-eth2/blob/master/docs/code_style.md) to maintain code consistency.
- Format your code using the [Nim Pretty Printer (nph)](https://github.com/nim-lang/nimpretty) to ensure consistency across the codebase. Run it as part of your pull request process.
## License

Licensed and distributed under either of

* MIT license: [LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT

or

* Apache License, Version 2.0: [LICENSE-APACHEv2](LICENSE-APACHEv2) or https://www.apache.org/licenses/LICENSE-2.0

These files may not be copied, modified, or distributed except according to those terms.
68 changes: 68 additions & 0 deletions nimbus_unified/configs/nimbus_configs.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# nimbus_unified
# Copyright (c) 2025 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.

import
std/[os, atomics],
#eth2
beacon_chain/nimbus_binary_common,
#eth1
../../nimbus/nimbus_desc

## Exceptions
type NimbusServicesListError* = object of CatchableError

## Constants
## TODO: evaluate the proposed timeouts
const cNimbusMaxServices* = 5
const cNimbusServiceTimeoutMs* = 5000

## log
logScope:
topics = "Service manager"

## Nimbus workers arguments (thread arguments)
type
ConfigKind* = enum
Execution
Consensus

LayerConfig* = object
case kind*: ConfigKind
of Consensus:
consensusConfig*: BeaconNodeConf
of Execution:
executionConfig*: NimbusConf

ServiceParameters* = object
name*: string
layerConfig*: LayerConfig

## Service and associated service information
type NimbusService* = ref object #experimentar tipos com ref
name*: string
timeoutMs*: uint32
threadHandler*: Thread[ServiceParameters]

## Service manager
type NimbusServicesList* = ref object
serviceList*: array[cNimbusMaxServices, Option[NimbusService]]

## Service shutdown
var isShutDownRequired*: Atomic[bool]
isShutDownRequired.store(false)

# TODO: move this into config.nim file once we have the file in place
proc defaultDataDir*(): string =
let dataDir =
when defined(windows):
"AppData" / "Roaming" / "Nimbus_unified"
elif defined(macosx):
"Library" / "Application Support" / "Nimbus_unified"
else:
".cache" / "nimbus_unified"

getHomeDir() / dataDir
73 changes: 73 additions & 0 deletions nimbus_unified/consensus/consensus_wrapper.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# nimbus_unified
# Copyright (c) 2025 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.
import
std/atomics,
metrics,
chronos,
chronicles,
../configs/nimbus_configs,
#eth2
beacon_chain/[beacon_chain_db, beacon_node, nimbus_beacon_node, nimbus_binary_common],
beacon_chain/rpc/[rest_beacon_api, rest_api],
beacon_chain/networking/[network_metadata, network_metadata_downloads],
beacon_chain/validators/[keystore_management]

export nimbus_configs

## log
logScope:
topics = "Consensus layer"

proc checkForConsensusShutdown(config: BeaconNodeConf) {.async.} =
while isShutDownRequired.load() == false:
await sleepAsync(cNimbusServiceTimeoutMs)

if isShutDownRequired.load() == true:
bnStatus = BeaconNodeStatus.Stopping

# handles option of eth2 beacon node
proc handleStartingOption(config: var BeaconNodeConf) {.raises: [CatchableError].} =
let rng = HmacDrbgContext.new()

# More options can be added, might be out of scope given that they exist in eth2
case config.cmd
of BNStartUpCmd.noCommand:
doRunBeaconNode(config, rng)
of BNStartUpCmd.trustedNodeSync:
if config.blockId.isSome():
raise newException(
ValueError, "--blockId option has been removed - use --state-id instead!"
)

let
metadata = loadEth2Network(config)
db = BeaconChainDB.new(config.databaseDir, metadata.cfg, inMemory = false)
genesisState = waitFor fetchGenesisState(metadata)
waitFor db.doRunTrustedNodeSync(
metadata, config.databaseDir, config.eraDir, config.trustedNodeUrl,
config.stateId, config.lcTrustedBlockRoot, config.backfillBlocks, config.reindex,
config.downloadDepositSnapshot, genesisState,
)
db.close()
isShutDownRequired.store(true)
else:
notice("unknown option")
isShutDownRequired.store(true)

proc consensusWrapper*(params: ServiceParameters) {.raises: [CatchableError].} =
doAssert params.layerConfig.kind == Consensus

try:
var config = params.layerConfig.consensusConfig
discard config.checkForConsensusShutdown()
config.handleStartingOption()
except CatchableError as e:
fatal "error", message = e.msg
isShutDownRequired.store(true)

isShutDownRequired.store(true)
warn "\tExiting consensus layer"
Loading
Loading