Skip to content

Commit 411a3ca

Browse files
pedromiguelmirandapmmiranda
and
pmmiranda
authored
Renamed 'nimbus' directory and its references to 'execution_chain' (#3052)
* renamed nimbus folder to execution_chain * Renamed "nimbus" references to "execution_chain" * fixed wrongly changed http reference * delete snap types file given that it was deleted before this PR merge * missing 'execution_chain' replacement --------- Co-authored-by: pmmiranda <[email protected]>
1 parent 02014b3 commit 411a3ca

File tree

404 files changed

+400
-400
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404 files changed

+400
-400
lines changed

.github/workflows/fluffy.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ on:
1313
- 'fluffy/**'
1414
- '!fluffy/**.md'
1515
- '!fluffy/docs/**'
16-
- 'nimbus/rpc/hexstrings.nim'
17-
- 'nimbus/rpc/rpc_*.nim'
18-
- 'nimbus/db/**'
16+
- 'execution_chain/rpc/hexstrings.nim'
17+
- 'execution_chain/rpc/rpc_*.nim'
18+
- 'execution_chain/db/**'
1919
- 'vendor/**'
2020
- 'Makefile'
2121
- 'nimbus.nimble'
@@ -26,9 +26,9 @@ on:
2626
- 'fluffy/**'
2727
- '!fluffy/**.md'
2828
- '!fluffy/docs/**'
29-
- 'nimbus/rpc/hexstrings.nim'
30-
- 'nimbus/rpc/rpc_*.nim'
31-
- 'nimbus/db/**'
29+
- 'execution_chain/rpc/hexstrings.nim'
30+
- 'execution_chain/rpc/rpc_*.nim'
31+
- 'execution_chain/db/**'
3232
- 'vendor/**'
3333
- 'Makefile'
3434
- 'nimbus.nimble'

.github/workflows/nimbus_verified_proxy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- 'nimbus_verified_proxy/**'
1717
- '!nimbus_verified_proxy/**.md'
1818
- '!nimbus_verified_proxy/docs/**'
19-
- 'nimbus/db/**'
19+
- 'execution_chain/db/**'
2020
- 'vendor/**'
2121
- 'Makefile'
2222
- 'nimbus.nimble'
@@ -27,7 +27,7 @@ on:
2727
- 'nimbus_verified_proxy/**'
2828
- '!nimbus_verified_proxy/**.md'
2929
- '!nimbus_verified_proxy/docs/**'
30-
- 'nimbus/db/**'
30+
- 'execution_chain/db/**'
3131
- 'vendor/**'
3232
- 'Makefile'
3333
- 'nimbus.nimble'

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Ignore generated C and doc files
2424
nimcache
25-
/nimbus/docs
25+
/execution_chain/docs
2626

2727
/debug*.json
2828
/block*.json

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ ifneq ($(ENABLE_EVMC), 0)
190190
T8N_PARAMS := -d:chronicles_enabled=off
191191
endif
192192

193-
# eth protocol settings, rules from "nimbus/sync/protocol/eth/variables.mk"
193+
# eth protocol settings, rules from "execution_chain/sync/protocol/eth/variables.mk"
194194
NIM_PARAMS := $(NIM_PARAMS) $(NIM_ETH_PARAMS)
195195

196196
#- deletes and recreates "nimbus.nims" which on Windows is a copy instead of a proper symlink
@@ -211,7 +211,7 @@ $(TOOLS): | build deps rocksdb
211211

212212
nimbus_execution_client: | build deps rocksdb
213213
echo -e $(BUILD_MSG) "build/nimbus_execution_client" && \
214-
$(ENV_SCRIPT) nim c $(NIM_PARAMS) -d:chronicles_log_level=TRACE -o:build/nimbus_execution_client "nimbus/nimbus_execution_client.nim"
214+
$(ENV_SCRIPT) nim c $(NIM_PARAMS) -d:chronicles_log_level=TRACE -o:build/nimbus_execution_client "execution_chain/nimbus_execution_client.nim"
215215

216216
nimbus: nimbus_execution_client
217217
echo "The nimbus target is deprecated and will soon change meaning, use 'nimbus_execution_client' instead"

README.md

+1-1

examples/decompile_smart_contract.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2018-2024 Status Research & Development GmbH
2+
# Copyright (c) 2018-2025 Status Research & Development GmbH
33
# Licensed under either of
44
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
55
# http://www.apache.org/licenses/LICENSE-2.0)
@@ -8,7 +8,7 @@
88
# at your option. This file may not be copied, modified, or distributed except
99
# according to those terms.
1010

11-
import ../nimbus/evm/code_stream, strformat
11+
import ../execution_chain/evm/code_stream, strformat
1212

1313
var c =
1414
CodeStream.init(CodeBytesRef.fromHex("0x6003600202600055").expect("valid code"))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

nimbus/config.nim execution_chain/config.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const
4040
" Status Research & Development GmbH"
4141

4242
# e.g.:
43-
# nimbus/v0.1.0-abcdef/os-cpu/nim-a.b.c/emvc
43+
# nimbus_execution_client/v0.1.0-abcdef/os-cpu/nim-a.b.c/emvc
4444
# Copyright (c) 2018-2021 Status Research & Development GmbH
4545
NimbusBuild* = "$#\p$#" % [
4646
ClientId,
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

nimbus/db/README.md execution_chain/db/README.md

+14-14
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

nimbus/evm/interpreter/utils/utils_numeric.nim execution_chain/evm/interpreter/utils/utils_numeric.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2018-2024 Status Research & Development GmbH
2+
# Copyright (c) 2018-2025 Status Research & Development GmbH
33
# Licensed under either of
44
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
55
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

nimbus/nimbus_execution_client.nim execution_chain/nimbus_execution_client.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# those terms.
99

1010
import
11-
../nimbus/compile_info
11+
../execution_chain/compile_info
1212

1313
import
1414
std/[os, osproc, strutils, net],
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

fluffy/eth_data/era1.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# fluffy
2-
# Copyright (c) 2024 Status Research & Development GmbH
2+
# Copyright (c) 2024-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -21,7 +21,7 @@ import
2121

2222
from eth/common/eth_types_rlp import rlpHash
2323
from nimcrypto/hash import fromHex
24-
from ../../nimbus/utils/utils import calcTxRoot, calcReceiptsRoot
24+
from ../../execution_chain/utils/utils import calcTxRoot, calcReceiptsRoot
2525

2626
export e2store.readRecord
2727

fluffy/eth_data/history_data_json_store.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus - Portal Network
2-
# Copyright (c) 2022-2024 Status Research & Development GmbH
2+
# Copyright (c) 2022-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -14,7 +14,7 @@ import
1414
stew/[byteutils, io2],
1515
chronicles,
1616
eth/common/[hashes, blocks, receipts, headers_rlp],
17-
../../nimbus/common/[chain_config, genesis],
17+
../../execution_chain/common/[chain_config, genesis],
1818
../network/history/[history_content, validation/historical_hashes_accumulator]
1919

2020
from eth/common/eth_types_rlp import rlpHash

fluffy/rpc/rpc_eth_api.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import
1919
../network/beacon/beacon_light_client,
2020
../version
2121

22-
from ../../nimbus/errors import ValidationError
23-
from ../../nimbus/rpc/filters import headerBloomFilter, deriveLogs
22+
from ../../execution_chain/errors import ValidationError
23+
from ../../execution_chain/rpc/filters import headerBloomFilter, deriveLogs
2424

2525
from eth/common/eth_types_rlp import rlpHash
2626

fluffy/rpc/rpc_portal_nimbus_beacon_api.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# nimbus
2-
# Copyright (c) 2024 Status Research & Development GmbH
2+
# Copyright (c) 2024-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -11,7 +11,7 @@ import json_rpc/rpcserver, ../network/beacon/beacon_network
1111

1212
export rpcserver
1313

14-
# Nimbus/fluffy specific RPC methods for the Portal beacon network.
14+
# execution_chain/fluffy specific RPC methods for the Portal beacon network.
1515
proc installPortalNimbusBeaconApiHandlers*(rpcServer: RpcServer, n: BeaconNetwork) =
1616
rpcServer.rpc("portal_nimbus_beaconSetTrustedBlockRoot") do(blockRoot: string) -> bool:
1717
let root = Digest.fromHex(blockRoot)

fluffy/tests/state_network_tests/state_test_helpers.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fluffy
2-
# Copyright (c) 2021-2024 Status Research & Development GmbH
2+
# Copyright (c) 2021-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -15,7 +15,7 @@ import
1515
eth/p2p/discoveryv5/protocol as discv5_protocol,
1616
eth/p2p/discoveryv5/routing_table,
1717
../../network/wire/[portal_protocol, portal_stream, portal_protocol_config],
18-
../../../nimbus/common/chain_config,
18+
../../../execution_chain/common/chain_config,
1919
../../network/history/[history_content, history_network, history_validation],
2020
../../network/state/[state_content, state_utils, state_network],
2121
../../eth_data/yaml_utils,

fluffy/tests/state_network_tests/test_state_endpoints_genesis.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2023-2024 Status Research & Development GmbH
2+
# Copyright (c) 2023-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -12,7 +12,7 @@ import
1212
results,
1313
eth/trie,
1414
eth/common/[addresses, hashes],
15-
../../../nimbus/common/chain_config,
15+
../../../execution_chain/common/chain_config,
1616
../../network/wire/[portal_protocol, portal_stream],
1717
../../network/state/
1818
[state_content, state_network, state_gossip, state_endpoints, state_utils],

fluffy/tests/state_network_tests/test_state_gossip_getparent_genesis.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2023-2024 Status Research & Development GmbH
2+
# Copyright (c) 2023-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -13,7 +13,7 @@ import
1313
results,
1414
eth/[trie, trie/db],
1515
eth/common/hashes,
16-
../../../nimbus/common/chain_config,
16+
../../../execution_chain/common/chain_config,
1717
../../network/state/[state_content, state_validation, state_gossip, state_utils],
1818
./state_test_helpers
1919

fluffy/tests/state_network_tests/test_state_validation_genesis.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2023-2024 Status Research & Development GmbH
2+
# Copyright (c) 2023-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -13,7 +13,7 @@ import
1313
results,
1414
eth/[trie, trie/trie_defs],
1515
eth/common/[accounts, addresses, hashes],
16-
../../../nimbus/common/chain_config,
16+
../../../execution_chain/common/chain_config,
1717
../../network/state/[state_content, state_validation, state_utils],
1818
./state_test_helpers
1919

0 commit comments

Comments
 (0)