Skip to content

Commit 006aedf

Browse files
hard-netthard-nett
andauthored
Add Chain: Terp network (#1125)
* add TERPNETWORK version v5.0.1 * Merge https://github.com/permissionlessweb/cosmos-omnibus into terp-network --------- Co-authored-by: hard-nett <hardnettt@proton.me>
1 parent 7787d20 commit 006aedf

5 files changed

Lines changed: 101 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ tagged with the form `$COSMOS_OMNIBUS_VERSION-$PROJECT-$PROJECT_VERSION`.
113113
|[starname](https://github.com/iov-one/starnamed)|`v0.11.5`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-starname-v0.11.5`|[Example](./starname)|
114114
|[stride](https://github.com/Stride-Labs/stride)|`v29.1.1`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-stride-v29.1.1`|[Example](./stride)|
115115
|[teritori](https://github.com/TERITORI/teritori-chain)|`v2.0.6`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-teritori-v2.0.6`|[Example](./teritori)|
116+
|[terpnetwork](https://github.com/terpnetwork/terp-core)|`v5.0.1`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-terpnetwork-v5.0.1`|[Example](./terpnetwork)|
116117
|[terra](https://github.com/terra-money/core)|`v2.11.8`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-terra-v2.11.8`|[Example](./terra)|
117118
|[umee](https://github.com/umee-network/umee)|`v6.3.0`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-umee-v6.3.0`|[Example](./umee)|
118119
|[xpla](https://github.com/xpladev/xpla)|`v1.7.0`|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-xpla-v1.7.0`|[Example](./xpla)|

terpnetwork/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Terp-Network
2+
3+
| | |
4+
|---|---|
5+
|Version|`v5.0.1`|
6+
|Binary|`terpd`|
7+
|Directory|`.terp`|
8+
|ENV namespace|`TERPD`|
9+
|Repository|`https://github.com/terpnetwork/terp-core`|
10+
|Image|`ghcr.io/akash-network/cosmos-omnibus:v1.2.30-terpnetwork-v5.0.1`|
11+
12+
## Examples
13+
14+
- Run on Akash with the [example deploy.yml](./deploy.yml)
15+
- Run with Docker using the [example docker-compose.yml](./docker-compose.yml)
16+
17+
## Chain information
18+
19+
The [Cosmos Chain Registry](https://github.com/cosmos/chain-registry) publishes [up to date chain info](https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/chain.json) for Terp-Network.
20+
21+
This will be used automatically unless overridden with the `CHAIN_JSON` variable (use `0` to disable).

terpnetwork/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
services:
2+
node:
3+
build:
4+
context: ../
5+
args:
6+
PROJECT: terpnetwork # should match the directory/Chain Registry
7+
PROJECT_BIN: terpd
8+
PROJECT_DIR: .terp
9+
VERSION: v5.0.1
10+
REPOSITORY: https://github.com/terpnetwork/terp-core
11+
GOLANG_VERSION: 1.24
12+
# environment:
13+
# - FASTSYNC_VERSION=v0
14+
ports:
15+
- '26656:26656'
16+
- '26657:26657'
17+
- '1317:1317'
18+
volumes:
19+
- ./node-data:/root/.terp

terpnetwork/deploy.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
version: "2.0"
3+
services:
4+
node:
5+
image: ghcr.io/akash-network/cosmos-omnibus:v1.2.30-terpnetwork-v5.0.1
6+
env:
7+
- MONIKER=Cosmos Omnibus Node
8+
expose:
9+
- port: 26657
10+
to:
11+
- global: true
12+
- port: 26656
13+
to:
14+
- global: true
15+
params: # remove for non-persistent storage
16+
storage:
17+
data:
18+
mount: /root/.terp
19+
profiles:
20+
compute:
21+
node:
22+
resources:
23+
cpu:
24+
units: 4
25+
memory:
26+
size: 32Gi
27+
storage:
28+
- size: 10Gi
29+
- name: data # remove for non-persistent storage
30+
size: 400Gi
31+
attributes:
32+
persistent: true
33+
class: beta3
34+
placement:
35+
dcloud:
36+
attributes:
37+
host: akash
38+
signedBy:
39+
anyOf:
40+
- akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63
41+
pricing:
42+
node:
43+
denom: uakt
44+
amount: 1000
45+
deployment:
46+
node:
47+
dcloud:
48+
profile: node
49+
count: 1

terpnetwork/docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
node:
3+
image: ghcr.io/akash-network/cosmos-omnibus:v1.2.30-terpnetwork-v5.0.1
4+
ports:
5+
- '26656:26656'
6+
- '26657:26657'
7+
- '1317:1317'
8+
environment:
9+
- MONIKER=Cosmos Omnibus Node
10+
volumes:
11+
- ./node-data:/root/.terp

0 commit comments

Comments
 (0)