-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nimbus light client integration with status-go
- Loading branch information
Vitaliy Vlasov
committed
Aug 18, 2023
1 parent
df9c73c
commit e04d676
Showing
24 changed files
with
167 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ethash
updated
4 files
+12 −13 | .github/workflows/ci.yml | |
+1 −2 | .gitignore | |
+2 −2 | src/private/intmath.nim | |
+2 −2 | tests/test_internal_multiprecision_arithmetic.nim |
Submodule nim-blscurve
updated
13 files
+43 −0 | .appveyor.yml | |
+2 −2 | .github/workflows/ci.yml | |
+50 −0 | .travis.yml | |
+4 −3 | README.md | |
+175 −0 | azure-pipelines.yml | |
+2 −2 | benchmarks/bls_signature.nim | |
+3 −2 | blscurve.nimble | |
+31 −6 | blscurve/bls_backend.nim | |
+34 −107 | blscurve/bls_batch_verifier.nim | |
+1 −9 | blscurve/miracl/milagro.nim | |
+1 −1 | tests/eth2_vectors.nim | |
+8 −8 | tests/t_batch_verifier.nim | |
+1 −1 | vendor/blst |
Submodule nim-chronicles
updated
4 files
+39 −0 | .appveyor.yml | |
+2 −2 | .github/workflows/ci.yml | |
+26 −0 | .travis.yml | |
+2 −0 | README.md |
Submodule nim-chronos
updated
60 files
Submodule nim-confutils
updated
from dbe8d6 to 276da8
Submodule nim-eth
updated
90 files
Submodule nim-evmc
updated
5 files
+10 −10 | .github/workflows/ci.yml | |
+7 −1 | README.md | |
+2 −2 | evmc.nimble | |
+10 −50 | evmc/evmc.nim | |
+0 −42 | tests/evmc_c/evmc.h |
Submodule nim-faststreams
updated
7 files
+2 −6 | .github/workflows/ci.yml | |
+6 −11 | faststreams.nimble | |
+0 −4 | faststreams/async_backend.nim | |
+37 −31 | faststreams/inputs.nim | |
+35 −54 | faststreams/outputs.nim | |
+0 −19 | tests/test_inputs.nim | |
+1 −31 | tests/test_outputs.nim |
Submodule nim-json-rpc
updated
7 files
+1 −1 | .github/workflows/ci.yml | |
+3 −2 | json_rpc.nimble | |
+2 −2 | json_rpc/client.nim | |
+13 −6 | json_rpc/clients/httpclient.nim | |
+1 −1 | json_rpc/jsonmarshal.nim | |
+2 −7 | json_rpc/servers/httpserver.nim | |
+196 −0 | nimble.lock |
Submodule nim-presto
updated
6 files
+2 −2 | .github/workflows/ci.yml | |
+131 −0 | nimble.lock | |
+3 −2 | presto.nimble | |
+44 −37 | presto/client.nim | |
+1 −1 | presto/secureserver.nim | |
+32 −66 | tests/testclient.nim |
Submodule nim-secp256k1
updated
17 files
+41 −0 | .appveyor.yml | |
+0 −2 | .gitignore | |
+2 −2 | .gitmodules | |
+27 −0 | .travis.yml | |
+2 −0 | README.md | |
+18 −14 | ci/Jenkinsfile | |
+26 −17 | secp256k1.nim | |
+2 −2 | secp256k1.nimble | |
+28 −20 | secp256k1/abi.nim | |
+347 −0 | secp256k1_wrapper/README.md | |
+1,163 −0 | secp256k1_wrapper/ecmult_static_context.h | |
+13 −0 | secp256k1_wrapper/gen.sh | |
+118 −0 | secp256k1_wrapper/libsecp256k1-config.h | |
+1 −0 | secp256k1_wrapper/secp256k1 | |
+3 −37 | tests/test_secp256k1.nim | |
+0 −3 | vendor/README.md | |
+0 −1 | vendor/secp256k1 |
Submodule nim-snappy
updated
17 files
+49 −0 | .appveyor.yml | |
+12 −17 | .github/workflows/ci.yml | |
+0 −1 | .gitignore | |
+0 −1 | .gitmodules | |
+33 −0 | .travis.yml | |
+10 −14 | snappy.nim | |
+5 −25 | snappy.nimble | |
+1 −3 | snappy/codec.nim | |
+0 −2 | snappy/decoder.nim | |
+1 −3 | snappy/encoder.nim | |
+1 −3 | snappy/exceptions.nim | |
+18 −24 | snappy/faststreams.nim | |
+3 −3 | snappy/streams.nim | |
+11 −23 | tests/benchmark.nim | |
+1 −1 | tests/fuzzing/fuzz_block_format.nim | |
+1 −1 | tests/snappycpp | |
+6 −34 | tests/test_framed.nim |
Submodule nim-stew
updated
29 files
+1 −1 | .github/workflows/ci.yml | |
+2 −2 | README.md | |
+4 −4 | stew.nimble | |
+2 −2 | stew/assign2.nim | |
+3 −3 | stew/base58.nim | |
+25 −25 | stew/bitops2.nim | |
+0 −59 | stew/enums.nim | |
+1 −1 | stew/objects.nim | |
+1 −4 | stew/ptrops.nim | |
+8 −5 | stew/ranges/stackarrays.nim | |
+992 −7 | stew/results.nim | |
+381 −3 | stew/shims/atomics.nim | |
+0 −77 | stew/shims/enumutils.nim | |
+3 −2 | stew/shims/net.nim | |
+16 −1 | stew/shims/os.nim | |
+56 −0 | stew/shims/parseutils.nim | |
+2 −1 | stew/shims/strings.nim | |
+0 −15 | stew/shims/typetraits.nim | |
+240 −0 | stew/varints.nim | |
+4 −2 | tests/all_tests.nim | |
+2 −2 | tests/test_base58.nim | |
+1 −1 | tests/test_bitops2.nim | |
+0 −37 | tests/test_enums.nim | |
+20 −20 | tests/test_interval_set.nim | |
+13 −13 | tests/test_keyed_queue.nim | |
+0 −5 | tests/test_ptrops.nim | |
+423 −0 | tests/test_results.nim | |
+13 −0 | tests/test_results2.nim | |
+72 −0 | tests/test_varints.nim |
Submodule nim-taskpools
updated
22 files
+20 −23 | .github/workflows/ci.yml | |
+0 −2 | .gitignore | |
+1 −1 | benchmarks/bouncing_producer_consumer/taskpool_bpc.nim | |
+2 −2 | benchmarks/dfs/taskpool_dfs.nim | |
+11 −17 | benchmarks/heat/taskpool_heat.nim | |
+3 −3 | benchmarks/nqueens/taskpool_nqueens.nim | |
+0 −4 | config.nims | |
+3 −6 | examples/e01_simple_tasks.nim | |
+1 −1 | examples/e02_parallel_pi.nim | |
+0 −4 | nimble.lock | |
+2 −2 | taskpools.nim | |
+28 −28 | taskpools.nimble | |
+1 −1 | taskpools/ast_utils.nim | |
+50 −36 | taskpools/channels_spsc_single.nim | |
+7 −5 | taskpools/chase_lev_deques.nim | |
+6 −4 | taskpools/event_notifiers.nim | |
+10 −9 | taskpools/flowvars.nim | |
+12 −0 | taskpools/shims_pre_1_6/README.md | |
+54 −0 | taskpools/shims_pre_1_6/effecttraits.nim | |
+50 −0 | taskpools/shims_pre_1_6/isolation.nim | |
+48 −29 | taskpools/shims_pre_1_6/tasks.nim | |
+24 −11 | taskpools/taskpools.nim |
Submodule nim-web3
updated
13 files
+3 −3 | .github/workflows/ci.yml | |
+1 −1 | tests/all_tests.nim | |
+0 −56 | tests/test_json_marshalling.nim | |
+47 −0 | tests/test_quantity.nim | |
+3 −7 | web3.nim | |
+8 −2 | web3.nimble | |
+3 −4 | web3/conversions.nim | |
+1 −1 | web3/encoding.nim | |
+2 −22 | web3/engine_api.nim | |
+4 −10 | web3/engine_api_callsigs.nim | |
+11 −28 | web3/engine_api_types.nim | |
+1 −1 | web3/ethhexstrings.nim | |
+51 −84 | web3/ethtypes.nim |
Submodule nimbus-eth2
updated
380 files
Submodule nimcrypto
updated
15 files
+3 −3 | .github/workflows/ci.yml | |
+8 −10 | nimcrypto.nimble | |
+58 −58 | nimcrypto/bcmode.nim | |
+6 −6 | nimcrypto/blake2.nim | |
+10 −10 | nimcrypto/blowfish.nim | |
+10 −10 | nimcrypto/hmac.nim | |
+6 −6 | nimcrypto/keccak.nim | |
+10 −10 | nimcrypto/rijndael.nim | |
+4 −4 | nimcrypto/ripemd.nim | |
+4 −4 | nimcrypto/sha.nim | |
+4 −4 | nimcrypto/sha2.nim | |
+14 −14 | nimcrypto/twofish.nim | |
+8 −4 | nimcrypto/utils.nim | |
+3 −5 | tests/bootstrap.bat | |
+3 −5 | tests/bootstrap.sh |
Submodule portal-spec-tests
updated
5 files