├── .gitignore ├── .nojekyll ├── 404.md ├── CNAME ├── LICENSE ├── README.md ├── _coverpage.md ├── _sidebar.md ├── assets ├── beacon-protocol.png ├── favicon.png ├── fireworks.gif ├── logo.png ├── nipost.png ├── poet-dag.png ├── transparentbg-white.gif ├── transparentbg.gif └── transparentbg0.gif ├── atx.md ├── beacon_overview.md ├── beacon_protocol.md ├── consensus_deepdive.md ├── consensus_overview.md ├── hare ├── .nojekyll ├── mmd │ ├── msg_validation.mmd │ ├── pre_round.mmd │ ├── round1.mmd │ ├── round2.mmd │ ├── round3.mmd │ └── round4.mmd └── svg │ ├── msg_validation.svg │ ├── round1.svg │ ├── round2.svg │ ├── round3.svg │ └── round4.svg ├── hare_FAQ.md ├── hare_README.md ├── index.html ├── mining_overview.md ├── nipost.md ├── p2p_overview.md ├── poet.md ├── post.md ├── style-dark.css ├── style.css ├── sync_overview.md └── transactions_overview.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/404.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | protocol.spacemesh.io 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/README.md -------------------------------------------------------------------------------- /_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/_coverpage.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/_sidebar.md -------------------------------------------------------------------------------- /assets/beacon-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/beacon-protocol.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fireworks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/fireworks.gif -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/nipost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/nipost.png -------------------------------------------------------------------------------- /assets/poet-dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/poet-dag.png -------------------------------------------------------------------------------- /assets/transparentbg-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/transparentbg-white.gif -------------------------------------------------------------------------------- /assets/transparentbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/transparentbg.gif -------------------------------------------------------------------------------- /assets/transparentbg0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/assets/transparentbg0.gif -------------------------------------------------------------------------------- /atx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/atx.md -------------------------------------------------------------------------------- /beacon_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/beacon_overview.md -------------------------------------------------------------------------------- /beacon_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/beacon_protocol.md -------------------------------------------------------------------------------- /consensus_deepdive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/consensus_deepdive.md -------------------------------------------------------------------------------- /consensus_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/consensus_overview.md -------------------------------------------------------------------------------- /hare/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hare/mmd/msg_validation.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/msg_validation.mmd -------------------------------------------------------------------------------- /hare/mmd/pre_round.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/pre_round.mmd -------------------------------------------------------------------------------- /hare/mmd/round1.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/round1.mmd -------------------------------------------------------------------------------- /hare/mmd/round2.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/round2.mmd -------------------------------------------------------------------------------- /hare/mmd/round3.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/round3.mmd -------------------------------------------------------------------------------- /hare/mmd/round4.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/mmd/round4.mmd -------------------------------------------------------------------------------- /hare/svg/msg_validation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/svg/msg_validation.svg -------------------------------------------------------------------------------- /hare/svg/round1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/svg/round1.svg -------------------------------------------------------------------------------- /hare/svg/round2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/svg/round2.svg -------------------------------------------------------------------------------- /hare/svg/round3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/svg/round3.svg -------------------------------------------------------------------------------- /hare/svg/round4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare/svg/round4.svg -------------------------------------------------------------------------------- /hare_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare_FAQ.md -------------------------------------------------------------------------------- /hare_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/hare_README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/index.html -------------------------------------------------------------------------------- /mining_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/mining_overview.md -------------------------------------------------------------------------------- /nipost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/nipost.md -------------------------------------------------------------------------------- /p2p_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/p2p_overview.md -------------------------------------------------------------------------------- /poet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/poet.md -------------------------------------------------------------------------------- /post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/post.md -------------------------------------------------------------------------------- /style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/style-dark.css -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/style.css -------------------------------------------------------------------------------- /sync_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/sync_overview.md -------------------------------------------------------------------------------- /transactions_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemeshos/protocol/HEAD/transactions_overview.md --------------------------------------------------------------------------------