Common utilities for Ethereum https://nimbus.status.im
Go to file
Etan Kissling c482b4c5b6
Introduce wrapper type for EIP-4844 transactions (#682)
EIP-4844 blob sidecars are a concept that only exists in the mempool.
After inclusion of a transaction into an execution block, only the
versioned hash within the transaction remains. To improve type safety,
replace the `Transaction.networkPayload` member with a wrapper type
`PooledTransaction` that is used in contexts where blob sidecars exist.
2024-05-13 11:19:00 +03:00
.github/workflows test Nim 2.0 in CI and use non-EOL macOS version (#677) 2024-02-14 05:07:55 +00:00
doc
eth Introduce wrapper type for EIP-4844 transactions (#682) 2024-05-13 11:19:00 +03:00
tests Introduce wrapper type for EIP-4844 transactions (#682) 2024-05-13 11:19:00 +03:00
tools Fix chronos related deprecated warnings in discv5 and uTP (#667) 2024-01-22 17:08:08 +01:00
.gitignore normalise nimble, ci (#567) 2024-01-23 16:48:29 +00:00
LICENSE-APACHEv2
LICENSE-MIT
README.md
config.nims
eth.nimble test refc in CI in Nim 2.0 and later (#676) 2024-02-14 03:35:28 +00:00
nim.cfg

README.md

eth - Eth Common Library

License: Apache License: MIT Stability: experimental Github action

Introduction

Ethereum-related utilities written in Nim. Includes things like Bloom filters, private/public key utilities, RLP, devp2p, and more.

Docs

Prerequisites

  • Nim & Nimble

Building & Testing

# Install required modules
nimble install
# Run full test suite
nimble test

You can also run specific parts of the test suite, e.g.:

# Test p2p functionality
nimble test_p2p
# Test rlp functionality
nimble test_rlp

Fuzzing

Next to the test suite, there are also several fuzzing test cases available. How these can be run is explained in the fuzzing readme.

License

Licensed and distributed under either of

or

at your option. This file may not be copied, modified, or distributed except according to those terms.