chain-registry 2.0.39 → 2.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,6 +32,7 @@ const _neuradevnet = __importStar(require("./neuradevnet"));
32
32
  const _nibirudevnet = __importStar(require("./nibirudevnet"));
33
33
  const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
34
34
  const _nibirudevnet3 = __importStar(require("./nibirudevnet3"));
35
+ const _outbedevnet = __importStar(require("./outbedevnet"));
35
36
  const _prysmdevnet = __importStar(require("./prysmdevnet"));
36
37
  const _seidevnet3 = __importStar(require("./seidevnet3"));
37
38
  const assetList = [
@@ -44,6 +45,7 @@ const assetList = [
44
45
  _nibirudevnet.assetList,
45
46
  _nibirudevnet2.assetList,
46
47
  _nibirudevnet3.assetList,
48
+ _outbedevnet.assetList,
47
49
  _prysmdevnet.assetList,
48
50
  _seidevnet3.assetList
49
51
  ];
package/devnet/chains.js CHANGED
@@ -32,6 +32,7 @@ const _neuradevnet = __importStar(require("./neuradevnet"));
32
32
  const _nibirudevnet = __importStar(require("./nibirudevnet"));
33
33
  const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
34
34
  const _nibirudevnet3 = __importStar(require("./nibirudevnet3"));
35
+ const _outbedevnet = __importStar(require("./outbedevnet"));
35
36
  const _prysmdevnet = __importStar(require("./prysmdevnet"));
36
37
  const _seidevnet3 = __importStar(require("./seidevnet3"));
37
38
  const chains = [
@@ -44,6 +45,7 @@ const chains = [
44
45
  _nibirudevnet.chain,
45
46
  _nibirudevnet2.chain,
46
47
  _nibirudevnet3.chain,
48
+ _outbedevnet.chain,
47
49
  _prysmdevnet.chain,
48
50
  _seidevnet3.chain
49
51
  ];
@@ -23,8 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
+ const _outbedevnet = __importStar(require("./outbedevnet"));
26
27
  const _prysmdevnet = __importStar(require("./prysmdevnet"));
27
28
  const ibcData = [
29
+ ..._outbedevnet.ibcData,
28
30
  ..._prysmdevnet.ibcData
29
31
  ];
30
32
  exports.default = ibcData;
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chainName: 'outbedevnet',
6
+ assets: [{
7
+ description: 'The native token of outbe-node',
8
+ denomUnits: [{
9
+ denom: 'unit',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'coen',
13
+ exponent: 18
14
+ }],
15
+ base: 'unit',
16
+ name: 'coen',
17
+ display: 'coen',
18
+ symbol: 'COEN',
19
+ logoURIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.svg'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.svg'
26
+ }],
27
+ typeAsset: 'sdk.coin'
28
+ }]
29
+ };
30
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chainName: 'outbedevnet',
6
+ chainType: 'cosmos',
7
+ status: 'live',
8
+ website: 'https://www.outbe.com',
9
+ networkType: 'devnet',
10
+ prettyName: 'outbe-node',
11
+ chainId: 'outbe-devnet-1',
12
+ bech32Prefix: 'outbe',
13
+ daemonName: 'outbe-noded',
14
+ nodeHome: '$HOME/.outbe-node',
15
+ slip44: 118,
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'unit',
19
+ fixedMinGasPrice: 0,
20
+ lowGasPrice: 0,
21
+ averageGasPrice: 0.025,
22
+ highGasPrice: 0.04
23
+ }]
24
+ },
25
+ staking: {
26
+ stakingTokens: [{
27
+ denom: 'unit'
28
+ }],
29
+ lockDuration: {
30
+ time: '1814400s'
31
+ }
32
+ },
33
+ codebase: {
34
+ gitRepo: 'https://github.com/outbe/outbe-node',
35
+ recommendedVersion: 'v0.0.1-wasm',
36
+ compatibleVersions: ['v0.0.1-wasm'],
37
+ consensus: {
38
+ type: 'cometbft',
39
+ version: 'v0.38.17'
40
+ },
41
+ genesis: {
42
+ name: 'v1',
43
+ genesisUrl: 'https://github.com/outbe/outbe-node/networks/raw/main/genesis.json'
44
+ }
45
+ },
46
+ images: [{
47
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
48
+ theme: {
49
+ primaryColorHex: '#FF2D00'
50
+ }
51
+ }],
52
+ apis: {
53
+ rpc: [{
54
+ address: 'https://rpc.dev.outbe.net:26657',
55
+ provider: 'Outbe DevNet'
56
+ }],
57
+ rest: [{
58
+ address: 'https://rpc.dev.outbe.net:1317',
59
+ provider: 'Outbe DevNet'
60
+ }]
61
+ },
62
+ explorers: [],
63
+ keywords: ['cosmos']
64
+ };
65
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'cosmosicsprovidertestnet',
7
+ clientId: '07-tendermint-374',
8
+ connectionId: 'connection-260'
9
+ },
10
+ chain2: {
11
+ chainName: 'outbedevnet',
12
+ clientId: '07-tendermint-3',
13
+ connectionId: 'connection-5'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-500',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-5',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live',
28
+ preferred: true
29
+ }
30
+ }]
31
+ }];
32
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ export declare const assetList: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
10
+ exports.assetList = asset_list_1.default;
11
+ exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -7,6 +7,7 @@ import * as _neuradevnet from './neuradevnet';
7
7
  import * as _nibirudevnet from './nibirudevnet';
