@moonbeam-network/xcm-config 1.0.0-dev.237 → 1.0.0-dev.238
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.mjs +4 -1
- package/build/index.mjs.map +1 -1
- package/package.json +4 -4
package/build/index.mjs
CHANGED
|
@@ -3070,6 +3070,7 @@ import {
|
|
|
3070
3070
|
ExtrinsicBuilder as ExtrinsicBuilder3,
|
|
3071
3071
|
MonitoringBuilder as MonitoringBuilder3
|
|
3072
3072
|
} from "@moonbeam-network/xcm-builder";
|
|
3073
|
+
import { Ecosystem as Ecosystem3 } from "@moonbeam-network/xcm-types";
|
|
3073
3074
|
var moonlamaRoutes = new ChainRoutes({
|
|
3074
3075
|
chain: moonlama,
|
|
3075
3076
|
routes: [
|
|
@@ -3122,7 +3123,9 @@ var moonlamaRoutes = new ChainRoutes({
|
|
|
3122
3123
|
balance: BalanceBuilder3().substrate().system().account()
|
|
3123
3124
|
}
|
|
3124
3125
|
},
|
|
3125
|
-
extrinsic: ExtrinsicBuilder3().polkadotXcm().transferAssetsToEcosystem().X2(
|
|
3126
|
+
extrinsic: ExtrinsicBuilder3().polkadotXcm().transferAssetsToEcosystem().X2({
|
|
3127
|
+
globalConsensus: Ecosystem3.Kusama
|
|
3128
|
+
}),
|
|
3126
3129
|
monitoring: MonitoringBuilder3().monitorEvent().polkadotXcm().messageQueue()
|
|
3127
3130
|
}
|
|
3128
3131
|
]
|