chain-registry 1.69.53 → 1.69.54

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 (61) hide show
  1. package/esm/mainnet/aaronetwork/assets.js +34 -0
  2. package/esm/mainnet/aaronetwork/chain.js +44 -0
  3. package/esm/mainnet/aaronetwork/index.js +4 -0
  4. package/esm/mainnet/archway/assets.js +43 -0
  5. package/esm/mainnet/archway/ibc.js +29 -0
  6. package/esm/mainnet/assets.js +4 -0
  7. package/esm/mainnet/chains.js +4 -0
  8. package/esm/mainnet/chihuahua/assets.js +43 -0
  9. package/esm/mainnet/cosmoshub/ibc.js +29 -0
  10. package/esm/mainnet/ibc.js +2 -0
  11. package/esm/mainnet/injective/assets.js +43 -0
  12. package/esm/mainnet/injective/ibc.js +29 -0
  13. package/esm/mainnet/juno/assets.js +43 -0
  14. package/esm/mainnet/kopi/assets.js +395 -0
  15. package/esm/mainnet/kopi/chain.js +203 -0
  16. package/esm/mainnet/kopi/ibc.js +148 -0
  17. package/esm/mainnet/kopi/index.js +6 -0
  18. package/esm/mainnet/migaloo/ibc.js +29 -0
  19. package/esm/mainnet/named.js +2 -0
  20. package/esm/mainnet/noble/ibc.js +29 -0
  21. package/esm/mainnet/osmosis/ibc.js +29 -0
  22. package/esm/mainnet/persistence/assets.js +12 -6
  23. package/esm/mainnet/synternet/chain.js +20 -6
  24. package/esm/mainnet/terra2/assets.js +43 -0
  25. package/esm/mainnet/terra2/ibc.js +29 -0
  26. package/esm/mainnet/xion/chain.js +25 -0
  27. package/mainnet/aaronetwork/assets.d.ts +3 -0
  28. package/mainnet/aaronetwork/assets.js +36 -0
  29. package/mainnet/aaronetwork/chain.d.ts +3 -0
  30. package/mainnet/aaronetwork/chain.js +46 -0
  31. package/mainnet/aaronetwork/index.d.ts +2 -0
  32. package/mainnet/aaronetwork/index.js +10 -0
  33. package/mainnet/archway/assets.js +43 -0
  34. package/mainnet/archway/ibc.js +29 -0
  35. package/mainnet/assets.js +4 -0
  36. package/mainnet/chains.js +4 -0
  37. package/mainnet/chihuahua/assets.js +43 -0
  38. package/mainnet/cosmoshub/ibc.js +29 -0
  39. package/mainnet/ibc.js +2 -0
  40. package/mainnet/injective/assets.js +43 -0
  41. package/mainnet/injective/ibc.js +29 -0
  42. package/mainnet/juno/assets.js +43 -0
  43. package/mainnet/kopi/assets.d.ts +3 -0
  44. package/mainnet/kopi/assets.js +397 -0
  45. package/mainnet/kopi/chain.d.ts +3 -0
  46. package/mainnet/kopi/chain.js +205 -0
  47. package/mainnet/kopi/ibc.d.ts +3 -0
  48. package/mainnet/kopi/ibc.js +150 -0
  49. package/mainnet/kopi/index.d.ts +3 -0
  50. package/mainnet/kopi/index.js +12 -0
  51. package/mainnet/migaloo/ibc.js +29 -0
  52. package/mainnet/named.d.ts +2 -0
  53. package/mainnet/named.js +6 -4
  54. package/mainnet/noble/ibc.js +29 -0
  55. package/mainnet/osmosis/ibc.js +29 -0
  56. package/mainnet/persistence/assets.js +12 -6
  57. package/mainnet/synternet/chain.js +20 -6
  58. package/mainnet/terra2/assets.js +43 -0
  59. package/mainnet/terra2/ibc.js +29 -0
  60. package/mainnet/xion/chain.js +25 -0
  61. package/package.json +4 -4
