Skip to content

Commit

Permalink
update tag link
Browse files Browse the repository at this point in the history
  • Loading branch information
vita-dounai committed Mar 30, 2021
1 parent a287052 commit 7ee0f28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions docs/dev_testing/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,18 +158,24 @@ ABI: C:/Users/liche/hello_world/target/hello_world.abi

1. 根据[依赖项说明](https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/installation.html#id2)中的要求安装依赖项;

2. 下载实验版本的 FISCO BCOS 可执行二进制文件及建链工具 build_chain.sh:
2. 下载实验版本的建链工具 build_chain.sh:

```shell
cd ~ && mkdir -p fisco && cd fisco
curl -#LO https://github.com/WeBankBlockchain/liquid/releases/download/v1.0.0-rc1/fisco-bcos
curl -#LO https://github.com/WeBankBlockchain/liquid/releases/download/v1.0.0-rc1/build_chain.sh && chmod u+x build_chain.sh
```

```eval_rst
.. hint::
若无法访问GitHub,则请执行 ``curl -#LO https://gitee.com/WeBankBlockchain/liquid/attach_files/651253/download/build_chain.sh`` 命令下载 build_chain.sh。
```

3. 使用 build_chain.sh 在本地搭建一条单群组 4 节点的 FISCO BCOS 区块链并运行。更多 build_chain.sh 的使用方法可参考其[使用文档](https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/manual/build_chain.html)

```shell
bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545 -e ./fisco-bcos
bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545
bash nodes/127.0.0.1/start_all.sh
```

Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart/prerequisite.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ registry = "git://mirrors.ustc.edu.cn/crates.io-index"
`cargo-liquid` 是用于辅助开发 Liquid 智能合约的命令行工具,在终端中执行以下命令安装:

```shell
cargo install --git https://github.com/WeBankBlockchain/cargo-liquid --force
cargo install --git https://github.com/WeBankBlockchain/cargo-liquid --tag v1.0.0-rc1 --force
```

```eval_rst
.. admonition:: 注意
若无法正常访问GitHub,则请执行 ``cargo install --git https://gitee.com/WeBankBlockchain/cargo-liquid --force`` 命令进行安装。
若无法正常访问GitHub,则请执行 ``cargo install --git https://gitee.com/WeBankBlockchain/cargo-liquid --tag v1.0.0-rc1 --force`` 命令进行安装。
```

## 安装 Binaryen(可选)
Expand Down

0 comments on commit 7ee0f28

Please sign in to comment.