8
8
  import * as _nibirudevnet2 from './nibirudevnet2';
9
9
  import * as _nibirudevnet3 from './nibirudevnet3';
10
+ import * as _outbedevnet from './outbedevnet';
10
11
  import * as _prysmdevnet from './prysmdevnet';
11
12
  import * as _seidevnet3 from './seidevnet3';
12
13
  const assetList = [
@@ -19,6 +20,7 @@ const assetList = [
19
20
  _nibirudevnet.assetList,
20
21
  _nibirudevnet2.assetList,
21
22
  _nibirudevnet3.assetList,
23
+ _outbedevnet.assetList,
22
24
  _prysmdevnet.assetList,
23
25
  _seidevnet3.assetList
24
26
  ];
@@ -7,6 +7,7 @@ import * as _neuradevnet from './neuradevnet';
7
7
  import * as _nibirudevnet from './nibirudevnet';
8
8
  import * as _nibirudevnet2 from './nibirudevnet2';
9
9
  import * as _nibirudevnet3 from './nibirudevnet3';
10
+ import * as _outbedevnet from './outbedevnet';
10
11
  import * as _prysmdevnet from './prysmdevnet';
11
12
  import * as _seidevnet3 from './seidevnet3';
12
13
  const chains = [
@@ -19,6 +20,7 @@ const chains = [
19
20
  _nibirudevnet.chain,
20
21
  _nibirudevnet2.chain,
21
22
  _nibirudevnet3.chain,
23
+ _outbedevnet.chain,
22
24
  _prysmdevnet.chain,
23
25
  _seidevnet3.chain
24
26
  ];
@@ -1,5 +1,7 @@
1
+ import * as _outbedevnet from './outbedevnet';
1
2
  import * as _prysmdevnet from './prysmdevnet';
2
3
  const ibcData = [
4
+ ..._outbedevnet.ibcData,
3
5
  ..._prysmdevnet.ibcData
4
6
  ];
5
7
  export default ibcData;
@@ -0,0 +1,28 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chainName: 'outbedevnet',
4
+ assets: [{
5
+ description: 'The native token of outbe-node',
6
+ denomUnits: [{
7
+ denom: 'unit',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'coen',
11
+ exponent: 18
12
+ }],
13
+ base: 'unit',
14
+ name: 'coen',
15
+ display: 'coen',
16
+ symbol: 'COEN',
17
+ logoURIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.svg'
24
+ }],
25
+ typeAsset: 'sdk.coin'
26
+ }]
27
+ };
28
+ export default info;
@@ -0,0 +1,63 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chainName: 'outbedevnet',
4
+ chainType: 'cosmos',
5
+ status: 'live',
6
+ website: 'https://www.outbe.com',
7
+ networkType: 'devnet',
8
+ prettyName: 'outbe-node',
9
+ chainId: 'outbe-devnet-1',
10
+ bech32Prefix: 'outbe',
11
+ daemonName: 'outbe-noded',
12
+ nodeHome: '$HOME/.outbe-node',
13
+ slip44: 118,
14
+ fees: {
15
+ feeTokens: [{
16
+ denom: 'unit',
17
+ fixedMinGasPrice: 0,
18
+ lowGasPrice: 0,
19
+ averageGasPrice: 0.025,
20
+ highGasPrice: 0.04
21
+ }]
22
+ },
23
+ staking: {
24
+ stakingTokens: [{
25
+ denom: 'unit'
26
+ }],
27
+ lockDuration: {
28
+ time: '1814400s'
29
+ }
30
+ },
31
+ codebase: {
32
+ gitRepo: 'https://github.com/outbe/outbe-node',
33
+ recommendedVersion: 'v0.0.1-wasm',
34
+ compatibleVersions: ['v0.0.1-wasm'],
35
+ consensus: {
36
+ type: 'cometbft',
37
+ version: 'v0.38.17'
38
+ },
39
+ genesis: {
40
+ name: 'v1',
41
+ genesisUrl: 'https://github.com/outbe/outbe-node/networks/raw/main/genesis.json'
42
+ }
43
+ },
44
+ images: [{
45
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/outbedevnet/images/outbe.png',
46
+ theme: {
47
+ primaryColorHex: '#FF2D00'
48
+ }
49
+ }],
50
+ apis: {
51
+ rpc: [{
52
+ address: 'https://rpc.dev.outbe.net:26657',
53
+ provider: 'Outbe DevNet'
54
+ }],
55
+ rest: [{
56
+ address: 'https://rpc.dev.outbe.net:1317',
57
+ provider: 'Outbe DevNet'
58
+ }]
59
+ },
60
+ explorers: [],
61
+ keywords: ['cosmos']
62
+ };
63
+ export default info;
@@ -0,0 +1,30 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'cosmosicsprovidertestnet',
5
+ clientId: '07-tendermint-374',
6
+ connectionId: 'connection-260'
7
+ },
8
+ chain2: {
9
+ chainName: 'outbedevnet',
10
+ clientId: '07-tendermint-3',
11
+ connectionId: 'connection-5'
12
+ },
13
+ channels: [{
14
+ chain1: {
15
+ channelId: 'channel-500',
16
+ portId: 'transfer'
17
+ },
18
+ chain2: {
19
+ channelId: 'channel-5',
20
+ portId: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true
27
+ }
28
+ }]
29
+ }];
30
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ import _ibcData from './ibc-data';
4
+ export const assetList = _assetList;
5
+ export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -17347,8 +17347,7 @@ const info = {
17347
17347
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
17348
17348
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png'
17349
17349
  },
