Summary
- debugger setup
- main entrypoint
- rpc handler
- p2p/eth66 handler
- new block execution
- evm
/* | |
URL safe json | |
cf. | |
- https://www.json.org/json-en.html | |
- https://github.com/Sage/jsurl | |
- https://url.spec.whatwg.org/#application-x-www-form-urlencoded-percent-encode-set | |
- ASCII alphanumeric, U+002A (*), U+002D (-), U+002E (.), and U+005F (_) |
# network
Development
pip install -e .
pip install -r test-requirements.txt
# Run single test
pytest mypy -n0 -v -s -k testNarrowingNestedUnionOfTypedDicts
# Run with debugger
Separate directories for different build type
./autogen.sh
mkdir build-0 && cd build-0
../configure --without-bdb --prefix=$PWD/install CC=clang CXX=clang++ LDFLAGS=-fuse-ld=lld
mkdir build-1 && cd build-1
../configure --with-gui=qt5 --with-incompatible-bdb --prefix=$PWD/install CC=clang CXX=clang++ LDFLAGS=-fuse-ld=lld