@chain-registry/types 0.46.14 → 0.46.15
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/README.md +1 -1
- package/assetlist.schema.d.ts +7 -2
- package/chain.schema.d.ts +0 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</a>
|
|
11
11
|
<a href="https://github.com/cosmology-tech/chain-registry/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
|
|
12
12
|
<a href="https://www.npmjs.com/package/@chain-registry/types"><img height="20" src="https://img.shields.io/npm/dt/@chain-registry/types"></a>
|
|
13
|
-
<a href="https://www.npmjs.com/package/@chain-registry/types"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=
|
|
13
|
+
<a href="https://www.npmjs.com/package/@chain-registry/types"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=v1%2Fpackages%2Ftypes%2Fpackage.json"></a>
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
types for the chain-registry
|
package/assetlist.schema.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export interface Asset {
|
|
|
3
3
|
description?: string;
|
|
4
4
|
extended_description?: string;
|
|
5
5
|
denom_units: DenomUnit[];
|
|
6
|
-
type_asset
|
|
6
|
+
type_asset: "sdk.coin" | "cw20" | "erc20" | "ics20" | "snip20" | "snip25" | "bitcoin-like" | "evm-base" | "svm-base" | "substrate" | "unknown";
|
|
7
7
|
address?: string;
|
|
8
8
|
base: string;
|
|
9
9
|
name: string;
|
|
@@ -36,6 +36,11 @@ export interface Asset {
|
|
|
36
36
|
socials?: {
|
|
37
37
|
website?: string;
|
|
38
38
|
twitter?: string;
|
|
39
|
+
telegram?: string;
|
|
40
|
+
discord?: string;
|
|
41
|
+
github?: string;
|
|
42
|
+
medium?: string;
|
|
43
|
+
reddit?: string;
|
|
39
44
|
};
|
|
40
45
|
}
|
|
41
46
|
export interface DenomUnit {
|
|
@@ -48,7 +53,7 @@ export interface Pointer {
|
|
|
48
53
|
base_denom?: string;
|
|
49
54
|
}
|
|
50
55
|
export interface IbcTransition {
|
|
51
|
-
type:
|
|
56
|
+
type: "ibc";
|
|
52
57
|
counterparty: {
|
|
53
58
|
chain_name: string;
|
|
54
59
|
base_denom: string;
|
package/chain.schema.d.ts
CHANGED
|
@@ -126,8 +126,6 @@ export interface Chain {
|
|
|
126
126
|
cosmwasm_enabled?: boolean;
|
|
127
127
|
cosmwasm_path?: string;
|
|
128
128
|
cosmwasm?: Cosmwasm;
|
|
129
|
-
ibc_go_version?: string;
|
|
130
|
-
ics_enabled?: ('ics20-1' | 'ics27-1' | 'mauth')[];
|
|
131
129
|
ibc?: Ibc;
|
|
132
130
|
genesis?: {
|
|
133
131
|
name?: string;
|
|
@@ -151,8 +149,6 @@ export interface Chain {
|
|
|
151
149
|
cosmwasm_enabled?: boolean;
|
|
152
150
|
cosmwasm_path?: string;
|
|
153
151
|
cosmwasm?: Cosmwasm;
|
|
154
|
-
ibc_go_version?: string;
|
|
155
|
-
ics_enabled?: ('ics20-1' | 'ics27-1' | 'mauth')[];
|
|
156
152
|
ibc?: Ibc;
|
|
157
153
|
binaries?: Binaries;
|
|
158
154
|
}[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/types",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.15",
|
|
4
4
|
"description": "Chain Registry types",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"cosmos",
|
|
34
34
|
"interchain"
|
|
35
35
|
],
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "c7040b92924cd64acd4748bb580d5b1bd90ac401"
|
|
37
37
|
}
|