@chain-registry/assets 1.70.222 → 1.70.224
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.
- package/esm/mainnet/dungeon.js +314 -0
- package/esm/mainnet/elys.js +434 -0
- package/esm/mainnet/kopi.js +254 -0
- package/esm/mainnet/noble.js +82 -0
- package/esm/testnet/agoricdevnet.js +478 -0
- package/esm/testnet/assets.js +3 -1
- package/esm/testnet/axelartestnet.js +164 -0
- package/esm/testnet/cosmosicsprovidertestnet.js +164 -0
- package/esm/testnet/elystestnet.js +164 -0
- package/esm/testnet/index.js +2 -0
- package/esm/testnet/neutrontestnet.js +164 -0
- package/esm/testnet/nobletestnet.js +164 -0
- package/esm/testnet/osmosistestnet.js +164 -0
- package/esm/testnet/stridetestnet.js +170 -0
- package/index.d.ts +1 -1
- package/mainnet/dungeon.js +314 -0
- package/mainnet/elys.js +434 -0
- package/mainnet/kopi.js +254 -0
- package/mainnet/noble.js +82 -0
- package/package.json +5 -5
- package/testnet/agoricdevnet.d.ts +3 -0
- package/testnet/agoricdevnet.js +480 -0
- package/testnet/assets.js +3 -1
- package/testnet/axelartestnet.js +164 -0
- package/testnet/cosmosicsprovidertestnet.js +164 -0
- package/testnet/elystestnet.js +164 -0
- package/testnet/index.d.ts +2 -0
- package/testnet/index.js +3 -1
- package/testnet/neutrontestnet.js +164 -0
- package/testnet/nobletestnet.js +164 -0
- package/testnet/osmosistestnet.js +164 -0
- package/testnet/stridetestnet.d.ts +3 -0
- package/testnet/stridetestnet.js +172 -0
|
@@ -1,6 +1,88 @@
|
|
|
1
1
|
const assets = {
|
|
2
2
|
chain_name: 'nobletestnet',
|
|
3
3
|
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/B004A9200E85CD5B6B6D8FB6ADCD1288F36969E926A1D4418ABD2AEDFC52F43E',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['ubld']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'bld',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/B004A9200E85CD5B6B6D8FB6ADCD1288F36969E926A1D4418ABD2AEDFC52F43E',
|
|
15
|
+
name: 'Agoric',
|
|
16
|
+
display: 'bld',
|
|
17
|
+
symbol: 'BLD',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'agoric',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
26
|
+
theme: {
|
|
27
|
+
primary_color_hex: '#c42b44'
|
|
28
|
+
}
|
|
29
|
+
}],
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://agoric.com/',
|
|
32
|
+
twitter: 'https://twitter.com/agoric'
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin',
|
|
35
|
+
traces: [{
|
|
36
|
+
type: 'ibc',
|
|
37
|
+
counterparty: {
|
|
38
|
+
channel_id: 'channel-11',
|
|
39
|
+
base_denom: 'ubld',
|
|
40
|
+
chain_name: 'agoricdevnet'
|
|
41
|
+
},
|
|
42
|
+
chain: {
|
|
43
|
+
channel_id: 'channel-337'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
49
|
+
denom_units: [{
|
|
50
|
+
denom: 'ibc/1F3137B63B5DEAD5D96E3F6FF7967DE0E880CF3BCFEE77B8DE5FBDC291D20055',
|
|
51
|
+
exponent: 0,
|
|
52
|
+
aliases: ['uist']
|
|
53
|
+
}, {
|
|
54
|
+
denom: 'ist',
|
|
55
|
+
exponent: 6
|
|
56
|
+
}],
|
|
57
|
+
base: 'ibc/1F3137B63B5DEAD5D96E3F6FF7967DE0E880CF3BCFEE77B8DE5FBDC291D20055',
|
|
58
|
+
name: 'Inter Stable Token',
|
|
59
|
+
display: 'ist',
|
|
60
|
+
symbol: 'IST',
|
|
61
|
+
logo_URIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
64
|
+
},
|
|
65
|
+
coingecko_id: 'inter-stable-token',
|
|
66
|
+
images: [{
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
primary_color_hex: '#d485e2'
|
|
71
|
+
}
|
|
72
|
+
}],
|
|
73
|
+
type_asset: 'sdk.coin',
|
|
74
|
+
traces: [{
|
|
75
|
+
type: 'ibc',
|
|
76
|
+
counterparty: {
|
|
77
|
+
channel_id: 'channel-11',
|
|
78
|
+
base_denom: 'uist',
|
|
79
|
+
chain_name: 'agoricdevnet'
|
|
80
|
+
},
|
|
81
|
+
chain: {
|
|
82
|
+
channel_id: 'channel-337'
|
|
83
|
+
}
|
|
84
|
+
}]
|
|
85
|
+
},
|
|
4
86
|
{
|
|
5
87
|
description: 'The native staking token of Babylon.',
|
|
6
88
|
denom_units: [{
|
|
@@ -180,6 +262,88 @@ const assets = {
|
|
|
180
262
|
}
|
|
181
263
|
}]
|
|
182
264
|
},
|
|
265
|
+
{
|
|
266
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
267
|
+
denom_units: [{
|
|
268
|
+
denom: 'ibc/B004A9200E85CD5B6B6D8FB6ADCD1288F36969E926A1D4418ABD2AEDFC52F43E',
|
|
269
|
+
exponent: 0,
|
|
270
|
+
aliases: ['ubld']
|
|
271
|
+
}, {
|
|
272
|
+
denom: 'bld',
|
|
273
|
+
exponent: 6
|
|
274
|
+
}],
|
|
275
|
+
base: 'ibc/B004A9200E85CD5B6B6D8FB6ADCD1288F36969E926A1D4418ABD2AEDFC52F43E',
|
|
276
|
+
name: 'Agoric',
|
|
277
|
+
display: 'bld',
|
|
278
|
+
symbol: 'BLD',
|
|
279
|
+
logo_URIs: {
|
|
280
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
281
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
282
|
+
},
|
|
283
|
+
coingecko_id: 'agoric',
|
|
284
|
+
images: [{
|
|
285
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
286
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
287
|
+
theme: {
|
|
288
|
+
primary_color_hex: '#c42b44'
|
|
289
|
+
}
|
|
290
|
+
}],
|
|
291
|
+
socials: {
|
|
292
|
+
website: 'https://agoric.com/',
|
|
293
|
+
twitter: 'https://twitter.com/agoric'
|
|
294
|
+
},
|
|
295
|
+
type_asset: 'sdk.coin',
|
|
296
|
+
traces: [{
|
|
297
|
+
type: 'ibc',
|
|
298
|
+
counterparty: {
|
|
299
|
+
channel_id: 'channel-11',
|
|
300
|
+
base_denom: 'ubld',
|
|
301
|
+
chain_name: 'agoricdevnet'
|
|
302
|
+
},
|
|
303
|
+
chain: {
|
|
304
|
+
channel_id: 'channel-337'
|
|
305
|
+
}
|
|
306
|
+
}]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
310
|
+
denom_units: [{
|
|
311
|
+
denom: 'ibc/1F3137B63B5DEAD5D96E3F6FF7967DE0E880CF3BCFEE77B8DE5FBDC291D20055',
|
|
312
|
+
exponent: 0,
|
|
313
|
+
aliases: ['uist']
|
|
314
|
+
}, {
|
|
315
|
+
denom: 'ist',
|
|
316
|
+
exponent: 6
|
|
317
|
+
}],
|
|
318
|
+
base: 'ibc/1F3137B63B5DEAD5D96E3F6FF7967DE0E880CF3BCFEE77B8DE5FBDC291D20055',
|
|
319
|
+
name: 'Inter Stable Token',
|
|
320
|
+
display: 'ist',
|
|
321
|
+
symbol: 'IST',
|
|
322
|
+
logo_URIs: {
|
|
323
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
324
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
325
|
+
},
|
|
326
|
+
coingecko_id: 'inter-stable-token',
|
|
327
|
+
images: [{
|
|
328
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
329
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
330
|
+
theme: {
|
|
331
|
+
primary_color_hex: '#d485e2'
|
|
332
|
+
}
|
|
333
|
+
}],
|
|
334
|
+
type_asset: 'sdk.coin',
|
|
335
|
+
traces: [{
|
|
336
|
+
type: 'ibc',
|
|
337
|
+
counterparty: {
|
|
338
|
+
channel_id: 'channel-11',
|
|
339
|
+
base_denom: 'uist',
|
|
340
|
+
chain_name: 'agoricdevnet'
|
|
341
|
+
},
|
|
342
|
+
chain: {
|
|
343
|
+
channel_id: 'channel-337'
|
|
344
|
+
}
|
|
345
|
+
}]
|
|
346
|
+
},
|
|
183
347
|
{
|
|
184
348
|
description: 'The native staking token of Babylon.',
|
|
185
349
|
denom_units: [{
|
|
@@ -1,6 +1,88 @@
|
|
|
1
1
|
const assets = {
|
|
2
2
|
chain_name: 'osmosistestnet',
|
|
3
3
|
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/54E26860F62D7BE585736FEF187A62B897B4A567202E20E5320E2518EB5D1FAB',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['ubld']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'bld',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/54E26860F62D7BE585736FEF187A62B897B4A567202E20E5320E2518EB5D1FAB',
|
|
15
|
+
name: 'Agoric',
|
|
16
|
+
display: 'bld',
|
|
17
|
+
symbol: 'BLD',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'agoric',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
26
|
+
theme: {
|
|
27
|
+
primary_color_hex: '#c42b44'
|
|
28
|
+
}
|
|
29
|
+
}],
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://agoric.com/',
|
|
32
|
+
twitter: 'https://twitter.com/agoric'
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin',
|
|
35
|
+
traces: [{
|
|
36
|
+
type: 'ibc',
|
|
37
|
+
counterparty: {
|
|
38
|
+
channel_id: 'channel-5',
|
|
39
|
+
base_denom: 'ubld',
|
|
40
|
+
chain_name: 'agoricdevnet'
|
|
41
|
+
},
|
|
42
|
+
chain: {
|
|
43
|
+
channel_id: 'channel-10293'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
49
|
+
denom_units: [{
|
|
50
|
+
denom: 'ibc/C5250BEA6E379B7974FAEA9FA9C49C914072DDBA5C23BDA709C5B0906E547236',
|
|
51
|
+
exponent: 0,
|
|
52
|
+
aliases: ['uist']
|
|
53
|
+
}, {
|
|
54
|
+
denom: 'ist',
|
|
55
|
+
exponent: 6
|
|
56
|
+
}],
|
|
57
|
+
base: 'ibc/C5250BEA6E379B7974FAEA9FA9C49C914072DDBA5C23BDA709C5B0906E547236',
|
|
58
|
+
name: 'Inter Stable Token',
|
|
59
|
+
display: 'ist',
|
|
60
|
+
symbol: 'IST',
|
|
61
|
+
logo_URIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
64
|
+
},
|
|
65
|
+
coingecko_id: 'inter-stable-token',
|
|
66
|
+
images: [{
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
primary_color_hex: '#d485e2'
|
|
71
|
+
}
|
|
72
|
+
}],
|
|
73
|
+
type_asset: 'sdk.coin',
|
|
74
|
+
traces: [{
|
|
75
|
+
type: 'ibc',
|
|
76
|
+
counterparty: {
|
|
77
|
+
channel_id: 'channel-5',
|
|
78
|
+
base_denom: 'uist',
|
|
79
|
+
chain_name: 'agoricdevnet'
|
|
80
|
+
},
|
|
81
|
+
chain: {
|
|
82
|
+
channel_id: 'channel-10293'
|
|
83
|
+
}
|
|
84
|
+
}]
|
|
85
|
+
},
|
|
4
86
|
{
|
|
5
87
|
description: 'Akash Token (AKT) is the Akash Network\'s native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.',
|
|
6
88
|
denom_units: [{
|
|
@@ -718,6 +800,88 @@ const assets = {
|
|
|
718
800
|
}
|
|
719
801
|
}]
|
|
720
802
|
},
|
|
803
|
+
{
|
|
804
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
805
|
+
denom_units: [{
|
|
806
|
+
denom: 'ibc/54E26860F62D7BE585736FEF187A62B897B4A567202E20E5320E2518EB5D1FAB',
|
|
807
|
+
exponent: 0,
|
|
808
|
+
aliases: ['ubld']
|
|
809
|
+
}, {
|
|
810
|
+
denom: 'bld',
|
|
811
|
+
exponent: 6
|
|
812
|
+
}],
|
|
813
|
+
base: 'ibc/54E26860F62D7BE585736FEF187A62B897B4A567202E20E5320E2518EB5D1FAB',
|
|
814
|
+
name: 'Agoric',
|
|
815
|
+
display: 'bld',
|
|
816
|
+
symbol: 'BLD',
|
|
817
|
+
logo_URIs: {
|
|
818
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
819
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
820
|
+
},
|
|
821
|
+
coingecko_id: 'agoric',
|
|
822
|
+
images: [{
|
|
823
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
824
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
825
|
+
theme: {
|
|
826
|
+
primary_color_hex: '#c42b44'
|
|
827
|
+
}
|
|
828
|
+
}],
|
|
829
|
+
socials: {
|
|
830
|
+
website: 'https://agoric.com/',
|
|
831
|
+
twitter: 'https://twitter.com/agoric'
|
|
832
|
+
},
|
|
833
|
+
type_asset: 'sdk.coin',
|
|
834
|
+
traces: [{
|
|
835
|
+
type: 'ibc',
|
|
836
|
+
counterparty: {
|
|
837
|
+
channel_id: 'channel-5',
|
|
838
|
+
base_denom: 'ubld',
|
|
839
|
+
chain_name: 'agoricdevnet'
|
|
840
|
+
},
|
|
841
|
+
chain: {
|
|
842
|
+
channel_id: 'channel-10293'
|
|
843
|
+
}
|
|
844
|
+
}]
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
848
|
+
denom_units: [{
|
|
849
|
+
denom: 'ibc/C5250BEA6E379B7974FAEA9FA9C49C914072DDBA5C23BDA709C5B0906E547236',
|
|
850
|
+
exponent: 0,
|
|
851
|
+
aliases: ['uist']
|
|
852
|
+
}, {
|
|
853
|
+
denom: 'ist',
|
|
854
|
+
exponent: 6
|
|
855
|
+
}],
|
|
856
|
+
base: 'ibc/C5250BEA6E379B7974FAEA9FA9C49C914072DDBA5C23BDA709C5B0906E547236',
|
|
857
|
+
name: 'Inter Stable Token',
|
|
858
|
+
display: 'ist',
|
|
859
|
+
symbol: 'IST',
|
|
860
|
+
logo_URIs: {
|
|
861
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
862
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
863
|
+
},
|
|
864
|
+
coingecko_id: 'inter-stable-token',
|
|
865
|
+
images: [{
|
|
866
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
867
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
868
|
+
theme: {
|
|
869
|
+
primary_color_hex: '#d485e2'
|
|
870
|
+
}
|
|
871
|
+
}],
|
|
872
|
+
type_asset: 'sdk.coin',
|
|
873
|
+
traces: [{
|
|
874
|
+
type: 'ibc',
|
|
875
|
+
counterparty: {
|
|
876
|
+
channel_id: 'channel-5',
|
|
877
|
+
base_denom: 'uist',
|
|
878
|
+
chain_name: 'agoricdevnet'
|
|
879
|
+
},
|
|
880
|
+
chain: {
|
|
881
|
+
channel_id: 'channel-10293'
|
|
882
|
+
}
|
|
883
|
+
}]
|
|
884
|
+
},
|
|
721
885
|
{
|
|
722
886
|
description: 'Akash Token (AKT) is the Akash Network\'s native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.',
|
|
723
887
|
denom_units: [{
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'stridetestnet',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/A5E505FDA8F4C4A0E8239AE0A591D998E31CFD99ADA429F6B8695A8D5A5894B3',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['ubld']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'bld',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/A5E505FDA8F4C4A0E8239AE0A591D998E31CFD99ADA429F6B8695A8D5A5894B3',
|
|
15
|
+
name: 'Agoric',
|
|
16
|
+
display: 'bld',
|
|
17
|
+
symbol: 'BLD',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'agoric',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
26
|
+
theme: {
|
|
27
|
+
primary_color_hex: '#c42b44'
|
|
28
|
+
}
|
|
29
|
+
}],
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://agoric.com/',
|
|
32
|
+
twitter: 'https://twitter.com/agoric'
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin',
|
|
35
|
+
traces: [{
|
|
36
|
+
type: 'ibc',
|
|
37
|
+
counterparty: {
|
|
38
|
+
channel_id: 'channel-13',
|
|
39
|
+
base_denom: 'ubld',
|
|
40
|
+
chain_name: 'agoricdevnet'
|
|
41
|
+
},
|
|
42
|
+
chain: {
|
|
43
|
+
channel_id: 'channel-60'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
49
|
+
denom_units: [{
|
|
50
|
+
denom: 'ibc/75CA12A6709A262BC1ACA90140BA54DECFA4E3D25E066000DF81955A10DC1A98',
|
|
51
|
+
exponent: 0,
|
|
52
|
+
aliases: ['uist']
|
|
53
|
+
}, {
|
|
54
|
+
denom: 'ist',
|
|
55
|
+
exponent: 6
|
|
56
|
+
}],
|
|
57
|
+
base: 'ibc/75CA12A6709A262BC1ACA90140BA54DECFA4E3D25E066000DF81955A10DC1A98',
|
|
58
|
+
name: 'Inter Stable Token',
|
|
59
|
+
display: 'ist',
|
|
60
|
+
symbol: 'IST',
|
|
61
|
+
logo_URIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
64
|
+
},
|
|
65
|
+
coingecko_id: 'inter-stable-token',
|
|
66
|
+
images: [{
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
primary_color_hex: '#d485e2'
|
|
71
|
+
}
|
|
72
|
+
}],
|
|
73
|
+
type_asset: 'sdk.coin',
|
|
74
|
+
traces: [{
|
|
75
|
+
type: 'ibc',
|
|
76
|
+
counterparty: {
|
|
77
|
+
channel_id: 'channel-13',
|
|
78
|
+
base_denom: 'uist',
|
|
79
|
+
chain_name: 'agoricdevnet'
|
|
80
|
+
},
|
|
81
|
+
chain: {
|
|
82
|
+
channel_id: 'channel-60'
|
|
83
|
+
}
|
|
84
|
+
}]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
|
|
88
|
+
denom_units: [{
|
|
89
|
+
denom: 'ibc/A5E505FDA8F4C4A0E8239AE0A591D998E31CFD99ADA429F6B8695A8D5A5894B3',
|
|
90
|
+
exponent: 0,
|
|
91
|
+
aliases: ['ubld']
|
|
92
|
+
}, {
|
|
93
|
+
denom: 'bld',
|
|
94
|
+
exponent: 6
|
|
95
|
+
}],
|
|
96
|
+
base: 'ibc/A5E505FDA8F4C4A0E8239AE0A591D998E31CFD99ADA429F6B8695A8D5A5894B3',
|
|
97
|
+
name: 'Agoric',
|
|
98
|
+
display: 'bld',
|
|
99
|
+
symbol: 'BLD',
|
|
100
|
+
logo_URIs: {
|
|
101
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
102
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
103
|
+
},
|
|
104
|
+
coingecko_id: 'agoric',
|
|
105
|
+
images: [{
|
|
106
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
107
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
|
|
108
|
+
theme: {
|
|
109
|
+
primary_color_hex: '#c42b44'
|
|
110
|
+
}
|
|
111
|
+
}],
|
|
112
|
+
socials: {
|
|
113
|
+
website: 'https://agoric.com/',
|
|
114
|
+
twitter: 'https://twitter.com/agoric'
|
|
115
|
+
},
|
|
116
|
+
type_asset: 'sdk.coin',
|
|
117
|
+
traces: [{
|
|
118
|
+
type: 'ibc',
|
|
119
|
+
counterparty: {
|
|
120
|
+
channel_id: 'channel-13',
|
|
121
|
+
base_denom: 'ubld',
|
|
122
|
+
chain_name: 'agoricdevnet'
|
|
123
|
+
},
|
|
124
|
+
chain: {
|
|
125
|
+
channel_id: 'channel-60'
|
|
126
|
+
}
|
|
127
|
+
}]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
131
|
+
denom_units: [{
|
|
132
|
+
denom: 'ibc/75CA12A6709A262BC1ACA90140BA54DECFA4E3D25E066000DF81955A10DC1A98',
|
|
133
|
+
exponent: 0,
|
|
134
|
+
aliases: ['uist']
|
|
135
|
+
}, {
|
|
136
|
+
denom: 'ist',
|
|
137
|
+
exponent: 6
|
|
138
|
+
}],
|
|
139
|
+
base: 'ibc/75CA12A6709A262BC1ACA90140BA54DECFA4E3D25E066000DF81955A10DC1A98',
|
|
140
|
+
name: 'Inter Stable Token',
|
|
141
|
+
display: 'ist',
|
|
142
|
+
symbol: 'IST',
|
|
143
|
+
logo_URIs: {
|
|
144
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
145
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
146
|
+
},
|
|
147
|
+
coingecko_id: 'inter-stable-token',
|
|
148
|
+
images: [{
|
|
149
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
150
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
|
|
151
|
+
theme: {
|
|
152
|
+
primary_color_hex: '#d485e2'
|
|
153
|
+
}
|
|
154
|
+
}],
|
|
155
|
+
type_asset: 'sdk.coin',
|
|
156
|
+
traces: [{
|
|
157
|
+
type: 'ibc',
|
|
158
|
+
counterparty: {
|
|
159
|
+
channel_id: 'channel-13',
|
|
160
|
+
base_denom: 'uist',
|
|
161
|
+
chain_name: 'agoricdevnet'
|
|
162
|
+
},
|
|
163
|
+
chain: {
|
|
164
|
+
channel_id: 'channel-60'
|
|
165
|
+
}
|
|
166
|
+
}]
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
};
|
|
170
|
+
export default assets;
|
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export * from './devnet';
|
|
|
4
4
|
export * from './noncosmos';
|
|
5
5
|
import asset_lists from './asset_lists';
|
|
6
6
|
declare const _default: {
|
|
7
|
-
asset_lists:
|
|
7
|
+
asset_lists: AssetList[];
|
|
8
8
|
};
|
|
9
9
|
export default _default;
|
|
10
10
|
export { asset_lists };
|