Skip to content

Commit e456c2d

Browse files
Scott Carruthersgitbook-bot
Scott Carruthers
authored andcommitted
GITBOOK-1213: Update RPC CLI build with polkachu snapshots
1 parent 0b691db commit e456c2d

4 files changed

+12
-10
lines changed

akash-nodes/run-an-akash-node/step10-start-the-akash-node.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ systemctl enable akash-node
6060

6161
## Check the Status of the Node
6262

63-
* At first the node will show it is catching up. 
64-
* Eventually the node will show the height of the latest block. 
63+
* Initially the node will show a status of `"catching_up":true` within the output of the status command
64+
* Eventually the node will show the height of the latest block and should indicate `"catching_up":false`
6565
* The latest block number can be found on the [Mintscan](https://www.mintscan.io/akash) website for comparison.
6666

6767
```

akash-nodes/run-an-akash-node/step2-add-akash-install-location-in-the-users-path.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/u
5454
```
5555
root@ip-10-0-10-146:~# akash version
5656

57-
v0.22.0
57+
v0.26.1
5858
```

akash-nodes/run-an-akash-node/step9-blockchain-snapshot-use.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,21 @@ We could let our node catch up to the current block but this would take a very l
99
```
1010
rm -rf ~/.akash/data; \
1111
mkdir -p ~/.akash/data; \
12-
cd ~/.akash/data
12+
cd ~/.akash
1313
```
1414

1515
### Download Snapshot 
1616

17-
> _**NOTE**_ - if any issues are encountered with the steps below and during snapshot download attempt - visit `https://cosmos-snapshots.s3.filebase.com` directly to isolate a pruned Akash snapshot for use and download. After the isolation of a desired, recent snapshot - perform the `wget` step for the URL associated with that snapshot and then proceed to the `tar` command to unpack.
17+
> NOTE - in the `Example Steps` provided below a specific snapshot version is used (`12992214`). In your use the current/latest snapshot version should be used. The latest Akash snapshot version - made available via Polkachu - can be found [here](https://polkachu.com/tendermint\_snapshots/akash). Replace all references to example snapshot version `12992214` with the current/latest version found on this site.
18+
19+
#### Example Steps
1820

1921
```
20-
SNAP_URL="$(curl -s -o - https://cosmos-snapshots.s3.filebase.com/akash/pruned/snapshot.json | jq -r '.latest')"
22+
wget -O akash_12992214.tar.lz4 https://snapshots.polkachu.com/snapshots/akash/akash_12992214.tar.lz4 --inet4-only
2123
22-
wget -c "$SNAP_URL"
24+
apt-get install lz4
2325
24-
SNAP="${SNAP_URL##*/}"
26+
lz4 -d akash_12992214.tar.lz4
2527
26-
tar xzvf "$SNAP" --force-local
28+
tar -xvf akash_12992214.tar
2729
```

readme/stack-definition-language.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ If your deployment is optimized to run on multiple GPU models, include the appro
262262
263263
Use of Stable Payments is supported in the Akash SDL and is declared in the placement section of the SDL as shown in the example below.
264264
265-
> _**NOTE**_ - currently only `Axelar USDC (uusdc)` is supported and `denom` must be specified as the precise IBC channel name shown in the example.
265+
> _**NOTE**_ - currently only `Axelar USDC (usdc)` is supported and `denom` must be specified as the precise IBC channel name shown in the example.
266266
267267
```
268268
placement:

0 commit comments

Comments
 (0)