@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.
- package/CHANGELOG.md +24 -0
- package/README.md +41 -1
- package/main/assets.js +36 -35
- package/main/chain.js +226 -225
- package/main/ibc_assets.js +3 -2
- package/module/assets.js +37 -36
- package/module/chain.js +227 -226
- package/module/ibc_assets.js +3 -2
- package/package.json +6 -5
- package/types/assets.d.ts +3 -28
- package/types/chain.d.ts +3 -61
- package/types/ibc_assets.d.ts +3 -31
- package/types/index.d.ts +5 -6
package/types/ibc_assets.d.ts
CHANGED
|
@@ -1,31 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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 };
|