Py学习  »  区块链

如何运行我自己的Stellar区块链网络?

thestateofmay • 5 年前 • 562 次点击  

首先让我说,这是一个非常微不足道的问题,甚至可能看起来很白痴。我是区块链技术的新手,我想通过构建自己的网络(进行实验)来开始。根据我的研究,到目前为止,似乎HyperledgeFabric和Stellar是不错的选择,但我无法找到Stellar现成的SDK。也就是说,我似乎不能建造 我自己的 与Stellar建立网络。这是正确的吗?如果是这样,我应该寻找什么“关键词”来找到我可以用来构建的区块链框架 我自己的 网络?


编辑:让我再详细阐述一下。根据Stellar的官方开发指南:

要创建帐户,需要运行 CreateAccount 使用新账户ID进行操作。由于Stellar_________浼__截至本文撰写之日,最低余额为1 xlm(2 x 0.5基本准备金),可能会有所变化。

这使得我看起来无法创建自己的网络,因此我的所有应用程序都必须依赖官方的Stellar网络。这是正确的吗?

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/31588
 
562 次点击  
文章 [ 1 ]  |  最新文章 5 年前
christo4ferris
Reply   •   1 楼
christo4ferris    5 年前

不,您可以使用 stellar-core project 自己跑。

引用安装说明:

git clone https://github.com/stellar/stellar-core.git
cd stellar-core
git submodule init
git submodule update
Type ./autogen.sh.
Type ./configure (If configure complains about compiler versions, try CXX=clang-5.0 ./configure or CXX=g++-5 ./configure or similar, depending on your compiler.)
Type make or make -j (for aggressive parallel build)
Type make check to run tests.
Type make install to install.