@galacticcouncil/xc-cfg 0.8.0 → 0.9.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,15 +1,11 @@
1
1
  import { AnyChain } from '@galacticcouncil/xc-core';
2
- import { acala } from './acala';
3
2
  import { ajuna } from './ajuna';
4
3
  import { assetHub, assetHubCex } from './assethub';
5
4
  import { astar } from './astar';
6
5
  import { bifrost } from './bifrost';
7
- import { centrifuge } from './centrifuge';
8
6
  import { crust } from './crust';
9
- import { darwinia } from './darwinia';
10
7
  import { hydration } from './hydration';
11
8
  import { interlay } from './interlay';
12
- import { kilt_chain } from './kilt';
13
9
  import { laos_chain } from './laos';
14
10
  import { moonbeam } from './moonbeam';
15
11
  import { mythos } from './mythos';
@@ -17,7 +13,6 @@ import { neuroweb } from './neuroweb';
17
13
  import { pendulum } from './pendulum';
18
14
  import { polkadot, polkadotCex } from './polkadot';
19
15
  import { unique } from './unique';
20
- import { zeitgeist } from './zeitgeist';
21
16
  import { energywebx } from './energywebx';
22
17
  export declare const polkadotChains: AnyChain[];
23
- export { acala, ajuna, assetHub, assetHubCex, astar, bifrost, centrifuge, crust, darwinia, hydration, kilt_chain, laos_chain, neuroweb, interlay, moonbeam, mythos, pendulum, polkadot, polkadotCex, unique, zeitgeist, energywebx, };
18
+ export { ajuna, assetHub, assetHubCex, astar, bifrost, crust, hydration, laos_chain, neuroweb, interlay, moonbeam, mythos, pendulum, polkadot, polkadotCex, unique, energywebx, };
@@ -9,7 +9,6 @@ export declare function toHubExtTemplate(asset: Asset): AssetRoute;
9
9
  export declare function toHubWithCexFwdTemplate(asset: Asset, hubFee: number, hubTransfer: ExtrinsicConfigBuilder): AssetRoute;
10
10
  export declare function toParaErc20Template(asset: Asset, destination: Parachain, transferType?: XcmTransferType): AssetRoute;
11
11
  export declare function toMoonbeamErc20Template(asset: Asset): AssetRoute;
12
- export declare function toZeitgeistErc20Template(asset: Asset): AssetRoute;
13
12
  export declare function viaWormholeBridgeTemplate(assetIn: Asset, assetOut: Asset, to: AnyChain): AssetRoute;
14
13
  export declare function viaWormholeRelayerTemplate(assetIn: Asset, assetOut: Asset, to: AnyChain): AssetRoute;
15
14
  export declare function viaSnowbridgeTemplate(assetIn: Asset, assetOut: Asset, to: AnyChain): AssetRoute;
@@ -1,2 +1 @@
1
- export * from './acala';
2
1
  export * from './hydration';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacticcouncil/xc-cfg",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Cross-chain hydradx & basilisk dapp configuration",
5
5
  "author": "GalacticCouncil",
6
6
  "repository": {
@@ -1,2 +0,0 @@
1
- import { EvmParachain } from '@galacticcouncil/xc-core';
2
- export declare const acala: EvmParachain;
@@ -1,2 +0,0 @@
1
- import { Parachain } from '@galacticcouncil/xc-core';
2
- export declare const centrifuge: Parachain;
@@ -1,2 +0,0 @@
1
- import { EvmParachain } from '@galacticcouncil/xc-core';
2
- export declare const darwinia: EvmParachain;
@@ -1,2 +0,0 @@
1
- import { Parachain } from '@galacticcouncil/xc-core';
2
- export declare const kilt_chain: Parachain;
@@ -1,2 +0,0 @@
1
- import { Parachain } from '@galacticcouncil/xc-core';
2
- export declare const zeitgeist: Parachain;
@@ -1,2 +0,0 @@
1
- import { ChainRoutes } from '@galacticcouncil/xc-core';
2
- export declare const centrifugeConfig: ChainRoutes;
@@ -1,2 +0,0 @@
1
- import { ChainRoutes } from '@galacticcouncil/xc-core';
2
- export declare const darwiniaConfig: ChainRoutes;
@@ -1,2 +0,0 @@
1
- import { ChainRoutes } from '@galacticcouncil/xc-core';
2
- export declare const kiltConfig: ChainRoutes;
@@ -1,2 +0,0 @@
1
- import { ChainRoutes } from '@galacticcouncil/xc-core';
2
- export declare const zeitgeistConfig: ChainRoutes;
@@ -1,6 +0,0 @@
1
- import { EvmResolver } from '@galacticcouncil/xc-core';
2
- import { PolkadotClient } from 'polkadot-api';
3
- export declare class AcalaEvmResolver implements EvmResolver {
4
- toH160(ss58Addr: string, api?: PolkadotClient): Promise<string>;
5
- private toDefaultH160;
6
- }