@chain-registry/types 0.18.5 → 0.18.8
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/package.json +3 -3
- package/types/assets.d.ts +24 -1
- package/types/chains.d.ts +7 -0
- package/types/ibc.d.ts +16 -0
- package/CHANGELOG.md +0 -232
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/types",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.8",
|
|
4
4
|
"description": "Chain Registry types",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
|
|
20
|
-
"build:ts": "tsc
|
|
20
|
+
"build:ts": "tsc",
|
|
21
21
|
"buidl": "npm run build && npm run build:ts",
|
|
22
22
|
"prepare": "npm run build",
|
|
23
23
|
"dev": "cross-env NODE_ENV=development babel-node src/telescope --extensions \".tsx,.ts,.js\"",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@babel/runtime": "^7.21.0"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "3c6e31032f2b6cc79e35ea27e414acdf3c2ceb97"
|
|
76
76
|
}
|
package/types/assets.d.ts
CHANGED
|
@@ -11,6 +11,22 @@ export interface LiquidStakeTrace {
|
|
|
11
11
|
};
|
|
12
12
|
provider: string;
|
|
13
13
|
}
|
|
14
|
+
export interface TestMintageTrace {
|
|
15
|
+
type: 'test-mintage';
|
|
16
|
+
counterparty: {
|
|
17
|
+
chain_name: string;
|
|
18
|
+
base_denom: string;
|
|
19
|
+
};
|
|
20
|
+
provider: string;
|
|
21
|
+
}
|
|
22
|
+
export interface StringTypeTrace {
|
|
23
|
+
type: string;
|
|
24
|
+
counterparty: {
|
|
25
|
+
chain_name: string;
|
|
26
|
+
base_denom: string;
|
|
27
|
+
};
|
|
28
|
+
provider: string;
|
|
29
|
+
}
|
|
14
30
|
export interface AdditionalMintageTrace {
|
|
15
31
|
type: 'additional-mintage';
|
|
16
32
|
counterparty: {
|
|
@@ -79,7 +95,7 @@ export interface IBCCw20Trace {
|
|
|
79
95
|
path?: string;
|
|
80
96
|
};
|
|
81
97
|
}
|
|
82
|
-
export type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace | AdditionalMintageTrace;
|
|
98
|
+
export type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace | AdditionalMintageTrace | TestMintageTrace | StringTypeTrace;
|
|
83
99
|
export interface LogoImage {
|
|
84
100
|
image_sync?: {
|
|
85
101
|
chain_name: string;
|
|
@@ -91,7 +107,9 @@ export interface LogoImage {
|
|
|
91
107
|
theme?: any;
|
|
92
108
|
}
|
|
93
109
|
export interface Asset {
|
|
110
|
+
deprecated?: boolean;
|
|
94
111
|
description?: string;
|
|
112
|
+
extended_description?: string;
|
|
95
113
|
type_asset?: string;
|
|
96
114
|
address?: string;
|
|
97
115
|
denom_units: AssetDenomUnit[];
|
|
@@ -109,6 +127,11 @@ export interface Asset {
|
|
|
109
127
|
source_denom?: string;
|
|
110
128
|
dst_channel?: string;
|
|
111
129
|
};
|
|
130
|
+
socials?: {
|
|
131
|
+
webiste?: string;
|
|
132
|
+
website?: string;
|
|
133
|
+
twitter?: string;
|
|
134
|
+
};
|
|
112
135
|
}
|
|
113
136
|
export type AssetList = {
|
|
114
137
|
$schema?: string;
|
package/types/chains.d.ts
CHANGED
|
@@ -52,11 +52,18 @@ export interface Chain {
|
|
|
52
52
|
jpeg?: string;
|
|
53
53
|
};
|
|
54
54
|
images?: {
|
|
55
|
+
image_sync?: {
|
|
56
|
+
chain_name?: string;
|
|
57
|
+
};
|
|
55
58
|
png?: string;
|
|
56
59
|
svg?: string;
|
|
57
60
|
theme?: {
|
|
58
61
|
primary_color_hex?: string;
|
|
62
|
+
dark_mode?: boolean;
|
|
63
|
+
circle?: boolean;
|
|
59
64
|
};
|
|
65
|
+
layout?: string;
|
|
66
|
+
text_position?: string;
|
|
60
67
|
}[];
|
|
61
68
|
fees?: {
|
|
62
69
|
fee_tokens: {
|
package/types/ibc.d.ts
CHANGED
|
@@ -13,14 +13,30 @@ export interface IBCInfo {
|
|
|
13
13
|
channels: {
|
|
14
14
|
chain_1: {
|
|
15
15
|
channel_id: string;
|
|
16
|
+
client_id?: string;
|
|
16
17
|
port_id: string;
|
|
18
|
+
connection_id?: string;
|
|
17
19
|
};
|
|
18
20
|
chain_2: {
|
|
19
21
|
channel_id: string;
|
|
22
|
+
client_id?: string;
|
|
20
23
|
port_id: string;
|
|
24
|
+
connection_id?: string;
|
|
21
25
|
};
|
|
22
26
|
ordering: string;
|
|
23
27
|
version: string;
|
|
28
|
+
fee_version?: string;
|
|
24
29
|
tags?: object;
|
|
25
30
|
}[];
|
|
31
|
+
operators?: {
|
|
32
|
+
chain_1?: {
|
|
33
|
+
address?: string;
|
|
34
|
+
};
|
|
35
|
+
chain_2?: {
|
|
36
|
+
address?: string;
|
|
37
|
+
};
|
|
38
|
+
memo?: string;
|
|
39
|
+
name?: string;
|
|
40
|
+
discord_handle?: string;
|
|
41
|
+
}[];
|
|
26
42
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,232 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [0.18.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.4...@chain-registry/types@0.18.5) (2024-03-21)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## 0.18.4 (2024-03-21)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [0.18.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.2...@chain-registry/types@0.18.3) (2024-03-20)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
## 0.18.2 (2024-03-20)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## [0.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.0...@chain-registry/types@0.18.1) (2024-02-27)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
# [0.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.17.1...@chain-registry/types@0.18.0) (2024-01-25)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## [0.17.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.17.0...@chain-registry/types@0.17.1) (2023-12-15)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# [0.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.16.0...@chain-registry/types@0.17.0) (2023-09-15)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# [0.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.15.0...@chain-registry/types@0.16.0) (2023-04-20)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
# [0.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.14.0...@chain-registry/types@0.15.0) (2023-04-18)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
# [0.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.13.1...@chain-registry/types@0.14.0) (2022-12-08)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
## [0.13.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.13.0...@chain-registry/types@0.13.1) (2022-10-27)
|
|
95
|
-
|
|
96
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
# [0.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.12.0...@chain-registry/types@0.13.0) (2022-10-20)
|
|
103
|
-
|
|
104
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
# [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.11.1...@chain-registry/types@0.12.0) (2022-10-20)
|
|
111
|
-
|
|
112
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
## [0.11.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.11.0...@chain-registry/types@0.11.1) (2022-10-20)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
# [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.10.2...@chain-registry/types@0.11.0) (2022-09-20)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
## [0.10.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.10.1...@chain-registry/types@0.10.2) (2022-09-19)
|
|
135
|
-
|
|
136
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
## [0.10.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.10.0...@chain-registry/types@0.10.1) (2022-09-19)
|
|
143
|
-
|
|
144
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
# [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.9.0...@chain-registry/types@0.10.0) (2022-09-19)
|
|
151
|
-
|
|
152
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
# [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.8.0...@chain-registry/types@0.9.0) (2022-09-16)
|
|
159
|
-
|
|
160
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
# [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.7.1...@chain-registry/types@0.8.0) (2022-09-14)
|
|
167
|
-
|
|
168
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.7.0...@chain-registry/types@0.7.1) (2022-09-08)
|
|
175
|
-
|
|
176
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
# [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.6.0...@chain-registry/types@0.7.0) (2022-09-06)
|
|
183
|
-
|
|
184
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
# [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.5.0...@chain-registry/types@0.6.0) (2022-08-23)
|
|
191
|
-
|
|
192
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
# [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.4.0...@chain-registry/types@0.5.0) (2022-08-20)
|
|
199
|
-
|
|
200
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
# [0.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.3.1...@chain-registry/types@0.4.0) (2022-08-14)
|
|
207
|
-
|
|
208
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
## [0.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.3.0...@chain-registry/types@0.3.1) (2022-08-13)
|
|
215
|
-
|
|
216
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
# [0.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.2.1...@chain-registry/types@0.3.0) (2022-08-13)
|
|
223
|
-
|
|
224
|
-
**Note:** Version bump only for package @chain-registry/types
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
## 0.2.1 (2022-08-13)
|
|
231
|
-
|
|
232
|
-
**Note:** Version bump only for package @chain-registry/types
|