Skip to content

Commit

Permalink
docs: update commit hash and sha256 for tachyon in how_to_build.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chokobole committed Nov 4, 2024
1 parent e02feac commit 0a4d3a5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/how_to_use/how_to_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ Tachyon can be built in your own Bazel project with the following two simple ste
First, obtain the Tachyon code from a specific commit hash and get a SHA256 value from the fetched code through these commands:

```shell
wget https://github.com/kroma-network/tachyon/archive/d056e1c61622e8788ae558c7fd4c19415fe7a7e8.tar.gz
wget https://github.com/kroma-network/tachyon/archive/e02feac98608a6bb1efc75df07237f702db7cce7.tar.gz

shasum -a 256 d056e1c61622e8788ae558c7fd4c19415fe7a7e8.tar.gz
shasum -a 256 e02feac98608a6bb1efc75df07237f702db7cce7.tar.gz
```

Second, input the shasum output into your `WORKSPACE` file as the `sha256` argument like shown below:
Expand All @@ -133,9 +133,9 @@ Second, input the shasum output into your `WORKSPACE` file as the `sha256` argum
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "kroma_network_tachyon",
sha256 = "aae28c7853dff4bb91f60aa7cbd17f26e4014bbe67d8853d6e2012d61c7e3715",
strip_prefix = "tachyon-d056e1c61622e8788ae558c7fd4c19415fe7a7e8",
urls = ["https://github.com/kroma-network/tachyon/archive/d056e1c61622e8788ae558c7fd4c19415fe7a7e8.tar.gz"],
sha256 = "e3bfefb20bcb425a5169c46cf0bd4dacbdeaceab94b144a3d5fa4214d9e974d2",
strip_prefix = "tachyon-e02feac98608a6bb1efc75df07237f702db7cce7",
urls = ["https://github.com/kroma-network/tachyon/archive/e02feac98608a6bb1efc75df07237f702db7cce7.tar.gz"],
)
```

Expand Down

0 comments on commit 0a4d3a5

Please sign in to comment.