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