-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: init-ai-1 * feat: init-ai-1 * fix: update package version * fix: fix logo image name
- Loading branch information
Showing
44 changed files
with
872 additions
and
357 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
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,7 +1,8 @@ | ||
import { AssetList } from "@initia/initia-registry-types"; | ||
|
||
import * as _testnet from "./testnet/all"; | ||
import * as _devnet from "./devnet/all"; | ||
|
||
const assets: AssetList[] = [..._devnet.assets]; | ||
const assets: AssetList[] = [..._testnet.assets, ..._devnet.assets]; | ||
|
||
export default assets; |
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,7 +1,8 @@ | ||
import { Chain } from "@initia/initia-registry-types"; | ||
|
||
import * as _testnet from "./testnet/all"; | ||
import * as _devnet from "./devnet/all"; | ||
|
||
const chains: Chain[] = [..._devnet.chains]; | ||
const chains: Chain[] = [..._testnet.chains, ..._devnet.chains]; | ||
|
||
export default chains; |
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 was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
_packages/initia-registry/src/devnet/blackwing/ibc_chain1.ts
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import _assets from "./assets"; | ||
import _chain from "./chain"; | ||
import _ibc from "./ibc"; | ||
import _ibc_chain1 from "./ibc_chain1"; | ||
|
||
export const assets = _assets; | ||
export const chain = _chain; | ||
export const ibc = _ibc; | ||
export const ibc_chain1 = _ibc_chain1; |
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
66 changes: 0 additions & 66 deletions
66
_packages/initia-registry/src/devnet/controverse/assets.ts
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
import { IBCInfo } from "@initia/initia-registry-types"; | ||
|
||
import * as _initia from "./initia"; | ||
import * as _blackwing from "./blackwing"; | ||
|
||
const ibc: IBCInfo[] = [..._initia.ibc_chain1, ..._blackwing.ibc_chain1]; | ||
const ibc: IBCInfo[] = [..._initia.ibc_chain1]; | ||
|
||
export default ibc; |
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,6 +1,4 @@ | ||
export * as tucana from "./tucana"; | ||
export * as miniwasm from "./miniwasm"; | ||
export * as minimove from "./minimove"; | ||
export * as initia from "./initia"; | ||
export * as controverse from "./controverse"; | ||
export * as blackwing from "./blackwing"; |
Oops, something went wrong.