1
1
# ARKEO
2
- [ RPC] ( http://arkeo.srgts.xyz:27757 ) | [ API] ( http://arkeo.srgts.xyz:1177 ) | [ STATESYNC] ( #title1 )
3
2
4
3
Let's update and install the necessary packages:
5
4
````
@@ -22,10 +21,10 @@ Install CLI:
22
21
cd $HOME
23
22
git clone https://github.com/arkeonetwork/arkeo
24
23
cd arkeo
25
- git checkout ab05b124336ace257baa2cac07f7d1bfeed9ac02
26
- make install
24
+ git checkout master
25
+ TAG=testnet make install
27
26
````
28
- Let's check the version (current as of November 2023 - arkeo commit: 68c59e9057e306dd99cdf55ebf4e6b1876835dc8 ):
27
+ Let's check the version (current as of September 2024 - arkeo commit: 5c547a39c5454f3487adf14fd4613fdc9a4e97a5 ):
29
28
````
30
29
arkeod version --long
31
30
````
@@ -38,9 +37,9 @@ arkeod init $MNK --chain-id arkeo
38
37
````
39
38
Download the current genesis file:
40
39
````
41
- curl -s http://seed.arkeo.network :26657/genesis | jq '.result.genesis' > ~ /.arkeo/config/genesis.json
40
+ curl -s http://seed.innovationtheory.com :26657/genesis | jq '.result.genesis' > $HOME /.arkeo/config/genesis.json
42
41
````
43
- Let's check sum genesis file (current as of November 2023 - 214828d2dac5eaaa4d2e70dde63bd460dcc86ab9e5dd7868dbfa8c3186b6abf9 ):
42
+ Let's check sum genesis file (current as of September 2024 - d458511172d076d3e19f6b03212530efa6f7cd6a80412fe60365324d140fe0c3 ):
44
43
````
45
44
sha256sum $HOME/.arkeo/config/genesis.json
46
45
````
@@ -50,15 +49,15 @@ sed -i 's|^minimum-gas-prices *=.*|minimum-gas-prices = "0.001uarkeo"|g' $HOME/.
50
49
````
51
50
Adding seeds and peers:
52
51
````
53
- seeds="[email protected] .com:22856,df0561c0418f7ae31970a2cc5adaf0e81ea5923f@arkeo-testnet-seed.itrocket.net:18656 "
54
- peers="[email protected] :38656,[email protected] :60656,939ab74d3f49428b9c5c6150929037680051e14e @65.109.30.110:22856,[email protected] :34656,98911188da7520af2165b3562b1b28fdc55ed5e7 @65.108.91.152:26656 "
52
+ seeds="[email protected] .com:26656,85341b428cf5993fcc04a324d95d14590ae5172c@seed2.innovationtheory.com:26656 "
53
+ peers="[email protected] :26656,f7da702c17e45e463adf21e57b1d0d936cbc97a3@peer2.innovationtheory.com:26656,46e6d4751bbc67d3e72e13dacdfb0770227fbfc3 @65.108.79.241:46656,[email protected] :26656,57f693ba3fed4dd82d02d4cbcc73712c6da4bd34 @65.109.113.228:60756,[email protected] :61656 "
55
54
sed -i -e 's|^seeds *=.*|seeds = "'$seeds'"|; s|^persistent_peers *=.*|persistent_peers = "'$peers'"|' $HOME/.arkeo/config/config.toml
56
55
````
57
56
Edit pruning parameter:
58
57
````
59
58
sed -i 's|pruning = "default"|pruning = "custom"|g' $HOME/.arkeo/config/app.toml
60
59
sed -i 's|pruning-keep-recent = "0"|pruning-keep-recent = "100"|g' $HOME/.arkeo/config/app.toml
61
- sed -i 's|pruning-interval = "0"|pruning-interval = "10 "|g' $HOME/.arkeo/config/app.toml
60
+ sed -i 's|pruning-interval = "0"|pruning-interval = "50 "|g' $HOME/.arkeo/config/app.toml
62
61
sed -i 's|^snapshot-interval *=.*|snapshot-interval = 2000|g' $HOME/.arkeo/config/app.toml
63
62
````
64
63
Create a service file:
0 commit comments