使用Python实现了区块链的DPOS和POW共识算法,并使用Flask框架编写了API接口
Go to file
2024-05-29 18:44:46 +08:00
DPOS DPOS 共识算法API接口实现 2024-05-29 18:34:36 +08:00
POW POW 共识算法API接口实现 2024-05-29 18:34:26 +08:00
.gitignore 忽略 .idea 文件夹 2024-05-29 18:33:30 +08:00
LICENSE Initial commit 2024-05-29 10:11:46 +00:00
README.md update README.md 2024-05-29 18:44:46 +08:00
requirements.txt 添加项目依赖 2024-05-29 18:44:29 +08:00

BlockchainConsensusAlgorithm

介绍

使用 Python 实现了区块链的 DPOSPOW 共识算法,并使用 Flask 框架编写了 API 接口

获取项目

git clone -b main --depth 1 https://git.intpointer.com/Anchor-x/BlockchainConsensusAlgorithm.git

项目启动

安装依赖

使用 miniconda 进行环境管理

conda create -n BlockchainConsensusAlgorithm python=3.12.3
pip install -r requirements.txt

运行

DPOS

cd DPOS
python dpos_api.py

POW

cd POW
python pow_api.py

测试

使用 ApiFox 进行测试或使用