chain-registry 1.69.627 → 1.69.628

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.
Files changed (42) hide show
  1. package/esm/mainnet/assets.js +2 -0
  2. package/esm/mainnet/chains.js +2 -0
  3. package/esm/mainnet/ibc.js +2 -0
  4. package/esm/mainnet/named.js +1 -0
  5. package/esm/mainnet/noble/ibc.js +31 -0
  6. package/esm/mainnet/osmosis/ibc.js +31 -0
  7. package/esm/mainnet/safrochain/assets.js +93 -0
  8. package/esm/mainnet/safrochain/chain.js +151 -0
  9. package/esm/mainnet/safrochain/ibc.js +62 -0
  10. package/esm/mainnet/safrochain/index.js +6 -0
  11. package/esm/testnet/assets.js +2 -0
  12. package/esm/testnet/chains.js +2 -0
  13. package/esm/testnet/limonatatestnet/assets.js +26 -0
  14. package/esm/testnet/limonatatestnet/chain.js +58 -0
  15. package/esm/testnet/limonatatestnet/index.js +4 -0
  16. package/esm/testnet/named.js +1 -0
  17. package/mainnet/assets.js +2 -0
  18. package/mainnet/chains.js +2 -0
  19. package/mainnet/ibc.js +2 -0
  20. package/mainnet/named.d.ts +1 -0
  21. package/mainnet/named.js +3 -2
  22. package/mainnet/noble/ibc.js +31 -0
  23. package/mainnet/osmosis/ibc.js +31 -0
  24. package/mainnet/safrochain/assets.d.ts +3 -0
  25. package/mainnet/safrochain/assets.js +95 -0
  26. package/mainnet/safrochain/chain.d.ts +3 -0
  27. package/mainnet/safrochain/chain.js +153 -0
  28. package/mainnet/safrochain/ibc.d.ts +3 -0
  29. package/mainnet/safrochain/ibc.js +64 -0
  30. package/mainnet/safrochain/index.d.ts +3 -0
  31. package/mainnet/safrochain/index.js +12 -0
  32. package/package.json +3 -3
  33. package/testnet/assets.js +2 -0
  34. package/testnet/chains.js +2 -0
  35. package/testnet/limonatatestnet/assets.d.ts +3 -0
  36. package/testnet/limonatatestnet/assets.js +28 -0
  37. package/testnet/limonatatestnet/chain.d.ts +3 -0
  38. package/testnet/limonatatestnet/chain.js +60 -0
  39. package/testnet/limonatatestnet/index.d.ts +2 -0
  40. package/testnet/limonatatestnet/index.js +10 -0
  41. package/testnet/named.d.ts +1 -0
  42. package/testnet/named.js +3 -2
@@ -171,6 +171,7 @@ import * as _realio from './realio';
171
171
  import * as _rebus from './rebus';
172
172
  import * as _regen from './regen';
173
173
  import * as _rizon from './rizon';
174
+ import * as _safrochain from './safrochain';
174
175
  import * as _saga from './saga';
175
176
  import * as _scorum from './scorum';
176
177
  import * as _secretnetwork from './secretnetwork';
@@ -395,6 +396,7 @@ const assets = [
395
396
  _rebus.assets,
396
397
  _regen.assets,
397
398
  _rizon.assets,
399
+ _safrochain.assets,
398
400
  _saga.assets,
399
401
  _scorum.assets,
400
402
  _secretnetwork.assets,
@@ -171,6 +171,7 @@ import * as _realio from './realio';
171
171
  import * as _rebus from './rebus';
172
172
  import * as _regen from './regen';
173
173
  import * as _rizon from './rizon';
174
+ import * as _safrochain from './safrochain';
174
175
  import * as _saga from './saga';
175
176
  import * as _scorum from './scorum';
176
177
  import * as _secretnetwork from './secretnetwork';
@@ -395,6 +396,7 @@ const chains = [
395
396
  _rebus.chain,
396
397
  _regen.chain,
397
398
  _rizon.chain,
399
+ _safrochain.chain,
398
400
  _saga.chain,
399
401
  _scorum.chain,
400
402
  _secretnetwork.chain,
@@ -131,6 +131,7 @@ import * as _realio from './realio';
131
131
  import * as _rebus from './rebus';
132
132
  import * as _regen from './regen';
133
133
  import * as _rizon from './rizon';
134
+ import * as _safrochain from './safrochain';
134
135
  import * as _saga from './saga';
135
136
  import * as _scorum from './scorum';
136
137
  import * as _secretnetwork from './secretnetwork';
@@ -302,6 +303,7 @@ const ibc = [
302
303
  ..._rebus.ibc,
303
304
  ..._regen.ibc,
304
305
  ..._rizon.ibc,
306
+ ..._safrochain.ibc,
305
307
  ..._saga.ibc,
306
308
  ..._scorum.ibc,
307
309
  ..._secretnetwork.ibc,
@@ -171,6 +171,7 @@ export * as realio from './realio';
171
171
  export * as rebus from './rebus';
172
172
  export * as regen from './regen';
173
173
  export * as rizon from './rizon';
174
+ export * as safrochain from './safrochain';
174
175
  export * as saga from './saga';
175
176
  export * as scorum from './scorum';
176
177
  export * as secretnetwork from './secretnetwork';
@@ -1355,6 +1355,37 @@ const info = [
1355
1355
  }
1356
1356
  }]
1357
1357
  },
