Nim implementation of the Ethereum Beacon Chain https://nimbus.guide
Go to file
mratsim f7e876471e initial impl of fork choice rules. Main types sorted out 2018-09-03 18:42:22 +02:00
beacon_chain initial impl of fork choice rules. Main types sorted out 2018-09-03 18:42:22 +02:00
research rename variable, use conversion instead of cast 2018-08-08 10:37:27 +02:00
tests initial commit 2018-07-20 15:46:03 +02:00
.appveyor.yml initial commit 2018-07-20 15:46:03 +02:00
.gitignore initial commit 2018-07-20 15:46:03 +02:00
.travis.yml initial commit 2018-07-20 15:46:03 +02:00
LICENSE-APACHEv2 initial commit 2018-07-20 15:46:03 +02:00
LICENSE-MIT initial commit 2018-07-20 15:46:03 +02:00
README.md Use Ethereum Foundation naming convention (snake_case + MACRO_CASE) 2018-08-17 18:21:10 +02:00
beacon_chain.nim Add the types used in the beacon chain 2018-07-20 20:18:56 +02:00
beacon_chain.nimble initial commit 2018-07-20 15:46:03 +02:00
nim.cfg initial impl of fork choice rules. Main types sorted out 2018-09-03 18:42:22 +02:00

README.md

Ethereum Beacon Chain

Build Status (Travis) Windows build status (Appveyor) License: MITLicense: Apache Stability: experimental

An alternative implementation of the Ethereum beacon chain in Nim.

Please see Full Casper chain v2.1 specs and the Ethereum Foundation reference implementation.

You can check where the beacon chain fits in the Ethereum research ecosystem in the Status Athenaeum.

Convention

Ethereum Foundation uses:

  • snake_case for fields and procedure names
  • MACRO_CASE for constants
  • PascalCase for types

Nim NEP-1 recommends:

  • camelCase for fields and procedure names
  • PascalCase for constants
  • PsacalCase for types

To facilitate collaboration and comparison, Nim-beacon-chain uses the Ethereum Foundation convention.

Installation

You can install the developement version of the library through nimble with the following command

nimble install https://github.com/status-im/nim-beacon-chain@#master

License

Licensed and distributed under either of