Skip to content

Commit

Permalink
refactor: drop chain-registry usage (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
Griko Nibras authored Oct 30, 2023
2 parents 7b563c0 + 4acab36 commit 86a5cc9
Show file tree
Hide file tree
Showing 20 changed files with 1,710 additions and 244 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true

- name: Use Node 18.x
uses: actions/setup-node@v3
Expand All @@ -28,7 +30,11 @@ jobs:
container:
image: mcr.microsoft.com/playwright:v1.38.0-jammy
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- run: git config --system --add safe.directory /__w/ibc-dot-fun/ibc-dot-fun
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "chain-registry"]
path = chain-registry
url = https://github.com/cosmos/chain-registry.git
1 change: 1 addition & 0 deletions chain-registry
Submodule chain-registry added at d7230e
4 changes: 4 additions & 0 deletions jest.setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ global.ResizeObserver = require("resize-observer-polyfill");

// eslint-disable-next-line @typescript-eslint/no-var-requires
global.TextEncoder = require("util").TextEncoder;

// suppress zustand deprecation notice to clear out logs
global.console.warn = (...args) =>
args[0]?.includes("vanilla store") ? void 0 : global.console.warn;
Loading

0 comments on commit 86a5cc9

Please sign in to comment.