-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfeb53c
commit 1b487a7
Showing
16 changed files
with
1,273 additions
and
898 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; | ||
import { AssetList, Chain, IBCData } from '@chain-registry/v2-types'; | ||
|
||
import _assets from '../../../../__fixtures__/assets.json'; | ||
import _chains from '../../../../__fixtures__/chains.json'; | ||
import _ibc from '../../../../__fixtures__/ibc.json'; | ||
import _assets from '../../../../__fixtures__/v2/assets.json'; | ||
import _chains from '../../../../__fixtures__/v2/chains.json'; | ||
import _ibc from '../../../../__fixtures__/v2/ibc.json'; | ||
|
||
export const assets: AssetList[] = _assets as AssetList[]; | ||
export const assetLists: AssetList[] = _assets as AssetList[]; | ||
// TODO update fixtures, they may be missing properties and/or old schema | ||
export const chains: Chain[] = _chains as any; | ||
|
||
export const ibc: IBCInfo[] = _ibc as IBCInfo[]; | ||
export const ibc: IBCData[] = _ibc as IBCData[]; |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; | ||
import { AssetList, Chain, IBCData } from '@chain-registry/v2-types'; | ||
|
||
import _assets from '../../../../__fixtures__/assets.json'; | ||
import _chains from '../../../../__fixtures__/chains.json'; | ||
import _ibc from '../../../../__fixtures__/ibc.json'; | ||
import _assets from '../../../../__fixtures__/v2/assets.json'; | ||
import _chains from '../../../../__fixtures__/v2/chains.json'; | ||
import _ibc from '../../../../__fixtures__/v2/ibc.json'; | ||
|
||
export const assets: AssetList[] = _assets as AssetList[]; | ||
export const assetLists: AssetList[] = _assets as AssetList[]; | ||
// TODO update fixtures, they may be missing properties and/or old schema | ||
export const chains: Chain[] = _chains as any; | ||
|
||
export const ibc: IBCInfo[] = _ibc as IBCInfo[]; | ||
export const ibc: IBCData[] = _ibc as IBCData[]; |
Oops, something went wrong.