@polymeshassociation/polymesh-sdk 24.0.0-alpha.4 → 24.0.0-alpha.6
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/CHANGELOG.md +2 -2
- package/api/client/Network.d.ts +2 -2
- package/api/client/Network.d.ts.map +1 -1
- package/api/client/Network.js +6 -4
- package/api/client/Network.js.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.d.ts +13 -3
- package/api/entities/Asset/NonFungible/Nft.d.ts.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.js +42 -12
- package/api/entities/Asset/NonFungible/Nft.js.map +1 -1
- package/generated/types.d.ts +2 -1
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +1 -0
- package/generated/types.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.0.0-alpha.6.tgz +0 -0
- package/package.json +1 -1
- package/polkadot/augment-api-errors.d.ts +4 -6
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +0 -14
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +4 -10
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +17 -92
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +306 -342
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +316 -346
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/registry.d.ts +4 -7
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/types-lookup.d.ts +308 -339
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/types/index.d.ts +5 -0
- package/types/index.d.ts.map +1 -1
- package/types/index.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.0.0-alpha.4.tgz +0 -0
|
@@ -1212,17 +1212,7 @@ declare module "./types-lookup.ts" {
|
|
|
1212
1212
|
readonly who: AccountId32;
|
|
1213
1213
|
readonly value: Compact<u128>;
|
|
1214
1214
|
}
|
|
1215
|
-
/** @name
|
|
1216
|
-
interface PalletSudoRawEvent extends Enum {
|
|
1217
|
-
readonly isSudid: boolean;
|
|
1218
|
-
readonly asSudid: Result<Null, SpRuntimeDispatchError>;
|
|
1219
|
-
readonly isKeyChanged: boolean;
|
|
1220
|
-
readonly asKeyChanged: Option<AccountId32>;
|
|
1221
|
-
readonly isSudoAsDone: boolean;
|
|
1222
|
-
readonly asSudoAsDone: Result<Null, SpRuntimeDispatchError>;
|
|
1223
|
-
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
|
|
1224
|
-
}
|
|
1225
|
-
/** @name PolymeshCommonUtilitiesAssetRawEvent (123) */
|
|
1215
|
+
/** @name PolymeshCommonUtilitiesAssetRawEvent (122) */
|
|
1226
1216
|
interface PolymeshCommonUtilitiesAssetRawEvent extends Enum {
|
|
1227
1217
|
readonly isAssetCreated: boolean;
|
|
1228
1218
|
readonly asAssetCreated: ITuple<[
|
|
@@ -1389,7 +1379,7 @@ declare module "./types-lookup.ts" {
|
|
|
1389
1379
|
]>;
|
|
1390
1380
|
readonly type: 'AssetCreated' | 'IdentifiersUpdated' | 'DivisibilityChanged' | 'TransferWithData' | 'IsIssuable' | 'TickerRegistered' | 'TickerTransferred' | 'AssetOwnershipTransferred' | 'AssetFrozen' | 'AssetUnfrozen' | 'AssetRenamed' | 'FundingRoundSet' | 'DocumentAdded' | 'DocumentRemoved' | 'ExtensionRemoved' | 'ControllerTransfer' | 'CustomAssetTypeExists' | 'CustomAssetTypeRegistered' | 'SetAssetMetadataValue' | 'SetAssetMetadataValueDetails' | 'RegisterAssetMetadataLocalType' | 'RegisterAssetMetadataGlobalType' | 'AssetTypeChanged' | 'LocalMetadataKeyDeleted' | 'MetadataValueDeleted' | 'AssetBalanceUpdated' | 'AssetAffirmationExemption' | 'RemoveAssetAffirmationExemption' | 'PreApprovedAsset' | 'RemovePreApprovedAsset';
|
|
1391
1381
|
}
|
|
1392
|
-
/** @name PolymeshPrimitivesAssetAssetType (
|
|
1382
|
+
/** @name PolymeshPrimitivesAssetAssetType (123) */
|
|
1393
1383
|
interface PolymeshPrimitivesAssetAssetType extends Enum {
|
|
1394
1384
|
readonly isEquityCommon: boolean;
|
|
1395
1385
|
readonly isEquityPreferred: boolean;
|
|
@@ -1407,7 +1397,7 @@ declare module "./types-lookup.ts" {
|
|
|
1407
1397
|
readonly asNonFungible: PolymeshPrimitivesAssetNonFungibleType;
|
|
1408
1398
|
readonly type: 'EquityCommon' | 'EquityPreferred' | 'Commodity' | 'FixedIncome' | 'Reit' | 'Fund' | 'RevenueShareAgreement' | 'StructuredProduct' | 'Derivative' | 'Custom' | 'StableCoin' | 'NonFungible';
|
|
1409
1399
|
}
|
|
1410
|
-
/** @name PolymeshPrimitivesAssetNonFungibleType (
|
|
1400
|
+
/** @name PolymeshPrimitivesAssetNonFungibleType (125) */
|
|
1411
1401
|
interface PolymeshPrimitivesAssetNonFungibleType extends Enum {
|
|
1412
1402
|
readonly isDerivative: boolean;
|
|
1413
1403
|
readonly isFixedIncome: boolean;
|
|
@@ -1416,7 +1406,7 @@ declare module "./types-lookup.ts" {
|
|
|
1416
1406
|
readonly asCustom: u32;
|
|
1417
1407
|
readonly type: 'Derivative' | 'FixedIncome' | 'Invoice' | 'Custom';
|
|
1418
1408
|
}
|
|
1419
|
-
/** @name PolymeshPrimitivesAssetIdentifier (
|
|
1409
|
+
/** @name PolymeshPrimitivesAssetIdentifier (128) */
|
|
1420
1410
|
interface PolymeshPrimitivesAssetIdentifier extends Enum {
|
|
1421
1411
|
readonly isCusip: boolean;
|
|
1422
1412
|
readonly asCusip: U8aFixed;
|
|
@@ -1430,7 +1420,7 @@ declare module "./types-lookup.ts" {
|
|
|
1430
1420
|
readonly asFigi: U8aFixed;
|
|
1431
1421
|
readonly type: 'Cusip' | 'Cins' | 'Isin' | 'Lei' | 'Figi';
|
|
1432
1422
|
}
|
|
1433
|
-
/** @name PolymeshPrimitivesDocument (
|
|
1423
|
+
/** @name PolymeshPrimitivesDocument (134) */
|
|
1434
1424
|
interface PolymeshPrimitivesDocument extends Struct {
|
|
1435
1425
|
readonly uri: Bytes;
|
|
1436
1426
|
readonly contentHash: PolymeshPrimitivesDocumentHash;
|
|
@@ -1438,7 +1428,7 @@ declare module "./types-lookup.ts" {
|
|
|
1438
1428
|
readonly docType: Option<Bytes>;
|
|
1439
1429
|
readonly filingDate: Option<u64>;
|
|
1440
1430
|
}
|
|
1441
|
-
/** @name PolymeshPrimitivesDocumentHash (
|
|
1431
|
+
/** @name PolymeshPrimitivesDocumentHash (136) */
|
|
1442
1432
|
interface PolymeshPrimitivesDocumentHash extends Enum {
|
|
1443
1433
|
readonly isNone: boolean;
|
|
1444
1434
|
readonly isH512: boolean;
|
|
@@ -1459,12 +1449,12 @@ declare module "./types-lookup.ts" {
|
|
|
1459
1449
|
readonly asH128: U8aFixed;
|
|
1460
1450
|
readonly type: 'None' | 'H512' | 'H384' | 'H320' | 'H256' | 'H224' | 'H192' | 'H160' | 'H128';
|
|
1461
1451
|
}
|
|
1462
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (
|
|
1452
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (147) */
|
|
1463
1453
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail extends Struct {
|
|
1464
1454
|
readonly expire: Option<u64>;
|
|
1465
1455
|
readonly lockStatus: PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus;
|
|
1466
1456
|
}
|
|
1467
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (
|
|
1457
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (148) */
|
|
1468
1458
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus extends Enum {
|
|
1469
1459
|
readonly isUnlocked: boolean;
|
|
1470
1460
|
readonly isLocked: boolean;
|
|
@@ -1472,13 +1462,13 @@ declare module "./types-lookup.ts" {
|
|
|
1472
1462
|
readonly asLockedUntil: u64;
|
|
1473
1463
|
readonly type: 'Unlocked' | 'Locked' | 'LockedUntil';
|
|
1474
1464
|
}
|
|
1475
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (
|
|
1465
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (151) */
|
|
1476
1466
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataSpec extends Struct {
|
|
1477
1467
|
readonly url: Option<Bytes>;
|
|
1478
1468
|
readonly description: Option<Bytes>;
|
|
1479
1469
|
readonly typeDef: Option<Bytes>;
|
|
1480
1470
|
}
|
|
1481
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (
|
|
1471
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (158) */
|
|
1482
1472
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataKey extends Enum {
|
|
1483
1473
|
readonly isGlobal: boolean;
|
|
1484
1474
|
readonly asGlobal: u64;
|
|
@@ -1486,7 +1476,7 @@ declare module "./types-lookup.ts" {
|
|
|
1486
1476
|
readonly asLocal: u64;
|
|
1487
1477
|
readonly type: 'Global' | 'Local';
|
|
1488
1478
|
}
|
|
1489
|
-
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (
|
|
1479
|
+
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (160) */
|
|
1490
1480
|
interface PolymeshPrimitivesPortfolioPortfolioUpdateReason extends Enum {
|
|
1491
1481
|
readonly isIssued: boolean;
|
|
1492
1482
|
readonly asIssued: {
|
|
@@ -1501,7 +1491,7 @@ declare module "./types-lookup.ts" {
|
|
|
1501
1491
|
readonly isControllerTransfer: boolean;
|
|
1502
1492
|
readonly type: 'Issued' | 'Redeemed' | 'Transferred' | 'ControllerTransfer';
|
|
1503
1493
|
}
|
|
1504
|
-
/** @name PalletCorporateActionsDistributionEvent (
|
|
1494
|
+
/** @name PalletCorporateActionsDistributionEvent (163) */
|
|
1505
1495
|
interface PalletCorporateActionsDistributionEvent extends Enum {
|
|
1506
1496
|
readonly isCreated: boolean;
|
|
1507
1497
|
readonly asCreated: ITuple<[
|
|
@@ -1524,15 +1514,15 @@ declare module "./types-lookup.ts" {
|
|
|
1524
1514
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1525
1515
|
readonly type: 'Created' | 'BenefitClaimed' | 'Reclaimed' | 'Removed';
|
|
1526
1516
|
}
|
|
1527
|
-
/** @name PolymeshPrimitivesEventOnly (
|
|
1517
|
+
/** @name PolymeshPrimitivesEventOnly (164) */
|
|
1528
1518
|
interface PolymeshPrimitivesEventOnly extends PolymeshPrimitivesIdentityId {
|
|
1529
1519
|
}
|
|
1530
|
-
/** @name PalletCorporateActionsCaId (
|
|
1520
|
+
/** @name PalletCorporateActionsCaId (165) */
|
|
1531
1521
|
interface PalletCorporateActionsCaId extends Struct {
|
|
1532
1522
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
1533
1523
|
readonly localId: u32;
|
|
1534
1524
|
}
|
|
1535
|
-
/** @name PalletCorporateActionsDistribution (
|
|
1525
|
+
/** @name PalletCorporateActionsDistribution (167) */
|
|
1536
1526
|
interface PalletCorporateActionsDistribution extends Struct {
|
|
1537
1527
|
readonly from: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
1538
1528
|
readonly currency: PolymeshPrimitivesTicker;
|
|
@@ -1543,7 +1533,7 @@ declare module "./types-lookup.ts" {
|
|
|
1543
1533
|
readonly paymentAt: u64;
|
|
1544
1534
|
readonly expiresAt: Option<u64>;
|
|
1545
1535
|
}
|
|
1546
|
-
/** @name PolymeshCommonUtilitiesCheckpointEvent (
|
|
1536
|
+
/** @name PolymeshCommonUtilitiesCheckpointEvent (169) */
|
|
1547
1537
|
interface PolymeshCommonUtilitiesCheckpointEvent extends Enum {
|
|
1548
1538
|
readonly isCheckpointCreated: boolean;
|
|
1549
1539
|
readonly asCheckpointCreated: ITuple<[
|
|
@@ -1571,11 +1561,11 @@ declare module "./types-lookup.ts" {
|
|
|
1571
1561
|
]>;
|
|
1572
1562
|
readonly type: 'CheckpointCreated' | 'MaximumSchedulesComplexityChanged' | 'ScheduleCreated' | 'ScheduleRemoved';
|
|
1573
1563
|
}
|
|
1574
|
-
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (
|
|
1564
|
+
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (172) */
|
|
1575
1565
|
interface PolymeshCommonUtilitiesCheckpointScheduleCheckpoints extends Struct {
|
|
1576
1566
|
readonly pending: BTreeSet<u64>;
|
|
1577
1567
|
}
|
|
1578
|
-
/** @name PolymeshCommonUtilitiesComplianceManagerEvent (
|
|
1568
|
+
/** @name PolymeshCommonUtilitiesComplianceManagerEvent (175) */
|
|
1579
1569
|
interface PolymeshCommonUtilitiesComplianceManagerEvent extends Enum {
|
|
1580
1570
|
readonly isComplianceRequirementCreated: boolean;
|
|
1581
1571
|
readonly asComplianceRequirementCreated: ITuple<[
|
|
@@ -1630,18 +1620,18 @@ declare module "./types-lookup.ts" {
|
|
|
1630
1620
|
]>;
|
|
1631
1621
|
readonly type: 'ComplianceRequirementCreated' | 'ComplianceRequirementRemoved' | 'AssetComplianceReplaced' | 'AssetComplianceReset' | 'AssetComplianceResumed' | 'AssetCompliancePaused' | 'ComplianceRequirementChanged' | 'TrustedDefaultClaimIssuerAdded' | 'TrustedDefaultClaimIssuerRemoved';
|
|
1632
1622
|
}
|
|
1633
|
-
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (
|
|
1623
|
+
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (176) */
|
|
1634
1624
|
interface PolymeshPrimitivesComplianceManagerComplianceRequirement extends Struct {
|
|
1635
1625
|
readonly senderConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1636
1626
|
readonly receiverConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1637
1627
|
readonly id: u32;
|
|
1638
1628
|
}
|
|
1639
|
-
/** @name PolymeshPrimitivesCondition (
|
|
1629
|
+
/** @name PolymeshPrimitivesCondition (178) */
|
|
1640
1630
|
interface PolymeshPrimitivesCondition extends Struct {
|
|
1641
1631
|
readonly conditionType: PolymeshPrimitivesConditionConditionType;
|
|
1642
1632
|
readonly issuers: Vec<PolymeshPrimitivesConditionTrustedIssuer>;
|
|
1643
1633
|
}
|
|
1644
|
-
/** @name PolymeshPrimitivesConditionConditionType (
|
|
1634
|
+
/** @name PolymeshPrimitivesConditionConditionType (179) */
|
|
1645
1635
|
interface PolymeshPrimitivesConditionConditionType extends Enum {
|
|
1646
1636
|
readonly isIsPresent: boolean;
|
|
1647
1637
|
readonly asIsPresent: PolymeshPrimitivesIdentityClaimClaim;
|
|
@@ -1655,26 +1645,26 @@ declare module "./types-lookup.ts" {
|
|
|
1655
1645
|
readonly asIsIdentity: PolymeshPrimitivesConditionTargetIdentity;
|
|
1656
1646
|
readonly type: 'IsPresent' | 'IsAbsent' | 'IsAnyOf' | 'IsNoneOf' | 'IsIdentity';
|
|
1657
1647
|
}
|
|
1658
|
-
/** @name PolymeshPrimitivesConditionTargetIdentity (
|
|
1648
|
+
/** @name PolymeshPrimitivesConditionTargetIdentity (181) */
|
|
1659
1649
|
interface PolymeshPrimitivesConditionTargetIdentity extends Enum {
|
|
1660
1650
|
readonly isExternalAgent: boolean;
|
|
1661
1651
|
readonly isSpecific: boolean;
|
|
1662
1652
|
readonly asSpecific: PolymeshPrimitivesIdentityId;
|
|
1663
1653
|
readonly type: 'ExternalAgent' | 'Specific';
|
|
1664
1654
|
}
|
|
1665
|
-
/** @name PolymeshPrimitivesConditionTrustedIssuer (
|
|
1655
|
+
/** @name PolymeshPrimitivesConditionTrustedIssuer (183) */
|
|
1666
1656
|
interface PolymeshPrimitivesConditionTrustedIssuer extends Struct {
|
|
1667
1657
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
1668
1658
|
readonly trustedFor: PolymeshPrimitivesConditionTrustedFor;
|
|
1669
1659
|
}
|
|
1670
|
-
/** @name PolymeshPrimitivesConditionTrustedFor (
|
|
1660
|
+
/** @name PolymeshPrimitivesConditionTrustedFor (184) */
|
|
1671
1661
|
interface PolymeshPrimitivesConditionTrustedFor extends Enum {
|
|
1672
1662
|
readonly isAny: boolean;
|
|
1673
1663
|
readonly isSpecific: boolean;
|
|
1674
1664
|
readonly asSpecific: Vec<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
1675
1665
|
readonly type: 'Any' | 'Specific';
|
|
1676
1666
|
}
|
|
1677
|
-
/** @name PolymeshPrimitivesIdentityClaimClaimType (
|
|
1667
|
+
/** @name PolymeshPrimitivesIdentityClaimClaimType (186) */
|
|
1678
1668
|
interface PolymeshPrimitivesIdentityClaimClaimType extends Enum {
|
|
1679
1669
|
readonly isAccredited: boolean;
|
|
1680
1670
|
readonly isAffiliate: boolean;
|
|
@@ -1689,7 +1679,7 @@ declare module "./types-lookup.ts" {
|
|
|
1689
1679
|
readonly asCustom: u32;
|
|
1690
1680
|
readonly type: 'Accredited' | 'Affiliate' | 'BuyLockup' | 'SellLockup' | 'CustomerDueDiligence' | 'KnowYourCustomer' | 'Jurisdiction' | 'Exempted' | 'Blocked' | 'Custom';
|
|
1691
1681
|
}
|
|
1692
|
-
/** @name PalletCorporateActionsEvent (
|
|
1682
|
+
/** @name PalletCorporateActionsEvent (188) */
|
|
1693
1683
|
interface PalletCorporateActionsEvent extends Enum {
|
|
1694
1684
|
readonly isMaxDetailsLengthChanged: boolean;
|
|
1695
1685
|
readonly asMaxDetailsLengthChanged: ITuple<[PolymeshPrimitivesIdentityId, u32]>;
|
|
@@ -1735,18 +1725,18 @@ declare module "./types-lookup.ts" {
|
|
|
1735
1725
|
]>;
|
|
1736
1726
|
readonly type: 'MaxDetailsLengthChanged' | 'DefaultTargetIdentitiesChanged' | 'DefaultWithholdingTaxChanged' | 'DidWithholdingTaxChanged' | 'CaInitiated' | 'CaLinkedToDoc' | 'CaRemoved' | 'RecordDateChanged';
|
|
1737
1727
|
}
|
|
1738
|
-
/** @name PalletCorporateActionsTargetIdentities (
|
|
1728
|
+
/** @name PalletCorporateActionsTargetIdentities (189) */
|
|
1739
1729
|
interface PalletCorporateActionsTargetIdentities extends Struct {
|
|
1740
1730
|
readonly identities: Vec<PolymeshPrimitivesIdentityId>;
|
|
1741
1731
|
readonly treatment: PalletCorporateActionsTargetTreatment;
|
|
1742
1732
|
}
|
|
1743
|
-
/** @name PalletCorporateActionsTargetTreatment (
|
|
1733
|
+
/** @name PalletCorporateActionsTargetTreatment (190) */
|
|
1744
1734
|
interface PalletCorporateActionsTargetTreatment extends Enum {
|
|
1745
1735
|
readonly isInclude: boolean;
|
|
1746
1736
|
readonly isExclude: boolean;
|
|
1747
1737
|
readonly type: 'Include' | 'Exclude';
|
|
1748
1738
|
}
|
|
1749
|
-
/** @name PalletCorporateActionsCorporateAction (
|
|
1739
|
+
/** @name PalletCorporateActionsCorporateAction (192) */
|
|
1750
1740
|
interface PalletCorporateActionsCorporateAction extends Struct {
|
|
1751
1741
|
readonly kind: PalletCorporateActionsCaKind;
|
|
1752
1742
|
readonly declDate: u64;
|
|
@@ -1755,7 +1745,7 @@ declare module "./types-lookup.ts" {
|
|
|
1755
1745
|
readonly defaultWithholdingTax: Permill;
|
|
1756
1746
|
readonly withholdingTax: Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>;
|
|
1757
1747
|
}
|
|
1758
|
-
/** @name PalletCorporateActionsCaKind (
|
|
1748
|
+
/** @name PalletCorporateActionsCaKind (193) */
|
|
1759
1749
|
interface PalletCorporateActionsCaKind extends Enum {
|
|
1760
1750
|
readonly isPredictableBenefit: boolean;
|
|
1761
1751
|
readonly isUnpredictableBenefit: boolean;
|
|
@@ -1764,12 +1754,12 @@ declare module "./types-lookup.ts" {
|
|
|
1764
1754
|
readonly isOther: boolean;
|
|
1765
1755
|
readonly type: 'PredictableBenefit' | 'UnpredictableBenefit' | 'IssuerNotice' | 'Reorganization' | 'Other';
|
|
1766
1756
|
}
|
|
1767
|
-
/** @name PalletCorporateActionsRecordDate (
|
|
1757
|
+
/** @name PalletCorporateActionsRecordDate (195) */
|
|
1768
1758
|
interface PalletCorporateActionsRecordDate extends Struct {
|
|
1769
1759
|
readonly date: u64;
|
|
1770
1760
|
readonly checkpoint: PalletCorporateActionsCaCheckpoint;
|
|
1771
1761
|
}
|
|
1772
|
-
/** @name PalletCorporateActionsCaCheckpoint (
|
|
1762
|
+
/** @name PalletCorporateActionsCaCheckpoint (196) */
|
|
1773
1763
|
interface PalletCorporateActionsCaCheckpoint extends Enum {
|
|
1774
1764
|
readonly isScheduled: boolean;
|
|
1775
1765
|
readonly asScheduled: ITuple<[u64, u64]>;
|
|
@@ -1777,7 +1767,7 @@ declare module "./types-lookup.ts" {
|
|
|
1777
1767
|
readonly asExisting: u64;
|
|
1778
1768
|
readonly type: 'Scheduled' | 'Existing';
|
|
1779
1769
|
}
|
|
1780
|
-
/** @name PalletCorporateActionsBallotEvent (
|
|
1770
|
+
/** @name PalletCorporateActionsBallotEvent (201) */
|
|
1781
1771
|
interface PalletCorporateActionsBallotEvent extends Enum {
|
|
1782
1772
|
readonly isCreated: boolean;
|
|
1783
1773
|
readonly asCreated: ITuple<[
|
|
@@ -1811,28 +1801,28 @@ declare module "./types-lookup.ts" {
|
|
|
1811
1801
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1812
1802
|
readonly type: 'Created' | 'VoteCast' | 'RangeChanged' | 'MetaChanged' | 'RcvChanged' | 'Removed';
|
|
1813
1803
|
}
|
|
1814
|
-
/** @name PalletCorporateActionsBallotBallotTimeRange (
|
|
1804
|
+
/** @name PalletCorporateActionsBallotBallotTimeRange (202) */
|
|
1815
1805
|
interface PalletCorporateActionsBallotBallotTimeRange extends Struct {
|
|
1816
1806
|
readonly start: u64;
|
|
1817
1807
|
readonly end: u64;
|
|
1818
1808
|
}
|
|
1819
|
-
/** @name PalletCorporateActionsBallotBallotMeta (
|
|
1809
|
+
/** @name PalletCorporateActionsBallotBallotMeta (203) */
|
|
1820
1810
|
interface PalletCorporateActionsBallotBallotMeta extends Struct {
|
|
1821
1811
|
readonly title: Bytes;
|
|
1822
1812
|
readonly motions: Vec<PalletCorporateActionsBallotMotion>;
|
|
1823
1813
|
}
|
|
1824
|
-
/** @name PalletCorporateActionsBallotMotion (
|
|
1814
|
+
/** @name PalletCorporateActionsBallotMotion (206) */
|
|
1825
1815
|
interface PalletCorporateActionsBallotMotion extends Struct {
|
|
1826
1816
|
readonly title: Bytes;
|
|
1827
1817
|
readonly infoLink: Bytes;
|
|
1828
1818
|
readonly choices: Vec<Bytes>;
|
|
1829
1819
|
}
|
|
1830
|
-
/** @name PalletCorporateActionsBallotBallotVote (
|
|
1820
|
+
/** @name PalletCorporateActionsBallotBallotVote (212) */
|
|
1831
1821
|
interface PalletCorporateActionsBallotBallotVote extends Struct {
|
|
1832
1822
|
readonly power: u128;
|
|
1833
1823
|
readonly fallback: Option<u16>;
|
|
1834
1824
|
}
|
|
1835
|
-
/** @name PalletPipsRawEvent (
|
|
1825
|
+
/** @name PalletPipsRawEvent (215) */
|
|
1836
1826
|
interface PalletPipsRawEvent extends Enum {
|
|
1837
1827
|
readonly isHistoricalPipsPruned: boolean;
|
|
1838
1828
|
readonly asHistoricalPipsPruned: ITuple<[PolymeshPrimitivesIdentityId, bool, bool]>;
|
|
@@ -1903,7 +1893,7 @@ declare module "./types-lookup.ts" {
|
|
|
1903
1893
|
readonly asExecutionCancellingFailed: u32;
|
|
1904
1894
|
readonly type: 'HistoricalPipsPruned' | 'ProposalCreated' | 'ProposalStateUpdated' | 'Voted' | 'PipClosed' | 'ExecutionScheduled' | 'DefaultEnactmentPeriodChanged' | 'MinimumProposalDepositChanged' | 'PendingPipExpiryChanged' | 'MaxPipSkipCountChanged' | 'ActivePipLimitChanged' | 'ProposalRefund' | 'SnapshotCleared' | 'SnapshotTaken' | 'PipSkipped' | 'SnapshotResultsEnacted' | 'ExecutionSchedulingFailed' | 'ExpiryScheduled' | 'ExpirySchedulingFailed' | 'ExecutionCancellingFailed';
|
|
1905
1895
|
}
|
|
1906
|
-
/** @name PalletPipsProposer (
|
|
1896
|
+
/** @name PalletPipsProposer (216) */
|
|
1907
1897
|
interface PalletPipsProposer extends Enum {
|
|
1908
1898
|
readonly isCommunity: boolean;
|
|
1909
1899
|
readonly asCommunity: AccountId32;
|
|
@@ -1911,13 +1901,13 @@ declare module "./types-lookup.ts" {
|
|
|
1911
1901
|
readonly asCommittee: PalletPipsCommittee;
|
|
1912
1902
|
readonly type: 'Community' | 'Committee';
|
|
1913
1903
|
}
|
|
1914
|
-
/** @name PalletPipsCommittee (
|
|
1904
|
+
/** @name PalletPipsCommittee (217) */
|
|
1915
1905
|
interface PalletPipsCommittee extends Enum {
|
|
1916
1906
|
readonly isTechnical: boolean;
|
|
1917
1907
|
readonly isUpgrade: boolean;
|
|
1918
1908
|
readonly type: 'Technical' | 'Upgrade';
|
|
1919
1909
|
}
|
|
1920
|
-
/** @name PalletPipsProposalData (
|
|
1910
|
+
/** @name PalletPipsProposalData (221) */
|
|
1921
1911
|
interface PalletPipsProposalData extends Enum {
|
|
1922
1912
|
readonly isHash: boolean;
|
|
1923
1913
|
readonly asHash: H256;
|
|
@@ -1925,7 +1915,7 @@ declare module "./types-lookup.ts" {
|
|
|
1925
1915
|
readonly asProposal: Bytes;
|
|
1926
1916
|
readonly type: 'Hash' | 'Proposal';
|
|
1927
1917
|
}
|
|
1928
|
-
/** @name PalletPipsProposalState (
|
|
1918
|
+
/** @name PalletPipsProposalState (222) */
|
|
1929
1919
|
interface PalletPipsProposalState extends Enum {
|
|
1930
1920
|
readonly isPending: boolean;
|
|
1931
1921
|
readonly isRejected: boolean;
|
|
@@ -1935,12 +1925,12 @@ declare module "./types-lookup.ts" {
|
|
|
1935
1925
|
readonly isExpired: boolean;
|
|
1936
1926
|
readonly type: 'Pending' | 'Rejected' | 'Scheduled' | 'Failed' | 'Executed' | 'Expired';
|
|
1937
1927
|
}
|
|
1938
|
-
/** @name PalletPipsSnapshottedPip (
|
|
1928
|
+
/** @name PalletPipsSnapshottedPip (225) */
|
|
1939
1929
|
interface PalletPipsSnapshottedPip extends Struct {
|
|
1940
1930
|
readonly id: u32;
|
|
1941
1931
|
readonly weight: ITuple<[bool, u128]>;
|
|
1942
1932
|
}
|
|
1943
|
-
/** @name PolymeshCommonUtilitiesPortfolioEvent (
|
|
1933
|
+
/** @name PolymeshCommonUtilitiesPortfolioEvent (231) */
|
|
1944
1934
|
interface PolymeshCommonUtilitiesPortfolioEvent extends Enum {
|
|
1945
1935
|
readonly isPortfolioCreated: boolean;
|
|
1946
1936
|
readonly asPortfolioCreated: ITuple<[PolymeshPrimitivesIdentityId, u64, Bytes]>;
|
|
@@ -1978,7 +1968,7 @@ declare module "./types-lookup.ts" {
|
|
|
1978
1968
|
]>;
|
|
1979
1969
|
readonly type: 'PortfolioCreated' | 'PortfolioDeleted' | 'PortfolioRenamed' | 'UserPortfolios' | 'PortfolioCustodianChanged' | 'FundsMovedBetweenPortfolios' | 'PreApprovedPortfolio' | 'RevokePreApprovedPortfolio';
|
|
1980
1970
|
}
|
|
1981
|
-
/** @name PolymeshPrimitivesPortfolioFundDescription (
|
|
1971
|
+
/** @name PolymeshPrimitivesPortfolioFundDescription (235) */
|
|
1982
1972
|
interface PolymeshPrimitivesPortfolioFundDescription extends Enum {
|
|
1983
1973
|
readonly isFungible: boolean;
|
|
1984
1974
|
readonly asFungible: {
|
|
@@ -1989,12 +1979,12 @@ declare module "./types-lookup.ts" {
|
|
|
1989
1979
|
readonly asNonFungible: PolymeshPrimitivesNftNfTs;
|
|
1990
1980
|
readonly type: 'Fungible' | 'NonFungible';
|
|
1991
1981
|
}
|
|
1992
|
-
/** @name PolymeshPrimitivesNftNfTs (
|
|
1982
|
+
/** @name PolymeshPrimitivesNftNfTs (236) */
|
|
1993
1983
|
interface PolymeshPrimitivesNftNfTs extends Struct {
|
|
1994
1984
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
1995
1985
|
readonly ids: Vec<u64>;
|
|
1996
1986
|
}
|
|
1997
|
-
/** @name PalletProtocolFeeRawEvent (
|
|
1987
|
+
/** @name PalletProtocolFeeRawEvent (239) */
|
|
1998
1988
|
interface PalletProtocolFeeRawEvent extends Enum {
|
|
1999
1989
|
readonly isFeeSet: boolean;
|
|
2000
1990
|
readonly asFeeSet: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
@@ -2004,10 +1994,10 @@ declare module "./types-lookup.ts" {
|
|
|
2004
1994
|
readonly asFeeCharged: ITuple<[AccountId32, u128]>;
|
|
2005
1995
|
readonly type: 'FeeSet' | 'CoefficientSet' | 'FeeCharged';
|
|
2006
1996
|
}
|
|
2007
|
-
/** @name PolymeshPrimitivesPosRatio (
|
|
1997
|
+
/** @name PolymeshPrimitivesPosRatio (240) */
|
|
2008
1998
|
interface PolymeshPrimitivesPosRatio extends ITuple<[u32, u32]> {
|
|
2009
1999
|
}
|
|
2010
|
-
/** @name PalletSchedulerEvent (
|
|
2000
|
+
/** @name PalletSchedulerEvent (241) */
|
|
2011
2001
|
interface PalletSchedulerEvent extends Enum {
|
|
2012
2002
|
readonly isScheduled: boolean;
|
|
2013
2003
|
readonly asScheduled: {
|
|
@@ -2042,7 +2032,7 @@ declare module "./types-lookup.ts" {
|
|
|
2042
2032
|
} & Struct;
|
|
2043
2033
|
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
|
|
2044
2034
|
}
|
|
2045
|
-
/** @name PolymeshCommonUtilitiesSettlementRawEvent (
|
|
2035
|
+
/** @name PolymeshCommonUtilitiesSettlementRawEvent (244) */
|
|
2046
2036
|
interface PolymeshCommonUtilitiesSettlementRawEvent extends Enum {
|
|
2047
2037
|
readonly isVenueCreated: boolean;
|
|
2048
2038
|
readonly asVenueCreated: ITuple<[
|
|
@@ -2146,7 +2136,7 @@ declare module "./types-lookup.ts" {
|
|
|
2146
2136
|
]>;
|
|
2147
2137
|
readonly type: 'VenueCreated' | 'VenueDetailsUpdated' | 'VenueTypeUpdated' | 'InstructionAffirmed' | 'AffirmationWithdrawn' | 'InstructionRejected' | 'ReceiptClaimed' | 'VenueFiltering' | 'VenuesAllowed' | 'VenuesBlocked' | 'LegFailedExecution' | 'InstructionFailed' | 'InstructionExecuted' | 'VenueUnauthorized' | 'SchedulingFailed' | 'InstructionRescheduled' | 'VenueSignersUpdated' | 'SettlementManuallyExecuted' | 'InstructionCreated' | 'FailedToExecuteInstruction' | 'InstructionAutomaticallyAffirmed';
|
|
2148
2138
|
}
|
|
2149
|
-
/** @name PolymeshPrimitivesSettlementVenueType (
|
|
2139
|
+
/** @name PolymeshPrimitivesSettlementVenueType (247) */
|
|
2150
2140
|
interface PolymeshPrimitivesSettlementVenueType extends Enum {
|
|
2151
2141
|
readonly isOther: boolean;
|
|
2152
2142
|
readonly isDistribution: boolean;
|
|
@@ -2154,10 +2144,10 @@ declare module "./types-lookup.ts" {
|
|
|
2154
2144
|
readonly isExchange: boolean;
|
|
2155
2145
|
readonly type: 'Other' | 'Distribution' | 'Sto' | 'Exchange';
|
|
2156
2146
|
}
|
|
2157
|
-
/** @name PolymeshPrimitivesSettlementReceiptMetadata (
|
|
2147
|
+
/** @name PolymeshPrimitivesSettlementReceiptMetadata (250) */
|
|
2158
2148
|
interface PolymeshPrimitivesSettlementReceiptMetadata extends U8aFixed {
|
|
2159
2149
|
}
|
|
2160
|
-
/** @name PolymeshPrimitivesSettlementSettlementType (
|
|
2150
|
+
/** @name PolymeshPrimitivesSettlementSettlementType (252) */
|
|
2161
2151
|
interface PolymeshPrimitivesSettlementSettlementType extends Enum {
|
|
2162
2152
|
readonly isSettleOnAffirmation: boolean;
|
|
2163
2153
|
readonly isSettleOnBlock: boolean;
|
|
@@ -2166,7 +2156,7 @@ declare module "./types-lookup.ts" {
|
|
|
2166
2156
|
readonly asSettleManual: u32;
|
|
2167
2157
|
readonly type: 'SettleOnAffirmation' | 'SettleOnBlock' | 'SettleManual';
|
|
2168
2158
|
}
|
|
2169
|
-
/** @name PolymeshPrimitivesSettlementLeg (
|
|
2159
|
+
/** @name PolymeshPrimitivesSettlementLeg (254) */
|
|
2170
2160
|
interface PolymeshPrimitivesSettlementLeg extends Enum {
|
|
2171
2161
|
readonly isFungible: boolean;
|
|
2172
2162
|
readonly asFungible: {
|
|
@@ -2190,7 +2180,7 @@ declare module "./types-lookup.ts" {
|
|
|
2190
2180
|
} & Struct;
|
|
2191
2181
|
readonly type: 'Fungible' | 'NonFungible' | 'OffChain';
|
|
2192
2182
|
}
|
|
2193
|
-
/** @name PolymeshCommonUtilitiesStatisticsEvent (
|
|
2183
|
+
/** @name PolymeshCommonUtilitiesStatisticsEvent (255) */
|
|
2194
2184
|
interface PolymeshCommonUtilitiesStatisticsEvent extends Enum {
|
|
2195
2185
|
readonly isStatTypesAdded: boolean;
|
|
2196
2186
|
readonly asStatTypesAdded: ITuple<[
|
|
@@ -2231,36 +2221,36 @@ declare module "./types-lookup.ts" {
|
|
|
2231
2221
|
]>;
|
|
2232
2222
|
readonly type: 'StatTypesAdded' | 'StatTypesRemoved' | 'AssetStatsUpdated' | 'SetAssetTransferCompliance' | 'TransferConditionExemptionsAdded' | 'TransferConditionExemptionsRemoved';
|
|
2233
2223
|
}
|
|
2234
|
-
/** @name PolymeshPrimitivesStatisticsAssetScope (
|
|
2224
|
+
/** @name PolymeshPrimitivesStatisticsAssetScope (256) */
|
|
2235
2225
|
interface PolymeshPrimitivesStatisticsAssetScope extends Enum {
|
|
2236
2226
|
readonly isTicker: boolean;
|
|
2237
2227
|
readonly asTicker: PolymeshPrimitivesTicker;
|
|
2238
2228
|
readonly type: 'Ticker';
|
|
2239
2229
|
}
|
|
2240
|
-
/** @name PolymeshPrimitivesStatisticsStatType (
|
|
2230
|
+
/** @name PolymeshPrimitivesStatisticsStatType (258) */
|
|
2241
2231
|
interface PolymeshPrimitivesStatisticsStatType extends Struct {
|
|
2242
2232
|
readonly op: PolymeshPrimitivesStatisticsStatOpType;
|
|
2243
2233
|
readonly claimIssuer: Option<ITuple<[PolymeshPrimitivesIdentityClaimClaimType, PolymeshPrimitivesIdentityId]>>;
|
|
2244
2234
|
}
|
|
2245
|
-
/** @name PolymeshPrimitivesStatisticsStatOpType (
|
|
2235
|
+
/** @name PolymeshPrimitivesStatisticsStatOpType (259) */
|
|
2246
2236
|
interface PolymeshPrimitivesStatisticsStatOpType extends Enum {
|
|
2247
2237
|
readonly isCount: boolean;
|
|
2248
2238
|
readonly isBalance: boolean;
|
|
2249
2239
|
readonly type: 'Count' | 'Balance';
|
|
2250
2240
|
}
|
|
2251
|
-
/** @name PolymeshPrimitivesStatisticsStatUpdate (
|
|
2241
|
+
/** @name PolymeshPrimitivesStatisticsStatUpdate (263) */
|
|
2252
2242
|
interface PolymeshPrimitivesStatisticsStatUpdate extends Struct {
|
|
2253
2243
|
readonly key2: PolymeshPrimitivesStatisticsStat2ndKey;
|
|
2254
2244
|
readonly value: Option<u128>;
|
|
2255
2245
|
}
|
|
2256
|
-
/** @name PolymeshPrimitivesStatisticsStat2ndKey (
|
|
2246
|
+
/** @name PolymeshPrimitivesStatisticsStat2ndKey (264) */
|
|
2257
2247
|
interface PolymeshPrimitivesStatisticsStat2ndKey extends Enum {
|
|
2258
2248
|
readonly isNoClaimStat: boolean;
|
|
2259
2249
|
readonly isClaim: boolean;
|
|
2260
2250
|
readonly asClaim: PolymeshPrimitivesStatisticsStatClaim;
|
|
2261
2251
|
readonly type: 'NoClaimStat' | 'Claim';
|
|
2262
2252
|
}
|
|
2263
|
-
/** @name PolymeshPrimitivesStatisticsStatClaim (
|
|
2253
|
+
/** @name PolymeshPrimitivesStatisticsStatClaim (265) */
|
|
2264
2254
|
interface PolymeshPrimitivesStatisticsStatClaim extends Enum {
|
|
2265
2255
|
readonly isAccredited: boolean;
|
|
2266
2256
|
readonly asAccredited: bool;
|
|
@@ -2270,7 +2260,7 @@ declare module "./types-lookup.ts" {
|
|
|
2270
2260
|
readonly asJurisdiction: Option<PolymeshPrimitivesJurisdictionCountryCode>;
|
|
2271
2261
|
readonly type: 'Accredited' | 'Affiliate' | 'Jurisdiction';
|
|
2272
2262
|
}
|
|
2273
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (
|
|
2263
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (269) */
|
|
2274
2264
|
interface PolymeshPrimitivesTransferComplianceTransferCondition extends Enum {
|
|
2275
2265
|
readonly isMaxInvestorCount: boolean;
|
|
2276
2266
|
readonly asMaxInvestorCount: u64;
|
|
@@ -2292,13 +2282,13 @@ declare module "./types-lookup.ts" {
|
|
|
2292
2282
|
]>;
|
|
2293
2283
|
readonly type: 'MaxInvestorCount' | 'MaxInvestorOwnership' | 'ClaimCount' | 'ClaimOwnership';
|
|
2294
2284
|
}
|
|
2295
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (
|
|
2285
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (270) */
|
|
2296
2286
|
interface PolymeshPrimitivesTransferComplianceTransferConditionExemptKey extends Struct {
|
|
2297
2287
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
2298
2288
|
readonly op: PolymeshPrimitivesStatisticsStatOpType;
|
|
2299
2289
|
readonly claimType: Option<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
2300
2290
|
}
|
|
2301
|
-
/** @name PalletStoRawEvent (
|
|
2291
|
+
/** @name PalletStoRawEvent (272) */
|
|
2302
2292
|
interface PalletStoRawEvent extends Enum {
|
|
2303
2293
|
readonly isFundraiserCreated: boolean;
|
|
2304
2294
|
readonly asFundraiserCreated: ITuple<[
|
|
@@ -2333,7 +2323,7 @@ declare module "./types-lookup.ts" {
|
|
|
2333
2323
|
readonly asFundraiserClosed: ITuple<[PolymeshPrimitivesIdentityId, u64]>;
|
|
2334
2324
|
readonly type: 'FundraiserCreated' | 'Invested' | 'FundraiserFrozen' | 'FundraiserUnfrozen' | 'FundraiserWindowModified' | 'FundraiserClosed';
|
|
2335
2325
|
}
|
|
2336
|
-
/** @name PalletStoFundraiser (
|
|
2326
|
+
/** @name PalletStoFundraiser (275) */
|
|
2337
2327
|
interface PalletStoFundraiser extends Struct {
|
|
2338
2328
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
2339
2329
|
readonly offeringPortfolio: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
@@ -2347,13 +2337,13 @@ declare module "./types-lookup.ts" {
|
|
|
2347
2337
|
readonly status: PalletStoFundraiserStatus;
|
|
2348
2338
|
readonly minimumInvestment: u128;
|
|
2349
2339
|
}
|
|
2350
|
-
/** @name PalletStoFundraiserTier (
|
|
2340
|
+
/** @name PalletStoFundraiserTier (277) */
|
|
2351
2341
|
interface PalletStoFundraiserTier extends Struct {
|
|
2352
2342
|
readonly total: u128;
|
|
2353
2343
|
readonly price: u128;
|
|
2354
2344
|
readonly remaining: u128;
|
|
2355
2345
|
}
|
|
2356
|
-
/** @name PalletStoFundraiserStatus (
|
|
2346
|
+
/** @name PalletStoFundraiserStatus (278) */
|
|
2357
2347
|
interface PalletStoFundraiserStatus extends Enum {
|
|
2358
2348
|
readonly isLive: boolean;
|
|
2359
2349
|
readonly isFrozen: boolean;
|
|
@@ -2361,7 +2351,7 @@ declare module "./types-lookup.ts" {
|
|
|
2361
2351
|
readonly isClosedEarly: boolean;
|
|
2362
2352
|
readonly type: 'Live' | 'Frozen' | 'Closed' | 'ClosedEarly';
|
|
2363
2353
|
}
|
|
2364
|
-
/** @name PalletTreasuryRawEvent (
|
|
2354
|
+
/** @name PalletTreasuryRawEvent (279) */
|
|
2365
2355
|
interface PalletTreasuryRawEvent extends Enum {
|
|
2366
2356
|
readonly isTreasuryDisbursement: boolean;
|
|
2367
2357
|
readonly asTreasuryDisbursement: ITuple<[
|
|
@@ -2381,7 +2371,7 @@ declare module "./types-lookup.ts" {
|
|
|
2381
2371
|
readonly asTreasuryReimbursement: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
2382
2372
|
readonly type: 'TreasuryDisbursement' | 'TreasuryDisbursementFailed' | 'TreasuryReimbursement';
|
|
2383
2373
|
}
|
|
2384
|
-
/** @name PalletUtilityEvent (
|
|
2374
|
+
/** @name PalletUtilityEvent (280) */
|
|
2385
2375
|
interface PalletUtilityEvent extends Enum {
|
|
2386
2376
|
readonly isBatchInterrupted: boolean;
|
|
2387
2377
|
readonly asBatchInterrupted: {
|
|
@@ -2416,13 +2406,13 @@ declare module "./types-lookup.ts" {
|
|
|
2416
2406
|
readonly asBatchCompletedOld: Vec<u32>;
|
|
2417
2407
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs' | 'RelayedTx' | 'BatchInterruptedOld' | 'BatchOptimisticFailed' | 'BatchCompletedOld';
|
|
2418
2408
|
}
|
|
2419
|
-
/** @name PolymeshCommonUtilitiesBaseEvent (
|
|
2409
|
+
/** @name PolymeshCommonUtilitiesBaseEvent (284) */
|
|
2420
2410
|
interface PolymeshCommonUtilitiesBaseEvent extends Enum {
|
|
2421
2411
|
readonly isUnexpectedError: boolean;
|
|
2422
2412
|
readonly asUnexpectedError: Option<SpRuntimeDispatchError>;
|
|
2423
2413
|
readonly type: 'UnexpectedError';
|
|
2424
2414
|
}
|
|
2425
|
-
/** @name PolymeshCommonUtilitiesExternalAgentsEvent (
|
|
2415
|
+
/** @name PolymeshCommonUtilitiesExternalAgentsEvent (286) */
|
|
2426
2416
|
interface PolymeshCommonUtilitiesExternalAgentsEvent extends Enum {
|
|
2427
2417
|
readonly isGroupCreated: boolean;
|
|
2428
2418
|
readonly asGroupCreated: ITuple<[
|
|
@@ -2459,7 +2449,7 @@ declare module "./types-lookup.ts" {
|
|
|
2459
2449
|
]>;
|
|
2460
2450
|
readonly type: 'GroupCreated' | 'GroupPermissionsUpdated' | 'AgentAdded' | 'AgentRemoved' | 'GroupChanged';
|
|
2461
2451
|
}
|
|
2462
|
-
/** @name PolymeshCommonUtilitiesRelayerRawEvent (
|
|
2452
|
+
/** @name PolymeshCommonUtilitiesRelayerRawEvent (287) */
|
|
2463
2453
|
interface PolymeshCommonUtilitiesRelayerRawEvent extends Enum {
|
|
2464
2454
|
readonly isAuthorizedPayingKey: boolean;
|
|
2465
2455
|
readonly asAuthorizedPayingKey: ITuple<[
|
|
@@ -2483,7 +2473,7 @@ declare module "./types-lookup.ts" {
|
|
|
2483
2473
|
]>;
|
|
2484
2474
|
readonly type: 'AuthorizedPayingKey' | 'AcceptedPayingKey' | 'RemovedPayingKey' | 'UpdatedPolyxLimit';
|
|
2485
2475
|
}
|
|
2486
|
-
/** @name PalletContractsEvent (
|
|
2476
|
+
/** @name PalletContractsEvent (288) */
|
|
2487
2477
|
interface PalletContractsEvent extends Enum {
|
|
2488
2478
|
readonly isInstantiated: boolean;
|
|
2489
2479
|
readonly asInstantiated: {
|
|
@@ -2526,7 +2516,7 @@ declare module "./types-lookup.ts" {
|
|
|
2526
2516
|
} & Struct;
|
|
2527
2517
|
readonly type: 'Instantiated' | 'Terminated' | 'CodeStored' | 'ContractEmitted' | 'CodeRemoved' | 'ContractCodeUpdated' | 'Called' | 'DelegateCalled';
|
|
2528
2518
|
}
|
|
2529
|
-
/** @name PolymeshContractsRawEvent (
|
|
2519
|
+
/** @name PolymeshContractsRawEvent (289) */
|
|
2530
2520
|
interface PolymeshContractsRawEvent extends Enum {
|
|
2531
2521
|
readonly isApiHashUpdated: boolean;
|
|
2532
2522
|
readonly asApiHashUpdated: ITuple<[PolymeshContractsApi, PolymeshContractsChainVersion, H256]>;
|
|
@@ -2534,20 +2524,20 @@ declare module "./types-lookup.ts" {
|
|
|
2534
2524
|
readonly asScRuntimeCall: ITuple<[AccountId32, PolymeshContractsChainExtensionExtrinsicId]>;
|
|
2535
2525
|
readonly type: 'ApiHashUpdated' | 'ScRuntimeCall';
|
|
2536
2526
|
}
|
|
2537
|
-
/** @name PolymeshContractsApi (
|
|
2527
|
+
/** @name PolymeshContractsApi (290) */
|
|
2538
2528
|
interface PolymeshContractsApi extends Struct {
|
|
2539
2529
|
readonly desc: U8aFixed;
|
|
2540
2530
|
readonly major: u32;
|
|
2541
2531
|
}
|
|
2542
|
-
/** @name PolymeshContractsChainVersion (
|
|
2532
|
+
/** @name PolymeshContractsChainVersion (291) */
|
|
2543
2533
|
interface PolymeshContractsChainVersion extends Struct {
|
|
2544
2534
|
readonly specVersion: u32;
|
|
2545
2535
|
readonly txVersion: u32;
|
|
2546
2536
|
}
|
|
2547
|
-
/** @name PolymeshContractsChainExtensionExtrinsicId (
|
|
2537
|
+
/** @name PolymeshContractsChainExtensionExtrinsicId (292) */
|
|
2548
2538
|
interface PolymeshContractsChainExtensionExtrinsicId extends ITuple<[u8, u8]> {
|
|
2549
2539
|
}
|
|
2550
|
-
/** @name PalletPreimageEvent (
|
|
2540
|
+
/** @name PalletPreimageEvent (293) */
|
|
2551
2541
|
interface PalletPreimageEvent extends Enum {
|
|
2552
2542
|
readonly isNoted: boolean;
|
|
2553
2543
|
readonly asNoted: {
|
|
@@ -2563,7 +2553,7 @@ declare module "./types-lookup.ts" {
|
|
|
2563
2553
|
} & Struct;
|
|
2564
2554
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
|
2565
2555
|
}
|
|
2566
|
-
/** @name PolymeshCommonUtilitiesNftEvent (
|
|
2556
|
+
/** @name PolymeshCommonUtilitiesNftEvent (294) */
|
|
2567
2557
|
interface PolymeshCommonUtilitiesNftEvent extends Enum {
|
|
2568
2558
|
readonly isNftCollectionCreated: boolean;
|
|
2569
2559
|
readonly asNftCollectionCreated: ITuple<[
|
|
@@ -2581,7 +2571,7 @@ declare module "./types-lookup.ts" {
|
|
|
2581
2571
|
]>;
|
|
2582
2572
|
readonly type: 'NftCollectionCreated' | 'NftPortfolioUpdated';
|
|
2583
2573
|
}
|
|
2584
|
-
/** @name PalletTestUtilsRawEvent (
|
|
2574
|
+
/** @name PalletTestUtilsRawEvent (296) */
|
|
2585
2575
|
interface PalletTestUtilsRawEvent extends Enum {
|
|
2586
2576
|
readonly isDidStatus: boolean;
|
|
2587
2577
|
readonly asDidStatus: ITuple<[PolymeshPrimitivesIdentityId, AccountId32]>;
|
|
@@ -2589,7 +2579,7 @@ declare module "./types-lookup.ts" {
|
|
|
2589
2579
|
readonly asCddStatus: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, bool]>;
|
|
2590
2580
|
readonly type: 'DidStatus' | 'CddStatus';
|
|
2591
2581
|
}
|
|
2592
|
-
/** @name FrameSystemPhase (
|
|
2582
|
+
/** @name FrameSystemPhase (297) */
|
|
2593
2583
|
interface FrameSystemPhase extends Enum {
|
|
2594
2584
|
readonly isApplyExtrinsic: boolean;
|
|
2595
2585
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2597,12 +2587,12 @@ declare module "./types-lookup.ts" {
|
|
|
2597
2587
|
readonly isInitialization: boolean;
|
|
2598
2588
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2599
2589
|
}
|
|
2600
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2590
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (300) */
|
|
2601
2591
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2602
2592
|
readonly specVersion: Compact<u32>;
|
|
2603
2593
|
readonly specName: Text;
|
|
2604
2594
|
}
|
|
2605
|
-
/** @name FrameSystemCall (
|
|
2595
|
+
/** @name FrameSystemCall (303) */
|
|
2606
2596
|
interface FrameSystemCall extends Enum {
|
|
2607
2597
|
readonly isRemark: boolean;
|
|
2608
2598
|
readonly asRemark: {
|
|
@@ -2639,41 +2629,41 @@ declare module "./types-lookup.ts" {
|
|
|
2639
2629
|
} & Struct;
|
|
2640
2630
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
|
|
2641
2631
|
}
|
|
2642
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2632
|
+
/** @name FrameSystemLimitsBlockWeights (307) */
|
|
2643
2633
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2644
2634
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2645
2635
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2646
2636
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2647
2637
|
}
|
|
2648
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2638
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (308) */
|
|
2649
2639
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2650
2640
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2651
2641
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2652
2642
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2653
2643
|
}
|
|
2654
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2644
|
+
/** @name FrameSystemLimitsWeightsPerClass (309) */
|
|
2655
2645
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2656
2646
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2657
2647
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2658
2648
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2659
2649
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2660
2650
|
}
|
|
2661
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2651
|
+
/** @name FrameSystemLimitsBlockLength (311) */
|
|
2662
2652
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2663
2653
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2664
2654
|
}
|
|
2665
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2655
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (312) */
|
|
2666
2656
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2667
2657
|
readonly normal: u32;
|
|
2668
2658
|
readonly operational: u32;
|
|
2669
2659
|
readonly mandatory: u32;
|
|
2670
2660
|
}
|
|
2671
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2661
|
+
/** @name SpWeightsRuntimeDbWeight (313) */
|
|
2672
2662
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2673
2663
|
readonly read: u64;
|
|
2674
2664
|
readonly write: u64;
|
|
2675
2665
|
}
|
|
2676
|
-
/** @name SpVersionRuntimeVersion (
|
|
2666
|
+
/** @name SpVersionRuntimeVersion (314) */
|
|
2677
2667
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2678
2668
|
readonly specName: Text;
|
|
2679
2669
|
readonly implName: Text;
|
|
@@ -2684,7 +2674,7 @@ declare module "./types-lookup.ts" {
|
|
|
2684
2674
|
readonly transactionVersion: u32;
|
|
2685
2675
|
readonly stateVersion: u8;
|
|
2686
2676
|
}
|
|
2687
|
-
/** @name FrameSystemError (
|
|
2677
|
+
/** @name FrameSystemError (319) */
|
|
2688
2678
|
interface FrameSystemError extends Enum {
|
|
2689
2679
|
readonly isInvalidSpecName: boolean;
|
|
2690
2680
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2694,10 +2684,10 @@ declare module "./types-lookup.ts" {
|
|
|
2694
2684
|
readonly isCallFiltered: boolean;
|
|
2695
2685
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
|
|
2696
2686
|
}
|
|
2697
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2687
|
+
/** @name SpConsensusBabeAppPublic (322) */
|
|
2698
2688
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
2699
2689
|
}
|
|
2700
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2690
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (325) */
|
|
2701
2691
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
2702
2692
|
readonly isV1: boolean;
|
|
2703
2693
|
readonly asV1: {
|
|
@@ -2706,14 +2696,14 @@ declare module "./types-lookup.ts" {
|
|
|
2706
2696
|
} & Struct;
|
|
2707
2697
|
readonly type: 'V1';
|
|
2708
2698
|
}
|
|
2709
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2699
|
+
/** @name SpConsensusBabeAllowedSlots (327) */
|
|
2710
2700
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
2711
2701
|
readonly isPrimarySlots: boolean;
|
|
2712
2702
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
2713
2703
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
2714
2704
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
2715
2705
|
}
|
|
2716
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
2706
|
+
/** @name SpConsensusBabeDigestsPreDigest (331) */
|
|
2717
2707
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
2718
2708
|
readonly isPrimary: boolean;
|
|
2719
2709
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -2723,31 +2713,31 @@ declare module "./types-lookup.ts" {
|
|
|
2723
2713
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
2724
2714
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
2725
2715
|
}
|
|
2726
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
2716
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (332) */
|
|
2727
2717
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
2728
2718
|
readonly authorityIndex: u32;
|
|
2729
2719
|
readonly slot: u64;
|
|
2730
2720
|
readonly vrfOutput: U8aFixed;
|
|
2731
2721
|
readonly vrfProof: U8aFixed;
|
|
2732
2722
|
}
|
|
2733
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
2723
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (333) */
|
|
2734
2724
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
2735
2725
|
readonly authorityIndex: u32;
|
|
2736
2726
|
readonly slot: u64;
|
|
2737
2727
|
}
|
|
2738
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
2728
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (334) */
|
|
2739
2729
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
2740
2730
|
readonly authorityIndex: u32;
|
|
2741
2731
|
readonly slot: u64;
|
|
2742
2732
|
readonly vrfOutput: U8aFixed;
|
|
2743
2733
|
readonly vrfProof: U8aFixed;
|
|
2744
2734
|
}
|
|
2745
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
2735
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (335) */
|
|
2746
2736
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
2747
2737
|
readonly c: ITuple<[u64, u64]>;
|
|
2748
2738
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
2749
2739
|
}
|
|
2750
|
-
/** @name PalletBabeCall (
|
|
2740
|
+
/** @name PalletBabeCall (339) */
|
|
2751
2741
|
interface PalletBabeCall extends Enum {
|
|
2752
2742
|
readonly isReportEquivocation: boolean;
|
|
2753
2743
|
readonly asReportEquivocation: {
|
|
@@ -2765,14 +2755,14 @@ declare module "./types-lookup.ts" {
|
|
|
2765
2755
|
} & Struct;
|
|
2766
2756
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
2767
2757
|
}
|
|
2768
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2758
|
+
/** @name SpConsensusSlotsEquivocationProof (340) */
|
|
2769
2759
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
2770
2760
|
readonly offender: SpConsensusBabeAppPublic;
|
|
2771
2761
|
readonly slot: u64;
|
|
2772
2762
|
readonly firstHeader: SpRuntimeHeader;
|
|
2773
2763
|
readonly secondHeader: SpRuntimeHeader;
|
|
2774
2764
|
}
|
|
2775
|
-
/** @name SpRuntimeHeader (
|
|
2765
|
+
/** @name SpRuntimeHeader (341) */
|
|
2776
2766
|
interface SpRuntimeHeader extends Struct {
|
|
2777
2767
|
readonly parentHash: H256;
|
|
2778
2768
|
readonly number: Compact<u32>;
|
|
@@ -2780,15 +2770,15 @@ declare module "./types-lookup.ts" {
|
|
|
2780
2770
|
readonly extrinsicsRoot: H256;
|
|
2781
2771
|
readonly digest: SpRuntimeDigest;
|
|
2782
2772
|
}
|
|
2783
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2773
|
+
/** @name SpRuntimeBlakeTwo256 (342) */
|
|
2784
2774
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2785
|
-
/** @name SpSessionMembershipProof (
|
|
2775
|
+
/** @name SpSessionMembershipProof (343) */
|
|
2786
2776
|
interface SpSessionMembershipProof extends Struct {
|
|
2787
2777
|
readonly session: u32;
|
|
2788
2778
|
readonly trieNodes: Vec<Bytes>;
|
|
2789
2779
|
readonly validatorCount: u32;
|
|
2790
2780
|
}
|
|
2791
|
-
/** @name PalletBabeError (
|
|
2781
|
+
/** @name PalletBabeError (344) */
|
|
2792
2782
|
interface PalletBabeError extends Enum {
|
|
2793
2783
|
readonly isInvalidEquivocationProof: boolean;
|
|
2794
2784
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -2796,7 +2786,7 @@ declare module "./types-lookup.ts" {
|
|
|
2796
2786
|
readonly isInvalidConfiguration: boolean;
|
|
2797
2787
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
2798
2788
|
}
|
|
2799
|
-
/** @name PalletTimestampCall (
|
|
2789
|
+
/** @name PalletTimestampCall (345) */
|
|
2800
2790
|
interface PalletTimestampCall extends Enum {
|
|
2801
2791
|
readonly isSet: boolean;
|
|
2802
2792
|
readonly asSet: {
|
|
@@ -2804,7 +2794,7 @@ declare module "./types-lookup.ts" {
|
|
|
2804
2794
|
} & Struct;
|
|
2805
2795
|
readonly type: 'Set';
|
|
2806
2796
|
}
|
|
2807
|
-
/** @name PalletIndicesCall (
|
|
2797
|
+
/** @name PalletIndicesCall (347) */
|
|
2808
2798
|
interface PalletIndicesCall extends Enum {
|
|
2809
2799
|
readonly isClaim: boolean;
|
|
2810
2800
|
readonly asClaim: {
|
|
@@ -2831,7 +2821,7 @@ declare module "./types-lookup.ts" {
|
|
|
2831
2821
|
} & Struct;
|
|
2832
2822
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2833
2823
|
}
|
|
2834
|
-
/** @name PalletIndicesError (
|
|
2824
|
+
/** @name PalletIndicesError (349) */
|
|
2835
2825
|
interface PalletIndicesError extends Enum {
|
|
2836
2826
|
readonly isNotAssigned: boolean;
|
|
2837
2827
|
readonly isNotOwner: boolean;
|
|
@@ -2840,20 +2830,20 @@ declare module "./types-lookup.ts" {
|
|
|
2840
2830
|
readonly isPermanent: boolean;
|
|
2841
2831
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
2842
2832
|
}
|
|
2843
|
-
/** @name PalletBalancesBalanceLock (
|
|
2833
|
+
/** @name PalletBalancesBalanceLock (351) */
|
|
2844
2834
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2845
2835
|
readonly id: U8aFixed;
|
|
2846
2836
|
readonly amount: u128;
|
|
2847
2837
|
readonly reasons: PolymeshCommonUtilitiesBalancesReasons;
|
|
2848
2838
|
}
|
|
2849
|
-
/** @name PolymeshCommonUtilitiesBalancesReasons (
|
|
2839
|
+
/** @name PolymeshCommonUtilitiesBalancesReasons (352) */
|
|
2850
2840
|
interface PolymeshCommonUtilitiesBalancesReasons extends Enum {
|
|
2851
2841
|
readonly isFee: boolean;
|
|
2852
2842
|
readonly isMisc: boolean;
|
|
2853
2843
|
readonly isAll: boolean;
|
|
2854
2844
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2855
2845
|
}
|
|
2856
|
-
/** @name PalletBalancesCall (
|
|
2846
|
+
/** @name PalletBalancesCall (353) */
|
|
2857
2847
|
interface PalletBalancesCall extends Enum {
|
|
2858
2848
|
readonly isTransfer: boolean;
|
|
2859
2849
|
readonly asTransfer: {
|
|
@@ -2888,7 +2878,7 @@ declare module "./types-lookup.ts" {
|
|
|
2888
2878
|
} & Struct;
|
|
2889
2879
|
readonly type: 'Transfer' | 'TransferWithMemo' | 'DepositBlockRewardReserveBalance' | 'SetBalance' | 'ForceTransfer' | 'BurnAccountBalance';
|
|
2890
2880
|
}
|
|
2891
|
-
/** @name PalletBalancesError (
|
|
2881
|
+
/** @name PalletBalancesError (354) */
|
|
2892
2882
|
interface PalletBalancesError extends Enum {
|
|
2893
2883
|
readonly isLiquidityRestrictions: boolean;
|
|
2894
2884
|
readonly isOverflow: boolean;
|
|
@@ -2897,34 +2887,34 @@ declare module "./types-lookup.ts" {
|
|
|
2897
2887
|
readonly isReceiverCddMissing: boolean;
|
|
2898
2888
|
readonly type: 'LiquidityRestrictions' | 'Overflow' | 'InsufficientBalance' | 'ExistentialDeposit' | 'ReceiverCddMissing';
|
|
2899
2889
|
}
|
|
2900
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2890
|
+
/** @name PalletTransactionPaymentReleases (356) */
|
|
2901
2891
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2902
2892
|
readonly isV1Ancient: boolean;
|
|
2903
2893
|
readonly isV2: boolean;
|
|
2904
2894
|
readonly type: 'V1Ancient' | 'V2';
|
|
2905
2895
|
}
|
|
2906
|
-
/** @name SpWeightsWeightToFeeCoefficient (
|
|
2896
|
+
/** @name SpWeightsWeightToFeeCoefficient (358) */
|
|
2907
2897
|
interface SpWeightsWeightToFeeCoefficient extends Struct {
|
|
2908
2898
|
readonly coeffInteger: u128;
|
|
2909
2899
|
readonly coeffFrac: Perbill;
|
|
2910
2900
|
readonly negative: bool;
|
|
2911
2901
|
readonly degree: u8;
|
|
2912
2902
|
}
|
|
2913
|
-
/** @name PolymeshPrimitivesIdentityDidRecord (
|
|
2903
|
+
/** @name PolymeshPrimitivesIdentityDidRecord (359) */
|
|
2914
2904
|
interface PolymeshPrimitivesIdentityDidRecord extends Struct {
|
|
2915
2905
|
readonly primaryKey: Option<AccountId32>;
|
|
2916
2906
|
}
|
|
2917
|
-
/** @name PalletIdentityClaim1stKey (
|
|
2907
|
+
/** @name PalletIdentityClaim1stKey (361) */
|
|
2918
2908
|
interface PalletIdentityClaim1stKey extends Struct {
|
|
2919
2909
|
readonly target: PolymeshPrimitivesIdentityId;
|
|
2920
2910
|
readonly claimType: PolymeshPrimitivesIdentityClaimClaimType;
|
|
2921
2911
|
}
|
|
2922
|
-
/** @name PalletIdentityClaim2ndKey (
|
|
2912
|
+
/** @name PalletIdentityClaim2ndKey (362) */
|
|
2923
2913
|
interface PalletIdentityClaim2ndKey extends Struct {
|
|
2924
2914
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
2925
2915
|
readonly scope: Option<PolymeshPrimitivesIdentityClaimScope>;
|
|
2926
2916
|
}
|
|
2927
|
-
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (
|
|
2917
|
+
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (363) */
|
|
2928
2918
|
interface PolymeshPrimitivesSecondaryKeyKeyRecord extends Enum {
|
|
2929
2919
|
readonly isPrimaryKey: boolean;
|
|
2930
2920
|
readonly asPrimaryKey: PolymeshPrimitivesIdentityId;
|
|
@@ -2937,7 +2927,7 @@ declare module "./types-lookup.ts" {
|
|
|
2937
2927
|
readonly asMultiSigSignerKey: AccountId32;
|
|
2938
2928
|
readonly type: 'PrimaryKey' | 'SecondaryKey' | 'MultiSigSignerKey';
|
|
2939
2929
|
}
|
|
2940
|
-
/** @name PolymeshPrimitivesAuthorization (
|
|
2930
|
+
/** @name PolymeshPrimitivesAuthorization (366) */
|
|
2941
2931
|
interface PolymeshPrimitivesAuthorization extends Struct {
|
|
2942
2932
|
readonly authorizationData: PolymeshPrimitivesAuthorizationAuthorizationData;
|
|
2943
2933
|
readonly authorizedBy: PolymeshPrimitivesIdentityId;
|
|
@@ -2945,7 +2935,7 @@ declare module "./types-lookup.ts" {
|
|
|
2945
2935
|
readonly authId: u64;
|
|
2946
2936
|
readonly count: u32;
|
|
2947
2937
|
}
|
|
2948
|
-
/** @name PalletIdentityCall (
|
|
2938
|
+
/** @name PalletIdentityCall (369) */
|
|
2949
2939
|
interface PalletIdentityCall extends Enum {
|
|
2950
2940
|
readonly isCddRegisterDid: boolean;
|
|
2951
2941
|
readonly asCddRegisterDid: {
|
|
@@ -3055,17 +3045,17 @@ declare module "./types-lookup.ts" {
|
|
|
3055
3045
|
} & Struct;
|
|
3056
3046
|
readonly type: 'CddRegisterDid' | 'InvalidateCddClaims' | 'AcceptPrimaryKey' | 'ChangeCddRequirementForMkRotation' | 'JoinIdentityAsKey' | 'LeaveIdentityAsKey' | 'AddClaim' | 'RevokeClaim' | 'FreezeSecondaryKeys' | 'UnfreezeSecondaryKeys' | 'AddAuthorization' | 'RemoveAuthorization' | 'GcAddCddClaim' | 'GcRevokeCddClaim' | 'RevokeClaimByIndex' | 'RotatePrimaryKeyToSecondary' | 'AddSecondaryKeysWithAuthorization' | 'SetSecondaryKeyPermissions' | 'RemoveSecondaryKeys' | 'RegisterCustomClaimType' | 'CddRegisterDidWithCdd' | 'CreateChildIdentity' | 'CreateChildIdentities' | 'UnlinkChildIdentity';
|
|
3057
3047
|
}
|
|
3058
|
-
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (
|
|
3048
|
+
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (371) */
|
|
3059
3049
|
interface PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth extends Struct {
|
|
3060
3050
|
readonly secondaryKey: PolymeshPrimitivesSecondaryKey;
|
|
3061
3051
|
readonly authSignature: H512;
|
|
3062
3052
|
}
|
|
3063
|
-
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (
|
|
3053
|
+
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (374) */
|
|
3064
3054
|
interface PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth extends Struct {
|
|
3065
3055
|
readonly key: AccountId32;
|
|
3066
3056
|
readonly authSignature: H512;
|
|
3067
3057
|
}
|
|
3068
|
-
/** @name PalletIdentityError (
|
|
3058
|
+
/** @name PalletIdentityError (375) */
|
|
3069
3059
|
interface PalletIdentityError extends Enum {
|
|
3070
3060
|
readonly isAlreadyLinked: boolean;
|
|
3071
3061
|
readonly isMissingCurrentIdentity: boolean;
|
|
@@ -3102,13 +3092,13 @@ declare module "./types-lookup.ts" {
|
|
|
3102
3092
|
readonly isExceptNotAllowedForExtrinsics: boolean;
|
|
3103
3093
|
readonly type: 'AlreadyLinked' | 'MissingCurrentIdentity' | 'Unauthorized' | 'InvalidAccountKey' | 'UnAuthorizedCddProvider' | 'InvalidAuthorizationFromOwner' | 'InvalidAuthorizationFromCddProvider' | 'NotCddProviderAttestation' | 'AuthorizationsNotForSameDids' | 'DidMustAlreadyExist' | 'AuthorizationExpired' | 'TargetHasNoCdd' | 'AuthorizationHasBeenRevoked' | 'InvalidAuthorizationSignature' | 'KeyNotAllowed' | 'NotPrimaryKey' | 'DidDoesNotExist' | 'DidAlreadyExists' | 'SecondaryKeysContainPrimaryKey' | 'FailedToChargeFee' | 'NotASigner' | 'CannotDecodeSignerAccountId' | 'MultiSigHasBalance' | 'AccountKeyIsBeingUsed' | 'CustomScopeTooLong' | 'CustomClaimTypeAlreadyExists' | 'CustomClaimTypeDoesNotExist' | 'ClaimDoesNotExist' | 'IsChildIdentity' | 'NoParentIdentity' | 'NotParentOrChildIdentity' | 'DuplicateKey' | 'ExceptNotAllowedForExtrinsics';
|
|
3104
3094
|
}
|
|
3105
|
-
/** @name PolymeshCommonUtilitiesGroupInactiveMember (
|
|
3095
|
+
/** @name PolymeshCommonUtilitiesGroupInactiveMember (377) */
|
|
3106
3096
|
interface PolymeshCommonUtilitiesGroupInactiveMember extends Struct {
|
|
3107
3097
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
3108
3098
|
readonly deactivatedAt: u64;
|
|
3109
3099
|
readonly expiry: Option<u64>;
|
|
3110
3100
|
}
|
|
3111
|
-
/** @name PalletGroupCall (
|
|
3101
|
+
/** @name PalletGroupCall (378) */
|
|
3112
3102
|
interface PalletGroupCall extends Enum {
|
|
3113
3103
|
readonly isSetActiveMembersLimit: boolean;
|
|
3114
3104
|
readonly asSetActiveMembersLimit: {
|
|
@@ -3140,7 +3130,7 @@ declare module "./types-lookup.ts" {
|
|
|
3140
3130
|
readonly isAbdicateMembership: boolean;
|
|
3141
3131
|
readonly type: 'SetActiveMembersLimit' | 'DisableMember' | 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'AbdicateMembership';
|
|
3142
3132
|
}
|
|
3143
|
-
/** @name PalletGroupError (
|
|
3133
|
+
/** @name PalletGroupError (379) */
|
|
3144
3134
|
interface PalletGroupError extends Enum {
|
|
3145
3135
|
readonly isOnlyPrimaryKeyAllowed: boolean;
|
|
3146
3136
|
readonly isDuplicateMember: boolean;
|
|
@@ -3151,7 +3141,7 @@ declare module "./types-lookup.ts" {
|
|
|
3151
3141
|
readonly isActiveMembersLimitOverflow: boolean;
|
|
3152
3142
|
readonly type: 'OnlyPrimaryKeyAllowed' | 'DuplicateMember' | 'NoSuchMember' | 'LastMemberCannotQuit' | 'MissingCurrentIdentity' | 'ActiveMembersLimitExceeded' | 'ActiveMembersLimitOverflow';
|
|
3153
3143
|
}
|
|
3154
|
-
/** @name PalletCommitteeCall (
|
|
3144
|
+
/** @name PalletCommitteeCall (381) */
|
|
3155
3145
|
interface PalletCommitteeCall extends Enum {
|
|
3156
3146
|
readonly isSetVoteThreshold: boolean;
|
|
3157
3147
|
readonly asSetVoteThreshold: {
|
|
@@ -3179,7 +3169,7 @@ declare module "./types-lookup.ts" {
|
|
|
3179
3169
|
} & Struct;
|
|
3180
3170
|
readonly type: 'SetVoteThreshold' | 'SetReleaseCoordinator' | 'SetExpiresAfter' | 'VoteOrPropose' | 'Vote';
|
|
3181
3171
|
}
|
|
3182
|
-
/** @name PalletMultisigCall (
|
|
3172
|
+
/** @name PalletMultisigCall (387) */
|
|
3183
3173
|
interface PalletMultisigCall extends Enum {
|
|
3184
3174
|
readonly isCreateMultisig: boolean;
|
|
3185
3175
|
readonly asCreateMultisig: {
|
|
@@ -3291,7 +3281,7 @@ declare module "./types-lookup.ts" {
|
|
|
3291
3281
|
} & Struct;
|
|
3292
3282
|
readonly type: 'CreateMultisig' | 'CreateOrApproveProposalAsIdentity' | 'CreateOrApproveProposalAsKey' | 'CreateProposalAsIdentity' | 'CreateProposalAsKey' | 'ApproveAsIdentity' | 'ApproveAsKey' | 'RejectAsIdentity' | 'RejectAsKey' | 'AcceptMultisigSignerAsIdentity' | 'AcceptMultisigSignerAsKey' | 'AddMultisigSigner' | 'RemoveMultisigSigner' | 'AddMultisigSignersViaCreator' | 'RemoveMultisigSignersViaCreator' | 'ChangeSigsRequired' | 'MakeMultisigSecondary' | 'MakeMultisigPrimary' | 'ExecuteScheduledProposal' | 'ChangeSigsRequiredViaCreator' | 'RemoveCreatorControls';
|
|
3293
3283
|
}
|
|
3294
|
-
/** @name PalletBridgeCall (
|
|
3284
|
+
/** @name PalletBridgeCall (388) */
|
|
3295
3285
|
interface PalletBridgeCall extends Enum {
|
|
3296
3286
|
readonly isChangeController: boolean;
|
|
3297
3287
|
readonly asChangeController: {
|
|
@@ -3358,7 +3348,7 @@ declare module "./types-lookup.ts" {
|
|
|
3358
3348
|
} & Struct;
|
|
3359
3349
|
readonly type: 'ChangeController' | 'ChangeAdmin' | 'ChangeTimelock' | 'Freeze' | 'Unfreeze' | 'ChangeBridgeLimit' | 'ChangeBridgeExempted' | 'ForceHandleBridgeTx' | 'BatchProposeBridgeTx' | 'ProposeBridgeTx' | 'HandleBridgeTx' | 'FreezeTxs' | 'UnfreezeTxs' | 'HandleScheduledBridgeTx' | 'AddFreezeAdmin' | 'RemoveFreezeAdmin' | 'RemoveTxs';
|
|
3360
3350
|
}
|
|
3361
|
-
/** @name PalletStakingCall (
|
|
3351
|
+
/** @name PalletStakingCall (392) */
|
|
3362
3352
|
interface PalletStakingCall extends Enum {
|
|
3363
3353
|
readonly isBond: boolean;
|
|
3364
3354
|
readonly asBond: {
|
|
@@ -3501,7 +3491,7 @@ declare module "./types-lookup.ts" {
|
|
|
3501
3491
|
} & Struct;
|
|
3502
3492
|
readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'AddPermissionedValidator' | 'RemovePermissionedValidator' | 'ValidateCddExpiryNominators' | 'SetCommissionCap' | 'SetMinBondThreshold' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'SetHistoryDepth' | 'ReapStash' | 'SubmitElectionSolution' | 'SubmitElectionSolutionUnsigned' | 'PayoutStakersBySystem' | 'ChangeSlashingAllowedFor' | 'UpdatePermissionedValidatorIntendedCount' | 'ChillFromGovernance';
|
|
3503
3493
|
}
|
|
3504
|
-
/** @name PalletStakingRewardDestination (
|
|
3494
|
+
/** @name PalletStakingRewardDestination (393) */
|
|
3505
3495
|
interface PalletStakingRewardDestination extends Enum {
|
|
3506
3496
|
readonly isStaked: boolean;
|
|
3507
3497
|
readonly isStash: boolean;
|
|
@@ -3510,12 +3500,12 @@ declare module "./types-lookup.ts" {
|
|
|
3510
3500
|
readonly asAccount: AccountId32;
|
|
3511
3501
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account';
|
|
3512
3502
|
}
|
|
3513
|
-
/** @name PalletStakingValidatorPrefs (
|
|
3503
|
+
/** @name PalletStakingValidatorPrefs (394) */
|
|
3514
3504
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
3515
3505
|
readonly commission: Compact<Perbill>;
|
|
3516
3506
|
readonly blocked: bool;
|
|
3517
3507
|
}
|
|
3518
|
-
/** @name PalletStakingCompactAssignments (
|
|
3508
|
+
/** @name PalletStakingCompactAssignments (400) */
|
|
3519
3509
|
interface PalletStakingCompactAssignments extends Struct {
|
|
3520
3510
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
3521
3511
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -3534,38 +3524,38 @@ declare module "./types-lookup.ts" {
|
|
|
3534
3524
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3535
3525
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3536
3526
|
}
|
|
3537
|
-
/** @name SpNposElectionsElectionScore (
|
|
3527
|
+
/** @name SpNposElectionsElectionScore (451) */
|
|
3538
3528
|
interface SpNposElectionsElectionScore extends Struct {
|
|
3539
3529
|
readonly minimalStake: u128;
|
|
3540
3530
|
readonly sumStake: u128;
|
|
3541
3531
|
readonly sumStakeSquared: u128;
|
|
3542
3532
|
}
|
|
3543
|
-
/** @name PalletStakingElectionSize (
|
|
3533
|
+
/** @name PalletStakingElectionSize (452) */
|
|
3544
3534
|
interface PalletStakingElectionSize extends Struct {
|
|
3545
3535
|
readonly validators: Compact<u16>;
|
|
3546
3536
|
readonly nominators: Compact<u32>;
|
|
3547
3537
|
}
|
|
3548
|
-
/** @name PalletSessionCall (
|
|
3538
|
+
/** @name PalletSessionCall (453) */
|
|
3549
3539
|
interface PalletSessionCall extends Enum {
|
|
3550
3540
|
readonly isSetKeys: boolean;
|
|
3551
3541
|
readonly asSetKeys: {
|
|
3552
|
-
readonly keys_:
|
|
3542
|
+
readonly keys_: PolymeshRuntimeTestnetRuntimeSessionKeys;
|
|
3553
3543
|
readonly proof: Bytes;
|
|
3554
3544
|
} & Struct;
|
|
3555
3545
|
readonly isPurgeKeys: boolean;
|
|
3556
3546
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
3557
3547
|
}
|
|
3558
|
-
/** @name
|
|
3559
|
-
interface
|
|
3548
|
+
/** @name PolymeshRuntimeTestnetRuntimeSessionKeys (454) */
|
|
3549
|
+
interface PolymeshRuntimeTestnetRuntimeSessionKeys extends Struct {
|
|
3560
3550
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
3561
3551
|
readonly babe: SpConsensusBabeAppPublic;
|
|
3562
3552
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
3563
3553
|
readonly authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3564
3554
|
}
|
|
3565
|
-
/** @name SpAuthorityDiscoveryAppPublic (
|
|
3555
|
+
/** @name SpAuthorityDiscoveryAppPublic (455) */
|
|
3566
3556
|
interface SpAuthorityDiscoveryAppPublic extends SpCoreSr25519Public {
|
|
3567
3557
|
}
|
|
3568
|
-
/** @name PalletGrandpaCall (
|
|
3558
|
+
/** @name PalletGrandpaCall (456) */
|
|
3569
3559
|
interface PalletGrandpaCall extends Enum {
|
|
3570
3560
|
readonly isReportEquivocation: boolean;
|
|
3571
3561
|
readonly asReportEquivocation: {
|
|
@@ -3584,12 +3574,12 @@ declare module "./types-lookup.ts" {
|
|
|
3584
3574
|
} & Struct;
|
|
3585
3575
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
3586
3576
|
}
|
|
3587
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
3577
|
+
/** @name SpConsensusGrandpaEquivocationProof (457) */
|
|
3588
3578
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
3589
3579
|
readonly setId: u64;
|
|
3590
3580
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
3591
3581
|
}
|
|
3592
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
3582
|
+
/** @name SpConsensusGrandpaEquivocation (458) */
|
|
3593
3583
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
3594
3584
|
readonly isPrevote: boolean;
|
|
3595
3585
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -3597,37 +3587,37 @@ declare module "./types-lookup.ts" {
|
|
|
3597
3587
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
3598
3588
|
readonly type: 'Prevote' | 'Precommit';
|
|
3599
3589
|
}
|
|
3600
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
3590
|
+
/** @name FinalityGrandpaEquivocationPrevote (459) */
|
|
3601
3591
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
3602
3592
|
readonly roundNumber: u64;
|
|
3603
3593
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3604
3594
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3605
3595
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3606
3596
|
}
|
|
3607
|
-
/** @name FinalityGrandpaPrevote (
|
|
3597
|
+
/** @name FinalityGrandpaPrevote (460) */
|
|
3608
3598
|
interface FinalityGrandpaPrevote extends Struct {
|
|
3609
3599
|
readonly targetHash: H256;
|
|
3610
3600
|
readonly targetNumber: u32;
|
|
3611
3601
|
}
|
|
3612
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3602
|
+
/** @name SpConsensusGrandpaAppSignature (461) */
|
|
3613
3603
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
3614
3604
|
}
|
|
3615
|
-
/** @name SpCoreEd25519Signature (
|
|
3605
|
+
/** @name SpCoreEd25519Signature (462) */
|
|
3616
3606
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
3617
3607
|
}
|
|
3618
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3608
|
+
/** @name FinalityGrandpaEquivocationPrecommit (464) */
|
|
3619
3609
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3620
3610
|
readonly roundNumber: u64;
|
|
3621
3611
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3622
3612
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3623
3613
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3624
3614
|
}
|
|
3625
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3615
|
+
/** @name FinalityGrandpaPrecommit (465) */
|
|
3626
3616
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3627
3617
|
readonly targetHash: H256;
|
|
3628
3618
|
readonly targetNumber: u32;
|
|
3629
3619
|
}
|
|
3630
|
-
/** @name PalletImOnlineCall (
|
|
3620
|
+
/** @name PalletImOnlineCall (467) */
|
|
3631
3621
|
interface PalletImOnlineCall extends Enum {
|
|
3632
3622
|
readonly isHeartbeat: boolean;
|
|
3633
3623
|
readonly asHeartbeat: {
|
|
@@ -3636,7 +3626,7 @@ declare module "./types-lookup.ts" {
|
|
|
3636
3626
|
} & Struct;
|
|
3637
3627
|
readonly type: 'Heartbeat';
|
|
3638
3628
|
}
|
|
3639
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3629
|
+
/** @name PalletImOnlineHeartbeat (468) */
|
|
3640
3630
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
3641
3631
|
readonly blockNumber: u32;
|
|
3642
3632
|
readonly networkState: SpCoreOffchainOpaqueNetworkState;
|
|
@@ -3644,40 +3634,18 @@ declare module "./types-lookup.ts" {
|
|
|
3644
3634
|
readonly authorityIndex: u32;
|
|
3645
3635
|
readonly validatorsLen: u32;
|
|
3646
3636
|
}
|
|
3647
|
-
/** @name SpCoreOffchainOpaqueNetworkState (
|
|
3637
|
+
/** @name SpCoreOffchainOpaqueNetworkState (469) */
|
|
3648
3638
|
interface SpCoreOffchainOpaqueNetworkState extends Struct {
|
|
3649
3639
|
readonly peerId: OpaquePeerId;
|
|
3650
3640
|
readonly externalAddresses: Vec<OpaqueMultiaddr>;
|
|
3651
3641
|
}
|
|
3652
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3642
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (473) */
|
|
3653
3643
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
3654
3644
|
}
|
|
3655
|
-
/** @name SpCoreSr25519Signature (
|
|
3645
|
+
/** @name SpCoreSr25519Signature (474) */
|
|
3656
3646
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
3657
3647
|
}
|
|
3658
|
-
/** @name
|
|
3659
|
-
interface PalletSudoCall extends Enum {
|
|
3660
|
-
readonly isSudo: boolean;
|
|
3661
|
-
readonly asSudo: {
|
|
3662
|
-
readonly call: Call;
|
|
3663
|
-
} & Struct;
|
|
3664
|
-
readonly isSudoUncheckedWeight: boolean;
|
|
3665
|
-
readonly asSudoUncheckedWeight: {
|
|
3666
|
-
readonly call: Call;
|
|
3667
|
-
readonly weight: SpWeightsWeightV2Weight;
|
|
3668
|
-
} & Struct;
|
|
3669
|
-
readonly isSetKey: boolean;
|
|
3670
|
-
readonly asSetKey: {
|
|
3671
|
-
readonly new_: MultiAddress;
|
|
3672
|
-
} & Struct;
|
|
3673
|
-
readonly isSudoAs: boolean;
|
|
3674
|
-
readonly asSudoAs: {
|
|
3675
|
-
readonly who: MultiAddress;
|
|
3676
|
-
readonly call: Call;
|
|
3677
|
-
} & Struct;
|
|
3678
|
-
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
|
|
3679
|
-
}
|
|
3680
|
-
/** @name PalletAssetCall (477) */
|
|
3648
|
+
/** @name PalletAssetCall (475) */
|
|
3681
3649
|
interface PalletAssetCall extends Enum {
|
|
3682
3650
|
readonly isRegisterTicker: boolean;
|
|
3683
3651
|
readonly asRegisterTicker: {
|
|
@@ -3838,7 +3806,7 @@ declare module "./types-lookup.ts" {
|
|
|
3838
3806
|
} & Struct;
|
|
3839
3807
|
readonly type: 'RegisterTicker' | 'AcceptTickerTransfer' | 'AcceptAssetOwnershipTransfer' | 'CreateAsset' | 'Freeze' | 'Unfreeze' | 'RenameAsset' | 'Issue' | 'Redeem' | 'MakeDivisible' | 'AddDocuments' | 'RemoveDocuments' | 'SetFundingRound' | 'UpdateIdentifiers' | 'ControllerTransfer' | 'RegisterCustomAssetType' | 'CreateAssetWithCustomType' | 'SetAssetMetadata' | 'SetAssetMetadataDetails' | 'RegisterAndSetLocalAssetMetadata' | 'RegisterAssetMetadataLocalType' | 'RegisterAssetMetadataGlobalType' | 'RedeemFromPortfolio' | 'UpdateAssetType' | 'RemoveLocalMetadataKey' | 'RemoveMetadataValue' | 'ExemptTickerAffirmation' | 'RemoveTickerAffirmationExemption' | 'PreApproveTicker' | 'RemoveTickerPreApproval';
|
|
3840
3808
|
}
|
|
3841
|
-
/** @name PalletCorporateActionsDistributionCall (
|
|
3809
|
+
/** @name PalletCorporateActionsDistributionCall (477) */
|
|
3842
3810
|
interface PalletCorporateActionsDistributionCall extends Enum {
|
|
3843
3811
|
readonly isDistribute: boolean;
|
|
3844
3812
|
readonly asDistribute: {
|
|
@@ -3869,7 +3837,7 @@ declare module "./types-lookup.ts" {
|
|
|
3869
3837
|
} & Struct;
|
|
3870
3838
|
readonly type: 'Distribute' | 'Claim' | 'PushBenefit' | 'Reclaim' | 'RemoveDistribution';
|
|
3871
3839
|
}
|
|
3872
|
-
/** @name PalletAssetCheckpointCall (
|
|
3840
|
+
/** @name PalletAssetCheckpointCall (479) */
|
|
3873
3841
|
interface PalletAssetCheckpointCall extends Enum {
|
|
3874
3842
|
readonly isCreateCheckpoint: boolean;
|
|
3875
3843
|
readonly asCreateCheckpoint: {
|
|
@@ -3891,7 +3859,7 @@ declare module "./types-lookup.ts" {
|
|
|
3891
3859
|
} & Struct;
|
|
3892
3860
|
readonly type: 'CreateCheckpoint' | 'SetSchedulesMaxComplexity' | 'CreateSchedule' | 'RemoveSchedule';
|
|
3893
3861
|
}
|
|
3894
|
-
/** @name PalletComplianceManagerCall (
|
|
3862
|
+
/** @name PalletComplianceManagerCall (480) */
|
|
3895
3863
|
interface PalletComplianceManagerCall extends Enum {
|
|
3896
3864
|
readonly isAddComplianceRequirement: boolean;
|
|
3897
3865
|
readonly asAddComplianceRequirement: {
|
|
@@ -3938,7 +3906,7 @@ declare module "./types-lookup.ts" {
|
|
|
3938
3906
|
} & Struct;
|
|
3939
3907
|
readonly type: 'AddComplianceRequirement' | 'RemoveComplianceRequirement' | 'ReplaceAssetCompliance' | 'ResetAssetCompliance' | 'PauseAssetCompliance' | 'ResumeAssetCompliance' | 'AddDefaultTrustedClaimIssuer' | 'RemoveDefaultTrustedClaimIssuer' | 'ChangeComplianceRequirement';
|
|
3940
3908
|
}
|
|
3941
|
-
/** @name PalletCorporateActionsCall (
|
|
3909
|
+
/** @name PalletCorporateActionsCall (481) */
|
|
3942
3910
|
interface PalletCorporateActionsCall extends Enum {
|
|
3943
3911
|
readonly isSetMaxDetailsLength: boolean;
|
|
3944
3912
|
readonly asSetMaxDetailsLength: {
|
|
@@ -3997,7 +3965,7 @@ declare module "./types-lookup.ts" {
|
|
|
3997
3965
|
} & Struct;
|
|
3998
3966
|
readonly type: 'SetMaxDetailsLength' | 'SetDefaultTargets' | 'SetDefaultWithholdingTax' | 'SetDidWithholdingTax' | 'InitiateCorporateAction' | 'LinkCaDoc' | 'RemoveCa' | 'ChangeRecordDate' | 'InitiateCorporateActionAndDistribute';
|
|
3999
3967
|
}
|
|
4000
|
-
/** @name PalletCorporateActionsRecordDateSpec (
|
|
3968
|
+
/** @name PalletCorporateActionsRecordDateSpec (483) */
|
|
4001
3969
|
interface PalletCorporateActionsRecordDateSpec extends Enum {
|
|
4002
3970
|
readonly isScheduled: boolean;
|
|
4003
3971
|
readonly asScheduled: u64;
|
|
@@ -4007,7 +3975,7 @@ declare module "./types-lookup.ts" {
|
|
|
4007
3975
|
readonly asExisting: u64;
|
|
4008
3976
|
readonly type: 'Scheduled' | 'ExistingSchedule' | 'Existing';
|
|
4009
3977
|
}
|
|
4010
|
-
/** @name PalletCorporateActionsInitiateCorporateActionArgs (
|
|
3978
|
+
/** @name PalletCorporateActionsInitiateCorporateActionArgs (486) */
|
|
4011
3979
|
interface PalletCorporateActionsInitiateCorporateActionArgs extends Struct {
|
|
4012
3980
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
4013
3981
|
readonly kind: PalletCorporateActionsCaKind;
|
|
@@ -4018,7 +3986,7 @@ declare module "./types-lookup.ts" {
|
|
|
4018
3986
|
readonly defaultWithholdingTax: Option<Permill>;
|
|
4019
3987
|
readonly withholdingTax: Option<Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>>;
|
|
4020
3988
|
}
|
|
4021
|
-
/** @name PalletCorporateActionsBallotCall (
|
|
3989
|
+
/** @name PalletCorporateActionsBallotCall (487) */
|
|
4022
3990
|
interface PalletCorporateActionsBallotCall extends Enum {
|
|
4023
3991
|
readonly isAttachBallot: boolean;
|
|
4024
3992
|
readonly asAttachBallot: {
|
|
@@ -4053,7 +4021,7 @@ declare module "./types-lookup.ts" {
|
|
|
4053
4021
|
} & Struct;
|
|
4054
4022
|
readonly type: 'AttachBallot' | 'Vote' | 'ChangeEnd' | 'ChangeMeta' | 'ChangeRcv' | 'RemoveBallot';
|
|
4055
4023
|
}
|
|
4056
|
-
/** @name PalletPipsCall (
|
|
4024
|
+
/** @name PalletPipsCall (488) */
|
|
4057
4025
|
interface PalletPipsCall extends Enum {
|
|
4058
4026
|
readonly isSetPruneHistoricalPips: boolean;
|
|
4059
4027
|
readonly asSetPruneHistoricalPips: {
|
|
@@ -4126,14 +4094,14 @@ declare module "./types-lookup.ts" {
|
|
|
4126
4094
|
} & Struct;
|
|
4127
4095
|
readonly type: 'SetPruneHistoricalPips' | 'SetMinProposalDeposit' | 'SetDefaultEnactmentPeriod' | 'SetPendingPipExpiry' | 'SetMaxPipSkipCount' | 'SetActivePipLimit' | 'Propose' | 'Vote' | 'ApproveCommitteeProposal' | 'RejectProposal' | 'PruneProposal' | 'RescheduleExecution' | 'ClearSnapshot' | 'Snapshot' | 'EnactSnapshotResults' | 'ExecuteScheduledPip' | 'ExpireScheduledPip';
|
|
4128
4096
|
}
|
|
4129
|
-
/** @name PalletPipsSnapshotResult (
|
|
4097
|
+
/** @name PalletPipsSnapshotResult (491) */
|
|
4130
4098
|
interface PalletPipsSnapshotResult extends Enum {
|
|
4131
4099
|
readonly isApprove: boolean;
|
|
4132
4100
|
readonly isReject: boolean;
|
|
4133
4101
|
readonly isSkip: boolean;
|
|
4134
4102
|
readonly type: 'Approve' | 'Reject' | 'Skip';
|
|
4135
4103
|
}
|
|
4136
|
-
/** @name PalletPortfolioCall (
|
|
4104
|
+
/** @name PalletPortfolioCall (492) */
|
|
4137
4105
|
interface PalletPortfolioCall extends Enum {
|
|
4138
4106
|
readonly isCreatePortfolio: boolean;
|
|
4139
4107
|
readonly asCreatePortfolio: {
|
|
@@ -4187,12 +4155,12 @@ declare module "./types-lookup.ts" {
|
|
|
4187
4155
|
} & Struct;
|
|
4188
4156
|
readonly type: 'CreatePortfolio' | 'DeletePortfolio' | 'RenamePortfolio' | 'QuitPortfolioCustody' | 'AcceptPortfolioCustody' | 'MovePortfolioFunds' | 'PreApprovePortfolio' | 'RemovePortfolioPreApproval' | 'AllowIdentityToCreatePortfolios' | 'RevokeCreatePortfoliosPermission' | 'CreateCustodyPortfolio';
|
|
4189
4157
|
}
|
|
4190
|
-
/** @name PolymeshPrimitivesPortfolioFund (
|
|
4158
|
+
/** @name PolymeshPrimitivesPortfolioFund (494) */
|
|
4191
4159
|
interface PolymeshPrimitivesPortfolioFund extends Struct {
|
|
4192
4160
|
readonly description: PolymeshPrimitivesPortfolioFundDescription;
|
|
4193
4161
|
readonly memo: Option<PolymeshPrimitivesMemo>;
|
|
4194
4162
|
}
|
|
4195
|
-
/** @name PalletProtocolFeeCall (
|
|
4163
|
+
/** @name PalletProtocolFeeCall (495) */
|
|
4196
4164
|
interface PalletProtocolFeeCall extends Enum {
|
|
4197
4165
|
readonly isChangeCoefficient: boolean;
|
|
4198
4166
|
readonly asChangeCoefficient: {
|
|
@@ -4205,7 +4173,7 @@ declare module "./types-lookup.ts" {
|
|
|
4205
4173
|
} & Struct;
|
|
4206
4174
|
readonly type: 'ChangeCoefficient' | 'ChangeBaseFee';
|
|
4207
4175
|
}
|
|
4208
|
-
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (
|
|
4176
|
+
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (496) */
|
|
4209
4177
|
interface PolymeshCommonUtilitiesProtocolFeeProtocolOp extends Enum {
|
|
4210
4178
|
readonly isAssetRegisterTicker: boolean;
|
|
4211
4179
|
readonly isAssetIssue: boolean;
|
|
@@ -4225,7 +4193,7 @@ declare module "./types-lookup.ts" {
|
|
|
4225
4193
|
readonly isIdentityCreateChildIdentity: boolean;
|
|
4226
4194
|
readonly type: 'AssetRegisterTicker' | 'AssetIssue' | 'AssetAddDocuments' | 'AssetCreateAsset' | 'CheckpointCreateSchedule' | 'ComplianceManagerAddComplianceRequirement' | 'IdentityCddRegisterDid' | 'IdentityAddClaim' | 'IdentityAddSecondaryKeysWithAuthorization' | 'PipsPropose' | 'ContractsPutCode' | 'CorporateBallotAttachBallot' | 'CapitalDistributionDistribute' | 'NftCreateCollection' | 'NftMint' | 'IdentityCreateChildIdentity';
|
|
4227
4195
|
}
|
|
4228
|
-
/** @name PalletSchedulerCall (
|
|
4196
|
+
/** @name PalletSchedulerCall (497) */
|
|
4229
4197
|
interface PalletSchedulerCall extends Enum {
|
|
4230
4198
|
readonly isSchedule: boolean;
|
|
4231
4199
|
readonly asSchedule: {
|
|
@@ -4268,7 +4236,7 @@ declare module "./types-lookup.ts" {
|
|
|
4268
4236
|
} & Struct;
|
|
4269
4237
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
4270
4238
|
}
|
|
4271
|
-
/** @name PalletSettlementCall (
|
|
4239
|
+
/** @name PalletSettlementCall (499) */
|
|
4272
4240
|
interface PalletSettlementCall extends Enum {
|
|
4273
4241
|
readonly isCreateVenue: boolean;
|
|
4274
4242
|
readonly asCreateVenue: {
|
|
@@ -4388,7 +4356,7 @@ declare module "./types-lookup.ts" {
|
|
|
4388
4356
|
} & Struct;
|
|
4389
4357
|
readonly type: 'CreateVenue' | 'UpdateVenueDetails' | 'UpdateVenueType' | 'AffirmWithReceipts' | 'SetVenueFiltering' | 'AllowVenues' | 'DisallowVenues' | 'UpdateVenueSigners' | 'ExecuteManualInstruction' | 'AddInstruction' | 'AddAndAffirmInstruction' | 'AffirmInstruction' | 'WithdrawAffirmation' | 'RejectInstruction' | 'ExecuteScheduledInstruction' | 'AffirmWithReceiptsWithCount' | 'AffirmInstructionWithCount' | 'RejectInstructionWithCount' | 'WithdrawAffirmationWithCount';
|
|
4390
4358
|
}
|
|
4391
|
-
/** @name PolymeshPrimitivesSettlementReceiptDetails (
|
|
4359
|
+
/** @name PolymeshPrimitivesSettlementReceiptDetails (501) */
|
|
4392
4360
|
interface PolymeshPrimitivesSettlementReceiptDetails extends Struct {
|
|
4393
4361
|
readonly uid: u64;
|
|
4394
4362
|
readonly instructionId: u64;
|
|
@@ -4397,7 +4365,7 @@ declare module "./types-lookup.ts" {
|
|
|
4397
4365
|
readonly signature: SpRuntimeMultiSignature;
|
|
4398
4366
|
readonly metadata: Option<PolymeshPrimitivesSettlementReceiptMetadata>;
|
|
4399
4367
|
}
|
|
4400
|
-
/** @name SpRuntimeMultiSignature (
|
|
4368
|
+
/** @name SpRuntimeMultiSignature (502) */
|
|
4401
4369
|
interface SpRuntimeMultiSignature extends Enum {
|
|
4402
4370
|
readonly isEd25519: boolean;
|
|
4403
4371
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -4407,22 +4375,22 @@ declare module "./types-lookup.ts" {
|
|
|
4407
4375
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
4408
4376
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
4409
4377
|
}
|
|
4410
|
-
/** @name SpCoreEcdsaSignature (
|
|
4378
|
+
/** @name SpCoreEcdsaSignature (503) */
|
|
4411
4379
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4412
4380
|
}
|
|
4413
|
-
/** @name PolymeshPrimitivesSettlementAffirmationCount (
|
|
4381
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (506) */
|
|
4414
4382
|
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4415
4383
|
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4416
4384
|
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4417
4385
|
readonly offchainCount: u32;
|
|
4418
4386
|
}
|
|
4419
|
-
/** @name PolymeshPrimitivesSettlementAssetCount (
|
|
4387
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (507) */
|
|
4420
4388
|
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4421
4389
|
readonly fungible: u32;
|
|
4422
4390
|
readonly nonFungible: u32;
|
|
4423
4391
|
readonly offChain: u32;
|
|
4424
4392
|
}
|
|
4425
|
-
/** @name PalletStatisticsCall (
|
|
4393
|
+
/** @name PalletStatisticsCall (509) */
|
|
4426
4394
|
interface PalletStatisticsCall extends Enum {
|
|
4427
4395
|
readonly isSetActiveAssetStats: boolean;
|
|
4428
4396
|
readonly asSetActiveAssetStats: {
|
|
@@ -4448,7 +4416,7 @@ declare module "./types-lookup.ts" {
|
|
|
4448
4416
|
} & Struct;
|
|
4449
4417
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4450
4418
|
}
|
|
4451
|
-
/** @name PalletStoCall (
|
|
4419
|
+
/** @name PalletStoCall (514) */
|
|
4452
4420
|
interface PalletStoCall extends Enum {
|
|
4453
4421
|
readonly isCreateFundraiser: boolean;
|
|
4454
4422
|
readonly asCreateFundraiser: {
|
|
@@ -4497,12 +4465,12 @@ declare module "./types-lookup.ts" {
|
|
|
4497
4465
|
} & Struct;
|
|
4498
4466
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4499
4467
|
}
|
|
4500
|
-
/** @name PalletStoPriceTier (
|
|
4468
|
+
/** @name PalletStoPriceTier (516) */
|
|
4501
4469
|
interface PalletStoPriceTier extends Struct {
|
|
4502
4470
|
readonly total: u128;
|
|
4503
4471
|
readonly price: u128;
|
|
4504
4472
|
}
|
|
4505
|
-
/** @name PalletTreasuryCall (
|
|
4473
|
+
/** @name PalletTreasuryCall (518) */
|
|
4506
4474
|
interface PalletTreasuryCall extends Enum {
|
|
4507
4475
|
readonly isDisbursement: boolean;
|
|
4508
4476
|
readonly asDisbursement: {
|
|
@@ -4514,12 +4482,12 @@ declare module "./types-lookup.ts" {
|
|
|
4514
4482
|
} & Struct;
|
|
4515
4483
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4516
4484
|
}
|
|
4517
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4485
|
+
/** @name PolymeshPrimitivesBeneficiary (520) */
|
|
4518
4486
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4519
4487
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4520
4488
|
readonly amount: u128;
|
|
4521
4489
|
}
|
|
4522
|
-
/** @name PalletUtilityCall (
|
|
4490
|
+
/** @name PalletUtilityCall (521) */
|
|
4523
4491
|
interface PalletUtilityCall extends Enum {
|
|
4524
4492
|
readonly isBatch: boolean;
|
|
4525
4493
|
readonly asBatch: {
|
|
@@ -4537,7 +4505,7 @@ declare module "./types-lookup.ts" {
|
|
|
4537
4505
|
} & Struct;
|
|
4538
4506
|
readonly isDispatchAs: boolean;
|
|
4539
4507
|
readonly asDispatchAs: {
|
|
4540
|
-
readonly asOrigin:
|
|
4508
|
+
readonly asOrigin: PolymeshRuntimeTestnetRuntimeOriginCaller;
|
|
4541
4509
|
readonly call: Call;
|
|
4542
4510
|
} & Struct;
|
|
4543
4511
|
readonly isForceBatch: boolean;
|
|
@@ -4561,15 +4529,20 @@ declare module "./types-lookup.ts" {
|
|
|
4561
4529
|
readonly asBatchOptimistic: {
|
|
4562
4530
|
readonly calls: Vec<Call>;
|
|
4563
4531
|
} & Struct;
|
|
4564
|
-
readonly
|
|
4532
|
+
readonly isAsDerivative: boolean;
|
|
4533
|
+
readonly asAsDerivative: {
|
|
4534
|
+
readonly index: u16;
|
|
4535
|
+
readonly call: Call;
|
|
4536
|
+
} & Struct;
|
|
4537
|
+
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'BatchOld' | 'BatchAtomic' | 'BatchOptimistic' | 'AsDerivative';
|
|
4565
4538
|
}
|
|
4566
|
-
/** @name PalletUtilityUniqueCall (
|
|
4539
|
+
/** @name PalletUtilityUniqueCall (523) */
|
|
4567
4540
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4568
4541
|
readonly nonce: u64;
|
|
4569
4542
|
readonly call: Call;
|
|
4570
4543
|
}
|
|
4571
|
-
/** @name
|
|
4572
|
-
interface
|
|
4544
|
+
/** @name PolymeshRuntimeTestnetRuntimeOriginCaller (524) */
|
|
4545
|
+
interface PolymeshRuntimeTestnetRuntimeOriginCaller extends Enum {
|
|
4573
4546
|
readonly isSystem: boolean;
|
|
4574
4547
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
4575
4548
|
readonly isVoid: boolean;
|
|
@@ -4581,7 +4554,7 @@ declare module "./types-lookup.ts" {
|
|
|
4581
4554
|
readonly asUpgradeCommittee: PalletCommitteeRawOriginInstance4;
|
|
4582
4555
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4583
4556
|
}
|
|
4584
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4557
|
+
/** @name FrameSupportDispatchRawOrigin (525) */
|
|
4585
4558
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4586
4559
|
readonly isRoot: boolean;
|
|
4587
4560
|
readonly isSigned: boolean;
|
|
@@ -4589,26 +4562,26 @@ declare module "./types-lookup.ts" {
|
|
|
4589
4562
|
readonly isNone: boolean;
|
|
4590
4563
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4591
4564
|
}
|
|
4592
|
-
/** @name PalletCommitteeRawOriginInstance1 (
|
|
4565
|
+
/** @name PalletCommitteeRawOriginInstance1 (526) */
|
|
4593
4566
|
interface PalletCommitteeRawOriginInstance1 extends Enum {
|
|
4594
4567
|
readonly isEndorsed: boolean;
|
|
4595
4568
|
readonly type: 'Endorsed';
|
|
4596
4569
|
}
|
|
4597
|
-
/** @name PalletCommitteeRawOriginInstance3 (
|
|
4570
|
+
/** @name PalletCommitteeRawOriginInstance3 (527) */
|
|
4598
4571
|
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4599
4572
|
readonly isEndorsed: boolean;
|
|
4600
4573
|
readonly type: 'Endorsed';
|
|
4601
4574
|
}
|
|
4602
|
-
/** @name PalletCommitteeRawOriginInstance4 (
|
|
4575
|
+
/** @name PalletCommitteeRawOriginInstance4 (528) */
|
|
4603
4576
|
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4604
4577
|
readonly isEndorsed: boolean;
|
|
4605
4578
|
readonly type: 'Endorsed';
|
|
4606
4579
|
}
|
|
4607
|
-
/** @name SpCoreVoid (
|
|
4580
|
+
/** @name SpCoreVoid (529) */
|
|
4608
4581
|
type SpCoreVoid = Null;
|
|
4609
|
-
/** @name PalletBaseCall (
|
|
4582
|
+
/** @name PalletBaseCall (530) */
|
|
4610
4583
|
type PalletBaseCall = Null;
|
|
4611
|
-
/** @name PalletExternalAgentsCall (
|
|
4584
|
+
/** @name PalletExternalAgentsCall (531) */
|
|
4612
4585
|
interface PalletExternalAgentsCall extends Enum {
|
|
4613
4586
|
readonly isCreateGroup: boolean;
|
|
4614
4587
|
readonly asCreateGroup: {
|
|
@@ -4655,7 +4628,7 @@ declare module "./types-lookup.ts" {
|
|
|
4655
4628
|
} & Struct;
|
|
4656
4629
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4657
4630
|
}
|
|
4658
|
-
/** @name PalletRelayerCall (
|
|
4631
|
+
/** @name PalletRelayerCall (532) */
|
|
4659
4632
|
interface PalletRelayerCall extends Enum {
|
|
4660
4633
|
readonly isSetPayingKey: boolean;
|
|
4661
4634
|
readonly asSetPayingKey: {
|
|
@@ -4688,7 +4661,7 @@ declare module "./types-lookup.ts" {
|
|
|
4688
4661
|
} & Struct;
|
|
4689
4662
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4690
4663
|
}
|
|
4691
|
-
/** @name PalletContractsCall (
|
|
4664
|
+
/** @name PalletContractsCall (533) */
|
|
4692
4665
|
interface PalletContractsCall extends Enum {
|
|
4693
4666
|
readonly isCallOldWeight: boolean;
|
|
4694
4667
|
readonly asCallOldWeight: {
|
|
@@ -4759,13 +4732,13 @@ declare module "./types-lookup.ts" {
|
|
|
4759
4732
|
} & Struct;
|
|
4760
4733
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4761
4734
|
}
|
|
4762
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4735
|
+
/** @name PalletContractsWasmDeterminism (537) */
|
|
4763
4736
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4764
4737
|
readonly isDeterministic: boolean;
|
|
4765
4738
|
readonly isAllowIndeterminism: boolean;
|
|
4766
4739
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4767
4740
|
}
|
|
4768
|
-
/** @name PolymeshContractsCall (
|
|
4741
|
+
/** @name PolymeshContractsCall (538) */
|
|
4769
4742
|
interface PolymeshContractsCall extends Enum {
|
|
4770
4743
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4771
4744
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4816,16 +4789,16 @@ declare module "./types-lookup.ts" {
|
|
|
4816
4789
|
} & Struct;
|
|
4817
4790
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist' | 'InstantiateWithCodeAsPrimaryKey' | 'InstantiateWithHashAsPrimaryKey' | 'UpgradeApi';
|
|
4818
4791
|
}
|
|
4819
|
-
/** @name PolymeshContractsNextUpgrade (
|
|
4792
|
+
/** @name PolymeshContractsNextUpgrade (541) */
|
|
4820
4793
|
interface PolymeshContractsNextUpgrade extends Struct {
|
|
4821
4794
|
readonly chainVersion: PolymeshContractsChainVersion;
|
|
4822
4795
|
readonly apiHash: PolymeshContractsApiCodeHash;
|
|
4823
4796
|
}
|
|
4824
|
-
/** @name PolymeshContractsApiCodeHash (
|
|
4797
|
+
/** @name PolymeshContractsApiCodeHash (542) */
|
|
4825
4798
|
interface PolymeshContractsApiCodeHash extends Struct {
|
|
4826
4799
|
readonly hash_: H256;
|
|
4827
4800
|
}
|
|
4828
|
-
/** @name PalletPreimageCall (
|
|
4801
|
+
/** @name PalletPreimageCall (543) */
|
|
4829
4802
|
interface PalletPreimageCall extends Enum {
|
|
4830
4803
|
readonly isNotePreimage: boolean;
|
|
4831
4804
|
readonly asNotePreimage: {
|
|
@@ -4845,7 +4818,7 @@ declare module "./types-lookup.ts" {
|
|
|
4845
4818
|
} & Struct;
|
|
4846
4819
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4847
4820
|
}
|
|
4848
|
-
/** @name PalletNftCall (
|
|
4821
|
+
/** @name PalletNftCall (544) */
|
|
4849
4822
|
interface PalletNftCall extends Enum {
|
|
4850
4823
|
readonly isCreateNftCollection: boolean;
|
|
4851
4824
|
readonly asCreateNftCollection: {
|
|
@@ -4874,15 +4847,15 @@ declare module "./types-lookup.ts" {
|
|
|
4874
4847
|
} & Struct;
|
|
4875
4848
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft' | 'ControllerTransfer';
|
|
4876
4849
|
}
|
|
4877
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4850
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (546) */
|
|
4878
4851
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4879
4852
|
}
|
|
4880
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4853
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (549) */
|
|
4881
4854
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4882
4855
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4883
4856
|
readonly value: Bytes;
|
|
4884
4857
|
}
|
|
4885
|
-
/** @name PalletTestUtilsCall (
|
|
4858
|
+
/** @name PalletTestUtilsCall (550) */
|
|
4886
4859
|
interface PalletTestUtilsCall extends Enum {
|
|
4887
4860
|
readonly isRegisterDid: boolean;
|
|
4888
4861
|
readonly asRegisterDid: {
|
|
@@ -4899,14 +4872,14 @@ declare module "./types-lookup.ts" {
|
|
|
4899
4872
|
} & Struct;
|
|
4900
4873
|
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4901
4874
|
}
|
|
4902
|
-
/** @name PalletCommitteePolymeshVotes (
|
|
4875
|
+
/** @name PalletCommitteePolymeshVotes (551) */
|
|
4903
4876
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4904
4877
|
readonly index: u32;
|
|
4905
4878
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
4906
4879
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
4907
4880
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
4908
4881
|
}
|
|
4909
|
-
/** @name PalletCommitteeError (
|
|
4882
|
+
/** @name PalletCommitteeError (553) */
|
|
4910
4883
|
interface PalletCommitteeError extends Enum {
|
|
4911
4884
|
readonly isDuplicateVote: boolean;
|
|
4912
4885
|
readonly isNotAMember: boolean;
|
|
@@ -4919,7 +4892,7 @@ declare module "./types-lookup.ts" {
|
|
|
4919
4892
|
readonly isProposalsLimitReached: boolean;
|
|
4920
4893
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
4921
4894
|
}
|
|
4922
|
-
/** @name PolymeshPrimitivesMultisigProposalDetails (
|
|
4895
|
+
/** @name PolymeshPrimitivesMultisigProposalDetails (563) */
|
|
4923
4896
|
interface PolymeshPrimitivesMultisigProposalDetails extends Struct {
|
|
4924
4897
|
readonly approvals: u64;
|
|
4925
4898
|
readonly rejections: u64;
|
|
@@ -4927,7 +4900,7 @@ declare module "./types-lookup.ts" {
|
|
|
4927
4900
|
readonly expiry: Option<u64>;
|
|
4928
4901
|
readonly autoClose: bool;
|
|
4929
4902
|
}
|
|
4930
|
-
/** @name PolymeshPrimitivesMultisigProposalStatus (
|
|
4903
|
+
/** @name PolymeshPrimitivesMultisigProposalStatus (564) */
|
|
4931
4904
|
interface PolymeshPrimitivesMultisigProposalStatus extends Enum {
|
|
4932
4905
|
readonly isInvalid: boolean;
|
|
4933
4906
|
readonly isActiveOrExpired: boolean;
|
|
@@ -4936,7 +4909,7 @@ declare module "./types-lookup.ts" {
|
|
|
4936
4909
|
readonly isRejected: boolean;
|
|
4937
4910
|
readonly type: 'Invalid' | 'ActiveOrExpired' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
4938
4911
|
}
|
|
4939
|
-
/** @name PalletMultisigError (
|
|
4912
|
+
/** @name PalletMultisigError (566) */
|
|
4940
4913
|
interface PalletMultisigError extends Enum {
|
|
4941
4914
|
readonly isCddMissing: boolean;
|
|
4942
4915
|
readonly isProposalMissing: boolean;
|
|
@@ -4966,14 +4939,14 @@ declare module "./types-lookup.ts" {
|
|
|
4966
4939
|
readonly isCreatorControlsHaveBeenRemoved: boolean;
|
|
4967
4940
|
readonly type: 'CddMissing' | 'ProposalMissing' | 'DecodingError' | 'NoSigners' | 'RequiredSignaturesOutOfBounds' | 'NotASigner' | 'NoSuchMultisig' | 'NotEnoughSigners' | 'NonceOverflow' | 'AlreadyVoted' | 'AlreadyASigner' | 'FailedToChargeFee' | 'IdentityNotCreator' | 'ChangeNotAllowed' | 'SignerAlreadyLinkedToMultisig' | 'SignerAlreadyLinkedToIdentity' | 'MultisigNotAllowedToLinkToItself' | 'MissingCurrentIdentity' | 'NotPrimaryKey' | 'ProposalAlreadyRejected' | 'ProposalExpired' | 'ProposalAlreadyExecuted' | 'MultisigMissingIdentity' | 'FailedToSchedule' | 'TooManySigners' | 'CreatorControlsHaveBeenRemoved';
|
|
4968
4941
|
}
|
|
4969
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
4942
|
+
/** @name PalletBridgeBridgeTxDetail (568) */
|
|
4970
4943
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
4971
4944
|
readonly amount: u128;
|
|
4972
4945
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
4973
4946
|
readonly executionBlock: u32;
|
|
4974
4947
|
readonly txHash: H256;
|
|
4975
4948
|
}
|
|
4976
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
4949
|
+
/** @name PalletBridgeBridgeTxStatus (569) */
|
|
4977
4950
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
4978
4951
|
readonly isAbsent: boolean;
|
|
4979
4952
|
readonly isPending: boolean;
|
|
@@ -4983,7 +4956,7 @@ declare module "./types-lookup.ts" {
|
|
|
4983
4956
|
readonly isHandled: boolean;
|
|
4984
4957
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
4985
4958
|
}
|
|
4986
|
-
/** @name PalletBridgeError (
|
|
4959
|
+
/** @name PalletBridgeError (572) */
|
|
4987
4960
|
interface PalletBridgeError extends Enum {
|
|
4988
4961
|
readonly isControllerNotSet: boolean;
|
|
4989
4962
|
readonly isBadCaller: boolean;
|
|
@@ -5000,7 +4973,7 @@ declare module "./types-lookup.ts" {
|
|
|
5000
4973
|
readonly isTimelockedTx: boolean;
|
|
5001
4974
|
readonly type: 'ControllerNotSet' | 'BadCaller' | 'BadAdmin' | 'NoValidCdd' | 'ProposalAlreadyHandled' | 'Unauthorized' | 'Frozen' | 'NotFrozen' | 'FrozenTx' | 'BridgeLimitReached' | 'Overflow' | 'DivisionByZero' | 'TimelockedTx';
|
|
5002
4975
|
}
|
|
5003
|
-
/** @name PalletStakingStakingLedger (
|
|
4976
|
+
/** @name PalletStakingStakingLedger (573) */
|
|
5004
4977
|
interface PalletStakingStakingLedger extends Struct {
|
|
5005
4978
|
readonly stash: AccountId32;
|
|
5006
4979
|
readonly total: Compact<u128>;
|
|
@@ -5008,28 +4981,28 @@ declare module "./types-lookup.ts" {
|
|
|
5008
4981
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
5009
4982
|
readonly claimedRewards: Vec<u32>;
|
|
5010
4983
|
}
|
|
5011
|
-
/** @name PalletStakingUnlockChunk (
|
|
4984
|
+
/** @name PalletStakingUnlockChunk (575) */
|
|
5012
4985
|
interface PalletStakingUnlockChunk extends Struct {
|
|
5013
4986
|
readonly value: Compact<u128>;
|
|
5014
4987
|
readonly era: Compact<u32>;
|
|
5015
4988
|
}
|
|
5016
|
-
/** @name PalletStakingNominations (
|
|
4989
|
+
/** @name PalletStakingNominations (576) */
|
|
5017
4990
|
interface PalletStakingNominations extends Struct {
|
|
5018
4991
|
readonly targets: Vec<AccountId32>;
|
|
5019
4992
|
readonly submittedIn: u32;
|
|
5020
4993
|
readonly suppressed: bool;
|
|
5021
4994
|
}
|
|
5022
|
-
/** @name PalletStakingActiveEraInfo (
|
|
4995
|
+
/** @name PalletStakingActiveEraInfo (577) */
|
|
5023
4996
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
5024
4997
|
readonly index: u32;
|
|
5025
4998
|
readonly start: Option<u64>;
|
|
5026
4999
|
}
|
|
5027
|
-
/** @name PalletStakingEraRewardPoints (
|
|
5000
|
+
/** @name PalletStakingEraRewardPoints (579) */
|
|
5028
5001
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
5029
5002
|
readonly total: u32;
|
|
5030
5003
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
5031
5004
|
}
|
|
5032
|
-
/** @name PalletStakingForcing (
|
|
5005
|
+
/** @name PalletStakingForcing (582) */
|
|
5033
5006
|
interface PalletStakingForcing extends Enum {
|
|
5034
5007
|
readonly isNotForcing: boolean;
|
|
5035
5008
|
readonly isForceNew: boolean;
|
|
@@ -5037,7 +5010,7 @@ declare module "./types-lookup.ts" {
|
|
|
5037
5010
|
readonly isForceAlways: boolean;
|
|
5038
5011
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
5039
5012
|
}
|
|
5040
|
-
/** @name PalletStakingUnappliedSlash (
|
|
5013
|
+
/** @name PalletStakingUnappliedSlash (584) */
|
|
5041
5014
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
5042
5015
|
readonly validator: AccountId32;
|
|
5043
5016
|
readonly own: u128;
|
|
@@ -5045,37 +5018,37 @@ declare module "./types-lookup.ts" {
|
|
|
5045
5018
|
readonly reporters: Vec<AccountId32>;
|
|
5046
5019
|
readonly payout: u128;
|
|
5047
5020
|
}
|
|
5048
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
5021
|
+
/** @name PalletStakingSlashingSlashingSpans (588) */
|
|
5049
5022
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
5050
5023
|
readonly spanIndex: u32;
|
|
5051
5024
|
readonly lastStart: u32;
|
|
5052
5025
|
readonly lastNonzeroSlash: u32;
|
|
5053
5026
|
readonly prior: Vec<u32>;
|
|
5054
5027
|
}
|
|
5055
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
5028
|
+
/** @name PalletStakingSlashingSpanRecord (589) */
|
|
5056
5029
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
5057
5030
|
readonly slashed: u128;
|
|
5058
5031
|
readonly paidOut: u128;
|
|
5059
5032
|
}
|
|
5060
|
-
/** @name PalletStakingElectionResult (
|
|
5033
|
+
/** @name PalletStakingElectionResult (592) */
|
|
5061
5034
|
interface PalletStakingElectionResult extends Struct {
|
|
5062
5035
|
readonly electedStashes: Vec<AccountId32>;
|
|
5063
5036
|
readonly exposures: Vec<ITuple<[AccountId32, PalletStakingExposure]>>;
|
|
5064
5037
|
readonly compute: PalletStakingElectionCompute;
|
|
5065
5038
|
}
|
|
5066
|
-
/** @name PalletStakingElectionStatus (
|
|
5039
|
+
/** @name PalletStakingElectionStatus (593) */
|
|
5067
5040
|
interface PalletStakingElectionStatus extends Enum {
|
|
5068
5041
|
readonly isClosed: boolean;
|
|
5069
5042
|
readonly isOpen: boolean;
|
|
5070
5043
|
readonly asOpen: u32;
|
|
5071
5044
|
readonly type: 'Closed' | 'Open';
|
|
5072
5045
|
}
|
|
5073
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
5046
|
+
/** @name PalletStakingPermissionedIdentityPrefs (594) */
|
|
5074
5047
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
5075
5048
|
readonly intendedCount: u32;
|
|
5076
5049
|
readonly runningCount: u32;
|
|
5077
5050
|
}
|
|
5078
|
-
/** @name PalletStakingReleases (
|
|
5051
|
+
/** @name PalletStakingReleases (595) */
|
|
5079
5052
|
interface PalletStakingReleases extends Enum {
|
|
5080
5053
|
readonly isV100Ancient: boolean;
|
|
5081
5054
|
readonly isV200: boolean;
|
|
@@ -5087,7 +5060,7 @@ declare module "./types-lookup.ts" {
|
|
|
5087
5060
|
readonly isV700: boolean;
|
|
5088
5061
|
readonly type: 'V100Ancient' | 'V200' | 'V300' | 'V400' | 'V500' | 'V600' | 'V601' | 'V700';
|
|
5089
5062
|
}
|
|
5090
|
-
/** @name PalletStakingError (
|
|
5063
|
+
/** @name PalletStakingError (597) */
|
|
5091
5064
|
interface PalletStakingError extends Enum {
|
|
5092
5065
|
readonly isNotController: boolean;
|
|
5093
5066
|
readonly isNotStash: boolean;
|
|
@@ -5134,15 +5107,15 @@ declare module "./types-lookup.ts" {
|
|
|
5134
5107
|
readonly isInvalidValidatorUnbondAmount: boolean;
|
|
5135
5108
|
readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'InvalidSlashIndex' | 'InsufficientValue' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'OffchainElectionEarlySubmission' | 'OffchainElectionWeakSubmission' | 'SnapshotUnavailable' | 'OffchainElectionBogusWinnerCount' | 'OffchainElectionBogusWinner' | 'OffchainElectionBogusCompact' | 'OffchainElectionBogusNominator' | 'OffchainElectionBogusNomination' | 'OffchainElectionSlashedNomination' | 'OffchainElectionBogusSelfVote' | 'OffchainElectionBogusEdge' | 'OffchainElectionBogusScore' | 'OffchainElectionBogusElectionSize' | 'CallNotAllowed' | 'IncorrectSlashingSpans' | 'AlreadyExists' | 'NotExists' | 'NoChange' | 'InvalidValidatorIdentity' | 'InvalidValidatorCommission' | 'StashIdentityDoesNotExist' | 'StashIdentityNotPermissioned' | 'StashIdentityNotCDDed' | 'HitIntendedValidatorCount' | 'IntendedCountIsExceedingConsensusLimit' | 'BondTooSmall' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'InvalidValidatorUnbondAmount';
|
|
5136
5109
|
}
|
|
5137
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5110
|
+
/** @name SpStakingOffenceOffenceDetails (598) */
|
|
5138
5111
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5139
5112
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5140
5113
|
readonly reporters: Vec<AccountId32>;
|
|
5141
5114
|
}
|
|
5142
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5115
|
+
/** @name SpCoreCryptoKeyTypeId (603) */
|
|
5143
5116
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5144
5117
|
}
|
|
5145
|
-
/** @name PalletSessionError (
|
|
5118
|
+
/** @name PalletSessionError (604) */
|
|
5146
5119
|
interface PalletSessionError extends Enum {
|
|
5147
5120
|
readonly isInvalidProof: boolean;
|
|
5148
5121
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5151,7 +5124,7 @@ declare module "./types-lookup.ts" {
|
|
|
5151
5124
|
readonly isNoAccount: boolean;
|
|
5152
5125
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5153
5126
|
}
|
|
5154
|
-
/** @name PalletGrandpaStoredState (
|
|
5127
|
+
/** @name PalletGrandpaStoredState (605) */
|
|
5155
5128
|
interface PalletGrandpaStoredState extends Enum {
|
|
5156
5129
|
readonly isLive: boolean;
|
|
5157
5130
|
readonly isPendingPause: boolean;
|
|
@@ -5167,14 +5140,14 @@ declare module "./types-lookup.ts" {
|
|
|
5167
5140
|
} & Struct;
|
|
5168
5141
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5169
5142
|
}
|
|
5170
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5143
|
+
/** @name PalletGrandpaStoredPendingChange (606) */
|
|
5171
5144
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5172
5145
|
readonly scheduledAt: u32;
|
|
5173
5146
|
readonly delay: u32;
|
|
5174
5147
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5175
5148
|
readonly forced: Option<u32>;
|
|
5176
5149
|
}
|
|
5177
|
-
/** @name PalletGrandpaError (
|
|
5150
|
+
/** @name PalletGrandpaError (608) */
|
|
5178
5151
|
interface PalletGrandpaError extends Enum {
|
|
5179
5152
|
readonly isPauseFailed: boolean;
|
|
5180
5153
|
readonly isResumeFailed: boolean;
|
|
@@ -5185,47 +5158,42 @@ declare module "./types-lookup.ts" {
|
|
|
5185
5158
|
readonly isDuplicateOffenceReport: boolean;
|
|
5186
5159
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5187
5160
|
}
|
|
5188
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5161
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (612) */
|
|
5189
5162
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5190
5163
|
readonly peerId: Bytes;
|
|
5191
5164
|
readonly externalAddresses: Vec<Bytes>;
|
|
5192
5165
|
}
|
|
5193
|
-
/** @name PalletImOnlineError (
|
|
5166
|
+
/** @name PalletImOnlineError (616) */
|
|
5194
5167
|
interface PalletImOnlineError extends Enum {
|
|
5195
5168
|
readonly isInvalidKey: boolean;
|
|
5196
5169
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5197
5170
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5198
5171
|
}
|
|
5199
|
-
/** @name
|
|
5200
|
-
interface PalletSudoError extends Enum {
|
|
5201
|
-
readonly isRequireSudo: boolean;
|
|
5202
|
-
readonly type: 'RequireSudo';
|
|
5203
|
-
}
|
|
5204
|
-
/** @name PalletAssetTickerRegistration (621) */
|
|
5172
|
+
/** @name PalletAssetTickerRegistration (618) */
|
|
5205
5173
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5206
5174
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5207
5175
|
readonly expiry: Option<u64>;
|
|
5208
5176
|
}
|
|
5209
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5177
|
+
/** @name PalletAssetTickerRegistrationConfig (619) */
|
|
5210
5178
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5211
5179
|
readonly maxTickerLength: u8;
|
|
5212
5180
|
readonly registrationLength: Option<u64>;
|
|
5213
5181
|
}
|
|
5214
|
-
/** @name PalletAssetSecurityToken (
|
|
5182
|
+
/** @name PalletAssetSecurityToken (620) */
|
|
5215
5183
|
interface PalletAssetSecurityToken extends Struct {
|
|
5216
5184
|
readonly totalSupply: u128;
|
|
5217
5185
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5218
5186
|
readonly divisible: bool;
|
|
5219
5187
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5220
5188
|
}
|
|
5221
|
-
/** @name PalletAssetAssetOwnershipRelation (
|
|
5189
|
+
/** @name PalletAssetAssetOwnershipRelation (624) */
|
|
5222
5190
|
interface PalletAssetAssetOwnershipRelation extends Enum {
|
|
5223
5191
|
readonly isNotOwned: boolean;
|
|
5224
5192
|
readonly isTickerOwned: boolean;
|
|
5225
5193
|
readonly isAssetOwned: boolean;
|
|
5226
5194
|
readonly type: 'NotOwned' | 'TickerOwned' | 'AssetOwned';
|
|
5227
5195
|
}
|
|
5228
|
-
/** @name PalletAssetError (
|
|
5196
|
+
/** @name PalletAssetError (630) */
|
|
5229
5197
|
interface PalletAssetError extends Enum {
|
|
5230
5198
|
readonly isUnauthorized: boolean;
|
|
5231
5199
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5266,7 +5234,7 @@ declare module "./types-lookup.ts" {
|
|
|
5266
5234
|
readonly isAssetMetadataValueIsEmpty: boolean;
|
|
5267
5235
|
readonly type: 'Unauthorized' | 'AssetAlreadyCreated' | 'TickerTooLong' | 'TickerNotAlphanumeric' | 'TickerAlreadyRegistered' | 'TotalSupplyAboveLimit' | 'NoSuchAsset' | 'AlreadyFrozen' | 'NotAnOwner' | 'BalanceOverflow' | 'TotalSupplyOverflow' | 'InvalidGranularity' | 'NotFrozen' | 'InvalidTransfer' | 'InsufficientBalance' | 'AssetAlreadyDivisible' | 'InvalidEthereumSignature' | 'TickerRegistrationExpired' | 'SenderSameAsReceiver' | 'NoSuchDoc' | 'MaxLengthOfAssetNameExceeded' | 'FundingRoundNameMaxLengthExceeded' | 'InvalidAssetIdentifier' | 'InvestorUniquenessClaimNotAllowed' | 'InvalidCustomAssetTypeId' | 'AssetMetadataNameMaxLengthExceeded' | 'AssetMetadataValueMaxLengthExceeded' | 'AssetMetadataTypeDefMaxLengthExceeded' | 'AssetMetadataKeyIsMissing' | 'AssetMetadataValueIsLocked' | 'AssetMetadataLocalKeyAlreadyExists' | 'AssetMetadataGlobalKeyAlreadyExists' | 'TickerFirstByteNotValid' | 'UnexpectedNonFungibleToken' | 'IncompatibleAssetTypeUpdate' | 'AssetMetadataKeyBelongsToNFTCollection' | 'AssetMetadataValueIsEmpty';
|
|
5268
5236
|
}
|
|
5269
|
-
/** @name PalletCorporateActionsDistributionError (
|
|
5237
|
+
/** @name PalletCorporateActionsDistributionError (633) */
|
|
5270
5238
|
interface PalletCorporateActionsDistributionError extends Enum {
|
|
5271
5239
|
readonly isCaNotBenefit: boolean;
|
|
5272
5240
|
readonly isAlreadyExists: boolean;
|
|
@@ -5285,13 +5253,13 @@ declare module "./types-lookup.ts" {
|
|
|
5285
5253
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5286
5254
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5287
5255
|
}
|
|
5288
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5256
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (637) */
|
|
5289
5257
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5290
5258
|
readonly nextAt: u64;
|
|
5291
5259
|
readonly totalPending: u64;
|
|
5292
5260
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5293
5261
|
}
|
|
5294
|
-
/** @name PalletAssetCheckpointError (
|
|
5262
|
+
/** @name PalletAssetCheckpointError (643) */
|
|
5295
5263
|
interface PalletAssetCheckpointError extends Enum {
|
|
5296
5264
|
readonly isNoSuchSchedule: boolean;
|
|
5297
5265
|
readonly isScheduleNotRemovable: boolean;
|
|
@@ -5301,12 +5269,12 @@ declare module "./types-lookup.ts" {
|
|
|
5301
5269
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5302
5270
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5303
5271
|
}
|
|
5304
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5272
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (644) */
|
|
5305
5273
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5306
5274
|
readonly paused: bool;
|
|
5307
5275
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5308
5276
|
}
|
|
5309
|
-
/** @name PalletComplianceManagerError (
|
|
5277
|
+
/** @name PalletComplianceManagerError (646) */
|
|
5310
5278
|
interface PalletComplianceManagerError extends Enum {
|
|
5311
5279
|
readonly isUnauthorized: boolean;
|
|
5312
5280
|
readonly isDidNotExist: boolean;
|
|
@@ -5317,7 +5285,7 @@ declare module "./types-lookup.ts" {
|
|
|
5317
5285
|
readonly isWeightLimitExceeded: boolean;
|
|
5318
5286
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5319
5287
|
}
|
|
5320
|
-
/** @name PalletCorporateActionsError (
|
|
5288
|
+
/** @name PalletCorporateActionsError (649) */
|
|
5321
5289
|
interface PalletCorporateActionsError extends Enum {
|
|
5322
5290
|
readonly isDetailsTooLong: boolean;
|
|
5323
5291
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5332,7 +5300,7 @@ declare module "./types-lookup.ts" {
|
|
|
5332
5300
|
readonly isNotTargetedByCA: boolean;
|
|
5333
5301
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5334
5302
|
}
|
|
5335
|
-
/** @name PalletCorporateActionsBallotError (
|
|
5303
|
+
/** @name PalletCorporateActionsBallotError (651) */
|
|
5336
5304
|
interface PalletCorporateActionsBallotError extends Enum {
|
|
5337
5305
|
readonly isCaNotNotice: boolean;
|
|
5338
5306
|
readonly isAlreadyExists: boolean;
|
|
@@ -5350,12 +5318,12 @@ declare module "./types-lookup.ts" {
|
|
|
5350
5318
|
readonly isRcvNotAllowed: boolean;
|
|
5351
5319
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5352
5320
|
}
|
|
5353
|
-
/** @name PalletPermissionsError (
|
|
5321
|
+
/** @name PalletPermissionsError (652) */
|
|
5354
5322
|
interface PalletPermissionsError extends Enum {
|
|
5355
5323
|
readonly isUnauthorizedCaller: boolean;
|
|
5356
5324
|
readonly type: 'UnauthorizedCaller';
|
|
5357
5325
|
}
|
|
5358
|
-
/** @name PalletPipsPipsMetadata (
|
|
5326
|
+
/** @name PalletPipsPipsMetadata (653) */
|
|
5359
5327
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5360
5328
|
readonly id: u32;
|
|
5361
5329
|
readonly url: Option<Bytes>;
|
|
@@ -5364,34 +5332,34 @@ declare module "./types-lookup.ts" {
|
|
|
5364
5332
|
readonly transactionVersion: u32;
|
|
5365
5333
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5366
5334
|
}
|
|
5367
|
-
/** @name PalletPipsDepositInfo (
|
|
5335
|
+
/** @name PalletPipsDepositInfo (655) */
|
|
5368
5336
|
interface PalletPipsDepositInfo extends Struct {
|
|
5369
5337
|
readonly owner: AccountId32;
|
|
5370
5338
|
readonly amount: u128;
|
|
5371
5339
|
}
|
|
5372
|
-
/** @name PalletPipsPip (
|
|
5340
|
+
/** @name PalletPipsPip (656) */
|
|
5373
5341
|
interface PalletPipsPip extends Struct {
|
|
5374
5342
|
readonly id: u32;
|
|
5375
5343
|
readonly proposal: Call;
|
|
5376
5344
|
readonly proposer: PalletPipsProposer;
|
|
5377
5345
|
}
|
|
5378
|
-
/** @name PalletPipsVotingResult (
|
|
5346
|
+
/** @name PalletPipsVotingResult (657) */
|
|
5379
5347
|
interface PalletPipsVotingResult extends Struct {
|
|
5380
5348
|
readonly ayesCount: u32;
|
|
5381
5349
|
readonly ayesStake: u128;
|
|
5382
5350
|
readonly naysCount: u32;
|
|
5383
5351
|
readonly naysStake: u128;
|
|
5384
5352
|
}
|
|
5385
|
-
/** @name PalletPipsVote (
|
|
5353
|
+
/** @name PalletPipsVote (658) */
|
|
5386
5354
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5387
5355
|
}
|
|
5388
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5356
|
+
/** @name PalletPipsSnapshotMetadata (659) */
|
|
5389
5357
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5390
5358
|
readonly createdAt: u32;
|
|
5391
5359
|
readonly madeBy: AccountId32;
|
|
5392
5360
|
readonly id: u32;
|
|
5393
5361
|
}
|
|
5394
|
-
/** @name PalletPipsError (
|
|
5362
|
+
/** @name PalletPipsError (661) */
|
|
5395
5363
|
interface PalletPipsError extends Enum {
|
|
5396
5364
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5397
5365
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5413,7 +5381,7 @@ declare module "./types-lookup.ts" {
|
|
|
5413
5381
|
readonly isProposalNotInScheduledState: boolean;
|
|
5414
5382
|
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState';
|
|
5415
5383
|
}
|
|
5416
|
-
/** @name PalletPortfolioError (
|
|
5384
|
+
/** @name PalletPortfolioError (670) */
|
|
5417
5385
|
interface PalletPortfolioError extends Enum {
|
|
5418
5386
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5419
5387
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5434,22 +5402,22 @@ declare module "./types-lookup.ts" {
|
|
|
5434
5402
|
readonly isMissingOwnersPermission: boolean;
|
|
5435
5403
|
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer' | 'MissingOwnersPermission';
|
|
5436
5404
|
}
|
|
5437
|
-
/** @name PalletProtocolFeeError (
|
|
5405
|
+
/** @name PalletProtocolFeeError (671) */
|
|
5438
5406
|
interface PalletProtocolFeeError extends Enum {
|
|
5439
5407
|
readonly isInsufficientAccountBalance: boolean;
|
|
5440
5408
|
readonly isUnHandledImbalances: boolean;
|
|
5441
5409
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5442
5410
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5443
5411
|
}
|
|
5444
|
-
/** @name PalletSchedulerScheduled (
|
|
5412
|
+
/** @name PalletSchedulerScheduled (674) */
|
|
5445
5413
|
interface PalletSchedulerScheduled extends Struct {
|
|
5446
5414
|
readonly maybeId: Option<U8aFixed>;
|
|
5447
5415
|
readonly priority: u8;
|
|
5448
5416
|
readonly call: FrameSupportPreimagesBounded;
|
|
5449
5417
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5450
|
-
readonly origin:
|
|
5418
|
+
readonly origin: PolymeshRuntimeTestnetRuntimeOriginCaller;
|
|
5451
5419
|
}
|
|
5452
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5420
|
+
/** @name FrameSupportPreimagesBounded (675) */
|
|
5453
5421
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5454
5422
|
readonly isLegacy: boolean;
|
|
5455
5423
|
readonly asLegacy: {
|
|
@@ -5464,7 +5432,7 @@ declare module "./types-lookup.ts" {
|
|
|
5464
5432
|
} & Struct;
|
|
5465
5433
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5466
5434
|
}
|
|
5467
|
-
/** @name PalletSchedulerError (
|
|
5435
|
+
/** @name PalletSchedulerError (678) */
|
|
5468
5436
|
interface PalletSchedulerError extends Enum {
|
|
5469
5437
|
readonly isFailedToSchedule: boolean;
|
|
5470
5438
|
readonly isNotFound: boolean;
|
|
@@ -5473,12 +5441,12 @@ declare module "./types-lookup.ts" {
|
|
|
5473
5441
|
readonly isNamed: boolean;
|
|
5474
5442
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5475
5443
|
}
|
|
5476
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5444
|
+
/** @name PolymeshPrimitivesSettlementVenue (679) */
|
|
5477
5445
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5478
5446
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5479
5447
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5480
5448
|
}
|
|
5481
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5449
|
+
/** @name PolymeshPrimitivesSettlementInstruction (683) */
|
|
5482
5450
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5483
5451
|
readonly instructionId: u64;
|
|
5484
5452
|
readonly venueId: u64;
|
|
@@ -5487,7 +5455,7 @@ declare module "./types-lookup.ts" {
|
|
|
5487
5455
|
readonly tradeDate: Option<u64>;
|
|
5488
5456
|
readonly valueDate: Option<u64>;
|
|
5489
5457
|
}
|
|
5490
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5458
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (685) */
|
|
5491
5459
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5492
5460
|
readonly isPendingTokenLock: boolean;
|
|
5493
5461
|
readonly isExecutionPending: boolean;
|
|
@@ -5495,14 +5463,14 @@ declare module "./types-lookup.ts" {
|
|
|
5495
5463
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5496
5464
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5497
5465
|
}
|
|
5498
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5466
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (687) */
|
|
5499
5467
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5500
5468
|
readonly isUnknown: boolean;
|
|
5501
5469
|
readonly isPending: boolean;
|
|
5502
5470
|
readonly isAffirmed: boolean;
|
|
5503
5471
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5504
5472
|
}
|
|
5505
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5473
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (691) */
|
|
5506
5474
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5507
5475
|
readonly isUnknown: boolean;
|
|
5508
5476
|
readonly isPending: boolean;
|
|
@@ -5513,7 +5481,7 @@ declare module "./types-lookup.ts" {
|
|
|
5513
5481
|
readonly asRejected: u32;
|
|
5514
5482
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5515
5483
|
}
|
|
5516
|
-
/** @name PalletSettlementError (
|
|
5484
|
+
/** @name PalletSettlementError (692) */
|
|
5517
5485
|
interface PalletSettlementError extends Enum {
|
|
5518
5486
|
readonly isInvalidVenue: boolean;
|
|
5519
5487
|
readonly isUnauthorized: boolean;
|
|
@@ -5557,17 +5525,17 @@ declare module "./types-lookup.ts" {
|
|
|
5557
5525
|
readonly isNumberOfVenueSignersExceeded: boolean;
|
|
5558
5526
|
readonly type: 'InvalidVenue' | 'Unauthorized' | 'InstructionNotAffirmed' | 'UnauthorizedSigner' | 'ReceiptAlreadyClaimed' | 'UnauthorizedVenue' | 'InstructionDatesInvalid' | 'InstructionSettleBlockPassed' | 'InvalidSignature' | 'SameSenderReceiver' | 'SettleOnPastBlock' | 'UnexpectedAffirmationStatus' | 'FailedToSchedule' | 'UnknownInstruction' | 'SignerAlreadyExists' | 'SignerDoesNotExist' | 'ZeroAmount' | 'InstructionSettleBlockNotReached' | 'CallerIsNotAParty' | 'MaxNumberOfNFTsExceeded' | 'NumberOfTransferredNFTsUnderestimated' | 'ReceiptForInvalidLegType' | 'WeightLimitExceeded' | 'MaxNumberOfFungibleAssetsExceeded' | 'MaxNumberOfOffChainAssetsExceeded' | 'NumberOfFungibleTransfersUnderestimated' | 'UnexpectedOFFChainAsset' | 'OffChainAssetCantBeLocked' | 'NumberOfOffChainTransfersUnderestimated' | 'LegNotFound' | 'InputWeightIsLessThanMinimum' | 'MaxNumberOfReceiptsExceeded' | 'NotAllAffirmationsHaveBeenReceived' | 'InvalidInstructionStatusForExecution' | 'FailedToReleaseLockOrTransferAssets' | 'DuplicateReceiptUid' | 'ReceiptInstructionIdMissmatch' | 'MultipleReceiptsForOneLeg' | 'UnexpectedLegStatus' | 'NumberOfVenueSignersExceeded';
|
|
5559
5527
|
}
|
|
5560
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5528
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (695) */
|
|
5561
5529
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5562
5530
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
5563
5531
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5564
5532
|
}
|
|
5565
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5533
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (696) */
|
|
5566
5534
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5567
5535
|
readonly paused: bool;
|
|
5568
5536
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5569
5537
|
}
|
|
5570
|
-
/** @name PalletStatisticsError (
|
|
5538
|
+
/** @name PalletStatisticsError (700) */
|
|
5571
5539
|
interface PalletStatisticsError extends Enum {
|
|
5572
5540
|
readonly isInvalidTransfer: boolean;
|
|
5573
5541
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5578,7 +5546,7 @@ declare module "./types-lookup.ts" {
|
|
|
5578
5546
|
readonly isWeightLimitExceeded: boolean;
|
|
5579
5547
|
readonly type: 'InvalidTransfer' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5580
5548
|
}
|
|
5581
|
-
/** @name PalletStoError (
|
|
5549
|
+
/** @name PalletStoError (702) */
|
|
5582
5550
|
interface PalletStoError extends Enum {
|
|
5583
5551
|
readonly isUnauthorized: boolean;
|
|
5584
5552
|
readonly isOverflow: boolean;
|
|
@@ -5594,27 +5562,28 @@ declare module "./types-lookup.ts" {
|
|
|
5594
5562
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5595
5563
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5596
5564
|
}
|
|
5597
|
-
/** @name PalletTreasuryError (
|
|
5565
|
+
/** @name PalletTreasuryError (703) */
|
|
5598
5566
|
interface PalletTreasuryError extends Enum {
|
|
5599
5567
|
readonly isInsufficientBalance: boolean;
|
|
5600
5568
|
readonly isInvalidIdentity: boolean;
|
|
5601
5569
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5602
5570
|
}
|
|
5603
|
-
/** @name PalletUtilityError (
|
|
5571
|
+
/** @name PalletUtilityError (704) */
|
|
5604
5572
|
interface PalletUtilityError extends Enum {
|
|
5605
5573
|
readonly isTooManyCalls: boolean;
|
|
5606
5574
|
readonly isInvalidSignature: boolean;
|
|
5607
5575
|
readonly isTargetCddMissing: boolean;
|
|
5608
5576
|
readonly isInvalidNonce: boolean;
|
|
5609
|
-
readonly
|
|
5577
|
+
readonly isUnableToDeriveAccountId: boolean;
|
|
5578
|
+
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce' | 'UnableToDeriveAccountId';
|
|
5610
5579
|
}
|
|
5611
|
-
/** @name PalletBaseError (
|
|
5580
|
+
/** @name PalletBaseError (705) */
|
|
5612
5581
|
interface PalletBaseError extends Enum {
|
|
5613
5582
|
readonly isTooLong: boolean;
|
|
5614
5583
|
readonly isCounterOverflow: boolean;
|
|
5615
5584
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5616
5585
|
}
|
|
5617
|
-
/** @name PalletExternalAgentsError (
|
|
5586
|
+
/** @name PalletExternalAgentsError (707) */
|
|
5618
5587
|
interface PalletExternalAgentsError extends Enum {
|
|
5619
5588
|
readonly isNoSuchAG: boolean;
|
|
5620
5589
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5624,12 +5593,12 @@ declare module "./types-lookup.ts" {
|
|
|
5624
5593
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5625
5594
|
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset';
|
|
5626
5595
|
}
|
|
5627
|
-
/** @name PalletRelayerSubsidy (
|
|
5596
|
+
/** @name PalletRelayerSubsidy (708) */
|
|
5628
5597
|
interface PalletRelayerSubsidy extends Struct {
|
|
5629
5598
|
readonly payingKey: AccountId32;
|
|
5630
5599
|
readonly remaining: u128;
|
|
5631
5600
|
}
|
|
5632
|
-
/** @name PalletRelayerError (
|
|
5601
|
+
/** @name PalletRelayerError (709) */
|
|
5633
5602
|
interface PalletRelayerError extends Enum {
|
|
5634
5603
|
readonly isUserKeyCddMissing: boolean;
|
|
5635
5604
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5640,7 +5609,7 @@ declare module "./types-lookup.ts" {
|
|
|
5640
5609
|
readonly isOverflow: boolean;
|
|
5641
5610
|
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow';
|
|
5642
5611
|
}
|
|
5643
|
-
/** @name PalletContractsWasmPrefabWasmModule (
|
|
5612
|
+
/** @name PalletContractsWasmPrefabWasmModule (711) */
|
|
5644
5613
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5645
5614
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
5646
5615
|
readonly initial: Compact<u32>;
|
|
@@ -5648,13 +5617,13 @@ declare module "./types-lookup.ts" {
|
|
|
5648
5617
|
readonly code: Bytes;
|
|
5649
5618
|
readonly determinism: PalletContractsWasmDeterminism;
|
|
5650
5619
|
}
|
|
5651
|
-
/** @name PalletContractsWasmOwnerInfo (
|
|
5620
|
+
/** @name PalletContractsWasmOwnerInfo (713) */
|
|
5652
5621
|
interface PalletContractsWasmOwnerInfo extends Struct {
|
|
5653
5622
|
readonly owner: AccountId32;
|
|
5654
5623
|
readonly deposit: Compact<u128>;
|
|
5655
5624
|
readonly refcount: Compact<u64>;
|
|
5656
5625
|
}
|
|
5657
|
-
/** @name PalletContractsStorageContractInfo (
|
|
5626
|
+
/** @name PalletContractsStorageContractInfo (714) */
|
|
5658
5627
|
interface PalletContractsStorageContractInfo extends Struct {
|
|
5659
5628
|
readonly trieId: Bytes;
|
|
5660
5629
|
readonly depositAccount: AccountId32;
|
|
@@ -5665,17 +5634,17 @@ declare module "./types-lookup.ts" {
|
|
|
5665
5634
|
readonly storageItemDeposit: u128;
|
|
5666
5635
|
readonly storageBaseDeposit: u128;
|
|
5667
5636
|
}
|
|
5668
|
-
/** @name PalletContractsStorageDeletedContract (
|
|
5637
|
+
/** @name PalletContractsStorageDeletedContract (717) */
|
|
5669
5638
|
interface PalletContractsStorageDeletedContract extends Struct {
|
|
5670
5639
|
readonly trieId: Bytes;
|
|
5671
5640
|
}
|
|
5672
|
-
/** @name PalletContractsSchedule (
|
|
5641
|
+
/** @name PalletContractsSchedule (719) */
|
|
5673
5642
|
interface PalletContractsSchedule extends Struct {
|
|
5674
5643
|
readonly limits: PalletContractsScheduleLimits;
|
|
5675
5644
|
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
|
|
5676
5645
|
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
|
|
5677
5646
|
}
|
|
5678
|
-
/** @name PalletContractsScheduleLimits (
|
|
5647
|
+
/** @name PalletContractsScheduleLimits (720) */
|
|
5679
5648
|
interface PalletContractsScheduleLimits extends Struct {
|
|
5680
5649
|
readonly eventTopics: u32;
|
|
5681
5650
|
readonly globals: u32;
|
|
@@ -5687,7 +5656,7 @@ declare module "./types-lookup.ts" {
|
|
|
5687
5656
|
readonly subjectLen: u32;
|
|
5688
5657
|
readonly payloadLen: u32;
|
|
5689
5658
|
}
|
|
5690
|
-
/** @name PalletContractsScheduleInstructionWeights (
|
|
5659
|
+
/** @name PalletContractsScheduleInstructionWeights (721) */
|
|
5691
5660
|
interface PalletContractsScheduleInstructionWeights extends Struct {
|
|
5692
5661
|
readonly version: u32;
|
|
5693
5662
|
readonly fallback: u32;
|
|
@@ -5744,7 +5713,7 @@ declare module "./types-lookup.ts" {
|
|
|
5744
5713
|
readonly i64rotl: u32;
|
|
5745
5714
|
readonly i64rotr: u32;
|
|
5746
5715
|
}
|
|
5747
|
-
/** @name PalletContractsScheduleHostFnWeights (
|
|
5716
|
+
/** @name PalletContractsScheduleHostFnWeights (722) */
|
|
5748
5717
|
interface PalletContractsScheduleHostFnWeights extends Struct {
|
|
5749
5718
|
readonly caller: SpWeightsWeightV2Weight;
|
|
5750
5719
|
readonly isContract: SpWeightsWeightV2Weight;
|
|
@@ -5806,7 +5775,7 @@ declare module "./types-lookup.ts" {
|
|
|
5806
5775
|
readonly accountReentranceCount: SpWeightsWeightV2Weight;
|
|
5807
5776
|
readonly instantiationNonce: SpWeightsWeightV2Weight;
|
|
5808
5777
|
}
|
|
5809
|
-
/** @name PalletContractsError (
|
|
5778
|
+
/** @name PalletContractsError (723) */
|
|
5810
5779
|
interface PalletContractsError extends Enum {
|
|
5811
5780
|
readonly isInvalidScheduleVersion: boolean;
|
|
5812
5781
|
readonly isInvalidCallFlags: boolean;
|
|
@@ -5838,7 +5807,7 @@ declare module "./types-lookup.ts" {
|
|
|
5838
5807
|
readonly isIndeterministic: boolean;
|
|
5839
5808
|
readonly type: 'InvalidScheduleVersion' | 'InvalidCallFlags' | 'OutOfGas' | 'OutputBufferTooSmall' | 'TransferFailed' | 'MaxCallDepthReached' | 'ContractNotFound' | 'CodeTooLarge' | 'CodeNotFound' | 'OutOfBounds' | 'DecodingFailed' | 'ContractTrapped' | 'ValueTooLarge' | 'TerminatedWhileReentrant' | 'InputForwarded' | 'RandomSubjectTooLong' | 'TooManyTopics' | 'NoChainExtension' | 'DeletionQueueFull' | 'DuplicateContract' | 'TerminatedInConstructor' | 'ReentranceDenied' | 'StorageDepositNotEnoughFunds' | 'StorageDepositLimitExhausted' | 'CodeInUse' | 'ContractReverted' | 'CodeRejected' | 'Indeterministic';
|
|
5840
5809
|
}
|
|
5841
|
-
/** @name PolymeshContractsError (
|
|
5810
|
+
/** @name PolymeshContractsError (725) */
|
|
5842
5811
|
interface PolymeshContractsError extends Enum {
|
|
5843
5812
|
readonly isInvalidFuncId: boolean;
|
|
5844
5813
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5854,7 +5823,7 @@ declare module "./types-lookup.ts" {
|
|
|
5854
5823
|
readonly isNoUpgradesSupported: boolean;
|
|
5855
5824
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied' | 'CallerNotAPrimaryKey' | 'MissingKeyPermissions' | 'InvalidChainVersion' | 'NoUpgradesSupported';
|
|
5856
5825
|
}
|
|
5857
|
-
/** @name PalletPreimageRequestStatus (
|
|
5826
|
+
/** @name PalletPreimageRequestStatus (726) */
|
|
5858
5827
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5859
5828
|
readonly isUnrequested: boolean;
|
|
5860
5829
|
readonly asUnrequested: {
|
|
@@ -5869,7 +5838,7 @@ declare module "./types-lookup.ts" {
|
|
|
5869
5838
|
} & Struct;
|
|
5870
5839
|
readonly type: 'Unrequested' | 'Requested';
|
|
5871
5840
|
}
|
|
5872
|
-
/** @name PalletPreimageError (
|
|
5841
|
+
/** @name PalletPreimageError (730) */
|
|
5873
5842
|
interface PalletPreimageError extends Enum {
|
|
5874
5843
|
readonly isTooBig: boolean;
|
|
5875
5844
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5879,12 +5848,12 @@ declare module "./types-lookup.ts" {
|
|
|
5879
5848
|
readonly isNotRequested: boolean;
|
|
5880
5849
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5881
5850
|
}
|
|
5882
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
5851
|
+
/** @name PolymeshPrimitivesNftNftCollection (731) */
|
|
5883
5852
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5884
5853
|
readonly id: u64;
|
|
5885
5854
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
5886
5855
|
}
|
|
5887
|
-
/** @name PalletNftError (
|
|
5856
|
+
/** @name PalletNftError (736) */
|
|
5888
5857
|
interface PalletNftError extends Enum {
|
|
5889
5858
|
readonly isBalanceOverflow: boolean;
|
|
5890
5859
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5910,28 +5879,28 @@ declare module "./types-lookup.ts" {
|
|
|
5910
5879
|
readonly isSupplyUnderflow: boolean;
|
|
5911
5880
|
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount' | 'SupplyOverflow' | 'SupplyUnderflow';
|
|
5912
5881
|
}
|
|
5913
|
-
/** @name PalletTestUtilsError (
|
|
5882
|
+
/** @name PalletTestUtilsError (737) */
|
|
5914
5883
|
type PalletTestUtilsError = Null;
|
|
5915
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5884
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (740) */
|
|
5916
5885
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5917
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5886
|
+
/** @name FrameSystemExtensionsCheckTxVersion (741) */
|
|
5918
5887
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5919
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5888
|
+
/** @name FrameSystemExtensionsCheckGenesis (742) */
|
|
5920
5889
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5921
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5890
|
+
/** @name FrameSystemExtensionsCheckNonce (745) */
|
|
5922
5891
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
5923
5892
|
}
|
|
5924
|
-
/** @name PolymeshExtensionsCheckWeight (
|
|
5893
|
+
/** @name PolymeshExtensionsCheckWeight (746) */
|
|
5925
5894
|
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
5926
5895
|
}
|
|
5927
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5896
|
+
/** @name FrameSystemExtensionsCheckWeight (747) */
|
|
5928
5897
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5929
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5898
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (748) */
|
|
5930
5899
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
5931
5900
|
}
|
|
5932
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
5901
|
+
/** @name PalletPermissionsStoreCallMetadata (749) */
|
|
5933
5902
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
5934
|
-
/** @name
|
|
5935
|
-
type
|
|
5903
|
+
/** @name PolymeshRuntimeTestnetRuntime (750) */
|
|
5904
|
+
type PolymeshRuntimeTestnetRuntime = Null;
|
|
5936
5905
|
}
|
|
5937
5906
|
//# sourceMappingURL=types-lookup.d.ts.map
|