@storagehub/api-augment 0.2.11 → 0.4.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.
Files changed (50) hide show
  1. package/dist/parachain/interfaces/lookup.js +160 -213
  2. package/dist/parachain/interfaces/lookup.js.map +1 -1
  3. package/dist/parachain/interfaces/storagehubclient/runtime.js +5 -0
  4. package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -1
  5. package/dist/solochain-evm/interfaces/lookup.js +290 -343
  6. package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
  7. package/dist/types/parachain/interfaces/augment-api-errors.d.ts +4 -108
  8. package/dist/types/parachain/interfaces/augment-api-events.d.ts +25 -103
  9. package/dist/types/parachain/interfaces/augment-api-query.d.ts +11 -0
  10. package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +8 -0
  11. package/dist/types/parachain/interfaces/augment-api-tx.d.ts +75 -10
  12. package/dist/types/parachain/interfaces/augment-types.d.ts +2 -1
  13. package/dist/types/parachain/interfaces/lookup.d.ts +118 -145
  14. package/dist/types/parachain/interfaces/registry.d.ts +2 -2
  15. package/dist/types/parachain/interfaces/storagehubclient/types.d.ts +14 -4
  16. package/dist/types/parachain/interfaces/types-lookup.d.ts +175 -234
  17. package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +4 -108
  18. package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +25 -103
  19. package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +11 -0
  20. package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +8 -0
  21. package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +75 -10
  22. package/dist/types/solochain-evm/interfaces/augment-types.d.ts +2 -1
  23. package/dist/types/solochain-evm/interfaces/lookup.d.ts +248 -275
  24. package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -2
  25. package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +14 -4
  26. package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +305 -364
  27. package/metadata-sh-parachain.json +1 -1
  28. package/metadata-sh-solochain-evm.json +1 -1
  29. package/package.json +2 -2
  30. package/src/parachain/interfaces/augment-api-errors.ts +4 -108
  31. package/src/parachain/interfaces/augment-api-events.ts +22 -113
  32. package/src/parachain/interfaces/augment-api-query.ts +12 -0
  33. package/src/parachain/interfaces/augment-api-runtime.ts +14 -0
  34. package/src/parachain/interfaces/augment-api-tx.ts +76 -10
  35. package/src/parachain/interfaces/augment-types.ts +2 -0
  36. package/src/parachain/interfaces/lookup.ts +160 -213
  37. package/src/parachain/interfaces/registry.ts +2 -2
  38. package/src/parachain/interfaces/storagehubclient/runtime.ts +5 -0
  39. package/src/parachain/interfaces/storagehubclient/types.ts +14 -4
  40. package/src/parachain/interfaces/types-lookup.ts +225 -314
  41. package/src/solochain-evm/interfaces/augment-api-errors.ts +4 -108
  42. package/src/solochain-evm/interfaces/augment-api-events.ts +22 -113
  43. package/src/solochain-evm/interfaces/augment-api-query.ts +12 -0
  44. package/src/solochain-evm/interfaces/augment-api-runtime.ts +14 -0
  45. package/src/solochain-evm/interfaces/augment-api-tx.ts +76 -10
  46. package/src/solochain-evm/interfaces/augment-types.ts +2 -0
  47. package/src/solochain-evm/interfaces/lookup.ts +290 -343
  48. package/src/solochain-evm/interfaces/registry.ts +2 -2
  49. package/src/solochain-evm/interfaces/storagehubclient/types.ts +14 -4
  50. package/src/solochain-evm/interfaces/types-lookup.ts +355 -444
@@ -1501,12 +1501,6 @@ declare const _default: {
1501
1501
  bucketId: string;
1502
1502
  maybeCollectionId: string;
1503
1503
  };
