-
Notifications
You must be signed in to change notification settings - Fork 156
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
Showing
17 changed files
with
324 additions
and
397 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ export default { | |
ibc | ||
}; | ||
|
||
export { assets, chains, ibc }; | ||
export { assets, chains, 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
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,7 @@ | ||
import { IBCData } from '@initia/initia-registry-types'; | ||
import { IBCInfo } from '@initia/initia-registry-types'; | ||
|
||
import * as _initia from './initia' | ||
|
||
const ibc: IBCData[] = [..._initia.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,3 +1,3 @@ | ||
export * as miniwasm from './miniwasm'; | ||
export * as minimove from './minimove'; | ||
export * as initia from './initia'; | ||
export * as initia from './initia' |
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,35 +1,35 @@ | ||
import { IBCData } from '@initia/initia-registry-types'; | ||
const info = [ | ||
import { IBCInfo } from '@initia/initia-registry-types'; | ||
const info: IBCInfo[] = [ | ||
{ | ||
$schema: '../../ibc_data.schema.json', | ||
chain_1: { | ||
chain_name: 'initia', | ||
client_id: '07-tendermint-1', | ||
connection_id: 'connection-1' | ||
"$schema": "../../ibc_data.schema.json", | ||
"chain_1": { | ||
"chain_name": "initia", | ||
"client_id": "07-tendermint-1", | ||
"connection_id": "connection-1" | ||
}, | ||
chain_2: { | ||
chain_name: 'miniwasm', | ||
client_id: '07-tendermint-0', | ||
connection_id: 'connection-0' | ||
"chain_2": { | ||
"chain_name": "miniwasm", | ||
"client_id": "07-tendermint-0", | ||
"connection_id": "connection-0" | ||
}, | ||
channels: [ | ||
"channels": [ | ||
{ | ||
chain_1: { | ||
channel_id: 'channel-1', | ||
port_id: 'transfer' | ||
"chain_1": { | ||
"channel_id": "channel-1", | ||
"port_id": "transfer" | ||
}, | ||
chain_2: { | ||
channel_id: 'channel-0', | ||
port_id: 'transfer' | ||
"chain_2": { | ||
"channel_id": "channel-0", | ||
"port_id": "transfer" | ||
}, | ||
ordering: 'unordered', | ||
version: 'ics20-1', | ||
tags: { | ||
status: 'live', | ||
preferred: true | ||
"ordering": "unordered", | ||
"version": "ics20-1", | ||
"tags": { | ||
"status": "live", | ||
"preferred": true | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
export default info; | ||
export default info; |
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,7 @@ | ||
import { IBCData } from "@initia/initia-registry-types"; | ||
import { IBCInfo } from '@initia/initia-registry-types'; | ||
|
||
import * as _devnet from "./devnet/all"; | ||
import * as _devnet from './devnet/all' | ||
|
||
const ibc: IBCData[] = [..._devnet.ibc]; | ||
const ibc: IBCInfo[] = [..._devnet.ibc]; | ||
|
||
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,8 +1,8 @@ | ||
export * from './devnet'; | ||
import all from './all'; | ||
export * from './devnet'; import all from './all'; | ||
|
||
export default all; | ||
export default all; | ||
|
||
const { assets, chains, ibc } = all; | ||
const { assets, chains, ibc }= all; | ||
|
||
export { assets, chains, ibc }; | ||
export { assets, chains, 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,3 +1,3 @@ | ||
import { IBCData } from "@initia/initia-registry-types"; | ||
declare const ibc: IBCData[]; | ||
import { IBCInfo } from "@initia/initia-registry-types"; | ||
declare const ibc: IBCInfo[]; | ||
export default ibc; |
Oops, something went wrong.