@skip-go/widget 2.2.0 → 2.2.1-alpha.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,7 +1,7 @@
1
- import { Asset, AssetList, Chain } from "@graz-sh/types";
2
- import { ChainId } from "./types";
3
- export declare function getChain(chainId: ChainId): Chain;
4
- export declare function getAssets(chainId: ChainId): Asset[];
1
+ import { Chain, Asset, AssetList } from '@chain-registry/types';
2
+ export declare const chains: Chain[];
3
+ export declare const assets: AssetList[];
4
+ export declare function getChain(chainId: string): Chain;
5
+ export declare function chainIdToName(chainId: string): string;
6
+ export declare function getAssets(chainId: string): Asset[];
5
7
  export declare function getChains(): Chain[];
6
- export declare function getAssetLists(): AssetList[];
7
- export * from "./types";