1358
+ {
1359
+ $schema: '../ibc_data.schema.json',
1360
+ chain_1: {
1361
+ chain_name: 'noble',
1362
+ chain_id: 'noble-1',
1363
+ client_id: '07-tendermint-224',
1364
+ connection_id: 'connection-210'
1365
+ },
1366
+ chain_2: {
1367
+ chain_name: 'safrochain',
1368
+ chain_id: 'safrochain-1',
1369
+ client_id: '07-tendermint-0',
1370
+ connection_id: 'connection-0'
1371
+ },
1372
+ channels: [{
1373
+ chain_1: {
1374
+ channel_id: 'channel-581',
1375
+ port_id: 'transfer'
1376
+ },
1377
+ chain_2: {
1378
+ channel_id: 'channel-0',
1379
+ port_id: 'transfer'
1380
+ },
1381
+ ordering: 'unordered',
1382
+ version: 'ics20-1',
1383
+ tags: {
1384
+ status: 'ACTIVE',
1385
+ preferred: true
1386
+ }
1387
+ }]
1388
+ },
1358
1389
  {
1359
1390
  $schema: '../ibc_data.schema.json',
1360
1391
  chain_1: {
@@ -4568,6 +4568,37 @@ const info = [
4568
4568
  }
4569
4569
  }]
4570
4570
  },