17350
- images: [
17351
- {
17350
+ images: [{
17352
17351
  imageSync: {
17353
17352
  chainName: 'ethereum',
17354
17353
  baseDenom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
@@ -17360,8 +17359,7 @@ const info = {
17360
17359
  primaryColorHex: '#009393',
17361
17360
  backgroundColorHex: '#009393'
17362
17361
  }
17363
- },
17364
- {
17362
+ }, {
17365
17363
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png',
17366
17364
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg',
17367
17365
  theme: {
@@ -17369,11 +17367,7 @@ const info = {
17369
17367
  primaryColorHex: '#50AF95',
17370
17368
  backgroundColorHex: '#00000000'
17371
17369
  }
17372
- },
17373
- {
17374
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg'
17375
- }
17376
- ],
17370
+ }],
17377
17371
  keywords: ['osmosis_unlisted']
17378
17372
  },
17379
17373
  {
@@ -17496,8 +17490,6 @@ const info = {
17496
17490
  backgroundColorHex: '#f4941c',
17497
17491
  circle: true
17498
17492
  }
17499
- }, {
17500
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg'
17501
17493
  }]
17502
17494
  },
17503
17495
  {
@@ -18134,9 +18126,6 @@ const info = {
18134
18126
  theme: {
18135
18127
  primaryColorHex: '#303030'
18136
18128
  }
18137
- }, {
18138
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg',
18139
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png'
18140
18129
  }]
18141
18130
  },
18142
18131
  {
@@ -18167,8 +18156,7 @@ const info = {
18167
18156
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg',
18168
18157
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png'
18169
18158
  },
18170
- images: [
18171
- {
18159
+ images: [{
18172
18160
  imageSync: {
18173
18161
  chainName: 'solana',
18174
18162
  baseDenom: 'Lamport'
@@ -18179,31 +18167,13 @@ const info = {
18179
18167
  circle: true,
18180
18168
  backgroundColorHex: '#000000'
18181
18169
  }
18182
- },
18183
- {
18170
+ }, {
18184
18171
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg',
18185
18172
  theme: {
18186
18173
  circle: false,
18187
18174
  backgroundColorHex: '#00000000'
18188
18175
  }
18189
- },
18190
- {
18191
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.svg',
18192
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.png',
18193
- theme: {
18194
- circle: false,
18195
- backgroundColorHex: '#00000000'
18196
- }
18197
- },
18198
- {
18199
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg',
18200
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png',
18201
- theme: {
18202
- circle: false,
18203
- backgroundColorHex: '#00000000'
18204
- }
18205
- }
18206
- ]
18176
+ }]
18207
18177
  },
18208
18178
  {
18209
18179
  description: 'Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.',
@@ -18535,14 +18505,6 @@ const info = {
18535
18505
  primaryColorHex: '#FF060A',
18536
18506
  backgroundColorHex: '#FF060A'
18537
18507
  }
18538
- }, {
18539
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg',
18540
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png',
18541
- theme: {
18542
- circle: true,
18543
- primaryColorHex: '#FF060A',
18544
- backgroundColorHex: '#FF060A'
18545
- }
18546
18508
  }]
18547
18509
  },
18548
18510
  {
@@ -18625,12 +18587,6 @@ const info = {
18625
18587
  theme: {
18626
18588
  primaryColorHex: '#fc0424'
18627
18589
  }
18628
- }, {
18629
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg',
18630
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png',
18631
- theme: {
18632
- primaryColorHex: '#fc0424'
18633
- }
18634
18590
  }]
