@@ -274,6 +274,33 @@ declare module '@polkadot/api-base/types/submittable' {
274274 * for a quote.
275275 **/
276276 swapTokensForExactTokens : AugmentedSubmittable < ( path : Vec < FrameSupportTokensFungibleUnionOfNativeOrWithId > | ( FrameSupportTokensFungibleUnionOfNativeOrWithId | { Native : any } | { WithId : any } | string | Uint8Array ) [ ] , amountOut : u128 | AnyNumber | Uint8Array , amountInMax : u128 | AnyNumber | Uint8Array , sendTo : AccountId32 | string | Uint8Array , keepAlive : bool | boolean | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Vec < FrameSupportTokensFungibleUnionOfNativeOrWithId > , u128 , u128 , AccountId32 , bool ] > ;
277+ /**
278+ * Touch an existing pool to fulfill prerequisites before providing liquidity, such as
279+ * ensuring that the pool's accounts are in place. It is typically useful when a pool
280+ * creator removes the pool's accounts and does not provide a liquidity. This action may
281+ * involve holding assets from the caller as a deposit for creating the pool's accounts.
282+ *
283+ * The origin must be Signed.
284+ *
285+ * - `asset1`: The asset ID of an existing pool with a pair (asset1, asset2).
286+ * - `asset2`: The asset ID of an existing pool with a pair (asset1, asset2).
287+ *
288+ * Emits `Touched` event when successful.
289+ **/
290+ touch : AugmentedSubmittable < ( asset1 : FrameSupportTokensFungibleUnionOfNativeOrWithId | { Native : any } | { WithId : any } | string | Uint8Array , asset2 : FrameSupportTokensFungibleUnionOfNativeOrWithId | { Native : any } | { WithId : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ FrameSupportTokensFungibleUnionOfNativeOrWithId , FrameSupportTokensFungibleUnionOfNativeOrWithId ] > ;
291+ /**
292+ * Generic tx
293+ **/
294+ [ key : string ] : SubmittableExtrinsicFunction < ApiType > ;
295+ } ;
296+ assetConversionMigration : {
297+ /**
298+ * Migrates an existing pool to a new account ID derivation method for a given asset pair.
299+ * If the migration is successful, transaction fees are refunded to the caller.
300+ *
301+ * Must be signed.
302+ **/
303+ migrateToNewAccount : AugmentedSubmittable < ( asset1 : FrameSupportTokensFungibleUnionOfNativeOrWithId | { Native : any } | { WithId : any } | string | Uint8Array , asset2 : FrameSupportTokensFungibleUnionOfNativeOrWithId | { Native : any } | { WithId : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ FrameSupportTokensFungibleUnionOfNativeOrWithId , FrameSupportTokensFungibleUnionOfNativeOrWithId ] > ;
277304 /**
278305 * Generic tx
279306 **/
@@ -1109,13 +1136,12 @@ declare module '@polkadot/api-base/types/submittable' {
11091136 /**
11101137 * Claim the revenue owed from inclusion in the Instantaneous Coretime Pool.
11111138 *
1112- * - `origin`: Must be a Signed origin of the account which owns the Region `region_id` .
1139+ * - `origin`: Must be a Signed origin.
11131140 * - `region_id`: The Region which was assigned to the Pool.
1114- * - `max_timeslices`: The maximum number of timeslices which should be processed. This may
1115- * effect the weight of the call but should be ideally made equivalent to the length of
1116- * the Region `region_id`. If it is less than this, then further dispatches will be
1117- * required with the `region_id` which makes up any remainders of the region to be
1118- * collected.
1141+ * - `max_timeslices`: The maximum number of timeslices which should be processed. This
1142+ * must be greater than 0. This may affect the weight of the call but should be ideally
1143+ * made equivalent to the length of the Region `region_id`. If less, further dispatches
1144+ * will be required with the same `region_id` to claim revenue for the remainder.
11191145 **/
11201146 claimRevenue : AugmentedSubmittable < ( regionId : PalletBrokerRegionId | { begin ?: any ; core ?: any ; mask ?: any } | string | Uint8Array , maxTimeslices : u32 | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ PalletBrokerRegionId , u32 ] > ;
11211147 /**
@@ -1240,9 +1266,13 @@ declare module '@polkadot/api-base/types/submittable' {
12401266 *
12411267 * - `origin`: Must be Root or pass `AdminOrigin`.
12421268 * - `initial_price`: The price of Bulk Coretime in the first sale.
1243- * - `core_count`: The number of cores which can be allocated.
1269+ * - `extra_cores`: Number of extra cores that should be requested on top of the cores
1270+ * required for `Reservations` and `Leases`.
1271+ *
1272+ * This will call [`Self::request_core_count`] internally to set the correct core count on
1273+ * the relay chain.
12441274 **/
1245- startSales : AugmentedSubmittable < ( initialPrice : u128 | AnyNumber | Uint8Array , coreCount : u16 | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ u128 , u16 ] > ;
1275+ startSales : AugmentedSubmittable < ( initialPrice : u128 | AnyNumber | Uint8Array , extraCores : u16 | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ u128 , u16 ] > ;
12461276 swapLeases : AugmentedSubmittable < ( id : u32 | AnyNumber | Uint8Array , other : u32 | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ u32 , u32 ] > ;
12471277 /**
12481278 * Transfer a Bulk Coretime Region to a new owner.
@@ -3965,7 +3995,7 @@ declare module '@polkadot/api-base/types/submittable' {
39653995 setCommissionMax : AugmentedSubmittable < ( poolId : u32 | AnyNumber | Uint8Array , maxCommission : Perbill | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ u32 , Perbill ] > ;
39663996 /**
39673997 * Update configurations for the nomination pools. The origin for this call must be
3968- * Root .
3998+ * [`Config::AdminOrigin`] .
39693999 *
39704000 * # Arguments
39714001 *
@@ -4075,7 +4105,7 @@ declare module '@polkadot/api-base/types/submittable' {
40754105 * The dispatch origin of this call must be `AdminOrigin` for the given `key`. Values be
40764106 * deleted by setting them to `None`.
40774107 **/
4078- setParameter : AugmentedSubmittable < ( keyValue : KitchensinkRuntimeRuntimeParameters | { Storage : any } | { Contract : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ KitchensinkRuntimeRuntimeParameters ] > ;
4108+ setParameter : AugmentedSubmittable < ( keyValue : KitchensinkRuntimeRuntimeParameters | { Storage : any } | { Contracts : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ KitchensinkRuntimeRuntimeParameters ] > ;
40794109 /**
40804110 * Generic tx
40814111 **/
0 commit comments