4571
+ {
4572
+ $schema: '../ibc_data.schema.json',
4573
+ chain_1: {
4574
+ chain_name: 'osmosis',
4575
+ chain_id: 'osmosis-1',
4576
+ client_id: '07-tendermint-3719',
4577
+ connection_id: 'connection-11075'
4578
+ },
4579
+ chain_2: {
4580
+ chain_name: 'safrochain',
4581
+ chain_id: 'safrochain-1',
4582
+ client_id: '07-tendermint-1',
4583
+ connection_id: 'connection-1'
4584
+ },
4585
+ channels: [{
4586
+ chain_1: {
4587
+ channel_id: 'channel-110497',
4588
+ port_id: 'transfer'
4589
+ },
4590
+ chain_2: {
4591
+ channel_id: 'channel-1',
4592
+ port_id: 'transfer'
4593
+ },
4594
+ ordering: 'unordered',
4595
+ version: 'ics20-1',
4596
+ tags: {
4597
+ status: 'ACTIVE',
4598
+ preferred: true
4599
+ }
4600
+ }]
4601
+ },
4571
4602
  {
4572
4603
  $schema: '../ibc_data.schema.json',
4573
4604
  chain_1: {
@@ -0,0 +1,93 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'safrochain',
4
+ assets: [
5
+ {
6
+ description: 'The native staking, governance, and fee token of Safrochain, a mobile-first mobile-money-powered blockchain connecting mobile wallets to on-chain finance and interoperable digital rails.',
7
+ denom_units: [{
8
+ denom: 'usaf',
9
+ exponent: 0,
10
+ aliases: ['microsaf']
11
+ }, {
12
+ denom: 'saf',
13
+ exponent: 6
14
+ }],
15
+ base: 'usaf',
16
+ name: 'Safrochain',
17
+ display: 'saf',
18
+ symbol: 'SAF',
19
+ logo_URIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
26
+ }],
27
+ type_asset: 'sdk.coin'
28
+ },
29
+ {
30
+ description: 'Circle USDC bridged from Noble over IBC channel-0.',
31
+ denom_units: [{
32
+ denom: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
33
+ exponent: 0,
34
+ aliases: ['uusdc']
35
+ }, {
36
+ denom: 'USDC',
37
+ exponent: 6
38
+ }],
39
+ base: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
40
+ name: 'USD Coin (Noble)',
41
+ display: 'USDC',
42
+ symbol: 'USDC',
43
+ traces: [{
44
+ type: 'ibc',
45
+ counterparty: {
46
+ chain_name: 'noble',
47
+ base_denom: 'uusdc',
48
+ channel_id: 'channel-581'
49
+ },
50
+ chain: {
51
+ channel_id: 'channel-0',
52
+ path: 'transfer/channel-0/uusdc'
53
+ }
54
+ }],
55
+ logo_URIs: {
56
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
57
+ },
58
+ type_asset: 'ics20'
59
+ },
60
+ {
61
+ description: 'Osmosis OSMO bridged over IBC channel-1.',
62
+ denom_units: [{
63
+ denom: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
64
+ exponent: 0,
65
+ aliases: ['uosmo']
66
+ }, {
67
+ denom: 'OSMO',
68
+ exponent: 6
69
+ }],
70
+ base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
71
+ name: 'Osmosis',
72
+ display: 'OSMO',
73
+ symbol: 'OSMO',
74
+ traces: [{
75
+ type: 'ibc',
76
+ counterparty: {
77
+ chain_name: 'osmosis',
78
+ base_denom: 'uosmo',
79
+ channel_id: 'channel-110497'
80
+ },
81
+ chain: {
82
+ channel_id: 'channel-1',
83
+ path: 'transfer/channel-1/uosmo'
84
+ }
85
+ }],
86
+ logo_URIs: {
87
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
88
+ },
89
+ type_asset: 'ics20'
90
+ }
91
+ ]
92
+ };
93
+ export default info;
@@ -0,0 +1,151 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'safrochain',
4
+ chain_type: 'cosmos',
5
+ status: 'live',
6
+ network_type: 'mainnet',
7
+ website: 'https://safrochain.com',
8
+ pretty_name: 'Safrochain',
9
+ chain_id: 'safrochain-1',
10
+ bech32_prefix: 'addr_safro',
11
+ bech32_config: {
12
+ bech32PrefixAccAddr: 'addr_safro',
13
+ bech32PrefixAccPub: 'addr_safropub',
14
+ bech32PrefixValAddr: 'addr_safrovaloper',
15
+ bech32PrefixValPub: 'addr_safrovaloperpub',
16
+ bech32PrefixConsAddr: 'addr_safrovalcons',
17
+ bech32PrefixConsPub: 'addr_safrovalconspub'
18
+ },
19
+ daemon_name: 'safrochaind',
20
+ node_home: '$HOME/.safrochain',
21
+ key_algos: ['secp256k1'],
22
+ slip44: 118,
23
+ fees: {
24
+ fee_tokens: [{
25
+ denom: 'usaf',
26
+ fixed_min_gas_price: 0.05,
27
+ low_gas_price: 0.05,
28
+ average_gas_price: 0.0625,
29
+ high_gas_price: 0.075
30
+ }]
31
+ },
32
+ staking: {
33
+ staking_tokens: [{
34
+ denom: 'usaf'
35
+ }]
36
+ },
37
+ codebase: {
38
+ git_repo: 'https://github.com/Safrochain-Org/safrochain-node',
39
+ recommended_version: 'v0.2.2',
40
+ compatible_versions: ['v0.2.2'],
41
+ tag: 'v0.2.2',
42
+ language: {
43
+ type: 'go',
44
+ version: '1.25.8'
45
+ },
46
+ sdk: {
47
+ type: 'cosmos',
48
+ version: '0.50.14'
49
+ },
50
+ consensus: {
51
+ type: 'cometbft',
52
+ version: '0.38.21'
53
+ },
54
+ ibc: {
55
+ type: 'go',
56
+ version: '8.7.0',
57
+ ics_enabled: ['ics20-1', 'ics27-1']
58
+ },
59
+ genesis: {
60
+ name: 'genesis',
61
+ genesis_url: 'https://raw.githubusercontent.com/Safrochain-Org/mainnet-genesis/main/genesis.json'
62
+ }
63
+ },
64
+ logo_URIs: {
65
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
66
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
67
+ },
68
+ images: [{
69
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.png',
70
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/safrochain/images/saf.svg'
71
+ }],
72
+ description: 'Safrochain is building a mobile-first, mobile-money-powered blockchain that connects blockchain infrastructure to mobile money networks—turning mobile wallets into gateways to stablecoins, programmable finance, cross-border settlement, and lower-cost interoperable transfers across operators and borders.',
73
+ apis: {
74
+ rpc: [
75
+ {
76
+ address: 'https://rpc.safrochain.network',
77
+ provider: 'Safrochain Foundation'
78
+ },
79
+ {
80
+ address: 'https://rpc1.safrochain.network',
81
+ provider: 'Safrochain Foundation'
82
+ },
83
+ {
84
+ address: 'https://rpc2.safrochain.network',
85
+ provider: 'Safrochain Foundation',
86
+ archive: true
87
+ }
88
+ ],
89
+ rest: [
90
+ {
91
+ address: 'https://api.safrochain.network',
92
+ provider: 'Safrochain Foundation'
93
+ },
94
+ {
95
+ address: 'https://api1.safrochain.network',
96
+ provider: 'Safrochain Foundation'
97
+ },
98
+ {
99
+ address: 'https://api2.safrochain.network',
100
+ provider: 'Safrochain Foundation',
101
+ archive: true
102
+ }
103
+ ],
104
+ grpc: [
105
+ {
106
+ address: 'https://grpc.safrochain.network:443',
107
+ provider: 'Safrochain Foundation'
108
+ },
109
+ {
110
+ address: 'https://grpc1.safrochain.network:443',
111
+ provider: 'Safrochain Foundation'
112
+ },
113
+ {
114
+ address: 'https://grpc2.safrochain.network:443',
115
+ provider: 'Safrochain Foundation',
116
+ archive: true
117
+ }
118
+ ],
119
+ "grpc-web": [{
120
+ address: 'https://grpc-web.safrochain.network',
121
+ provider: 'Safrochain Foundation'
122
+ }],
123
+ wss: [{
124
+ address: 'wss://rpc.safrochain.network/websocket',
125
+ provider: 'Safrochain Foundation'
126
+ }, {
127
+ address: 'wss://rpc1.safrochain.network/websocket',
128
+ provider: 'Safrochain Foundation'
129
+ }]
130
+ },
131
+ snapshots: [{
132
+ provider: 'Safrochain Foundation',
133
+ url: 'https://snapshots.safrochain.network',
134
+ type: 'archive'
135
+ }],
136
+ explorers: [{
137
+ kind: 'safroexplorer',
138
+ url: 'https://explorer.safrochain.com/',
139
+ tx_page: 'https://explorer.safrochain.com/tx/${txHash}',
140
+ account_page: 'https://explorer.safrochain.com/address/${accountAddress}',
141
+ validator_page: 'https://explorer.safrochain.com/validator/${validatorAddress}'
142
+ }],
143
+ keywords: [
144
+ 'safrochain',
145
+ 'saf',
146
+ 'cosmos',
147
+ 'ibc',
148
+ 'payments'
149
+ ]
150
+ };
151
+ export default info;
@@ -0,0 +1,62 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'noble',
5
+ chain_id: 'noble-1',
6
+ client_id: '07-tendermint-224',
7
+ connection_id: 'connection-210'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'safrochain',
11
+ chain_id: 'safrochain-1',
12
+ client_id: '07-tendermint-0',
13
+ connection_id: 'connection-0'
14
+ },
15
+ channels: [{
16
+ chain_1: {
17
+ channel_id: 'channel-581',
18
+ port_id: 'transfer'
19
+ },
20
+ chain_2: {
21
+ channel_id: 'channel-0',
22
+ port_id: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'ACTIVE',
28
+ preferred: true
29
+ }
30
+ }]
31
+ }, {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain_1: {
34
+ chain_name: 'osmosis',
35
+ chain_id: 'osmosis-1',
36
+ client_id: '07-tendermint-3719',
37
+ connection_id: 'connection-11075'
38
+ },
39
+ chain_2: {
40
+ chain_name: 'safrochain',
41
+ chain_id: 'safrochain-1',
42
+ client_id: '07-tendermint-1',
43
+ connection_id: 'connection-1'
44
+ },
45
+ channels: [{
46
+ chain_1: {
47
+ channel_id: 'channel-110497',
48
+ port_id: 'transfer'
49
+ },
50
+ chain_2: {
51
+ channel_id: 'channel-1',
52
+ port_id: 'transfer'
53
+ },
54
+ ordering: 'unordered',
55
+ version: 'ics20-1',
56
+ tags: {
57
+ status: 'ACTIVE',
58
+ preferred: true
59
+ }
60
+ }]
61
+ }];
62
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ import _ibc from './ibc';
4
+ export const assets = _assets;
5
+ export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -65,6 +65,7 @@ import * as _kujiratestnet from './kujiratestnet';
65
65
  import * as _kyvetestnet from './kyvetestnet';
