@@ -3875,22 +3875,29 @@ declare module '@polkadot/api-base/types/submittable' {
38753875 * Set a safe XCM version (the version that XCM should be encoded with if the most recent
38763876 * version a destination can accept is unknown).
38773877 *
3878- * - `origin`: Must be Root .
3878+ * - `origin`: Must be an origin specified by AdminOrigin .
38793879 * - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.
38803880 **/
38813881 forceDefaultXcmVersion : AugmentedSubmittable < ( maybeXcmVersion : Option < u32 > | null | Uint8Array | u32 | AnyNumber ) => SubmittableExtrinsic < ApiType > , [ Option < u32 > ] > ;
38823882 /**
38833883 * Ask a location to notify us regarding their XCM version and any changes to it.
38843884 *
3885- * - `origin`: Must be Root .
3885+ * - `origin`: Must be an origin specified by AdminOrigin .
38863886 * - `location`: The location to which we should subscribe for XCM version notifications.
38873887 **/
38883888 forceSubscribeVersionNotify : AugmentedSubmittable < ( location : XcmVersionedMultiLocation | { V2 : any } | { V3 : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ XcmVersionedMultiLocation ] > ;
3889+ /**
3890+ * Set or unset the global suspension state of the XCM executor.
3891+ *
3892+ * - `origin`: Must be an origin specified by AdminOrigin.
3893+ * - `suspended`: `true` to suspend, `false` to resume.
3894+ **/
3895+ forceSuspension : AugmentedSubmittable < ( suspended : bool | boolean | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ bool ] > ;
38893896 /**
38903897 * Require that a particular destination should no longer notify us regarding any XCM
38913898 * version changes.
38923899 *
3893- * - `origin`: Must be Root .
3900+ * - `origin`: Must be an origin specified by AdminOrigin .
38943901 * - `location`: The location to which we are currently subscribed for XCM version
38953902 * notifications which we no longer desire.
38963903 **/
@@ -3899,7 +3906,7 @@ declare module '@polkadot/api-base/types/submittable' {
38993906 * Extoll that a particular destination can be communicated with through a particular
39003907 * version of XCM.
39013908 *
3902- * - `origin`: Must be Root .
3909+ * - `origin`: Must be an origin specified by AdminOrigin .
39033910 * - `location`: The destination that is being described.
39043911 * - `xcm_version`: The latest version of XCM that `location` supports.
39053912 **/
0 commit comments