├── .gitignore ├── Blogs ├── An Introduction to the BlockDAG Paradigm.md ├── Blockchain terminology; the 35 most commonly used blockchain terms explained.md ├── Confirmation Times in SPECTRE.md ├── Incentives and Trade-offs in Transaction Selection in DAG-based Protocols.md ├── Transaction Selection Games in BlockDAGs.md ├── a-zero-math-introduction-to-markov-chain-monte-carlo-methods.md ├── blockchains-dont-scale-not-today-at-least-but-there-s-hope.md ├── performance-vs-scalability.md └── smart-contract-languages-comparison.md ├── Papers ├── Algorand │ ├── 1-INTRODUCTION.md │ ├── 10-EVALUATION.md │ ├── 11-FUTURE WORK.md │ ├── 12-CONCLUSION.md │ ├── 2-RELATED WORK.md │ ├── 3-GOALS AND ASSUMPTIONS.md │ ├── 4-OVERVIEW.md │ ├── 5-CRYPTOGRAPHIC SORTITION.md │ ├── 6-BLOCK PROPOSAL.md │ ├── 7-BA⋆.md │ ├── 8-ALGORAND.md │ ├── 9-IMPLEMENTATION.md │ └── ABSTRACT.md ├── Avalanche │ ├── 1 Introduction.md │ ├── 2 Approach.md │ └── Abstract.md ├── DagCoin │ ├── 0-Abstract.md │ ├── 1-Introduction.md │ ├── 2-Safely accepting Double-spends in the DAG-chain.md │ ├── 3-Preventing too many transactions merging too many transactions.md │ ├── 4-Preventing Unbounded Cascade Updates to Confirmation Scores.md │ ├── 5-Periodic re-computing to reduce computation load.md │ ├── 6-Targeting a fixed transactions rate vs no maximum rate.md │ └── 7-Conclusion.md ├── Inclusive │ ├── 1-Introduction.md │ ├── 2-From Trees to Directed Acyclic Graphs (DAGs).md │ ├── 3-Security.md │ ├── Abstract.md │ └── DefinitionsBeforeLemma3_Tony.jpeg ├── PHANTOM │ ├── 1-INTRODUCTION.md │ ├── 2-THE PHANTOM PROTOCOL.md │ ├── 3-FORMAL MODEL AND STATEMENT.md │ ├── 4-SCALABILITY AND NETWORK DELAYS.md │ ├── 5-PROOF.md │ ├── 6-VARIANTS.md │ ├── 7-CONFIRMATION TIMES.md │ ├── ABSTRACT.md │ └── PHANTOM___an_efficient_implementation__chinese.pdf ├── RepuCoin │ ├── 1-Introduction.md │ ├── 2-RelatedWork.md │ ├── 3-SystemAndThreatModel.md │ ├── 4-RepuCoin.md │ └── 4.1-BlockMiningAndRewardSystem.md ├── SPECTRE │ ├── 1-INTRODUCTION.md │ ├── 2-FORMAL STATEMENT OF THE PROBLEM.md │ ├── 3.SPECTRE VS BITCOIN – OVERVIEW.md │ ├── 4. THE SPECTRE PROTOCOL.md │ ├── 5. HIGH - LEVEL OVERVIEW OF THE PROOF.md │ ├── 6. RELATED WORK.md │ ├── 7. CONCLUSION.md │ ├── ABSTRACT.md │ ├── APPENDIX A.md │ └── APPENDIX B SIMULATION RESULTS.md └── Utreexo │ ├── 0-Abstract.md │ ├── 1-Introduction.md │ ├── 2-Related Work.md │ ├── 3-Application to Bitcoin.md │ ├── 4-Dynamic Accumulator.md │ ├── 5-Performance and Optimizations.md │ ├── 6-Conclusion.md │ ├── 7-Appendix.md │ └── Figures │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── Projects └── Byteball │ ├── 1.INTRODUCTION.md │ ├── 2. Database structure.md │ ├── 3. Native currency - bytes.md │ ├── 4. Double-spends.md │ ├── 5. The Main Chain.md │ ├── 6. Witnesses.md │ ├── 7. Finality.md │ ├── 8. Storage of nonserial units.md │ └── ABSTRACT.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /Blogs/An Introduction to the BlockDAG Paradigm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/An Introduction to the BlockDAG Paradigm.md -------------------------------------------------------------------------------- /Blogs/Blockchain terminology; the 35 most commonly used blockchain terms explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/Blockchain terminology; the 35 most commonly used blockchain terms explained.md -------------------------------------------------------------------------------- /Blogs/Confirmation Times in SPECTRE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/Confirmation Times in SPECTRE.md -------------------------------------------------------------------------------- /Blogs/Incentives and Trade-offs in Transaction Selection in DAG-based Protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/Incentives and Trade-offs in Transaction Selection in DAG-based Protocols.md -------------------------------------------------------------------------------- /Blogs/Transaction Selection Games in BlockDAGs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/Transaction Selection Games in BlockDAGs.md -------------------------------------------------------------------------------- /Blogs/a-zero-math-introduction-to-markov-chain-monte-carlo-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/a-zero-math-introduction-to-markov-chain-monte-carlo-methods.md -------------------------------------------------------------------------------- /Blogs/blockchains-dont-scale-not-today-at-least-but-there-s-hope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/blockchains-dont-scale-not-today-at-least-but-there-s-hope.md -------------------------------------------------------------------------------- /Blogs/performance-vs-scalability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/performance-vs-scalability.md -------------------------------------------------------------------------------- /Blogs/smart-contract-languages-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Blogs/smart-contract-languages-comparison.md -------------------------------------------------------------------------------- /Papers/Algorand/1-INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/1-INTRODUCTION.md -------------------------------------------------------------------------------- /Papers/Algorand/10-EVALUATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/10-EVALUATION.md -------------------------------------------------------------------------------- /Papers/Algorand/11-FUTURE WORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/11-FUTURE WORK.md -------------------------------------------------------------------------------- /Papers/Algorand/12-CONCLUSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/12-CONCLUSION.md -------------------------------------------------------------------------------- /Papers/Algorand/2-RELATED WORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/2-RELATED WORK.md -------------------------------------------------------------------------------- /Papers/Algorand/3-GOALS AND ASSUMPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/3-GOALS AND ASSUMPTIONS.md -------------------------------------------------------------------------------- /Papers/Algorand/4-OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/4-OVERVIEW.md -------------------------------------------------------------------------------- /Papers/Algorand/5-CRYPTOGRAPHIC SORTITION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/5-CRYPTOGRAPHIC SORTITION.md -------------------------------------------------------------------------------- /Papers/Algorand/6-BLOCK PROPOSAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/6-BLOCK PROPOSAL.md -------------------------------------------------------------------------------- /Papers/Algorand/7-BA⋆.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/7-BA⋆.md -------------------------------------------------------------------------------- /Papers/Algorand/8-ALGORAND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/8-ALGORAND.md -------------------------------------------------------------------------------- /Papers/Algorand/9-IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/9-IMPLEMENTATION.md -------------------------------------------------------------------------------- /Papers/Algorand/ABSTRACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Algorand/ABSTRACT.md -------------------------------------------------------------------------------- /Papers/Avalanche/1 Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Avalanche/1 Introduction.md -------------------------------------------------------------------------------- /Papers/Avalanche/2 Approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Avalanche/2 Approach.md -------------------------------------------------------------------------------- /Papers/Avalanche/Abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Avalanche/Abstract.md -------------------------------------------------------------------------------- /Papers/DagCoin/0-Abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/0-Abstract.md -------------------------------------------------------------------------------- /Papers/DagCoin/1-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/1-Introduction.md -------------------------------------------------------------------------------- /Papers/DagCoin/2-Safely accepting Double-spends in the DAG-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/2-Safely accepting Double-spends in the DAG-chain.md -------------------------------------------------------------------------------- /Papers/DagCoin/3-Preventing too many transactions merging too many transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/3-Preventing too many transactions merging too many transactions.md -------------------------------------------------------------------------------- /Papers/DagCoin/4-Preventing Unbounded Cascade Updates to Confirmation Scores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/4-Preventing Unbounded Cascade Updates to Confirmation Scores.md -------------------------------------------------------------------------------- /Papers/DagCoin/5-Periodic re-computing to reduce computation load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/5-Periodic re-computing to reduce computation load.md -------------------------------------------------------------------------------- /Papers/DagCoin/6-Targeting a fixed transactions rate vs no maximum rate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/6-Targeting a fixed transactions rate vs no maximum rate.md -------------------------------------------------------------------------------- /Papers/DagCoin/7-Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/DagCoin/7-Conclusion.md -------------------------------------------------------------------------------- /Papers/Inclusive/1-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Inclusive/1-Introduction.md -------------------------------------------------------------------------------- /Papers/Inclusive/2-From Trees to Directed Acyclic Graphs (DAGs).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Inclusive/2-From Trees to Directed Acyclic Graphs (DAGs).md -------------------------------------------------------------------------------- /Papers/Inclusive/3-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Inclusive/3-Security.md -------------------------------------------------------------------------------- /Papers/Inclusive/Abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Inclusive/Abstract.md -------------------------------------------------------------------------------- /Papers/Inclusive/DefinitionsBeforeLemma3_Tony.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Inclusive/DefinitionsBeforeLemma3_Tony.jpeg -------------------------------------------------------------------------------- /Papers/PHANTOM/1-INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/1-INTRODUCTION.md -------------------------------------------------------------------------------- /Papers/PHANTOM/2-THE PHANTOM PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/2-THE PHANTOM PROTOCOL.md -------------------------------------------------------------------------------- /Papers/PHANTOM/3-FORMAL MODEL AND STATEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/3-FORMAL MODEL AND STATEMENT.md -------------------------------------------------------------------------------- /Papers/PHANTOM/4-SCALABILITY AND NETWORK DELAYS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/4-SCALABILITY AND NETWORK DELAYS.md -------------------------------------------------------------------------------- /Papers/PHANTOM/5-PROOF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/5-PROOF.md -------------------------------------------------------------------------------- /Papers/PHANTOM/6-VARIANTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/6-VARIANTS.md -------------------------------------------------------------------------------- /Papers/PHANTOM/7-CONFIRMATION TIMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/7-CONFIRMATION TIMES.md -------------------------------------------------------------------------------- /Papers/PHANTOM/ABSTRACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/ABSTRACT.md -------------------------------------------------------------------------------- /Papers/PHANTOM/PHANTOM___an_efficient_implementation__chinese.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/PHANTOM/PHANTOM___an_efficient_implementation__chinese.pdf -------------------------------------------------------------------------------- /Papers/RepuCoin/1-Introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/RepuCoin/2-RelatedWork.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/RepuCoin/3-SystemAndThreatModel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/RepuCoin/4-RepuCoin.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/RepuCoin/4.1-BlockMiningAndRewardSystem.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/SPECTRE/1-INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/1-INTRODUCTION.md -------------------------------------------------------------------------------- /Papers/SPECTRE/2-FORMAL STATEMENT OF THE PROBLEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/2-FORMAL STATEMENT OF THE PROBLEM.md -------------------------------------------------------------------------------- /Papers/SPECTRE/3.SPECTRE VS BITCOIN – OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/3.SPECTRE VS BITCOIN – OVERVIEW.md -------------------------------------------------------------------------------- /Papers/SPECTRE/4. THE SPECTRE PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/4. THE SPECTRE PROTOCOL.md -------------------------------------------------------------------------------- /Papers/SPECTRE/5. HIGH - LEVEL OVERVIEW OF THE PROOF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/5. HIGH - LEVEL OVERVIEW OF THE PROOF.md -------------------------------------------------------------------------------- /Papers/SPECTRE/6. RELATED WORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/6. RELATED WORK.md -------------------------------------------------------------------------------- /Papers/SPECTRE/7. CONCLUSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/7. CONCLUSION.md -------------------------------------------------------------------------------- /Papers/SPECTRE/ABSTRACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/ABSTRACT.md -------------------------------------------------------------------------------- /Papers/SPECTRE/APPENDIX A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/APPENDIX A.md -------------------------------------------------------------------------------- /Papers/SPECTRE/APPENDIX B SIMULATION RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/SPECTRE/APPENDIX B SIMULATION RESULTS.md -------------------------------------------------------------------------------- /Papers/Utreexo/0-Abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/0-Abstract.md -------------------------------------------------------------------------------- /Papers/Utreexo/1-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/1-Introduction.md -------------------------------------------------------------------------------- /Papers/Utreexo/2-Related Work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/2-Related Work.md -------------------------------------------------------------------------------- /Papers/Utreexo/3-Application to Bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/3-Application to Bitcoin.md -------------------------------------------------------------------------------- /Papers/Utreexo/4-Dynamic Accumulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/4-Dynamic Accumulator.md -------------------------------------------------------------------------------- /Papers/Utreexo/5-Performance and Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/5-Performance and Optimizations.md -------------------------------------------------------------------------------- /Papers/Utreexo/6-Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/6-Conclusion.md -------------------------------------------------------------------------------- /Papers/Utreexo/7-Appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/7-Appendix.md -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/1.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/10.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/11.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/12.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/13.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/14.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/15.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/2.png -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/3.png -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/4.png -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/5.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/6.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/7.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/8.jpg -------------------------------------------------------------------------------- /Papers/Utreexo/Figures/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Papers/Utreexo/Figures/9.jpg -------------------------------------------------------------------------------- /Projects/Byteball/1.INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/1.INTRODUCTION.md -------------------------------------------------------------------------------- /Projects/Byteball/2. Database structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/2. Database structure.md -------------------------------------------------------------------------------- /Projects/Byteball/3. Native currency - bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/3. Native currency - bytes.md -------------------------------------------------------------------------------- /Projects/Byteball/4. Double-spends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/4. Double-spends.md -------------------------------------------------------------------------------- /Projects/Byteball/5. The Main Chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/5. The Main Chain.md -------------------------------------------------------------------------------- /Projects/Byteball/6. Witnesses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/6. Witnesses.md -------------------------------------------------------------------------------- /Projects/Byteball/7. Finality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/7. Finality.md -------------------------------------------------------------------------------- /Projects/Byteball/8. Storage of nonserial units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/8. Storage of nonserial units.md -------------------------------------------------------------------------------- /Projects/Byteball/ABSTRACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/Projects/Byteball/ABSTRACT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAGfans/TranStudy/HEAD/README.md --------------------------------------------------------------------------------