@moonbeam-network/xcm-config 1.0.0-dev.222 → 1.0.0-dev.224
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/build/index.d.ts +2 -4
- package/build/index.mjs +122 -257
- package/build/index.mjs.map +1 -1
- package/package.json +4 -4
package/build/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Asset, AnyChain, SetOptional, ChainAsset, AnyAsset, Ecosystem, Parachain, EvmParachain, EvmChain } from '@moonbeam-network/xcm-types';
|
|
2
|
-
import { BalanceConfigBuilder, AssetMinConfigBuilder, FeeConfigBuilder, ContractConfigBuilder, ExtrinsicConfigBuilder,
|
|
2
|
+
import { BalanceConfigBuilder, AssetMinConfigBuilder, FeeConfigBuilder, ContractConfigBuilder, ExtrinsicConfigBuilder, MrlConfigBuilder } from '@moonbeam-network/xcm-builder';
|
|
3
3
|
|
|
4
4
|
declare const aca: Asset;
|
|
5
5
|
declare const agng: Asset;
|
|
@@ -91,7 +91,6 @@ interface AssetRouteConstructorParams {
|
|
|
91
91
|
destination: DestinationConfig;
|
|
92
92
|
contract?: ContractConfigBuilder;
|
|
93
93
|
extrinsic?: ExtrinsicConfigBuilder;
|
|
94
|
-
monitoring?: EventMonitoringConfig;
|
|
95
94
|
}
|
|
96
95
|
interface SourceConfig {
|
|
97
96
|
asset: Asset;
|
|
@@ -120,8 +119,7 @@ declare class AssetRoute {
|
|
|
120
119
|
readonly destination: DestinationConfig;
|
|
121
120
|
readonly contract?: ContractConfigBuilder;
|
|
122
121
|
readonly extrinsic?: ExtrinsicConfigBuilder;
|
|
123
|
-
|
|
124
|
-
constructor({ source, destination, contract, extrinsic, monitoring, }: AssetRouteConstructorParams);
|
|
122
|
+
constructor({ source, destination, contract, extrinsic, }: AssetRouteConstructorParams);
|
|
125
123
|
getDestinationFeeAssetOnSource(): ChainAsset;
|
|
126
124
|
}
|
|
127
125
|
|