@chain-registry/assets 1.70.285 → 1.70.287
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/testnet/dydxtestnet.js +79 -1
- package/index.d.ts +1 -1
- package/package.json +5 -5
- package/testnet/dydxtestnet.js +79 -1
|
@@ -1,5 +1,83 @@
|
|
|
1
1
|
const assets = {
|
|
2
2
|
chain_name: 'dydxtestnet',
|
|
3
|
-
assets: [
|
|
3
|
+
assets: [{
|
|
4
|
+
description: 'Int3face Testnet blockchain native token',
|
|
5
|
+
denom_units: [{
|
|
6
|
+
denom: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
7
|
+
exponent: 0,
|
|
8
|
+
aliases: ['uint3']
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'int3',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
14
|
+
name: 'Int3face Testnet Token',
|
|
15
|
+
display: 'int3',
|
|
16
|
+
symbol: 'INT3',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png',
|
|
22
|
+
theme: {
|
|
23
|
+
primary_color_hex: '#3d3d3d'
|
|
24
|
+
}
|
|
25
|
+
}],
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://testnet.app.int3face.zone/',
|
|
28
|
+
twitter: 'https://x.com/_Bitfrost_'
|
|
29
|
+
},
|
|
30
|
+
type_asset: 'sdk.coin',
|
|
31
|
+
traces: [{
|
|
32
|
+
type: 'ibc',
|
|
33
|
+
counterparty: {
|
|
34
|
+
channel_id: 'channel-5',
|
|
35
|
+
base_denom: 'uint3',
|
|
36
|
+
chain_name: 'int3facetestnet'
|
|
37
|
+
},
|
|
38
|
+
chain: {
|
|
39
|
+
channel_id: 'channel-86'
|
|
40
|
+
}
|
|
41
|
+
}]
|
|
42
|
+
}, {
|
|
43
|
+
description: 'Int3face Testnet blockchain native token',
|
|
44
|
+
denom_units: [{
|
|
45
|
+
denom: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
46
|
+
exponent: 0,
|
|
47
|
+
aliases: ['uint3']
|
|
48
|
+
}, {
|
|
49
|
+
denom: 'int3',
|
|
50
|
+
exponent: 6
|
|
51
|
+
}],
|
|
52
|
+
base: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
53
|
+
name: 'Int3face Testnet Token',
|
|
54
|
+
display: 'int3',
|
|
55
|
+
symbol: 'INT3',
|
|
56
|
+
logo_URIs: {
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png'
|
|
58
|
+
},
|
|
59
|
+
images: [{
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png',
|
|
61
|
+
theme: {
|
|
62
|
+
primary_color_hex: '#3d3d3d'
|
|
63
|
+
}
|
|
64
|
+
}],
|
|
65
|
+
socials: {
|
|
66
|
+
website: 'https://testnet.app.int3face.zone/',
|
|
67
|
+
twitter: 'https://x.com/_Bitfrost_'
|
|
68
|
+
},
|
|
69
|
+
type_asset: 'sdk.coin',
|
|
70
|
+
traces: [{
|
|
71
|
+
type: 'ibc',
|
|
72
|
+
counterparty: {
|
|
73
|
+
channel_id: 'channel-5',
|
|
74
|
+
base_denom: 'uint3',
|
|
75
|
+
chain_name: 'int3facetestnet'
|
|
76
|
+
},
|
|
77
|
+
chain: {
|
|
78
|
+
channel_id: 'channel-86'
|
|
79
|
+
}
|
|
80
|
+
}]
|
|
81
|
+
}]
|
|
4
82
|
};
|
|
5
83
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/assets",
|
|
3
|
-
"version": "1.70.
|
|
3
|
+
"version": "1.70.287",
|
|
4
4
|
"description": "Chain Registry Asset Lists",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
33
|
-
"chain-registry": "^1.69.
|
|
32
|
+
"@chain-registry/utils": "^1.51.180",
|
|
33
|
+
"chain-registry": "^1.69.287"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.180"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "98ac103ef25847820e95b9864bc52dd72581d5aa"
|
|
47
47
|
}
|
package/testnet/dydxtestnet.js
CHANGED
|
@@ -2,6 +2,84 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const assets = {
|
|
4
4
|
chain_name: 'dydxtestnet',
|
|
5
|
-
assets: [
|
|
5
|
+
assets: [{
|
|
6
|
+
description: 'Int3face Testnet blockchain native token',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['uint3']
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'int3',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
16
|
+
name: 'Int3face Testnet Token',
|
|
17
|
+
display: 'int3',
|
|
18
|
+
symbol: 'INT3',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png',
|
|
24
|
+
theme: {
|
|
25
|
+
primary_color_hex: '#3d3d3d'
|
|
26
|
+
}
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://testnet.app.int3face.zone/',
|
|
30
|
+
twitter: 'https://x.com/_Bitfrost_'
|
|
31
|
+
},
|
|
32
|
+
type_asset: 'sdk.coin',
|
|
33
|
+
traces: [{
|
|
34
|
+
type: 'ibc',
|
|
35
|
+
counterparty: {
|
|
36
|
+
channel_id: 'channel-5',
|
|
37
|
+
base_denom: 'uint3',
|
|
38
|
+
chain_name: 'int3facetestnet'
|
|
39
|
+
},
|
|
40
|
+
chain: {
|
|
41
|
+
channel_id: 'channel-86'
|
|
42
|
+
}
|
|
43
|
+
}]
|
|
44
|
+
}, {
|
|
45
|
+
description: 'Int3face Testnet blockchain native token',
|
|
46
|
+
denom_units: [{
|
|
47
|
+
denom: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
48
|
+
exponent: 0,
|
|
49
|
+
aliases: ['uint3']
|
|
50
|
+
}, {
|
|
51
|
+
denom: 'int3',
|
|
52
|
+
exponent: 6
|
|
53
|
+
}],
|
|
54
|
+
base: 'ibc/012680D73D291EA10EE78216BF59CD2C3097ACBB412291D69E293ADE87DA160E',
|
|
55
|
+
name: 'Int3face Testnet Token',
|
|
56
|
+
display: 'int3',
|
|
57
|
+
symbol: 'INT3',
|
|
58
|
+
logo_URIs: {
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png'
|
|
60
|
+
},
|
|
61
|
+
images: [{
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png',
|
|
63
|
+
theme: {
|
|
64
|
+
primary_color_hex: '#3d3d3d'
|
|
65
|
+
}
|
|
66
|
+
}],
|
|
67
|
+
socials: {
|
|
68
|
+
website: 'https://testnet.app.int3face.zone/',
|
|
69
|
+
twitter: 'https://x.com/_Bitfrost_'
|
|
70
|
+
},
|
|
71
|
+
type_asset: 'sdk.coin',
|
|
72
|
+
traces: [{
|
|
73
|
+
type: 'ibc',
|
|
74
|
+
counterparty: {
|
|
75
|
+
channel_id: 'channel-5',
|
|
76
|
+
base_denom: 'uint3',
|
|
77
|
+
chain_name: 'int3facetestnet'
|
|
78
|
+
},
|
|
79
|
+
chain: {
|
|
80
|
+
channel_id: 'channel-86'
|
|
81
|
+
}
|
|
82
|
+
}]
|
|
83
|
+
}]
|
|
6
84
|
};
|
|
7
85
|
exports.default = assets;
|