18635
18591
  },
18636
18592
  {
@@ -18718,13 +18674,6 @@ const info = {
18718
18674
  primaryColorHex: '#FFA409',
18719
18675
  backgroundColorHex: '#00000000'
18720
18676
  }
18721
- }, {
18722
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg',
18723
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png',
18724
- theme: {
18725
- circle: true,
18726
- primaryColorHex: '#FFA409'
18727
- }
18728
18677
  }]
18729
18678
  },
18730
18679
  {
@@ -18764,12 +18713,6 @@ const info = {
18764
18713
  theme: {
18765
18714
  primaryColorHex: '#253545'
18766
18715
  }
18767
- }, {
18768
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg',
18769
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png',
18770
- theme: {
18771
- primaryColorHex: '#9DCCED'
18772
- }
18773
18716
  }]
18774
18717
  },
18775
18718
  {
@@ -18809,13 +18752,6 @@ const info = {
18809
18752
  theme: {
18810
18753
  primaryColorHex: '#2c5cdc'
18811
18754
  }
18812
- }, {
18813
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg',
18814
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png',
18815
- theme: {
18816
- circle: true,
18817
- primaryColorHex: '#2A5ADA'
18818
- }
18819
18755
  }]
18820
18756
  },
18821
18757
  {
@@ -18855,12 +18791,6 @@ const info = {
18855
18791
  theme: {
18856
18792
  primaryColorHex: '#cc3233'
18857
18793
  }
18858
- }, {
18859
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png',
18860
- theme: {
18861
- circle: true,
18862
- primaryColorHex: '#549C44'
18863
- }
18864
18794
  }]
18865
18795
  },
18866
18796
  {
@@ -18900,13 +18830,6 @@ const info = {
18900
18830
  theme: {
18901
18831
  primaryColorHex: '#e4047c'
18902
18832
  }
18903
- }, {
18904
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.svg',
18905
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.png',
18906
- theme: {
18907
- circle: true,
18908
- primaryColorHex: '#E6007A'
18909
- }
18910
18833
  }]
18911
18834
  },
18912
18835
  {
@@ -19401,12 +19324,6 @@ const info = {
19401
19324
  primaryColorHex: '#0088CC',
19402
19325
  backgroundColorHex: '#0088CC'
19403
19326
  }
19404
- }, {
19405
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.svg',
19406
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.png',
19407
- theme: {
19408
- primaryColorHex: '#0088CC'
19409
- }
19410
19327
  }]
19411
19328
  },
19412
19329
  {
@@ -21610,9 +21527,6 @@ const info = {
21610
21527
  theme: {
21611
21528
  primaryColorHex: '#0493fc'
21612
21529
  }
21613
- }, {
21614
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.svg',
21615
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.png'
21616
21530
  }]
21617
21531
  },
21618
21532
  {
@@ -22642,29 +22556,18 @@ const info = {
22642
22556
  logoURIs: {
22643
22557
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
22644
22558
  },
22645
- images: [
22646
- {
22559
+ images: [{
22647
22560
  imageSync: {
22648
22561
  chainName: 'aptos',
22649
22562
  baseDenom: '0x1::aptos_coin::AptosCoin'
22650
22563
  },
22651
22564
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
22652
- },
22653
- {
22565
+ }, {
22654
22566
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg',
22655
22567
  theme: {
22656
22568
  darkMode: true
22657
22569
  }
22658
- },
22659
- {
22660
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allAPT.svg',
22661
- theme: {
22662
- circle: true,
22663
- darkMode: true,
22664
- primaryColorHex: '#ffffff'
22665
- }
22666
- }
22667
- ]
22570
+ }]
22668
22571
  },
22669
22572
  {
22670
22573
  description: 'An alloy of BNB asset variants on Osmosis.',
@@ -22703,13 +22606,6 @@ const info = {
22703
22606
  theme: {
22704
22607
  primaryColorHex: '#f3bb0c'
22705
22608
  }
22706
- }, {
22707
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBNB.svg',
22708
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBNB.png',
22709
- theme: {
22710
- circle: true,
22711
- primaryColorHex: '#f0b90b'
22712
- }
22713
22609
  }]
22714
22610
  },
22715
22611
  {
@@ -23160,12 +23056,6 @@ const info = {
23160
23056
  theme: {
23161
23057
  primaryColorHex: '#f4e4d4'
23162
23058
  }
23163
- }, {
23164
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDYM.svg',
23165
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDYM.png',
23166
- theme: {
23167
- primaryColorHex: '#f4e4d4'
23168
- }
23169
23059
  }]
23170
23060
  },
23171
23061
  {
@@ -23206,12 +23096,6 @@ const info = {
23206
23096
  theme: {
23207
23097
  primaryColorHex: '#8444e4'
23208
23098
  }
23209
- }, {
23210
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPOL.svg',
23211
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPOL.png',
23212
- theme: {
23213
- primaryColorHex: '#8444e4'
23214
- }
23215
23099
  }]
