Skip to content
#

evm

Here are 246 public repositories matching this topic...

shrugs
shrugs commented Apr 12, 2018

🎉 Description

The ECDSA contract has a function toEthSignedMessage(bytes32), but we should have a function that works for any length of a bytes array:

function toEthSignedMessage(bytes s) pure internal returns (bytes32) {
  return keccak256(
    "\x19Ethereum Signed Message:\n",
    uintToBytes(s.length),
    s);
}

Where uintToBytes is implemented from an ideally

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

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
ethereumjs-monorepo
Astar
akru
akru commented Jan 28, 2020

Motivation

It’s good to support as many local languages as it possible. One of steps of it is creating easy method to support multiple languages in docs. Currently documentation located in staketechnologies/plasmdocs repo.

Results

Result for closing this is PR into staketechnologies/plasmdocs repo with implementation multi language feature for gitbook generator and moving

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