-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/update-amp-worker-set-query
- Loading branch information
Showing
42 changed files
with
4,259 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 'Publish Axelar Chains Config to NPM' | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-npm: | ||
name: 'Publish to NPM' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
working-directory: ./axelar-chains-config | ||
- run: npm run build | ||
working-directory: ./axelar-chains-config | ||
- run: npm publish | ||
working-directory: ./axelar-chains-config | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Run Axelar Chains Config Tests | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-22.04] | ||
arch: [amd64] | ||
steps: | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install | ||
run: npm ci | ||
working-directory: axelar-chains-config | ||
|
||
- name: Test | ||
run: npm run test | ||
working-directory: axelar-chains-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Modules | ||
node_modules | ||
|
||
# Tests | ||
tests | ||
|
||
# Optional npm cache directory | ||
.npm | ||
*.tgz | ||
|
||
# Tsconfig file | ||
tsconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Axelar Chains Config | ||
|
||
This repo containing JSON formatted configurations for Axelar Chains in various environments. Currently supported networks: | ||
|
||
- [Testnet](./info/testnet.json) | ||
- [Mainnet](./info/mainnet.json) | ||
- [Stagenet](./info/stagenet.json) | ||
|
||
Additional utility functions can be found [here](./src/utils/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.