From 1d9c7acb75c91829477a07e7d55736210772cf38 Mon Sep 17 00:00:00 2001 From: Tom Beynon Date: Wed, 8 Jan 2025 19:40:32 +0000 Subject: [PATCH] Remove Agoric (#947) --- README.md | 1 - agoric/README.MD | 37 ---------------------------- agoric/build.yml | 16 ------------ agoric/deploy.yml | 52 --------------------------------------- agoric/docker-compose.yml | 14 ----------- 5 files changed, 120 deletions(-) delete mode 100644 agoric/README.MD delete mode 100644 agoric/build.yml delete mode 100644 agoric/deploy.yml delete mode 100644 agoric/docker-compose.yml diff --git a/README.md b/README.md index b5a1ff646..62aa292aa 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,6 @@ tagged with the form `$COSMOS_OMNIBUS_VERSION-$PROJECT-$PROJECT_VERSION`. |Project|Version|Image| | |---|---|---|---| -|[agoric](https://github.com/Agoric/ag0)|`agoric-upgrade-7-2`|`ghcr.io/akash-network/cosmos-omnibus:v1.0.6-agoric-agoric-upgrade-7-2`|[Example](./agoric)| |[akash](https://github.com/akash-network/node)|`v0.36.0`|`ghcr.io/akash-network/cosmos-omnibus:v1.0.6-akash-v0.36.0`|[Example](./akash)| |[archway](https://github.com/archway-network/archway)|`v7.0.0`|`ghcr.io/akash-network/cosmos-omnibus:v1.0.6-archway-v7.0.0`|[Example](./archway)| |[assetmantle](https://github.com/AssetMantle/node)|`v1.0.0`|`ghcr.io/akash-network/cosmos-omnibus:v1.0.6-assetmantle-v1.0.0`|[Example](./assetmantle)| diff --git a/agoric/README.MD b/agoric/README.MD deleted file mode 100644 index 10bcaa40f..000000000 --- a/agoric/README.MD +++ /dev/null @@ -1,37 +0,0 @@ -# Agoric - -| | | -|---|---| -|Version|`agoric-upgrade-7-2`| -|Binary|`ag0`| -|Directory|`.agoric`| -|ENV namespace|`AG0`| -|Repository|`https://github.com/Agoric/ag0/`| -|Image|`ghcr.io/akash-network/cosmos-omnibus:v1.0.6-agoric-agoric-upgrade-7-2`| - -## Examples - -- Run on Akash with the [example deploy.yml](./deploy.yml) -- Run with Docker using the [example docker-compose.yml](./docker-compose.yml) - -## Chain information - -The [Cosmos Chain Registry](https://github.com/cosmos/chain-registry) publishes [up to date chain info](https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/chain.json) for Agoric. - -This will be used automatically unless overridden with the `CHAIN_JSON` variable (use `0` to disable). - -## Polkachu Chain Services - -[Polkachu's Chain Services](https://www.polkachu.com/) make bootstrapping a node extremely easy. They provide live peers, seeds, statesync, addrbooks and pruned snapshots among other features. - -The following configuration is available for Agoric nodes. [See the documentation](../README.md#polkachu-services) for more information. - -|Variable|Value| -|---|---| -|`P2P_POLKACHU`|`1`| -|`P2P_SEEDS_POLKACHU`|`1`| -|`P2P_PEERS_POLKACHU`|`1`| -|`STATESYNC_POLKACHU`|`1`| -|`ADDRBOOK_POLKACHU`|`1`| - -Polkachu also provide pruned snapshots for Agoric. Find the [latest snapshot](https://polkachu.com/tendermint_snapshots/akash) and apply it using the `SNAPSHOT_URL` variable. diff --git a/agoric/build.yml b/agoric/build.yml deleted file mode 100644 index 51bd8ae5a..000000000 --- a/agoric/build.yml +++ /dev/null @@ -1,16 +0,0 @@ -services: - node: - build: - context: ../ - args: - PROJECT: agoric - PROJECT_BIN: ag0 - VERSION: agoric-upgrade-7-2 - REPOSITORY: https://github.com/Agoric/ag0/ - PROJECT_DIR: .agoric - ports: - - '26656:26656' - - '26657:26657' - - '1317:1317' - volumes: - - ./node-data/.agoric:/root/.agoric diff --git a/agoric/deploy.yml b/agoric/deploy.yml deleted file mode 100644 index a0db9d365..000000000 --- a/agoric/deploy.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -version: "2.0" -services: - node: - image: ghcr.io/akash-network/cosmos-omnibus:v1.0.6-agoric-agoric-upgrade-7-2 - env: - - MONIKER=Cosmos Omnibus Node - - P2P_POLKACHU=1 - - STATESYNC_POLKACHU=1 - - ADDRBOOK_POLKACHU=1 - expose: - - port: 26657 - to: - - global: true - - port: 26656 - to: - - global: true - params: # remove for non-persistent storage - storage: - data: - mount: /root/.agoric -profiles: - compute: - node: - resources: - cpu: - units: 4 - memory: - size: 8Gi - storage: - - size: 10Gi - - name: data # remove for non-persistent storage - size: 400Gi - attributes: - persistent: true - class: beta3 - placement: - dcloud: - attributes: - host: akash - signedBy: - anyOf: - - akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63 - pricing: - node: - denom: uakt - amount: 1000 -deployment: - node: - dcloud: - profile: node - count: 1 diff --git a/agoric/docker-compose.yml b/agoric/docker-compose.yml deleted file mode 100644 index 144132a0e..000000000 --- a/agoric/docker-compose.yml +++ /dev/null @@ -1,14 +0,0 @@ -services: - node: - image: ghcr.io/akash-network/cosmos-omnibus:v1.0.6-agoric-agoric-upgrade-7-2 - ports: - - '26656:26656' - - '26657:26657' - - '1317:1317' - environment: - - MONIKER=Cosmos Omnibus Node - - P2P_POLKACHU=1 - - STATESYNC_POLKACHU=1 - - ADDRBOOK_POLKACHU=1 - volumes: - - ./node-data:/root/.agoric