23216
23100
  },
23217
23101
  {
@@ -23386,12 +23270,6 @@ const info = {
23386
23270
  circle: true,
23387
23271
  primaryColorHex: '#F1BB15'
23388
23272
  }
23389
- }, {
23390
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allMOVE.svg',
23391
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allMOVE.png',
23392
- theme: {
23393
- primaryColorHex: '#F1BB15'
23394
- }
23395
23273
  }],
23396
23274
  socials: {
23397
23275
  website: 'https://www.movementnetwork.xyz/',
@@ -24939,10 +24817,10 @@ const info = {
24939
24817
  provider: 'Osmosis'
24940
24818
  }],
24941
24819
  logoURIs: {
24942
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSD.svg'
24820
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usd.svg'
24943
24821
  },
24944
24822
  images: [{
24945
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSD.svg'
24823
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usd.svg'
24946
24824
  }]
24947
24825
  },
24948
24826
  {
@@ -523,8 +523,8 @@ const info = {
523
523
  name: 'v3',
524
524
  genesisUrl: 'https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json'
525
525
  },
526
- recommendedVersion: '29.0.0',
527
- compatibleVersions: ['29.0.0'],
526
+ recommendedVersion: '30.0.0',
527
+ compatibleVersions: ['30.0.0'],
528
528
  consensus: {
529
529
  type: 'cometbft',
530
530
  version: '0.38.17',
@@ -532,16 +532,16 @@ const info = {
532
532
  tag: 'v0.38.17-v28-osmo-1'
533
533
  },
534
534
  cosmwasm: {
535
- version: '0.53.2',
535
+ version: '0.53.3',
536
536
  repo: 'https://github.com/CosmWasm/wasmd',
537
- tag: 'v0.53.2',
537
+ tag: 'v0.53.3',
538
538
  enabled: true
539
539
  },
540
540
  sdk: {
541
541
  type: 'cosmos',
542
- version: '0.50.11',
542
+ version: '0.50.14',
543
543
  repo: 'https://github.com/osmosis-labs/cosmos-sdk',
544
- tag: 'v0.50.11-v28-osmo-1'
544
+ tag: 'v0.50.14-v30-osmo'
545
545
  },
546
546
  ibc: {
547
547
  type: 'go',
@@ -552,11 +552,11 @@ const info = {
552
552
  },
553
553
  language: {
554
554
  type: 'go',
555
- version: '1.22.11'
555
+ version: '1.23.4'
556
556
  },
557
557
  binaries: {
558
- "linux/amd64": 'https://github.com/osmosis-labs/osmosis/releases/download/v29.0.0/osmosisd-29.0.0-linux-amd64?checksum=6999331507e5119228456a64f733eb1d945f5392ffcfd4673bdad25886b19a7e',
559
- "linux/arm64": 'https://github.com/osmosis-labs/osmosis/releases/download/v29.0.0/osmosisd-29.0.0-linux-arm64?checksum=079d836d1bf009aab09149eb79d3c187980c5116b8319e09c66a8cae7fa0704c'
558
+ "linux/amd64": 'https://github.com/osmosis-labs/osmosis/releases/download/v30.0.0/osmosisd-30.0.0-linux-amd64?checksum=b469237ba50239988601ec5f0b88197a507b68ca1e1cf97a7e993bd731d7a5fc',
559
+ "linux/arm64": 'https://github.com/osmosis-labs/osmosis/releases/download/v30.0.0/osmosisd-30.0.0-linux-arm64?checksum=ef79c48f86301fd9e7ac78ad6d5c5291c98d24f77f46460960a487cf60ee526f'
560
560
  }
561
561
  },
562
562
  images: [{
@@ -103,6 +103,10 @@ const info = {
103
103
  {
104
104
  address: 'https://rpc1.airchains.t.cosmostaking.com/',
105
105
  provider: 'Cosmostaking'
106
+ },
107
+ {
108
+ address: 'https://airchains-testnet-rpc.cosmonautstakes.com/',
109
+ provider: 'Cosmonaut Stakes'
106
110
  }
107
111
  ],
108
112
  rest: [
@@ -57,6 +57,35 @@ const info = [
57
57
  }
58
58
  }]
59
59
  },
60
+ {
61
+ $schema: '../../ibc_data.schema.json',
62
+ chain1: {
63
+ chainName: 'cosmosicsprovidertestnet',
64
+ clientId: '07-tendermint-374',
65
+ connectionId: 'connection-260'
66
+ },
67
+ chain2: {
68
+ chainName: 'outbedevnet',
69
+ clientId: '07-tendermint-3',
70
+ connectionId: 'connection-5'
71
+ },
72
+ channels: [{
73
+ chain1: {
74
+ channelId: 'channel-500',
75
+ portId: 'transfer'
76
+ },
77
+ chain2: {
78
+ channelId: 'channel-5',
79
+ portId: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
86
+ }
87
+ }]
88
+ },
60
89
  {
61
90
  $schema: '../../ibc_data.schema.json',
62
91
  chain1: {
@@ -17349,8 +17349,7 @@ const info = {
17349
17349
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
17350
17350
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png'
17351
17351
  },
17352
- images: [
17353
- {
17352
+ images: [{
17354
17353
  imageSync: {
17355
17354
  chainName: 'ethereum',
17356
17355
  baseDenom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
@@ -17362,8 +17361,7 @@ const info = {
17362
17361
  primaryColorHex: '#009393',
17363
17362
  backgroundColorHex: '#009393'
17364
17363
  }
17365
- },
17366
- {
17364
+ }, {
17367
17365
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png',
17368
17366
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg',
17369
17367
  theme: {
@@ -17371,11 +17369,7 @@ const info = {
17371
17369
  primaryColorHex: '#50AF95',
17372
17370
  backgroundColorHex: '#00000000'
17373
17371
  }
17374
- },
17375
- {
17376
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg'
17377
- }
17378
- ],
17372
+ }],
17379
17373
  keywords: ['osmosis_unlisted']
17380
17374
  },
17381
17375
  {
@@ -17498,8 +17492,6 @@ const info = {
17498
17492
  backgroundColorHex: '#f4941c',
17499
17493
  circle: true
17500
17494
  }
17501
- }, {
17502
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg'
17503
17495
  }]
17504
17496
  },
17505
17497
  {
@@ -18136,9 +18128,6 @@ const info = {
18136
18128
  theme: {
18137
18129
  primaryColorHex: '#303030'
18138
18130
  }
18139
- }, {
18140
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg',
18141
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png'
18142
18131
  }]
18143
18132
  },
18144
18133
  {
@@ -18169,8 +18158,7 @@ const info = {
18169
18158
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg',
18170
18159
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png'
18171
18160
  },
18172
- images: [
18173
- {
18161
+ images: [{
18174
18162
  imageSync: {
18175
18163
  chainName: 'solana',
18176
18164
  baseDenom: 'Lamport'
@@ -18181,31 +18169,13 @@ const info = {
18181
18169
  circle: true,
18182
18170
  backgroundColorHex: '#000000'
18183
18171
  }
18184
- },
18185
- {
18172
+ }, {
18186
18173
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg',
18187
18174
  theme: {
18188
18175
  circle: false,
18189
18176
  backgroundColorHex: '#00000000'
18190
18177
  }
18191
- },
18192
- {
18193
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.svg',
18194
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.png',
18195
- theme: {
18196
- circle: false,
18197
- backgroundColorHex: '#00000000'
18198
- }
18199
- },
18200
- {
18201
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg',
18202
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png',
18203
- theme: {
18204
- circle: false,
18205
- backgroundColorHex: '#00000000'
18206
- }
18207
- }
18208
- ]
18178
+ }]
18209
18179
  },
18210
18180
  {
18211
18181
  description: 'Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.',
@@ -18537,14 +18507,6 @@ const info = {
18537
18507
  primaryColorHex: '#FF060A',
18538
18508
  backgroundColorHex: '#FF060A'
18539
18509
  }
18540
- }, {
18541
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg',
18542
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png',
18543
- theme: {
18544
- circle: true,
18545
- primaryColorHex: '#FF060A',
18546
- backgroundColorHex: '#FF060A'
18547
- }
18548
18510
  }]
18549
18511
  },
18550
18512
  {
@@ -18627,12 +18589,6 @@ const info = {
18627
18589
  theme: {
18628
18590
  primaryColorHex: '#fc0424'
18629
18591
  }
18630
- }, {
18631
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg',
18632
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png',
18633
- theme: {
18634
- primaryColorHex: '#fc0424'
18635
- }
18636
18592
  }]
18637
18593
  },