@@ -0,0 +1,395 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'kopi',
4
+ assets: [
5
+ {
6
+ description: 'The native token of kopi',
7
+ denom_units: [{
8
+ denom: 'ukopi',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'XKP',
12
+ exponent: 6
13
+ }],
14
+ base: 'ukopi',
15
+ name: 'XKP',
16
+ display: 'XKP',
17
+ symbol: 'XKP',
18
+ logo_URIs: {
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kopi.svg'
20
+ },
21
+ images: [{
22
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kopi.svg'
23
+ }],
24
+ keywords: [
25
+ 'dex',
26
+ 'mm',
27
+ 'staking',
28
+ 'automations'
29
+ ],
30
+ socials: {
31
+ twitter: 'https://x.com/kopi_money',
32
+ discord: 'https://discord.gg/kopi-money'
33
+ },
34
+ type_asset: 'sdk.coin'
35
+ },
36
+ {
37
+ description: 'A Stablecoin native to the Kopi blockchain',
38
+ denom_units: [{
39
+ denom: 'ukusd',
40
+ exponent: 0
41
+ }, {
42
+ denom: 'kUSD',
43
+ exponent: 6
44
+ }],
45
+ base: 'ukusd',
46
+ name: 'kUSD',
47
+ display: 'kUSD',
48
+ symbol: 'kUSD',
49
+ traces: [{
50
+ type: 'synthetic',
51
+ counterparty: {
52
+ chain_name: 'forex',
53
+ base_denom: 'USD'
54
+ },
55
+ provider: 'Kopi'
56
+ }],
57
+ logo_URIs: {
58
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
59
+ },
60
+ images: [{
61
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
62
+ }],
63
+ keywords: [
64
+ 'dex',
65
+ 'mm',
66
+ 'automations',
67
+ 'arbitrage'
68
+ ],
69
+ socials: {
70
+ twitter: 'https://x.com/kopi_money',
71
+ discord: 'https://discord.gg/kopi-money'
72
+ },
73
+ type_asset: 'sdk.coin'
74
+ },
75
+ {
76
+ description: 'A MM deposit receipt of the Stablecoin native to the Kopi blockchain',
77
+ denom_units: [{
78
+ denom: 'uckusd',
79
+ exponent: 0
80
+ }, {
81
+ denom: 'ckUSD',
82
+ exponent: 6
83
+ }],
84
+ base: 'uckusd',
85
+ name: 'ckUSD',
86
+ display: 'ckUSD',
87
+ symbol: 'CKUSD',
88
+ logo_URIs: {
89
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
90
+ },
91
+ images: [{
92
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
93
+ }],
94
+ keywords: ['dex', 'mm'],
95
+ socials: {
96
+ twitter: 'https://x.com/kopi_money',
97
+ discord: 'https://discord.gg/kopi-money'
98
+ },
99
+ type_asset: 'sdk.coin'
100
+ },
101
+ {
102
+ description: 'A MM deposit receipt of the Stablecoin USDC from noble Chain',
103
+ denom_units: [{
104
+ denom: 'ucusdc',
105
+ exponent: 0
106
+ }, {
107
+ denom: 'cUSDC',
108
+ exponent: 6
109
+ }],
110
+ base: 'ucusdc',
111
+ name: 'cUSDC',
112
+ display: 'cUSDC',
113
+ symbol: 'CUSDC',
114
+ logo_URIs: {
115
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
116
+ },
117
+ images: [{
118
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
119
+ }],
120
+ keywords: ['dex', 'mm'],
121
+ type_asset: 'sdk.coin'
122
+ },
123
+ {
124
+ description: 'A MM deposit receipt of the Stablecoin USDT from Injective Chain',
125
+ denom_units: [{
126
+ denom: 'ucusdtinj',
127
+ exponent: 0
128
+ }, {
129
+ denom: 'cUSDT.inj',
130
+ exponent: 6
131
+ }],
132
+ base: 'ucusdtinj',
133
+ name: 'cUSDT.inj',
134
+ display: 'cUSDT.inj',
135
+ symbol: 'CUSDT.inj',
136
+ logo_URIs: {
137
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
138
+ },
139
+ images: [{
140
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
141
+ }],
142
+ keywords: ['dex', 'mm'],
143
+ type_asset: 'sdk.coin'
144
+ },
145
+ {
146
+ description: 'USDC from Noble Chain',
147
+ denom_units: [{
148
+ denom: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
149
+ exponent: 0
150
+ }, {
151
+ denom: 'USDC',
152
+ exponent: 6
153
+ }],
154
+ base: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5',
155
+ name: 'USDC',
156
+ display: 'USDC',
157
+ symbol: 'USDC',
158
+ logo_URIs: {
159
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
160
+ },
161
+ images: [{
162
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
163
+ }],
164
+ keywords: ['dex', 'mm'],
165
+ type_asset: 'ics20',
166
+ traces: [{
167
+ type: 'ibc',
168
+ counterparty: {
169
+ chain_name: 'noble',
170
+ base_denom: 'uusdc',
171
+ channel_id: 'channel-109'
172
+ },
173
+ chain: {
174
+ channel_id: 'channel-0',
175
+ path: 'transfer/channel-0/uusdc'
176
+ }
177
+ }]
178
+ },
179
+ {
180
+ description: 'USDT from injective Chain',
181
+ denom_units: [{
182
+ denom: 'ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0',
183
+ exponent: 0
184
+ }, {
185
+ denom: 'USDT.inj',
186
+ exponent: 6
187
+ }],
188
+ base: 'ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0',
189
+ name: 'USDT.inj',
190
+ display: 'USDT.inj',
191
+ symbol: 'USDT.inj',
192
+ logo_URIs: {
193
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
194
+ },
195
+ images: [{
196
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
197
+ }],
198
+ keywords: ['dex', 'mm'],
199
+ type_asset: 'ics20',
200
+ traces: [{
201
+ type: 'ibc',
202
+ counterparty: {
203
+ chain_name: 'injective',
204
+ base_denom: 'peggy0xdAC17F958D2ee523a2206206994597C13D831ec7',
205
+ channel_id: 'channel-376'
206
+ },
207
+ chain: {
208
+ channel_id: 'channel-1',
209
+ path: 'transfer/channel-1/peggy0xdAC17F958D2ee523a2206206994597C13D831ec7'
210
+ }
211
+ }]
212
+ },
213
+ {
214
+ description: 'injective from injective Chain',
215
+ denom_units: [{
216
+ denom: 'ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255',
217
+ exponent: 0
218
+ }, {
219
+ denom: 'INJ',
220
+ exponent: 18
221
+ }],
222
+ base: 'ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255',
223
+ name: 'Injective',
224
+ display: 'INJ',
225
+ symbol: 'INJ',
226
+ logo_URIs: {
227
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
228
+ },
229
+ images: [{
230
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
231
+ }],
232
+ keywords: ['dex', 'mm'],
233
+ type_asset: 'ics20',
234
+ traces: [{
235
+ type: 'ibc',
236
+ counterparty: {
237
+ chain_name: 'injective',
238
+ base_denom: 'inj',
239
+ channel_id: 'channel-376'
240
+ },
241
+ chain: {
242
+ channel_id: 'channel-1',
243
+ path: 'transfer/channel-1/inj'
244
+ }
245
+ }]
246
+ },
247
+ {
248
+ description: 'Luna from Terra2 Chain',
249
+ denom_units: [{
250
+ denom: 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986',
251
+ exponent: 0
252
+ }, {
253
+ denom: 'Luna',
254
+ exponent: 6
255
+ }],
256
+ base: 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986',
257
+ name: 'Luna',
258
+ display: 'Luna',
259
+ symbol: 'LUNA',
260
+ logo_URIs: {
261
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
262
+ },
263
+ images: [{
264
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
265
+ }],
266
+ keywords: ['dex', 'mm'],
267
+ type_asset: 'ics20',
268
+ traces: [{
269
+ type: 'ibc',
270
+ counterparty: {
271
+ chain_name: 'terra2',
272
+ base_denom: 'uluna',
273
+ channel_id: 'channel-586'
274
+ },
275
+ chain: {
276
+ channel_id: 'channel-5',
277
+ path: 'transfer/channel-5/uluna'
278
+ }
279
+ }]
280
+ },
281
+ {
282
+ description: 'Osmosis from Osmosis Chain',
283
+ denom_units: [{
284
+ denom: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85',
285
+ exponent: 0
286
+ }, {
287
+ denom: 'osmo',
288
+ exponent: 6
289
+ }],
290
+ base: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85',
291
+ name: 'OSMO',
292
+ display: 'osmo',
293
+ symbol: 'OSMO',
294
+ logo_URIs: {
295
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
296
+ },
297
+ images: [{
298
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
299
+ }],
300
+ keywords: ['dex', 'mm'],
301
+ type_asset: 'ics20',
302
+ traces: [{
303
+ type: 'ibc',
304
+ counterparty: {
305
+ chain_name: 'osmosis',
306
+ base_denom: 'uosmo',
307
+ channel_id: 'channel-88475'
308
+ },
309
+ chain: {
310
+ channel_id: 'channel-6',
311
+ path: 'transfer/channel-6/uosmo'
312
+ }
313
+ }]
314
+ },
315
+ {
316
+ description: 'Atom from cosmoshub Chain',
317
+ denom_units: [{
318
+ denom: 'ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88',
319
+ exponent: 0
320
+ }, {
321
+ denom: 'Atom',
322
+ exponent: 6
323
+ }],
324
+ base: 'ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88',
325
+ name: 'ATOM',
326
+ display: 'Atom',
327
+ symbol: 'ATOM',
328
+ logo_URIs: {
329
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
330
+ },
331
+ images: [{
332
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
333
+ }],
334
+ keywords: ['dex', 'mm'],
335
+ type_asset: 'ics20',
336
+ traces: [{
337
+ type: 'ibc',
338
+ counterparty: {
339
+ chain_name: 'cosmoshub',
340
+ base_denom: 'uatom',
341
+ channel_id: 'channel-1253'
342
+ },
343
+ chain: {
344
+ channel_id: 'channel-7',
345
+ path: 'transfer/channel-7/uatom'
346
+ }
347
+ }]
348
+ },
349
+ {
350
+ description: 'arbitrage receipt token of cUSDT',
351
+ denom_units: [{
352
+ denom: 'uasusdtinj',
353
+ exponent: 0
354
+ }, {
355
+ denom: 'asusdtinj',
356
+ exponent: 6
357
+ }],
358
+ base: 'uasusdtinj',
359
+ name: 'asUSDT.inj',
360
+ display: 'asusdtinj',
361
+ symbol: 'ASUSDT.inj',
362
+ logo_URIs: {
363
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
364
+ },
365
+ images: [{
366
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
367
+ }],
368
+ keywords: ['dex', 'mm'],
369
+ type_asset: 'sdk.coin'
370
+ },
371
+ {
372
+ description: 'arbitrage receipt token of cUSDC',
373
+ denom_units: [{
374
+ denom: 'uasusdc',
375
+ exponent: 0
376
+ }, {
377
+ denom: 'asUSDC',
378
+ exponent: 6
379
+ }],
380
+ base: 'uasusdc',
381
+ name: 'asUSDC',
382
+ display: 'asUSDC',
383
+ symbol: 'ASUSDC',
384
+ logo_URIs: {
385
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
386
+ },
387
+ images: [{
388
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
389
+ }],
390
+ keywords: ['dex', 'mm'],
391
+ type_asset: 'sdk.coin'
392
+ }
393
+ ]
394
+ };
395
+ export default info;
@@ -0,0 +1,203 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'kopi',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ website: 'https://app.kopi.money',
7
+ pretty_name: 'Kopi',
8
+ chain_type: 'cosmos',
9
+ chain_id: 'luwak-1',
10
+ daemon_name: 'kopid',
11
+ node_home: '$HOME/.kopid',
12
+ bech32_prefix: 'kopi',
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'ukopi',
17
+ low_gas_price: 0.01,
18
+ average_gas_price: 0.025,
19
+ high_gas_price: 0.03
20
+ }]
21
+ },
22
+ staking: {
23
+ staking_tokens: [{
24
+ denom: 'ukopi'
25
+ }]
26
+ },
27
+ codebase: {},
28
+ logo_URIs: {
29
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kopi.svg'
30
+ },
31
+ apis: {
32
+ rpc: [
33
+ {
34
+ address: 'https://rpc.kopi.money',
35
+ provider: 'Kopi Foundation'
36
+ },
37
+ {
38
+ address: 'https://rpc.kopi.chaintools.tech',
39
+ provider: 'Chaintools'
40
+ },
41
+ {
42
+ address: 'https://kopi-rpc.cosmoscan.com',
43
+ provider: 'Cosmoscan'
44
+ },
45
+ {
46
+ address: 'https://kopi-rpc.stakerhouse.com',
47
+ provider: 'Stakerhouse'
48
+ },
49
+ {
50
+ address: 'https://kopi.rpc.moonbridge.team',
51
+ provider: 'Moonbridge'
52
+ },
53
+ {
54
+ address: 'https://rpc-kopid.vinjan.xyz/',
55
+ provider: 'Vinjan'
56
+ },
57
+ {
58
+ address: 'https://kopi-mainnet-rpc.bonynode.online',
59
+ provider: 'Bony'
60
+ },
61
+ {
62
+ address: 'https://kopi-rpc.bluestake.net:443',
63
+ provider: 'Bluestake'
64
+ },
65
+ {
66
+ address: 'https://rpc-kopi.sychonix.com',
67
+ provider: 'Sychonix'
68
+ },
69
+ {
70
+ address: 'https://kopi-rpc.node9x.com/',
71
+ provider: 'Node9x'
72
+ },
73
+ {
74
+ address: 'https://kopi.rpc.nodeshub.online/',
75
+ provider: 'NodesHub'
76
+ },
77
+ {
78
+ address: 'https://kopi-rpc.polkachu.com/',
79
+ provider: 'Polkachu'
80
+ }
81
+ ],
82
+ rest: [
83
+ {
84
+ address: 'https://rest.kopi.money',
85
+ provider: 'Kopi Foundation'
86
+ },
87
+ {
88
+ address: 'https://rpc.kopi.chaintools.tech',
89
+ provider: 'Chaintools'
90
+ },
91
+ {
92
+ address: 'https://kopi-rest.cosmoscan.com',
93
+ provider: 'Cosmoscan'
94
+ },
95
+ {
96
+ address: 'https://kopi-rest.stakerhouse.com',
97
+ provider: 'Stakerhouse'
98
+ },
99
+ {
100
+ address: 'https://kopi.api.moonbridge.team',
101
+ provider: 'Moonbridge'
102
+ },
103
+ {
104
+ address: 'https://api-kopid.vinjan.xyz/',
105
+ provider: 'Vinjan'
106
+ },
107
+ {
108
+ address: 'https://kopi-mainnet-api.bonynode.online',
109
+ provider: 'Bony'
110
+ },
111
+ {
112
+ address: 'https://kopi-api.bluestake.net',
113
+ provider: 'Bluestake'
114
+ },
115
+ {
116
+ address: 'https://api-kopi.sychonix.com',
117
+ provider: 'Sychonix'
118
+ },
119
+ {
120
+ address: 'https://kopi.api.nodeshub.online/',
121
+ provider: 'NodesHub'
122
+ },
123
+ {
124
+ address: 'https://kopi-api.polkachu.com/',
125
+ provider: 'Polkachu'
126
+ }
127
+ ],
128
+ grpc: [
129
+ {
130
+ address: 'https://kopi.grpc.nodeshub.online/',
131
+ provider: 'Nodes Hub'
132
+ },
133
+ {
134
+ address: 'kopi-mainnet-grpc.bonynode.online:443',
135
+ provider: 'Bony'
136
+ },
137
+ {
138
+ address: 'kopi-grpc.stakerhouse.com:443',
139
+ provider: 'Stakerhouse'
140
+ },
141
+ {
142
+ address: 'https://kopi.grpc.moonbridge.team',
143
+ provider: 'Moonbridge'
144
+ },
145
+ {
146
+ address: 'kopi-grpc.node9x.com:443',
147
+ provider: 'Node9x'
148
+ },
149
+ {
150
+ address: 'kopi-grpc.polkachu.com:27690',
151
+ provider: 'Polkachu'
152
+ }
153
+ ]
154
+ },
155
+ explorers: [
156
+ {
157
+ kind: 'Kopi Foundation Explorer',
158
+ url: 'https://explorer.kopi.money/',
159
+ tx_page: 'https://explorer.kopi.money/luwak-1/tx/${txHash}',
160
+ account_page: 'https://explorer.kopi.money/luwak-1/account/${accountAddress}'
161
+ },
162
+ {
163
+ kind: 'CzCryptoman Explorer',
164
+ url: 'https://explorer.czcryptoman.com/kopi-mainnet',
165
+ tx_page: 'https://explorer.czcryptoman.com/kopi-mainnet/tx/${txHash}',
166
+ account_page: 'https://explorer.czcryptoman.com/kopi-mainnet/account/${accountAddress}'
167
+ },
168
+ {
169
+ kind: 'Sychonix Explorer',
170
+ url: 'https://explorer.sychonix.com/kopi-mainnet',
171
+ tx_page: 'https://explorer.sychonix.com/kopi-mainnet/tx/${txHash}',
172
+ account_page: 'https://explorer.sychonix.com/kopi-mainnet/account/${accountAddress}'
173
+ },
174
+ {
175
+ kind: 'Nodeshub Explorer',
176
+ url: 'https://explorer.nodeshub.online/Kopi',
177
+ tx_page: 'https://explorer.nodeshub.online/Kopi/txs/${txHash}',
178
+ account_page: 'https://explorer.nodeshub.online/Kopi/account/${accountAddress}'
179
+ },
180
+ {
181
+ kind: 'Bony Explorer',
182
+ url: 'https://explorer.bonynode.online/kopi/',
183
+ tx_page: 'https://explorer.bonynode.online/kopi/txs/${txHash}',
184
+ account_page: 'https://explorer.bonynode.online/kopi/account/${accountAddress}'
185
+ },
186
+ {
187
+ kind: 'Moonbridge Explorer',
188
+ url: 'https://explorer.moonbridge.team/kopi/',
189
+ tx_page: 'https://explorer.moonbridge.team/kopi/txs/${txHash}',
190
+ account_page: 'https://explorer.moonbridge.team/kopi/account/${accountAddress}'
191
+ },
192
+ {
193
+ kind: 'Cosmoscan Explorer',
194
+ url: 'https://cosmoscan.com/kopi',
195
+ tx_page: 'https://cosmoscan.com/kopi/txs/${txHash}',
196
+ account_page: 'https://cosmoscan.com/kopi/account/${accountAddress}'
197
+ }
198
+ ],
199
+ images: [{
200
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kopi.svg'
201
+ }]
202
+ };
203
+ export default info;