66
66
  import * as _lavatestnet from './lavatestnet';
67
67
  import * as _likecointestnet from './likecointestnet';
68
+ import * as _limonatatestnet from './limonatatestnet';
68
69
  import * as _lombardledgertestnet from './lombardledgertestnet';
69
70
  import * as _lumenxtestnet from './lumenxtestnet';
70
71
  import * as _lumeratestnet from './lumeratestnet';
@@ -212,6 +213,7 @@ const assets = [
212
213
  _kyvetestnet.assets,
213
214
  _lavatestnet.assets,
214
215
  _likecointestnet.assets,
216
+ _limonatatestnet.assets,
215
217
  _lombardledgertestnet.assets,
216
218
  _lumenxtestnet.assets,
217
219
  _lumeratestnet.assets,
@@ -65,6 +65,7 @@ import * as _kujiratestnet from './kujiratestnet';
65
65
  import * as _kyvetestnet from './kyvetestnet';
66
66
  import * as _lavatestnet from './lavatestnet';
67
67
  import * as _likecointestnet from './likecointestnet';
68
+ import * as _limonatatestnet from './limonatatestnet';
68
69
  import * as _lombardledgertestnet from './lombardledgertestnet';
69
70
  import * as _lumenxtestnet from './lumenxtestnet';
70
71
  import * as _lumeratestnet from './lumeratestnet';
@@ -212,6 +213,7 @@ const chains = [
212
213
  _kyvetestnet.chain,
213
214
  _lavatestnet.chain,
214
215
  _likecointestnet.chain,
216
+ _limonatatestnet.chain,
215
217
  _lombardledgertestnet.chain,
216
218
  _lumenxtestnet.chain,
217
219
  _lumeratestnet.chain,
@@ -0,0 +1,26 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'limonatatestnet',
4
+ assets: [{
5
+ description: 'LIMO is the native gas and staking token of Limonata, an EVM Layer-1 on the Cosmos SDK.',
6
+ denom_units: [{
7
+ denom: 'aLIMO',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'LIMO',
11
+ exponent: 18
12
+ }],
13
+ base: 'aLIMO',
14
+ name: 'Limonata',
15
+ display: 'LIMO',
16
+ symbol: 'LIMO',
17
+ type_asset: 'sdk.coin',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
23
+ }]
24
+ }]
25
+ };
26
+ export default info;
@@ -0,0 +1,58 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'limonatatestnet',
4
+ chain_type: 'cosmos',
5
+ chain_id: 'limonata_10777-1',
6
+ pretty_name: 'Limonata Testnet',
7
+ website: 'https://limonata.xyz',
8
+ network_type: 'testnet',
9
+ status: 'live',
10
+ logo_URIs: {
11
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
12
+ },
13
+ bech32_prefix: 'cosmos',
14
+ daemon_name: 'limonatad',
15
+ node_home: '$HOME/.limonatad',
16
+ key_algos: ['ethsecp256k1'],
17
+ slip44: 60,
18
+ fees: {
19
+ fee_tokens: [{
20
+ denom: 'aLIMO',
21
+ fixed_min_gas_price: 0,
22
+ low_gas_price: 0.01,
23
+ average_gas_price: 0.025,
24
+ high_gas_price: 0.04
25
+ }]
26
+ },
27
+ staking: {
28
+ staking_tokens: [{
29
+ denom: 'aLIMO'
30
+ }]
31
+ },
32
+ codebase: {
33
+ git_repo: 'https://github.com/Limonata-Blockchain/limonata',
34
+ genesis: {
35
+ genesis_url: 'https://limonata.xyz/genesis.json'
36
+ }
37
+ },
38
+ apis: {
39
+ rpc: [{
40
+ address: 'https://cosmos-rpc.limonata.xyz',
41
+ provider: 'Limonata'
42
+ }],
43
+ rest: [{
44
+ address: 'https://rest.limonata.xyz',
45
+ provider: 'Limonata'
46
+ }]
47
+ },
48
+ explorers: [{
49
+ kind: 'Limonata Explorer',
50
+ url: 'https://explorer.limonata.xyz',
51
+ tx_page: 'https://explorer.limonata.xyz/tx/${txHash}',
52
+ account_page: 'https://explorer.limonata.xyz/address/${accountAddress}'
53
+ }],
54
+ images: [{
55
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/limonatatestnet/images/limonatatestnet.png'
56
+ }]
57
+ };
58
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -65,6 +65,7 @@ export * as kujiratestnet from './kujiratestnet';
65
65
  export * as kyvetestnet from './kyvetestnet';
