Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cosmos/ethermint-archive
Ethereum on Tendermint using Cosmos-SDK!
https://github.com/cosmos/ethermint-archive
blockchain consensus ethereum ethermint geth minikube mist tendermint tendermint-consensus truffle
Last synced: about 2 months ago
JSON representation
Ethereum on Tendermint using Cosmos-SDK!
- Host: GitHub
- URL: https://github.com/cosmos/ethermint-archive
- Owner: cosmos
- License: apache-2.0
- Archived: true
- Created: 2016-11-11T10:59:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-10-07T13:33:26.000Z (over 4 years ago)
- Last Synced: 2024-06-19T15:13:30.711Z (7 months ago)
- Topics: blockchain, consensus, ethereum, ethermint, geth, minikube, mist, tendermint, tendermint-consensus, truffle
- Language: Go
- Homepage:
- Size: 17.5 MB
- Stars: 661
- Watchers: 83
- Forks: 184
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
> This repo is archived as of October 7, 2020 but made available for historical record.
### Active development of Ethermint is located at [github.com/cosmos/ethermint](https://github.com/cosmos/ethermint)
[![CircleCI](https://circleci.com/gh/cosmos/ethermint.svg?style=svg)](https://circleci.com/gh/cosmos/ethermint)
[![](https://godoc.org/github.com/cosmos/ethermint?status.svg)](http://godoc.org/github.com/cosmos/ethermint) [![Go Report Card](https://goreportcard.com/badge/github.com/cosmos/ethermint)](https://goreportcard.com/report/github.com/cosmos/ethermint)# Ethermint
\***\*WARNING:\*\*** Ethermint is under VERY ACTIVE DEVELOPMENT and should be treated as pre-alpha software. This means it is not meant to be run in production, its APIs are subject to change without warning and should not be relied upon, and it should not be used to hold any value. We will remove this warning when we have a release that is stable, secure, and properly tested.
## What is it?
`ethermint` will be an implementation of the EVM that runs on top of [`tendermint`](https://github.com/tendermint/tendermint) consensus, a Proof of Stake system. This project has as its primary goals:
- [Hard Spoon](https://blog.cosmos.network/introducing-the-hard-spoon-4a9288d3f0df) enablement: This is the ability to take a token from the Ethereum mainnet and "spoon" (shift) the balances over to another network. This feature is intended to make it easy for applications that require more transactions than the Ethereum main chain can provide to move their code over to a compatible chain with much more capacity.
- Web3 Compatibility: In order enable applications to be moved over to an ethermint chain existing tooling (i.e. web3 compatible clients) need to be able to interact with `ethermint`.### Implementation
#### Completed
- Have a working implementation that can parse and validate the existing ETH Chain and persist it in a Tendermint store
- Implement Ethereum transactions in the CosmosSDK#### Current Work
- Implement web3 compatible API layer
- Implement the EVM as a CosmosSDK module
- Allow the Ethermint EVM to interact with other [Cosmos SDK modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/core/app3.md)#### Next Steps
- Hard spoon enablement: The ability to export state from `geth` and import token balances into Ethermint
- Ethermint is a functioning Cosmos SDK application and can be deployed as its own zone
- Full web3 compatibility will enable existing Ethereum applications to use Ethermint### Building Ethermint
To build, execute the following commands:
```bash
# To build the binary and put the resulting binary in ./build
$ make tools deps build# To build the project and install it in $GOBIN
$ make tools deps install
```### Tests
Integration tests are invoked via:
```bash
$ make test
```To run CLI tests, execute:
```bash
$ make test-cli
```#### Ethereum Mainnet Import
There is an included Ethereum mainnet exported blockchain file in `importer/blockchain`
that includes blocks up to height `97638`. To execute and test a full import of
these blocks using the EVM module, execute:```bash
$ make test-import
```You may also provide a custom blockchain export file to test importing more blocks
via the `--blockchain` flag. See `TestImportBlocks` for further documentation.### Community
The following chat channels and forums are a great spot to ask questions about Ethermint:
- [Cosmos Riot Chat Channel](https://riot.im/app/#/group/+cosmos:matrix.org)
- Cosmos Forum [![Discourse status](https://img.shields.io/discourse/https/forum.cosmos.network/status.svg)](https://forum.cosmos.network)