feat(deploy): add hdPath and coinType to sonr-1 chain config

This commit is contained in:
Prad Nukala 2025-01-12 02:21:13 +00:00
parent 2892641f17
commit b12bc88eda
2 changed files with 18 additions and 38 deletions

View File

@ -2,16 +2,19 @@ name: sonr-testnet
version: 0.2.20 version: 0.2.20
chains: chains:
- id: sonr-test - id: sonr-1
prettyName: Sonr
name: custom name: custom
image: ghcr.io/onsonr/sonr:latest image: ghcr.io/onsonr/sonr:latest
home: /root/.sonr home: /root/.sonr
binary: sonrd binary: sonrd
numValidators: 1
prefix: idx prefix: idx
denom: usnr denom: usnr
hdPath: m/44'/118'/0'/0/0
coinType: 118
coins: 100000000000000usnr,100000000000000snr coins: 100000000000000usnr,100000000000000snr
repo: https://github.com/onsonr/sonr repo: https://github.com/onsonr/sonr
numValidators: 1
ports: ports:
rest: 1317 rest: 1317
rpc: 26657 rpc: 26657
@ -19,7 +22,7 @@ chains:
- id: osmosis-1 - id: osmosis-1
name: osmosis name: osmosis
numValidators: 2 numValidators: 1
ports: ports:
rest: 1313 rest: 1313
rpc: 26653 rpc: 26653
@ -27,20 +30,29 @@ chains:
- id: cosmoshub-4 - id: cosmoshub-4
name: cosmoshub name: cosmoshub
numValidators: 2 numValidators: 1
ports: ports:
rest: 1319 rest: 1319
rpc: 26659 rpc: 26659
faucet: 8009 faucet: 8009
- id: evmos-1
name: evmos
numValidators: 1
ports:
rest: 1312
rpc: 26652
faucet: 8002
relayers: relayers:
- name: osmos-cosmos-sonr - name: ibc-relayer
type: hermes type: hermes
replicas: 1 replicas: 1
chains: chains:
- osmosis-1 - osmosis-1
- cosmoshub-4 - cosmoshub-4
- sonr-test - sonr-1
- evmos-1
explorer: explorer:
enabled: true enabled: true

View File

@ -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