Skip to content
#

evm

Here are 281 public repositories matching this topic...

VERTlG0
VERTlG0 commented Jul 8, 2017

The cpp-ethereum homepage is not exactly helpful... http://cpp-ethereum.org/ which just takes you to here: http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/ which only helps with building and installing.. and the only useful link is the "Running" which is only this: "Running eth without any argument will synchronise your node to the public blockchain. It is also possible to create or

ethermint
crypto-facs
crypto-facs commented Sep 4, 2021

Currently TraceConfig type on protobuf has Timeout as string and is later parse inside of the function. This Timeout parameter should be of type time.duration to avoid having this extra step.

This was done in the first place to comply with Go-Ethereum debug_traceTransaction grpc endpoint.

pipermerriam
pipermerriam commented Aug 1, 2019

What is wrong?

Previous to ethereum/py-evm#1805 we had classes like eth.vm.BaseVM that served as the reference. Now, we have interfaces defined in eth.abc.

There are now two primary problems.

  • Many of our docstrings might still refer to the wrong class. Most class references in docstrings should be referencing the abc base classes now.
  • Most of the met
transmissions11
transmissions11 commented Sep 22, 2021

Right now env vars that accept boolean-esque values (like DAPP_TEST_FFI, HEVM_RPC, and DAPP_BUILD_OPTIMIZE) each require slightly different values to represent true.

Sometimes 1 means true, sometimes yes means true, sometimes any non 0 value means true, and sometimes the variable being set at all means true!

Ideally all boolean-esque env vars would only accept one of these value

MarekM25
MarekM25 commented Oct 20, 2021

The current config allows us to set up only one URL for JsonRPC. For security reasons, our node has to be able to set up many URLs/ports. After the merge, we will need to listen to different ports for different RPC modules. The node should be able to duplicate RPC modules for many ports. AFAIK, the consensus clients use these modules: engine, eth, net, subscribe, web3, and maybe more.

The ques

Improve this page

Add a description, image, and links to the evm topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the evm topic, visit your repo's landing page and select "manage topics."

Learn more