66
66
  export * as lavatestnet from './lavatestnet';
67
67
  export * as likecointestnet from './likecointestnet';
68
+ export * as limonatatestnet from './limonatatestnet';
68
69
  export * as lombardledgertestnet from './lombardledgertestnet';
69
70
  export * as lumenxtestnet from './lumenxtestnet';
70
71
  export * as lumeratestnet from './lumeratestnet';
package/mainnet/assets.js CHANGED
@@ -196,6 +196,7 @@ const _realio = __importStar(require("./realio"));
196
196
  const _rebus = __importStar(require("./rebus"));
197
197
  const _regen = __importStar(require("./regen"));
198
198
  const _rizon = __importStar(require("./rizon"));
199
+ const _safrochain = __importStar(require("./safrochain"));
199
200
  const _saga = __importStar(require("./saga"));
200
201
  const _scorum = __importStar(require("./scorum"));
201
202
  const _secretnetwork = __importStar(require("./secretnetwork"));
@@ -420,6 +421,7 @@ const assets = [
420
421
  _rebus.assets,
421
422
  _regen.assets,
422
423
  _rizon.assets,
424
+ _safrochain.assets,
423
425
  _saga.assets,
424
426
  _scorum.assets,
425
427
  _secretnetwork.assets,
package/mainnet/chains.js CHANGED
@@ -196,6 +196,7 @@ const _realio = __importStar(require("./realio"));
196
196
  const _rebus = __importStar(require("./rebus"));
197
197
  const _regen = __importStar(require("./regen"));
198
198
  const _rizon = __importStar(require("./rizon"));
199
+ const _safrochain = __importStar(require("./safrochain"));
199
200
  const _saga = __importStar(require("./saga"));
200
201
  const _scorum = __importStar(require("./scorum"));
201
202
  const _secretnetwork = __importStar(require("./secretnetwork"));
@@ -420,6 +421,7 @@ const chains = [
420
421
  _rebus.chain,
421
422
  _regen.chain,
422
423
  _rizon.chain,
424
+ _safrochain.chain,
423
425
  _saga.chain,
424
426
  _scorum.chain,
425
427
  _secretnetwork.chain,
package/mainnet/ibc.js CHANGED
@@ -156,6 +156,7 @@ const _realio = __importStar(require("./realio"));
156
156
  const _rebus = __importStar(require("./rebus"));
157
157
  const _regen = __importStar(require("./regen"));
158
158
  const _rizon = __importStar(require("./rizon"));
159
+ const _safrochain = __importStar(require("./safrochain"));
159
160
  const _saga = __importStar(require("./saga"));
160
161
  const _scorum = __importStar(require("./scorum"));
161
162
  const _secretnetwork = __importStar(require("./secretnetwork"));
@@ -327,6 +328,7 @@ const ibc = [
327
328
  ..._rebus.ibc,
328
329
  ..._regen.ibc,
329
330
  ..._rizon.ibc,
331
+ ..._safrochain.ibc,
330
332
  ..._saga.ibc,
331
333
  ..._scorum.ibc,
332
334
  ..._secretnetwork.ibc,
@@ -171,6 +171,7 @@ export * as realio from './realio';
171
171
  export * as rebus from './rebus';
172
172
  export * as regen from './regen';
173
173
  export * as rizon from './rizon';
174
+ export * as safrochain from './safrochain';
174
175
  export * as saga from './saga';
175
176
  export * as scorum from './scorum';
176
177
  export * as secretnetwork from './secretnetwork';