Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into salman/Issue#7989/inter-community-navigation
  • Loading branch information
salman-neslit committed Dec 20, 2024
2 parents 8e24534 + 6da9d1d commit 3ebf45e
Show file tree
Hide file tree
Showing 316 changed files with 10,865 additions and 2,711 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ env:
USES_DOCKER_PGSQL: true
PORT: 8080
REDIS_URL: redis://localhost:6379
ENTITIES_URL: ${{ secrets.ENTITIES_URL }}
GITHUB_BASE_REF: ${{ github.base_ref }}
FEDERATION_POSTGRES_DB_URL: postgresql://commonwealth:edgeware@localhost/common_test
ALCHEMY_PRIVATE_APP_KEY: ${{ secrets.ALCHEMY_PRIVATE_APP_KEY }}
ALCHEMY_PUBLIC_APP_KEY: ${{ secrets.ALCHEMY_PUBLIC_APP_KEY }}

on:
workflow_dispatch:
inputs:
pr_number:
description: "PR number to test (optional)"
required: false
type: number
pull_request:
merge_group:
push:
branches:
- master
Expand Down Expand Up @@ -59,6 +62,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -119,6 +124,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -176,6 +182,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -210,6 +218,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand All @@ -230,6 +239,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -273,6 +283,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -328,6 +339,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -376,6 +389,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -428,6 +443,8 @@ jobs:
- 6379:6379
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.pr_number && format('refs/pull/{0}/head', github.event.inputs.pr_number) || github.ref }}
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down
1 change: 1 addition & 0 deletions libs/chains/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"protobufjs": "^6.1.13"
},
"devDependencies": {
"@atomone/atomone-types-long": "^1.0.3",
"tsx": "^4.7.2"
}
}
3 changes: 3 additions & 0 deletions libs/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export {
type QueryVotesResponseSDKType,
} from './cosmos-ts/src/codegen/cosmos/gov/v1/query';
export { LCDQueryClient as GovV1Client } from './cosmos-ts/src/codegen/cosmos/gov/v1/query.lcd';

export { LCDQueryClient as GovV1AtomOneClient } from '@atomone/atomone-types-long/atomone/gov/v1/query.lcd';
export { createLCDClient as createAtomOneLCDClient } from '@atomone/atomone-types-long/atomone/lcd';
export { createLCDClient } from './cosmos-ts/src/codegen/cosmos/lcd';
export * from './cosmos-ts/src/codegen/google/protobuf/any';
export * from './cosmos-ts/src/codegen/helpers';
Loading

0 comments on commit 3ebf45e

Please sign in to comment.