From b12bc88eda67a52bf8a53fa608c677f62c424e2f Mon Sep 17 00:00:00 2001 From: Darp Date: Sun, 12 Jan 2025 02:21:13 +0000 Subject: [PATCH] feat(deploy): add hdPath and coinType to sonr-1 chain config --- .github/deploy/config.yml | 24 ++++++++++++++++------ .github/workflows/slack-notify.yml | 32 ------------------------------ 2 files changed, 18 insertions(+), 38 deletions(-) delete mode 100644 .github/workflows/slack-notify.yml diff --git a/.github/deploy/config.yml b/.github/deploy/config.yml index a5bd737cc..c4b418a71 100644 --- a/.github/deploy/config.yml +++ b/.github/deploy/config.yml @@ -2,16 +2,19 @@ name: sonr-testnet version: 0.2.20 chains: - - id: sonr-test + - id: sonr-1 + prettyName: Sonr name: custom image: ghcr.io/onsonr/sonr:latest home: /root/.sonr binary: sonrd - numValidators: 1 prefix: idx denom: usnr + hdPath: m/44'/118'/0'/0/0 + coinType: 118 coins: 100000000000000usnr,100000000000000snr repo: https://github.com/onsonr/sonr + numValidators: 1 ports: rest: 1317 rpc: 26657 @@ -19,7 +22,7 @@ chains: - id: osmosis-1 name: osmosis - numValidators: 2 + numValidators: 1 ports: rest: 1313 rpc: 26653 @@ -27,20 +30,29 @@ chains: - id: cosmoshub-4 name: cosmoshub - numValidators: 2 + numValidators: 1 ports: rest: 1319 rpc: 26659 faucet: 8009 + - id: evmos-1 + name: evmos + numValidators: 1 + ports: + rest: 1312 + rpc: 26652 + faucet: 8002 + relayers: - - name: osmos-cosmos-sonr + - name: ibc-relayer type: hermes replicas: 1 chains: - osmosis-1 - cosmoshub-4 - - sonr-test + - sonr-1 + - evmos-1 explorer: enabled: true diff --git a/.github/workflows/slack-notify.yml b/.github/workflows/slack-notify.yml deleted file mode 100644 index 45220b6d2..000000000 --- a/.github/workflows/slack-notify.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Slack Notifications - -on: - push: - branches: [ main, develop ] - pull_request: - branches: [ main, develop ] - issues: - types: [opened, closed, reopened] - discussion: - types: [created, answered] - release: - types: [published] - -jobs: - notify: - runs-on: ubuntu-latest - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - SLACK_CHANNEL: sonr-github - SLACK_COLOR: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true && 'good' || 'warning' }} - SLACK_ICON: https://github.com/onsonr.png?size=48 - SLACK_MESSAGE: | - Repository: ${{ github.repository }} - Event: ${{ github.event_name }} - Actor: ${{ github.actor }} - Ref: ${{ github.ref }} - SLACK_TITLE: GitHub Activity - SLACK_USERNAME: GitHub Bot \ No newline at end of file