Skip to content

Commit

Permalink
build 🛠 build-20241125-030212
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Nov 25, 2024
1 parent dc8232a commit d1204cf
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 3 deletions.
28 changes: 28 additions & 0 deletions v2/packages/chain-registry/src/mainnet/passage/ibc-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,33 @@ const info: IBCData[] = [{
dex: 'osmosis'
}
}]
}, {
$schema: '../ibc_data.schema.json',
chain1: {
chainName: 'passage',
clientId: '07-tendermint-8',
connectionId: 'connection-8'
},
chain2: {
chainName: 'picasso',
clientId: '07-tendermint-225',
connectionId: 'connection-118'
},
channels: [{
chain1: {
channelId: 'channel-7',
portId: 'transfer'
},
chain2: {
channelId: 'channel-80',
portId: 'transfer'
},
ordering: 'unordered',
version: 'ics20-1',
tags: {
status: 'live',
preferred: true
}
}]
}];
export default info;
38 changes: 35 additions & 3 deletions v2/packages/chain-registry/src/noncosmos/picasso/ibc-data.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { IBCData } from '@chain-registry/v2-types';
const info: IBCData[] = [{
const info: IBCData[] = [
{
$schema: '../ibc_data.schema.json',
chain1: {
chainName: 'composable',
Expand Down Expand Up @@ -27,7 +28,8 @@ const info: IBCData[] = [{
preferred: true
}
}]
}, {
},
{
$schema: '../ibc_data.schema.json',
chain1: {
chainName: 'composablepolkadot',
Expand Down Expand Up @@ -55,5 +57,35 @@ const info: IBCData[] = [{
preferred: true
}
}]
}];
},
{
$schema: '../ibc_data.schema.json',
chain1: {
chainName: 'passage',
clientId: '07-tendermint-8',
connectionId: 'connection-8'
},
chain2: {
chainName: 'picasso',
clientId: '07-tendermint-225',
connectionId: 'connection-118'
},
channels: [{
chain1: {
channelId: 'channel-7',
portId: 'transfer'
},
chain2: {
channelId: 'channel-80',
portId: 'transfer'
},
ordering: 'unordered',
version: 'ics20-1',
tags: {
status: 'live',
preferred: true
}
}]
}
];
export default info;

0 comments on commit d1204cf

Please sign in to comment.