18638
18594
  {
@@ -18720,13 +18676,6 @@ const info = {
18720
18676
  primaryColorHex: '#FFA409',
18721
18677
  backgroundColorHex: '#00000000'
18722
18678
  }
18723
- }, {
18724
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg',
18725
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png',
18726
- theme: {
18727
- circle: true,
18728
- primaryColorHex: '#FFA409'
18729
- }
18730
18679
  }]
18731
18680
  },
18732
18681
  {
@@ -18766,12 +18715,6 @@ const info = {
18766
18715
  theme: {
18767
18716
  primaryColorHex: '#253545'
18768
18717
  }
18769
- }, {
18770
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg',
18771
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png',
18772
- theme: {
18773
- primaryColorHex: '#9DCCED'
18774
- }
18775
18718
  }]
18776
18719
  },
18777
18720
  {
@@ -18811,13 +18754,6 @@ const info = {
18811
18754
  theme: {
18812
18755
  primaryColorHex: '#2c5cdc'
18813
18756
  }
18814
- }, {
18815
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg',
18816
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png',
18817
- theme: {
18818
- circle: true,
18819
- primaryColorHex: '#2A5ADA'
18820
- }
18821
18757
  }]
18822
18758
  },
18823
18759
  {
@@ -18857,12 +18793,6 @@ const info = {
18857
18793
  theme: {
18858
18794
  primaryColorHex: '#cc3233'
18859
18795
  }
18860
- }, {
18861
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png',
18862
- theme: {
18863
- circle: true,
18864
- primaryColorHex: '#549C44'
18865
- }
18866
18796
  }]