1504
- MoveBucketRequested: {
1505
- who: string;
1506
- bucketId: string;
1507
- newMspId: string;
1508
- newValuePropId: string;
1509
- };
1510
1504
  BucketPrivacyUpdated: {
1511
1505
  who: string;
1512
1506
  bucketId: string;
@@ -1518,6 +1512,26 @@ declare const _default: {
1518
1512
  bucketId: string;
1519
1513
  collectionId: string;
1520
1514
  };
1515
+ MoveBucketRequested: {
1516
+ who: string;
1517
+ bucketId: string;
1518
+ newMspId: string;
1519
+ newValuePropId: string;
1520
+ };
1521
+ MoveBucketRequestExpired: {
1522
+ bucketId: string;
1523
+ };
1524
+ MoveBucketAccepted: {
1525
+ bucketId: string;
1526
+ oldMspId: string;
1527
+ newMspId: string;
1528
+ valuePropId: string;
1529
+ };
1530
+ MoveBucketRejected: {
1531
+ bucketId: string;
1532
+ oldMspId: string;
1533
+ newMspId: string;
1534
+ };
1521
1535
  NewStorageRequest: {
1522
1536
  _alias: {
1523
1537
  size_: string;
@@ -1535,6 +1549,27 @@ declare const _default: {
1535
1549
  fileKey: string;
1536
1550
  fileMetadata: string;
1537
1551
  };
1552
+ StorageRequestFulfilled: {
1553
+ fileKey: string;
1554
+ };
1555
+ StorageRequestExpired: {
1556
+ fileKey: string;
1557
+ };
1558
+ StorageRequestRevoked: {
1559
+ fileKey: string;
1560
+ };
1561
+ StorageRequestRejected: {
1562
+ fileKey: string;
1563
+ mspId: string;
1564
+ bucketId: string;
1565
+ reason: string;
1566
+ };
1567
+ IncompleteStorageRequest: {
1568
+ fileKey: string;
1569
+ };
1570
+ IncompleteStorageRequestCleanedUp: {
1571
+ fileKey: string;
1572
+ };
1538
1573
  AcceptedBspVolunteer: {
1539
1574
  _alias: {
1540
1575
  size_: string;
@@ -1554,20 +1589,9 @@ declare const _default: {
1554
1589
  skippedFileKeys: string;
1555
1590
  newRoot: string;
1556
1591
  };
1557
- StorageRequestFulfilled: {
1558
- fileKey: string;
1559
- };
1560
- StorageRequestExpired: {
1561
- fileKey: string;
1562
- };
1563
- StorageRequestRevoked: {
1564
- fileKey: string;
1565
- };
1566
- StorageRequestRejected: {
1567
- fileKey: string;
1568
- mspId: string;
1569
- bucketId: string;
1570
- reason: string;
1592
+ BspChallengeCycleInitialised: {
1593
+ who: string;
1594
+ bspId: string;
1571
1595
  };
1572
1596
  BspRequestedToStopStoring: {
1573
1597
  bspId: string;
@@ -1580,9 +1604,10 @@ declare const _default: {
1580
1604
  fileKey: string;
1581
1605
  newRoot: string;
1582
1606
  };
1583
- PriorityChallengeForFileDeletionQueued: {
1584
- issuer: string;
1585
- fileKey: string;
1607
+ MspStoppedStoringBucket: {
1608
+ mspId: string;
1609
+ owner: string;
1610
+ bucketId: string;
1586
1611
  };
1587
1612
  SpStopStoringInsolventUser: {
1588
1613
  spId: string;
@@ -1596,76 +1621,6 @@ declare const _default: {
1596
1621
  owner: string;
1597
1622
  bucketId: string;
1598
1623
  };
1599
- FailedToQueuePriorityChallenge: {
1600
- fileKey: string;
1601
- error: string;
1602
- };
1603
- FileDeletionRequest: {
1604
- user: string;
1605
- fileKey: string;
1606
- fileSize: string;
1607
- bucketId: string;
1608
- mspId: string;
1609
- proofOfInclusion: string;
1610
- };
1611
- ProofSubmittedForPendingFileDeletionRequest: {
1612
- user: string;
1613
- fileKey: string;
1614
- fileSize: string;
1615
- bucketId: string;
1616
- mspId: string;
1617
- proofOfInclusion: string;
1618
- };
1619
- BspChallengeCycleInitialised: {
1620
- who: string;
1621
- bspId: string;
1622
- };
1623
- MoveBucketRequestExpired: {
1624
- bucketId: string;
1625
- };
1626
- MoveBucketAccepted: {
1627
- bucketId: string;
1628
- oldMspId: string;
1629
- newMspId: string;
1630
- valuePropId: string;
1631
- };
1632
- MoveBucketRejected: {
1633
- bucketId: string;
1634
- oldMspId: string;
1635
- newMspId: string;
1636
- };
1637
- MspStoppedStoringBucket: {
1638
- mspId: string;
1639
- owner: string;
1640
- bucketId: string;
1641
- };
1642
- FailedToGetMspOfBucket: {
1643
- bucketId: string;
1644
- error: string;
1645
- };
1646
- FailedToDecreaseMspUsedCapacity: {
1647
- user: string;
1648
- mspId: string;
1649
- fileKey: string;
1650
- fileSize: string;
1651
- error: string;
1652
- };
1653
- UsedCapacityShouldBeZero: {
1654
- actualUsedCapacity: string;
1655
- };
1656
- FailedToReleaseStorageRequestCreationDeposit: {
1657
- fileKey: string;
1658
- owner: string;
1659
- amountToReturn: string;
1660
- error: string;
1661
- };
1662
- FailedToTransferDepositFundsToBsp: {
1663
- fileKey: string;
1664
- owner: string;
1665
- bspId: string;
1666
- amountToTransfer: string;
1667
- error: string;
1668
- };
1669
1624
  FileDeletionRequested: {
1670
1625
  signedDeleteIntention: string;
1671
1626
  signature: string;
@@ -1685,13 +1640,26 @@ declare const _default: {
1685
1640
  oldRoot: string;
1686
1641
  newRoot: string;
1687
1642
  };
1688
- IncompleteStorageRequest: {
1643
+ UsedCapacityShouldBeZero: {
1644
+ actualUsedCapacity: string;
1645
+ };
1646
+ FailedToReleaseStorageRequestCreationDeposit: {
1689
1647
  fileKey: string;
1648
+ owner: string;
1649
+ amountToReturn: string;
1650
+ error: string;
1651
+ };
1652
+ UserOperationPauseFlagsUpdated: {
1653
+ _alias: {
1654
+ new_: string;
1655
+ };
1656
+ old: string;
1657
+ new_: string;
1690
1658
  };
1691
1659
  };
1692
1660
  };
1693
1661
  /**
1694
- * Lookup153: shp_file_metadata::FileMetadata
1662
+ * Lookup154: shp_file_metadata::FileMetadata
1695
1663
  **/
1696
1664
  ShpFileMetadataFileMetadata: {
1697
1665
  owner: string;
@@ -1701,39 +1669,30 @@ declare const _default: {
1701
1669
  fingerprint: string;
1702
1670
  };
1703
1671
  /**
1704
- * Lookup154: shp_file_metadata::Fingerprint
1672
+ * Lookup155: shp_file_metadata::Fingerprint
1705
1673
  **/
1706
1674
  ShpFileMetadataFingerprint: string;
1707
1675
  /**
1708
- * Lookup159: pallet_file_system::types::RejectedStorageRequestReason
1676
+ * Lookup156: pallet_file_system::types::RejectedStorageRequestReason
1709
1677
  **/
1710
1678
  PalletFileSystemRejectedStorageRequestReason: {
1711
1679
  _enum: string[];
1712
1680
  };
1713
1681
  /**
1714
- * Lookup160: pallet_file_system::types::EitherAccountIdOrMspId<T>
1715
- **/
1716
- PalletFileSystemEitherAccountIdOrMspId: {
1717
- _enum: {
1718
- AccountId: string;
1719
- MspId: string;
1720
- };
1721
- };
1722
- /**
1723
- * Lookup162: pallet_file_system::types::FileOperationIntention<T>
1682
+ * Lookup161: pallet_file_system::types::FileOperationIntention<T>
1724
1683
  **/
1725
1684
  PalletFileSystemFileOperationIntention: {
1726
1685
  fileKey: string;
1727
1686
  operation: string;
1728
1687
  };
1729
1688
  /**
1730
- * Lookup163: pallet_file_system::types::FileOperation
1689
+ * Lookup162: pallet_file_system::types::FileOperation
1731
1690
  **/
1732
1691
  PalletFileSystemFileOperation: {
1733
1692
  _enum: string[];
1734
1693
  };
1735
1694
  /**
1736
- * Lookup164: sp_runtime::MultiSignature
1695
+ * Lookup163: sp_runtime::MultiSignature
1737
1696
  **/
1738
1697
  SpRuntimeMultiSignature: {
1739
1698
  _enum: {
@@ -3743,6 +3702,9 @@ declare const _default: {
3743
3702
  bspId: string;
3744
3703
  forestProof: string;
3745
3704
  };
3705
+ set_user_operation_pause_flags: {
3706
+ newFlags: string;
3707
+ };
3746
3708
  };
3747
3709
  };
3748
3710
  /**
@@ -4494,7 +4456,7 @@ declare const _default: {
4494
4456
  location: string;
4495
4457
  fingerprint: string;
4496
4458
  size_: string;
4497
- msp: string;
4459
+ mspStatus: string;
4498
4460
  userPeerIds: string;
4499
4461
  bspsRequired: string;
4500
4462
  bspsConfirmed: string;
@@ -4502,13 +4464,24 @@ declare const _default: {
4502
4464
  depositPaid: string;
4503
4465
  };
4504
4466
  /**
4505
- * Lookup488: pallet_file_system::types::StorageRequestBspsMetadata<T>
4467
+ * Lookup486: pallet_file_system::types::MspStorageRequestStatus<T>
4468
+ **/
4469
+ PalletFileSystemMspStorageRequestStatus: {
4470
+ _enum: {
4471
+ None: string;
4472
+ Pending: string;
4473
+ AcceptedNewFile: string;
4474
+ AcceptedExistingFile: string;
4475
+ };
4476
+ };
4477
+ /**
4478
+ * Lookup487: pallet_file_system::types::StorageRequestBspsMetadata<T>
4506
4479
  **/
4507
4480
  PalletFileSystemStorageRequestBspsMetadata: {
4508
4481
  confirmed: string;
4509
4482
  };
4510
4483
  /**
4511
- * Lookup490: pallet_file_system::types::PendingFileDeletionRequest<T>
4484
+ * Lookup489: pallet_file_system::types::PendingFileDeletionRequest<T>
4512
4485
  **/
4513
4486
  PalletFileSystemPendingFileDeletionRequest: {
4514
4487
  user: string;
@@ -4519,7 +4492,7 @@ declare const _default: {
4519
4492
  queuePriorityChallenge: string;
4520
4493
  };
4521
4494
  /**
4522
- * Lookup492: pallet_file_system::types::PendingStopStoringRequest<T>
4495
+ * Lookup491: pallet_file_system::types::PendingStopStoringRequest<T>
4523
4496
  **/
4524
4497
  PalletFileSystemPendingStopStoringRequest: {
4525
4498
  tickWhenRequested: string;
@@ -4527,7 +4500,7 @@ declare const _default: {
4527
4500
  fileSize: string;
4528
4501
  };
4529
4502
  /**
4530
- * Lookup493: pallet_file_system::types::MoveBucketRequestMetadata<T>
4503
+ * Lookup492: pallet_file_system::types::MoveBucketRequestMetadata<T>
4531
4504
  **/
4532
4505
  PalletFileSystemMoveBucketRequestMetadata: {
4533
4506
  requester: string;
@@ -4535,7 +4508,7 @@ declare const _default: {
4535
4508
  newValuePropId: string;
4536
4509
  };
4537
4510
  /**
4538
- * Lookup494: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4511
+ * Lookup493: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
4539
4512
  **/
4540
4513
  PalletFileSystemIncompleteStorageRequestMetadata: {
4541
4514
  owner: string;
@@ -4547,26 +4520,26 @@ declare const _default: {
4547
4520
  pendingBucketRemoval: string;
4548
4521
  };
4549
4522
  /**
4550
- * Lookup496: pallet_file_system::pallet::Error<T>
4523
+ * Lookup495: pallet_file_system::pallet::Error<T>
4551
4524
  **/
4552
4525
  PalletFileSystemError: {
4553
4526
  _enum: string[];
4554
4527
  };
4555
4528
  /**
4556
- * Lookup498: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4529
+ * Lookup497: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
4557
4530
  **/
4558
4531
  PalletProofsDealerProofSubmissionRecord: {
4559
4532
  lastTickProven: string;
4560
4533
  nextTickToSubmitProofFor: string;
4561
4534
  };
4562
4535
  /**
4563
- * Lookup505: pallet_proofs_dealer::pallet::Error<T>
4536
+ * Lookup504: pallet_proofs_dealer::pallet::Error<T>
4564
4537
  **/
4565
4538
  PalletProofsDealerError: {
4566
4539
  _enum: string[];
4567
4540
  };
4568
4541
  /**
4569
- * Lookup508: pallet_payment_streams::types::FixedRatePaymentStream<T>
4542
+ * Lookup507: pallet_payment_streams::types::FixedRatePaymentStream<T>
4570
4543
  **/
4571
4544
  PalletPaymentStreamsFixedRatePaymentStream: {
4572
4545
  rate: string;
@@ -4575,7 +4548,7 @@ declare const _default: {
4575
4548
  outOfFundsTick: string;
4576
4549
  };
4577
4550
  /**
4578
- * Lookup509: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4551
+ * Lookup508: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4579
4552
  **/
4580
4553
  PalletPaymentStreamsDynamicRatePaymentStream: {
4581
4554
  amountProvided: string;
@@ -4584,26 +4557,26 @@ declare const _default: {
4584
4557
  outOfFundsTick: string;
4585
4558
  };
4586
4559
  /**
4587
- * Lookup510: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4560
+ * Lookup509: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4588
4561
  **/
4589
4562
  PalletPaymentStreamsProviderLastChargeableInfo: {
4590
4563
  lastChargeableTick: string;
4591
4564
  priceIndex: string;
4592
4565
  };
4593
4566
  /**
4594
- * Lookup511: pallet_payment_streams::pallet::Error<T>
4567
+ * Lookup510: pallet_payment_streams::pallet::Error<T>
4595
4568
  **/
4596
4569
  PalletPaymentStreamsError: {
4597
4570
  _enum: string[];
4598
4571
  };
4599
4572
  /**
4600
- * Lookup512: pallet_bucket_nfts::pallet::Error<T>
4573
+ * Lookup511: pallet_bucket_nfts::pallet::Error<T>
4601
4574
  **/
4602
4575
  PalletBucketNftsError: {
4603
4576
  _enum: string[];
4604
4577
  };
4605
4578
  /**
4606
- * Lookup513: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4579
+ * Lookup512: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4607
4580
  **/
4608
4581
  PalletNftsCollectionDetails: {
4609
4582
  owner: string;
@@ -4614,13 +4587,13 @@ declare const _default: {
4614
4587
  attributes: string;
4615
4588
  };
4616
4589
  /**
4617
- * Lookup518: pallet_nfts::types::CollectionRole
4590
+ * Lookup517: pallet_nfts::types::CollectionRole
4618
4591
  **/
4619
4592
  PalletNftsCollectionRole: {
4620
4593
  _enum: string[];
4621
4594
  };
4622
4595
  /**
4623
- * Lookup519: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
4596
+ * Lookup518: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
4624
4597
  **/
4625
4598
  PalletNftsItemDetails: {
4626
4599
  owner: string;
@@ -4628,42 +4601,42 @@ declare const _default: {
4628
4601
  deposit: string;
4629
4602
  };
4630
4603
  /**
4631
- * Lookup520: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
4604
+ * Lookup519: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
4632
4605
  **/
4633
4606
  PalletNftsItemDeposit: {
4634
4607
  account: string;
4635
4608
  amount: string;
4636
4609
  };
4637
4610
  /**
4638
- * Lookup525: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
4611
+ * Lookup524: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
4639
4612
  **/
4640
4613
  PalletNftsCollectionMetadata: {
4641
4614
  deposit: string;
4642
4615
  data: string;
4643
4616
  };
4644
4617
  /**
4645
- * Lookup526: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
4618
+ * Lookup525: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
4646
4619
  **/
4647
4620
  PalletNftsItemMetadata: {
4648
4621
  deposit: string;
4649
4622
  data: string;
4650
4623
  };
4651
4624
  /**
4652
- * Lookup527: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
4625
+ * Lookup526: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
4653
4626
  **/
4654
4627
  PalletNftsItemMetadataDeposit: {
4655
4628
  account: string;
4656
4629
  amount: string;
4657
4630
  };
4658
4631
  /**
4659
- * Lookup530: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
4632
+ * Lookup529: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
4660
4633
  **/
4661
4634
  PalletNftsAttributeDeposit: {
4662
4635
  account: string;
4663
4636
  amount: string;
4664
4637
  };
4665
4638
  /**
4666
- * Lookup534: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
4639
+ * Lookup533: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
4667
4640
  **/
4668
4641
  PalletNftsPendingSwap: {
4669
4642
  desiredCollection: string;
@@ -4672,63 +4645,63 @@ declare const _default: {
4672
4645
  deadline: string;
4673
4646
  };
4674
4647
  /**
4675
- * Lookup536: pallet_nfts::types::PalletFeature
4648
+ * Lookup535: pallet_nfts::types::PalletFeature
4676
4649
  **/
4677
4650
  PalletNftsPalletFeature: {
4678
4651
  _enum: string[];
4679
4652
  };
4680
4653
  /**
4681
- * Lookup537: pallet_nfts::pallet::Error<T, I>
4654
+ * Lookup536: pallet_nfts::pallet::Error<T, I>
4682
4655
  **/
4683
4656
  PalletNftsError: {
4684
4657
  _enum: string[];
4685
4658
  };
4686
4659
  /**
4687
- * Lookup540: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
4660
+ * Lookup539: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
4688
4661
  **/
4689
4662
  FrameSystemExtensionsCheckNonZeroSender: string;
4690
4663
  /**
4691
- * Lookup541: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
4664
+ * Lookup540: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
4692
4665
  **/
4693
4666
  FrameSystemExtensionsCheckSpecVersion: string;
4694
4667
  /**
4695
- * Lookup542: frame_system::extensions::check_tx_version::CheckTxVersion<T>
4668
+ * Lookup541: frame_system::extensions::check_tx_version::CheckTxVersion<T>
4696
4669
  **/
4697
4670
  FrameSystemExtensionsCheckTxVersion: string;
4698
4671
  /**
4699
- * Lookup543: frame_system::extensions::check_genesis::CheckGenesis<T>
4672
+ * Lookup542: frame_system::extensions::check_genesis::CheckGenesis<T>
4700
4673
  **/
4701
4674
  FrameSystemExtensionsCheckGenesis: string;
4702
4675
  /**
4703
- * Lookup546: frame_system::extensions::check_nonce::CheckNonce<T>
4676
+ * Lookup545: frame_system::extensions::check_nonce::CheckNonce<T>
4704
4677
  **/
4705
4678
  FrameSystemExtensionsCheckNonce: string;
4706
4679
  /**
4707
- * Lookup547: frame_system::extensions::check_weight::CheckWeight<T>
4680
+ * Lookup546: frame_system::extensions::check_weight::CheckWeight<T>
4708
4681
  **/
4709
4682
  FrameSystemExtensionsCheckWeight: string;
4710
4683
  /**
4711
- * Lookup548: pallet_transaction_payment::ChargeTransactionPayment<T>
4684
+ * Lookup547: pallet_transaction_payment::ChargeTransactionPayment<T>
4712
4685
  **/
4713
4686
  PalletTransactionPaymentChargeTransactionPayment: string;
4714
4687
  /**
4715
- * Lookup549: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
4688
+ * Lookup548: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
4716
4689
  **/
4717
4690
  CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: string;
4718
4691
  /**
4719
- * Lookup550: frame_metadata_hash_extension::CheckMetadataHash<T>
4692
+ * Lookup549: frame_metadata_hash_extension::CheckMetadataHash<T>
4720
4693
  **/
4721
4694
  FrameMetadataHashExtensionCheckMetadataHash: {
4722
4695
  mode: string;
4723
4696
  };
4724
4697
  /**
4725
- * Lookup551: frame_metadata_hash_extension::Mode
4698
+ * Lookup550: frame_metadata_hash_extension::Mode
4726
4699
  **/
4727
4700
  FrameMetadataHashExtensionMode: {
4728
4701
  _enum: string[];
4729
4702
  };
4730
4703
  /**
4731
- * Lookup552: sh_parachain_runtime::Runtime
4704
+ * Lookup551: sh_parachain_runtime::Runtime
4732
4705
  **/
4733
4706
  ShParachainRuntimeRuntime: string;
4734
4707
  };
@@ -1,5 +1,5 @@
1
1
  import "@polkadot/types/types/registry";
2
- import type { CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, CumulusPalletXcmCall, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesCoreAggregateMessageOrigin, CumulusPrimitivesParachainInherentParachainInherentData, CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim, FrameMetadataHashExtensionCheckMetadataHash, FrameMetadataHashExtensionMode, FrameSupportDispatchDispatchClass, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportMessagesProcessMessageError, FrameSupportTokensMiscBalanceStatus, FrameSupportTokensMiscIdAmount, FrameSystemAccountInfo, FrameSystemCall, FrameSystemCodeUpgradeAuthorization, FrameSystemDispatchEventInfo, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesAdjustmentDirection, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletBucketNftsCall, PalletBucketNftsError, PalletBucketNftsEvent, PalletCollatorSelectionCall, PalletCollatorSelectionCandidateInfo, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletFileSystemBucketMoveRequestResponse, PalletFileSystemCall, PalletFileSystemEitherAccountIdOrMspId, PalletFileSystemError, PalletFileSystemEvent, PalletFileSystemFileDeletionRequest, PalletFileSystemFileKeyWithProof, PalletFileSystemFileOperation, PalletFileSystemFileOperationIntention, PalletFileSystemHoldReason, PalletFileSystemIncompleteStorageRequestMetadata, PalletFileSystemMoveBucketRequestMetadata, PalletFileSystemPendingFileDeletionRequest, PalletFileSystemPendingStopStoringRequest, PalletFileSystemRejectedStorageRequest, PalletFileSystemRejectedStorageRequestReason, PalletFileSystemReplicationTarget, PalletFileSystemStorageRequestBspsMetadata, PalletFileSystemStorageRequestMetadata, PalletFileSystemStorageRequestMspAcceptedFileKeys, PalletFileSystemStorageRequestMspBucketResponse, PalletMessageQueueBookState, PalletMessageQueueCall, PalletMessageQueueError, PalletMessageQueueEvent, PalletMessageQueueNeighbours, PalletMessageQueuePage, PalletNftsAttributeDeposit, PalletNftsAttributeNamespace, PalletNftsCall, PalletNftsCancelAttributesApprovalWitness, PalletNftsCollectionConfig, PalletNftsCollectionDetails, PalletNftsCollectionMetadata, PalletNftsCollectionRole, PalletNftsCollectionSetting, PalletNftsDestroyWitness, PalletNftsError, PalletNftsEvent, PalletNftsItemConfig, PalletNftsItemDeposit, PalletNftsItemDetails, PalletNftsItemMetadata, PalletNftsItemMetadataDeposit, PalletNftsItemSetting, PalletNftsItemTip, PalletNftsMintSettings, PalletNftsMintType, PalletNftsMintWitness, PalletNftsPalletAttributes, PalletNftsPalletFeature, PalletNftsPendingSwap, PalletNftsPreSignedAttributes, PalletNftsPreSignedMint, PalletNftsPriceDirection, PalletNftsPriceWithDirection, PalletParametersCall, PalletParametersEvent, PalletPaymentStreamsCall, PalletPaymentStreamsDynamicRatePaymentStream, PalletPaymentStreamsError, PalletPaymentStreamsEvent, PalletPaymentStreamsFixedRatePaymentStream, PalletPaymentStreamsHoldReason, PalletPaymentStreamsProviderLastChargeableInfo, PalletProofsDealerCall, PalletProofsDealerCustomChallenge, PalletProofsDealerError, PalletProofsDealerEvent, PalletProofsDealerKeyProof, PalletProofsDealerProof, PalletProofsDealerProofSubmissionRecord, PalletRandomnessCall, PalletRandomnessEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStorageProvidersBackupStorageProvider, PalletStorageProvidersBucket, PalletStorageProvidersCall, PalletStorageProvidersError, PalletStorageProvidersEvent, PalletStorageProvidersHoldReason, PalletStorageProvidersMainStorageProvider, PalletStorageProvidersMainStorageProviderSignUpRequest, PalletStorageProvidersSignUpRequest, PalletStorageProvidersSignUpRequestSpParams, PalletStorageProvidersStorageProviderId, PalletStorageProvidersTopUpMetadata, PalletStorageProvidersValueProposition, PalletStorageProvidersValuePropositionWithId, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV8AbridgedHostConfiguration, PolkadotPrimitivesV8AbridgedHrmpChannel, PolkadotPrimitivesV8AsyncBackingAsyncBackingParams, PolkadotPrimitivesV8PersistedValidationData, PolkadotPrimitivesV8UpgradeGoAhead, PolkadotPrimitivesV8UpgradeRestriction, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate, ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters, ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey, ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue, ShParachainRuntimeRuntime, ShParachainRuntimeRuntimeHoldReason, ShParachainRuntimeSessionKeys, ShpFileKeyVerifierFileKeyProof, ShpFileMetadataFileMetadata, ShpFileMetadataFingerprint, ShpTraitsTrieAddMutation, ShpTraitsTrieMutation, ShpTraitsTrieRemoveMutation, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeProvingTrieTrieError, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpTrieStorageProofCompactProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingParachainInfoCall, StagingXcmExecutorAssetTransferTransferType, StagingXcmV3MultiLocation, StagingXcmV4Asset, StagingXcmV4AssetAssetFilter, StagingXcmV4AssetAssetId, StagingXcmV4AssetAssetInstance, StagingXcmV4AssetAssets, StagingXcmV4AssetFungibility, StagingXcmV4AssetWildAsset, StagingXcmV4AssetWildFungibility, StagingXcmV4Instruction, StagingXcmV4Junction, StagingXcmV4JunctionNetworkId, StagingXcmV4Junctions, StagingXcmV4Location, StagingXcmV4PalletInfo, StagingXcmV4QueryResponseInfo, StagingXcmV4Response, StagingXcmV4Xcm, StagingXcmV5Asset, StagingXcmV5AssetAssetFilter, StagingXcmV5AssetAssetId, StagingXcmV5AssetAssetInstance, StagingXcmV5AssetAssetTransferFilter, StagingXcmV5AssetAssets, StagingXcmV5AssetFungibility, StagingXcmV5AssetWildAsset, StagingXcmV5AssetWildFungibility, StagingXcmV5Hint, StagingXcmV5Instruction, StagingXcmV5Junction, StagingXcmV5JunctionNetworkId, StagingXcmV5Junctions, StagingXcmV5Location, StagingXcmV5PalletInfo, StagingXcmV5QueryResponseInfo, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmDoubleEncoded, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3OriginKind, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3WeightLimit, XcmV3Xcm, XcmV5TraitsError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup";
2
+ import type { CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, CumulusPalletXcmCall, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesCoreAggregateMessageOrigin, CumulusPrimitivesParachainInherentParachainInherentData, CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim, FrameMetadataHashExtensionCheckMetadataHash, FrameMetadataHashExtensionMode, FrameSupportDispatchDispatchClass, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportMessagesProcessMessageError, FrameSupportTokensMiscBalanceStatus, FrameSupportTokensMiscIdAmount, FrameSystemAccountInfo, FrameSystemCall, FrameSystemCodeUpgradeAuthorization, FrameSystemDispatchEventInfo, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesAdjustmentDirection, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletBucketNftsCall, PalletBucketNftsError, PalletBucketNftsEvent, PalletCollatorSelectionCall, PalletCollatorSelectionCandidateInfo, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletFileSystemBucketMoveRequestResponse, PalletFileSystemCall, PalletFileSystemError, PalletFileSystemEvent, PalletFileSystemFileDeletionRequest, PalletFileSystemFileKeyWithProof, PalletFileSystemFileOperation, PalletFileSystemFileOperationIntention, PalletFileSystemHoldReason, PalletFileSystemIncompleteStorageRequestMetadata, PalletFileSystemMoveBucketRequestMetadata, PalletFileSystemMspStorageRequestStatus, PalletFileSystemPendingFileDeletionRequest, PalletFileSystemPendingStopStoringRequest, PalletFileSystemRejectedStorageRequest, PalletFileSystemRejectedStorageRequestReason, PalletFileSystemReplicationTarget, PalletFileSystemStorageRequestBspsMetadata, PalletFileSystemStorageRequestMetadata, PalletFileSystemStorageRequestMspAcceptedFileKeys, PalletFileSystemStorageRequestMspBucketResponse, PalletMessageQueueBookState, PalletMessageQueueCall, PalletMessageQueueError, PalletMessageQueueEvent, PalletMessageQueueNeighbours, PalletMessageQueuePage, PalletNftsAttributeDeposit, PalletNftsAttributeNamespace, PalletNftsCall, PalletNftsCancelAttributesApprovalWitness, PalletNftsCollectionConfig, PalletNftsCollectionDetails, PalletNftsCollectionMetadata, PalletNftsCollectionRole, PalletNftsCollectionSetting, PalletNftsDestroyWitness, PalletNftsError, PalletNftsEvent, PalletNftsItemConfig, PalletNftsItemDeposit, PalletNftsItemDetails, PalletNftsItemMetadata, PalletNftsItemMetadataDeposit, PalletNftsItemSetting, PalletNftsItemTip, PalletNftsMintSettings, PalletNftsMintType, PalletNftsMintWitness, PalletNftsPalletAttributes, PalletNftsPalletFeature, PalletNftsPendingSwap, PalletNftsPreSignedAttributes, PalletNftsPreSignedMint, PalletNftsPriceDirection, PalletNftsPriceWithDirection, PalletParametersCall, PalletParametersEvent, PalletPaymentStreamsCall, PalletPaymentStreamsDynamicRatePaymentStream, PalletPaymentStreamsError, PalletPaymentStreamsEvent, PalletPaymentStreamsFixedRatePaymentStream, PalletPaymentStreamsHoldReason, PalletPaymentStreamsProviderLastChargeableInfo, PalletProofsDealerCall, PalletProofsDealerCustomChallenge, PalletProofsDealerError, PalletProofsDealerEvent, PalletProofsDealerKeyProof, PalletProofsDealerProof, PalletProofsDealerProofSubmissionRecord, PalletRandomnessCall, PalletRandomnessEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStorageProvidersBackupStorageProvider, PalletStorageProvidersBucket, PalletStorageProvidersCall, PalletStorageProvidersError, PalletStorageProvidersEvent, PalletStorageProvidersHoldReason, PalletStorageProvidersMainStorageProvider, PalletStorageProvidersMainStorageProviderSignUpRequest, PalletStorageProvidersSignUpRequest, PalletStorageProvidersSignUpRequestSpParams, PalletStorageProvidersStorageProviderId, PalletStorageProvidersTopUpMetadata, PalletStorageProvidersValueProposition, PalletStorageProvidersValuePropositionWithId, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV8AbridgedHostConfiguration, PolkadotPrimitivesV8AbridgedHrmpChannel, PolkadotPrimitivesV8AsyncBackingAsyncBackingParams, PolkadotPrimitivesV8PersistedValidationData, PolkadotPrimitivesV8UpgradeGoAhead, PolkadotPrimitivesV8UpgradeRestriction, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor, ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate, ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters, ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey, ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue, ShParachainRuntimeRuntime, ShParachainRuntimeRuntimeHoldReason, ShParachainRuntimeSessionKeys, ShpFileKeyVerifierFileKeyProof, ShpFileMetadataFileMetadata, ShpFileMetadataFingerprint, ShpTraitsTrieAddMutation, ShpTraitsTrieMutation, ShpTraitsTrieRemoveMutation, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeProvingTrieTrieError, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpTrieStorageProofCompactProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingParachainInfoCall, StagingXcmExecutorAssetTransferTransferType, StagingXcmV3MultiLocation, StagingXcmV4Asset, StagingXcmV4AssetAssetFilter, StagingXcmV4AssetAssetId, StagingXcmV4AssetAssetInstance, StagingXcmV4AssetAssets, StagingXcmV4AssetFungibility, StagingXcmV4AssetWildAsset, StagingXcmV4AssetWildFungibility, StagingXcmV4Instruction, StagingXcmV4Junction, StagingXcmV4JunctionNetworkId, StagingXcmV4Junctions, StagingXcmV4Location, StagingXcmV4PalletInfo, StagingXcmV4QueryResponseInfo, StagingXcmV4Response, StagingXcmV4Xcm, StagingXcmV5Asset, StagingXcmV5AssetAssetFilter, StagingXcmV5AssetAssetId, StagingXcmV5AssetAssetInstance, StagingXcmV5AssetAssetTransferFilter, StagingXcmV5AssetAssets, StagingXcmV5AssetFungibility, StagingXcmV5AssetWildAsset, StagingXcmV5AssetWildFungibility, StagingXcmV5Hint, StagingXcmV5Instruction, StagingXcmV5Junction, StagingXcmV5JunctionNetworkId, StagingXcmV5Junctions, StagingXcmV5Location, StagingXcmV5PalletInfo, StagingXcmV5QueryResponseInfo, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmDoubleEncoded, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3OriginKind, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3WeightLimit, XcmV3Xcm, XcmV5TraitsError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup";
3
3
  declare module "@polkadot/types/types/registry" {
4
4
  interface InterfaceTypes {
5
5
  CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
@@ -67,7 +67,6 @@ declare module "@polkadot/types/types/registry" {
67
67
  PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
68
68
  PalletFileSystemBucketMoveRequestResponse: PalletFileSystemBucketMoveRequestResponse;
69
69
  PalletFileSystemCall: PalletFileSystemCall;
70
- PalletFileSystemEitherAccountIdOrMspId: PalletFileSystemEitherAccountIdOrMspId;
71
70
  PalletFileSystemError: PalletFileSystemError;
72
71
  PalletFileSystemEvent: PalletFileSystemEvent;
73
72
  PalletFileSystemFileDeletionRequest: PalletFileSystemFileDeletionRequest;
@@ -77,6 +76,7 @@ declare module "@polkadot/types/types/registry" {
77
76
  PalletFileSystemHoldReason: PalletFileSystemHoldReason;
78
77
  PalletFileSystemIncompleteStorageRequestMetadata: PalletFileSystemIncompleteStorageRequestMetadata;
79
78
  PalletFileSystemMoveBucketRequestMetadata: PalletFileSystemMoveBucketRequestMetadata;
79
+ PalletFileSystemMspStorageRequestStatus: PalletFileSystemMspStorageRequestStatus;
80
80
  PalletFileSystemPendingFileDeletionRequest: PalletFileSystemPendingFileDeletionRequest;
81
81
  PalletFileSystemPendingStopStoringRequest: PalletFileSystemPendingStopStoringRequest;
82
82
  PalletFileSystemRejectedStorageRequest: PalletFileSystemRejectedStorageRequest;
@@ -1,5 +1,4 @@
1
- import type { Bytes, Enum, Null, Option, Struct, U8aFixed, Vec, bool, u32, u64 } from "@polkadot/types-codec";
2
- import type { ITuple } from "@polkadot/types-codec/types";
1
+ import type { Bytes, Enum, Null, Struct, U8aFixed, Vec, bool, u32, u64 } from "@polkadot/types-codec";
3
2
  import type { AccountId, BalanceOf, BlockNumber, H256 } from "@polkadot/types/interfaces/runtime";
4
3
  /** @name AddFilesToForestStorageResult */
5
4
  export interface AddFilesToForestStorageResult extends Enum {
@@ -157,6 +156,17 @@ export interface MainStorageProviderId extends H256 {
157
156
  /** @name MerklePatriciaRoot */
158
157
  export interface MerklePatriciaRoot extends H256 {
159
158
  }
159
+ /** @name MspStorageRequestStatus */
160
+ export interface MspStorageRequestStatus extends Enum {
161
+ readonly isNone: boolean;
162
+ readonly isPending: boolean;
163
+ readonly asPending: ProviderId;
164
+ readonly isAcceptedNewFile: boolean;
165
+ readonly asAcceptedNewFile: ProviderId;
166
+ readonly isAcceptedExistingFile: boolean;
167
+ readonly asAcceptedExistingFile: ProviderId;
168
+ readonly type: "None" | "Pending" | "AcceptedNewFile" | "AcceptedExistingFile";
169
+ }
160
170
  /** @name Multiaddresses */
161
171
  export interface Multiaddresses extends Vec<Bytes> {
162
172
  }
@@ -305,8 +315,8 @@ export interface StorageRequestMetadata extends Struct {
305
315
  readonly location: Bytes;
306
316
  readonly fingerprint: U8aFixed;
307
317
  readonly file_size: StorageDataUnit;
308
- readonly msp: Option<ITuple<[ProviderId, bool]>>;
309
- readonly user_peer_ids: Vec<ProviderId>;
318
+ readonly msp_status: MspStorageRequestStatus;
319
+ readonly user_peer_ids: Vec<Bytes>;
310
320
  readonly bsps_required: u32;
311
321
  readonly bsps_confirmed: u32;
312
322
  readonly bsps_volunteered: u32;