@@ -403,44 +403,45 @@ declare module '@polkadot/api-base/types/submittable' {
403403 create : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array , admin : MultiAddress | { Id : any } | { Index : any } | { Raw : any } | { Address32 : any } | { Address20 : any } | string | Uint8Array , minBalance : u128 | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > , MultiAddress , u128 ] > ;
404404 /**
405405 * Destroy all accounts associated with a given asset.
406+ *
406407 * `destroy_accounts` should only be called after `start_destroy` has been called, and the
407- * asset is in a `Destroying` state
408+ * asset is in a `Destroying` state.
408409 *
409- * Due to weight restrictions, this function may need to be called multiple
410- * times to fully destroy all accounts. It will destroy `RemoveItemsLimit` accounts at a
411- * time.
410+ * Due to weight restrictions, this function may need to be called multiple times to fully
411+ * destroy all accounts. It will destroy `RemoveItemsLimit` accounts at a time.
412412 *
413413 * - `id`: The identifier of the asset to be destroyed. This must identify an existing
414414 * asset.
415415 *
416- * Each call Emits the `Event::DestroyedAccounts` event.
416+ * Each call emits the `Event::DestroyedAccounts` event.
417417 **/
418418 destroyAccounts : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > ] > ;
419419 /**
420- * Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit),
420+ * Destroy all approvals associated with a given asset up to the max (T::RemoveItemsLimit).
421+ *
421422 * `destroy_approvals` should only be called after `start_destroy` has been called, and the
422- * asset is in a `Destroying` state
423+ * asset is in a `Destroying` state.
423424 *
424- * Due to weight restrictions, this function may need to be called multiple
425- * times to fully destroy all approvals. It will destroy `RemoveItemsLimit` approvals at a
426- * time.
425+ * Due to weight restrictions, this function may need to be called multiple times to fully
426+ * destroy all approvals. It will destroy `RemoveItemsLimit` approvals at a time.
427427 *
428428 * - `id`: The identifier of the asset to be destroyed. This must identify an existing
429429 * asset.
430430 *
431- * Each call Emits the `Event::DestroyedApprovals` event.
431+ * Each call emits the `Event::DestroyedApprovals` event.
432432 **/
433433 destroyApprovals : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > ] > ;
434434 /**
435435 * Complete destroying asset and unreserve currency.
436+ *
436437 * `finish_destroy` should only be called after `start_destroy` has been called, and the
437438 * asset is in a `Destroying` state. All accounts or approvals should be destroyed before
438439 * hand.
439440 *
440441 * - `id`: The identifier of the asset to be destroyed. This must identify an existing
441442 * asset.
442443 *
443- * Each successful call Emits the `Event::Destroyed` event.
444+ * Each successful call emits the `Event::Destroyed` event.
444445 **/
445446 finishDestroy : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > ] > ;
446447 /**
@@ -645,17 +646,17 @@ declare module '@polkadot/api-base/types/submittable' {
645646 **/
646647 setTeam : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array , issuer : MultiAddress | { Id : any } | { Index : any } | { Raw : any } | { Address32 : any } | { Address20 : any } | string | Uint8Array , admin : MultiAddress | { Id : any } | { Index : any } | { Raw : any } | { Address32 : any } | { Address20 : any } | string | Uint8Array , freezer : MultiAddress | { Id : any } | { Index : any } | { Raw : any } | { Address32 : any } | { Address20 : any } | string | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > , MultiAddress , MultiAddress , MultiAddress ] > ;
647648 /**
648- * Start the process of destroying a class of fungible asset
649- * start_destroy is the first in a series of extrinsics that should be called, to allow
650- * destroying an asset.
649+ * Start the process of destroying a fungible asset class.
650+ *
651+ * `start_destroy` is the first in a series of extrinsics that should be called, to allow
652+ * destruction of an asset class.
651653 *
652- * The origin must conform to `ForceOrigin` or must be Signed and the sender must be the
653- * owner of the asset `id`.
654+ * The origin must conform to `ForceOrigin` or must be `Signed` by the asset's `owner`.
654655 *
655656 * - `id`: The identifier of the asset to be destroyed. This must identify an existing
656657 * asset.
657658 *
658- * Assets must be freezed before calling start_destroy.
659+ * The asset class must be frozen before calling ` start_destroy` .
659660 **/
660661 startDestroy : AugmentedSubmittable < ( id : Compact < u32 > | AnyNumber | Uint8Array ) => SubmittableExtrinsic < ApiType > , [ Compact < u32 > ] > ;
661662 /**
0 commit comments