@chain-registry/osmosis 0.4.4 → 0.5.0

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.
@@ -1,31 +1,3 @@
1
- declare const _exports: {
2
- chain_name: string;
3
- assets: {
4
- description: string;
5
- denom_units: {
6
- denom: string;
7
- exponent: number;
8
- aliases?: string[];
9
- }[];
10
- base: string;
11
- name: string;
12
- display: string;
13
- symbol: string;
14
- logo_URIs: {
15
- png: string;
16
- svg: string;
17
- };
18
- coingecko_id: string;
19
- ibc: {
20
- counterparty: {
21
- channel: string;
22
- denom: string;
23
- chain_name: string;
24
- };
25
- chain: {
26
- channel: string;
27
- };
28
- };
29
- }[];
30
- }[];
31
- export = _exports;
1
+ import { IBCAsset } from '@chain-registry/types';
2
+ declare const ibc_assets: IBCAsset;
3
+ export default ibc_assets;
package/types/index.d.ts CHANGED
@@ -1,11 +1,10 @@
1
1
  import assets from './assets';
2
2
  import chain from './chain';
3
3
  import ibc_assets from './ibc_assets';
4
-
5
- export default {
6
- chain,
7
- assets,
8
- ibc_assets
4
+ declare const _default: {
5
+ chain: import("@chain-registry/types").Chain;
6
+ assets: import("@chain-registry/types").AssetList;
7
+ ibc_assets: import("@chain-registry/types").IBCAsset;
9
8
  };
10
-
9
+ export default _default;
11
10
  export { assets, chain, ibc_assets };