File tree Expand file tree Collapse file tree 6 files changed +76
-7
lines changed
v2/packages/chain-registry/src/mainnet Expand file tree Collapse file tree 6 files changed +76
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const info: AssetList = {
3
3
$schema : '../assetlist.schema.json' ,
4
4
chainName : 'bitbadges' ,
5
5
assets : [ {
6
- description : '$BADGE is the native in-app credits token for BitBadges, a platform for creating and sharing digital badges .' ,
6
+ description : '$BADGE is the native in-app credits token for BitBadges.' ,
7
7
denomUnits : [ {
8
8
denom : 'ubadge' ,
9
9
exponent : 0
Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ const info: Chain = {
28
28
} ,
29
29
codebase : {
30
30
gitRepo : 'https://github.com/bitbadges/bitbadgeschain/' ,
31
- recommendedVersion : 'v1.0-bb-mainnet ' ,
32
- compatibleVersions : [ 'v1.0-bb-mainnet ' ] ,
31
+ recommendedVersion : 'v6 ' ,
32
+ compatibleVersions : [ 'v6 ' ] ,
33
33
binaries : {
34
- "linux/amd64" : 'https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-bb-mainnet /bitbadgeschain-linux-amd64' ,
35
- "linux/arm64" : 'https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-bb-mainnet /bitbadgeschain-linux-arm64'
34
+ "linux/amd64" : 'https://github.com/BitBadges/bitbadgeschain/releases/download/v6 /bitbadgeschain-linux-amd64' ,
35
+ "linux/arm64" : 'https://github.com/BitBadges/bitbadgeschain/releases/download/v6 /bitbadgeschain-linux-arm64'
36
36
} ,
37
37
sdk : {
38
38
type : 'cosmos' ,
39
- version : 'v0.50.10 '
39
+ version : 'v0.50.11 '
40
40
} ,
41
41
ibc : {
42
42
type : 'go' ,
@@ -70,7 +70,10 @@ const info: Chain = {
70
70
address : 'https://bitbadges_mainnet_api.chain.whenmoonwhenlambo.money' ,
71
71
provider : '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
72
72
} ] ,
73
- grpc : [ ]
73
+ grpc : [ {
74
+ address : 'http://134.122.12.165:9090' ,
75
+ provider : 'bitbadges'
76
+ } ]
74
77
} ,
75
78
explorers : [
76
79
{
Original file line number Diff line number Diff line change
1
+ import { IBCData } from '@chain-registry/types' ;
2
+ const info : IBCData [ ] = [ {
3
+ $schema : '../ibc_data.schema.json' ,
4
+ chain1 : {
5
+ chainName : 'bitbadges' ,
6
+ clientId : '07-tendermint-1' ,
7
+ connectionId : 'connection-0'
8
+ } ,
9
+ chain2 : {
10
+ chainName : 'osmosis' ,
11
+ clientId : '07-tendermint-3497' ,
12
+ connectionId : 'connection-10745'
13
+ } ,
14
+ channels : [ {
15
+ chain1 : {
16
+ channelId : 'channel-0' ,
17
+ portId : 'transfer'
18
+ } ,
19
+ chain2 : {
20
+ channelId : 'channel-104311' ,
21
+ portId : 'transfer'
22
+ } ,
23
+ ordering : 'unordered' ,
24
+ version : 'ics20-1' ,
25
+ tags : {
26
+ status : 'live' ,
27
+ preferred : true ,
28
+ dex : 'osmosis'
29
+ }
30
+ } ]
31
+ } ] ;
32
+ export default info ;
Original file line number Diff line number Diff line change 1
1
import _assetList from './asset-list' ;
2
2
import _chain from './chain' ;
3
+ import _ibcData from './ibc-data' ;
3
4
4
5
export const assetList = _assetList ;
5
6
export const chain = _chain ;
7
+ export const ibcData = _ibcData ;
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import * as _axelar from './axelar';
19
19
import * as _babylon from './babylon' ;
20
20
import * as _bandchain from './bandchain' ;
21
21
import * as _beezee from './beezee' ;
22
+ import * as _bitbadges from './bitbadges' ;
22
23
import * as _bitcanna from './bitcanna' ;
23
24
import * as _bitsong from './bitsong' ;
24
25
import * as _bluzelle from './bluzelle' ;
@@ -177,6 +178,7 @@ const ibcData: IBCData[] = [
177
178
..._babylon . ibcData ,
178
179
..._bandchain . ibcData ,
179
180
..._beezee . ibcData ,
181
+ ..._bitbadges . ibcData ,
180
182
..._bitcanna . ibcData ,
181
183
..._bitsong . ibcData ,
182
184
..._bluzelle . ibcData ,
Original file line number Diff line number Diff line change @@ -547,6 +547,36 @@ const info: IBCData[] = [
547
547
}
548
548
} ]
549
549
} ,
550
+ {
551
+ $schema : '../ibc_data.schema.json' ,
552
+ chain1 : {
553
+ chainName : 'bitbadges' ,
554
+ clientId : '07-tendermint-1' ,
555
+ connectionId : 'connection-0'
556
+ } ,
557
+ chain2 : {
558
+ chainName : 'osmosis' ,
559
+ clientId : '07-tendermint-3497' ,
560
+ connectionId : 'connection-10745'
561
+ } ,
562
+ channels : [ {
563
+ chain1 : {
564
+ channelId : 'channel-0' ,
565
+ portId : 'transfer'
566
+ } ,
567
+ chain2 : {
568
+ channelId : 'channel-104311' ,
569
+ portId : 'transfer'
570
+ } ,
571
+ ordering : 'unordered' ,
572
+ version : 'ics20-1' ,
573
+ tags : {
574
+ status : 'live' ,
575
+ preferred : true ,
576
+ dex : 'osmosis'
577
+ }
578
+ } ]
579
+ } ,
550
580
{
551
581
$schema : '../ibc_data.schema.json' ,
552
582
chain1 : {
You can’t perform that action at this time.
0 commit comments