@chain-registry/types 0.18.5 → 0.18.7

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.18.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.6...@chain-registry/types@0.18.7) (2024-03-27)
7
+
8
+ **Note:** Version bump only for package @chain-registry/types
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.18.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.5...@chain-registry/types@0.18.6) (2024-03-27)
15
+
16
+ **Note:** Version bump only for package @chain-registry/types
17
+
18
+
19
+
20
+
21
+
6
22
  ## [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
23
 
8
24
  **Note:** Version bump only for package @chain-registry/types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/types",
3
- "version": "0.18.5",
3
+ "version": "0.18.7",
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 --project ./tsconfig.json",
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": "bce72467286cbc2f4eb3fd94188411d6e89aaaba"
75
+ "gitHead": "7def14f7596a56f96fa377f1f410d03466ee5735"
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
  }