18867
18797
  },
18868
18798
  {
@@ -18902,13 +18832,6 @@ const info = {
18902
18832
  theme: {
18903
18833
  primaryColorHex: '#e4047c'
18904
18834
  }
18905
- }, {
18906
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.svg',
18907
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.png',
18908
- theme: {
18909
- circle: true,
18910
- primaryColorHex: '#E6007A'
18911
- }
18912
18835
  }]
18913
18836
  },
18914
18837
  {
@@ -19403,12 +19326,6 @@ const info = {
19403
19326
  primaryColorHex: '#0088CC',
19404
19327
  backgroundColorHex: '#0088CC'
19405
19328
  }
19406
- }, {
19407
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.svg',
19408
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.png',
19409
- theme: {
19410
- primaryColorHex: '#0088CC'
19411
- }
19412
19329
  }]
19413
19330
  },
19414
19331
  {
@@ -21612,9 +21529,6 @@ const info = {
21612
21529
  theme: {
21613
21530
  primaryColorHex: '#0493fc'
21614
21531
  }
21615
- }, {
21616
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.svg',
21617
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.png'
21618
21532
  }]
21619
21533
  },
21620
21534
  {
@@ -22644,29 +22558,18 @@ const info = {
22644
22558
  logoURIs: {
22645
22559
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
22646
22560
  },
22647
- images: [
22648
- {
22561
+ images: [{
22649
22562
  imageSync: {
22650
22563
  chainName: 'aptos',
22651
22564
  baseDenom: '0x1::aptos_coin::AptosCoin'
22652
22565
  },
22653
22566
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
22654
- },
22655
- {
22567
+ }, {
22656
22568
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg',
22657
22569
  theme: {
22658
22570
  darkMode: true
22659
22571
  }
22660
- },
22661
- {
22662
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allAPT.svg',
22663
- theme: {
22664
- circle: true,
22665
- darkMode: true,
22666
- primaryColorHex: '#ffffff'
22667
- }
22668
- }
22669
- ]
22572
+ }]
22670
22573
  },
22671
22574
  {
22672
22575
  description: 'An alloy of BNB asset variants on Osmosis.',
@@ -22705,13 +22608,6 @@ const info = {
22705
22608
  theme: {
22706
22609
  primaryColorHex: '#f3bb0c'
22707
22610
  }
22708
- }, {
22709
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBNB.svg',
22710
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBNB.png',
22711
- theme: {
22712
- circle: true,
22713
- primaryColorHex: '#f0b90b'
22714
- }
22715
22611
  }]
22716
22612
  },
22717
22613
  {
@@ -23162,12 +23058,6 @@ const info = {
23162
23058
  theme: {
23163
23059
  primaryColorHex: '#f4e4d4'
23164
23060
  }
23165
- }, {
23166
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDYM.svg',
23167
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDYM.png',
23168
- theme: {
23169
- primaryColorHex: '#f4e4d4'
23170
- }
23171
23061
  }]
23172
23062
  },
23173
23063
  {
@@ -23208,12 +23098,6 @@ const info = {
23208
23098
  theme: {
23209
23099
  primaryColorHex: '#8444e4'
23210
23100
  }
23211
- }, {
23212
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPOL.svg',
23213
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPOL.png',
23214
- theme: {
23215
- primaryColorHex: '#8444e4'
23216
- }
23217
23101
  }]
23218
23102
  },
23219
23103
  {
@@ -23388,12 +23272,6 @@ const info = {
23388
23272
  circle: true,
23389
23273
  primaryColorHex: '#F1BB15'
23390
23274
  }
23391
- }, {
23392
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allMOVE.svg',
23393
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allMOVE.png',
23394
- theme: {
23395
- primaryColorHex: '#F1BB15'
23396
- }
23397
23275
  }],
23398
23276
  socials: {
23399
23277
  website: 'https://www.movementnetwork.xyz/',
@@ -24941,10 +24819,10 @@ const info = {
24941
24819
  provider: 'Osmosis'
24942
24820
  }],
24943
24821
  logoURIs: {
24944
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSD.svg'
24822
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usd.svg'
24945
24823
  },
