Go to file
Jae Kwon 877dd02e28 ... 2014-10-05 21:21:34 -07:00
binary fix basic tests. 2014-10-04 19:16:49 -07:00
blocks fix basic tests. 2014-10-04 19:16:49 -07:00
common fix basic tests. 2014-10-04 19:16:49 -07:00
config saving development state... 2014-08-30 04:17:10 -07:00
consensus fix basic tests. 2014-10-04 19:16:49 -07:00
crypto go fmt 2014-07-01 14:50:24 -07:00
db fix basic tests. 2014-10-04 19:16:49 -07:00
docs . 2014-06-16 22:37:42 -07:00
mempool fixed algorithm 2014-10-03 01:09:26 -07:00
merkle ... 2014-10-05 21:21:34 -07:00
p2p fix basic tests. 2014-10-04 19:16:49 -07:00
rpc created "Node" 2014-07-09 18:33:44 -07:00
sim smaller integers to conserve memory 2014-08-30 04:17:08 -07:00
state fix basic tests. 2014-10-04 19:16:49 -07:00
.gitignore numeric fields are all native unboxed. 2014-08-30 16:28:51 -07:00
README.md update readme 2014-09-11 22:45:47 -07:00
log.go p2p README update 2014-09-11 11:17:59 -07:00
main.go fixed algorithm 2014-10-03 01:09:26 -07:00

README.md

TenderMint - proof of concept

  • p2p: P2P networking stack. Designed to be extensible.
  • merkle: Immutable Persistent Merkle-ized AVL+ Tree, used primarily for keeping track of mutable state like account balances.
  • blocks: The blockchain, storage of blocks, and all the associated structures.
  • state: The application state, which is mutated by blocks in the blockchain.
  • consensus: The core consensus algorithm logic.
  • mempool: Handles the broadcasting of uncommitted transactions.
  • crypto: Includes cgo bindings of ed25519.

Development Status

  • Testnet pending
  • Bootstrapping now
  • Mempool complete
  • Consensus complete
  • Block propagation sidelined
  • PEX peer exchange complete
  • p2p/* complete
  • Ed25519 bindings complete
  • merkle/* complete

Issues

  • merkle/* does not free old children nodes. Implement something memory-aware that makes merkle/* act like a weakly referenced map.