24946
24824
  images: [{
24947
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSD.svg'
24825
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usd.svg'
24948
24826
  }]
24949
24827
  },
24950
24828
  {
@@ -525,8 +525,8 @@ const info = {
525
525
  name: 'v3',
526
526
  genesisUrl: 'https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json'
527
527
  },
528
- recommendedVersion: '29.0.0',
529
- compatibleVersions: ['29.0.0'],
528
+ recommendedVersion: '30.0.0',
529
+ compatibleVersions: ['30.0.0'],
530
530
  consensus: {
531
531
  type: 'cometbft',
532
532
  version: '0.38.17',
@@ -534,16 +534,16 @@ const info = {
534
534
  tag: 'v0.38.17-v28-osmo-1'
535
535
  },
536
536
  cosmwasm: {
537
- version: '0.53.2',
537
+ version: '0.53.3',
538
538
  repo: 'https://github.com/CosmWasm/wasmd',
539
- tag: 'v0.53.2',
539
+ tag: 'v0.53.3',
540
540
  enabled: true
541
541
  },
542
542
  sdk: {
543
543
  type: 'cosmos',
544
- version: '0.50.11',
544
+ version: '0.50.14',
545
545
  repo: 'https://github.com/osmosis-labs/cosmos-sdk',
546
- tag: 'v0.50.11-v28-osmo-1'
546
+ tag: 'v0.50.14-v30-osmo'
547
547
  },
548
548
  ibc: {
549
549
  type: 'go',
@@ -554,11 +554,11 @@ const info = {
554
554
  },
555
555
  language: {
556
556
  type: 'go',
557
- version: '1.22.11'
557
+ version: '1.23.4'
558
558
  },
559
559
  binaries: {
560
- "linux/amd64": 'https://github.com/osmosis-labs/osmosis/releases/download/v29.0.0/osmosisd-29.0.0-linux-amd64?checksum=6999331507e5119228456a64f733eb1d945f5392ffcfd4673bdad25886b19a7e',
561
- "linux/arm64": 'https://github.com/osmosis-labs/osmosis/releases/download/v29.0.0/osmosisd-29.0.0-linux-arm64?checksum=079d836d1bf009aab09149eb79d3c187980c5116b8319e09c66a8cae7fa0704c'
560
+ "linux/amd64": 'https://github.com/osmosis-labs/osmosis/releases/download/v30.0.0/osmosisd-30.0.0-linux-amd64?checksum=b469237ba50239988601ec5f0b88197a507b68ca1e1cf97a7e993bd731d7a5fc',
561
+ "linux/arm64": 'https://github.com/osmosis-labs/osmosis/releases/download/v30.0.0/osmosisd-30.0.0-linux-arm64?checksum=ef79c48f86301fd9e7ac78ad6d5c5291c98d24f77f46460960a487cf60ee526f'
562
562
  }
563
563
  },
564
564
  images: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.39",
3
+ "version": "2.0.40",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,7 +29,7 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@chain-registry/types": "^2.0.39"
32
+ "@chain-registry/types": "^2.0.40"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "1f1c9dcd201c6e3a5a49e224dda8c636cfabe42a"
42
+ "gitHead": "0ee2b31141398f457fbe7eeac7dbe377bb3bb6e3"
43
43
  }
@@ -105,6 +105,10 @@ const info = {
105
105
  {
106
106
  address: 'https://rpc1.airchains.t.cosmostaking.com/',
107
107
  provider: 'Cosmostaking'
108
+ },
109
+ {
110
+ address: 'https://airchains-testnet-rpc.cosmonautstakes.com/',
111
+ provider: 'Cosmonaut Stakes'
108
112
  }
109
113
  ],
110
114
  rest: [
@@ -59,6 +59,35 @@ const info = [
59
59
  }
60
60
  }]
61
61
  },
62
+ {
63
+ $schema: '../../ibc_data.schema.json',
64
+ chain1: {
65
+ chainName: 'cosmosicsprovidertestnet',
66
+ clientId: '07-tendermint-374',
67
+ connectionId: 'connection-260'
68
+ },
69
+ chain2: {
70
+ chainName: 'outbedevnet',
71
+ clientId: '07-tendermint-3',
72
+ connectionId: 'connection-5'
73
+ },
74
+ channels: [{
75
+ chain1: {
76
+ channelId: 'channel-500',
77
+ portId: 'transfer'
78
+ },
79
+ chain2: {
80
+ channelId: 'channel-5',
81
+ portId: 'transfer'
82
+ },
83
+ ordering: 'unordered',
84
+ version: 'ics20-1',
85
+ tags: {
86
+ status: 'live',
87
+ preferred: true
88
+ }
89
+ }]
90
+ },
62
91
  {
63
92
  $schema: '../../ibc_data.schema.json',
64
93
  chain1: {