@polymeshassociation/polymesh-sdk 24.0.0-alpha.5 → 24.0.0-alpha.7
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 -9
- 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/procedures/attestPrimaryKeyRotation.d.ts.map +1 -1
- package/api/procedures/attestPrimaryKeyRotation.js +9 -17
- package/api/procedures/attestPrimaryKeyRotation.js.map +1 -1
- package/api/procedures/inviteAccount.d.ts.map +1 -1
- package/api/procedures/inviteAccount.js +5 -11
- package/api/procedures/inviteAccount.js.map +1 -1
- package/api/procedures/setCustodian.d.ts.map +1 -1
- package/api/procedures/setCustodian.js +10 -15
- package/api/procedures/setCustodian.js.map +1 -1
- package/api/procedures/transferAssetOwnership.d.ts.map +1 -1
- package/api/procedures/transferAssetOwnership.js +14 -4
- package/api/procedures/transferAssetOwnership.js.map +1 -1
- package/api/procedures/transferTickerOwnership.d.ts.map +1 -1
- package/api/procedures/transferTickerOwnership.js +17 -7
- package/api/procedures/transferTickerOwnership.js.map +1 -1
- package/generated/types.d.ts +9 -2
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +7 -0
- package/generated/types.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.0.0-alpha.7.tgz +0 -0
- package/package.json +2 -2
- package/polkadot/augment-api-errors.d.ts +22 -0
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +43 -1
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +29 -3
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +248 -23
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +396 -302
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +403 -305
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/registry.d.ts +8 -4
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/types-lookup.d.ts +418 -306
- 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/utils/constants.d.ts +2 -2
- package/utils/constants.d.ts.map +1 -1
- package/utils/constants.js +2 -2
- package/utils/constants.js.map +1 -1
- package/utils/internal.d.ts +11 -1
- package/utils/internal.d.ts.map +1 -1
- package/utils/internal.js +50 -1
- package/utils/internal.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.0.0-alpha.5.tgz +0 -0
|
@@ -1212,7 +1212,17 @@ declare module "./types-lookup.ts" {
|
|
|
1212
1212
|
readonly who: AccountId32;
|
|
1213
1213
|
readonly value: Compact<u128>;
|
|
1214
1214
|
}
|
|
1215
|
-
/** @name
|
|
1215
|
+
/** @name PalletSudoRawEvent (122) */
|
|
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) */
|
|
1216
1226
|
interface PolymeshCommonUtilitiesAssetRawEvent extends Enum {
|
|
1217
1227
|
readonly isAssetCreated: boolean;
|
|
1218
1228
|
readonly asAssetCreated: ITuple<[
|
|
@@ -1377,9 +1387,21 @@ declare module "./types-lookup.ts" {
|
|
|
1377
1387
|
PolymeshPrimitivesIdentityId,
|
|
1378
1388
|
PolymeshPrimitivesTicker
|
|
1379
1389
|
]>;
|
|
1380
|
-
readonly
|
|
1390
|
+
readonly isAssetMediatorsAdded: boolean;
|
|
1391
|
+
readonly asAssetMediatorsAdded: ITuple<[
|
|
1392
|
+
PolymeshPrimitivesIdentityId,
|
|
1393
|
+
PolymeshPrimitivesTicker,
|
|
1394
|
+
BTreeSet<PolymeshPrimitivesIdentityId>
|
|
1395
|
+
]>;
|
|
1396
|
+
readonly isAssetMediatorsRemoved: boolean;
|
|
1397
|
+
readonly asAssetMediatorsRemoved: ITuple<[
|
|
1398
|
+
PolymeshPrimitivesIdentityId,
|
|
1399
|
+
PolymeshPrimitivesTicker,
|
|
1400
|
+
BTreeSet<PolymeshPrimitivesIdentityId>
|
|
1401
|
+
]>;
|
|
1402
|
+
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' | 'AssetMediatorsAdded' | 'AssetMediatorsRemoved';
|
|
1381
1403
|
}
|
|
1382
|
-
/** @name PolymeshPrimitivesAssetAssetType (
|
|
1404
|
+
/** @name PolymeshPrimitivesAssetAssetType (124) */
|
|
1383
1405
|
interface PolymeshPrimitivesAssetAssetType extends Enum {
|
|
1384
1406
|
readonly isEquityCommon: boolean;
|
|
1385
1407
|
readonly isEquityPreferred: boolean;
|
|
@@ -1397,7 +1419,7 @@ declare module "./types-lookup.ts" {
|
|
|
1397
1419
|
readonly asNonFungible: PolymeshPrimitivesAssetNonFungibleType;
|
|
1398
1420
|
readonly type: 'EquityCommon' | 'EquityPreferred' | 'Commodity' | 'FixedIncome' | 'Reit' | 'Fund' | 'RevenueShareAgreement' | 'StructuredProduct' | 'Derivative' | 'Custom' | 'StableCoin' | 'NonFungible';
|
|
1399
1421
|
}
|
|
1400
|
-
/** @name PolymeshPrimitivesAssetNonFungibleType (
|
|
1422
|
+
/** @name PolymeshPrimitivesAssetNonFungibleType (126) */
|
|
1401
1423
|
interface PolymeshPrimitivesAssetNonFungibleType extends Enum {
|
|
1402
1424
|
readonly isDerivative: boolean;
|
|
1403
1425
|
readonly isFixedIncome: boolean;
|
|
@@ -1406,7 +1428,7 @@ declare module "./types-lookup.ts" {
|
|
|
1406
1428
|
readonly asCustom: u32;
|
|
1407
1429
|
readonly type: 'Derivative' | 'FixedIncome' | 'Invoice' | 'Custom';
|
|
1408
1430
|
}
|
|
1409
|
-
/** @name PolymeshPrimitivesAssetIdentifier (
|
|
1431
|
+
/** @name PolymeshPrimitivesAssetIdentifier (129) */
|
|
1410
1432
|
interface PolymeshPrimitivesAssetIdentifier extends Enum {
|
|
1411
1433
|
readonly isCusip: boolean;
|
|
1412
1434
|
readonly asCusip: U8aFixed;
|
|
@@ -1420,7 +1442,7 @@ declare module "./types-lookup.ts" {
|
|
|
1420
1442
|
readonly asFigi: U8aFixed;
|
|
1421
1443
|
readonly type: 'Cusip' | 'Cins' | 'Isin' | 'Lei' | 'Figi';
|
|
1422
1444
|
}
|
|
1423
|
-
/** @name PolymeshPrimitivesDocument (
|
|
1445
|
+
/** @name PolymeshPrimitivesDocument (135) */
|
|
1424
1446
|
interface PolymeshPrimitivesDocument extends Struct {
|
|
1425
1447
|
readonly uri: Bytes;
|
|
1426
1448
|
readonly contentHash: PolymeshPrimitivesDocumentHash;
|
|
@@ -1428,7 +1450,7 @@ declare module "./types-lookup.ts" {
|
|
|
1428
1450
|
readonly docType: Option<Bytes>;
|
|
1429
1451
|
readonly filingDate: Option<u64>;
|
|
1430
1452
|
}
|
|
1431
|
-
/** @name PolymeshPrimitivesDocumentHash (
|
|
1453
|
+
/** @name PolymeshPrimitivesDocumentHash (137) */
|
|
1432
1454
|
interface PolymeshPrimitivesDocumentHash extends Enum {
|
|
1433
1455
|
readonly isNone: boolean;
|
|
1434
1456
|
readonly isH512: boolean;
|
|
@@ -1449,12 +1471,12 @@ declare module "./types-lookup.ts" {
|
|
|
1449
1471
|
readonly asH128: U8aFixed;
|
|
1450
1472
|
readonly type: 'None' | 'H512' | 'H384' | 'H320' | 'H256' | 'H224' | 'H192' | 'H160' | 'H128';
|
|
1451
1473
|
}
|
|
1452
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (
|
|
1474
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (148) */
|
|
1453
1475
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail extends Struct {
|
|
1454
1476
|
readonly expire: Option<u64>;
|
|
1455
1477
|
readonly lockStatus: PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus;
|
|
1456
1478
|
}
|
|
1457
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (
|
|
1479
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (149) */
|
|
1458
1480
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus extends Enum {
|
|
1459
1481
|
readonly isUnlocked: boolean;
|
|
1460
1482
|
readonly isLocked: boolean;
|
|
@@ -1462,13 +1484,13 @@ declare module "./types-lookup.ts" {
|
|
|
1462
1484
|
readonly asLockedUntil: u64;
|
|
1463
1485
|
readonly type: 'Unlocked' | 'Locked' | 'LockedUntil';
|
|
1464
1486
|
}
|
|
1465
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (
|
|
1487
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (152) */
|
|
1466
1488
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataSpec extends Struct {
|
|
1467
1489
|
readonly url: Option<Bytes>;
|
|
1468
1490
|
readonly description: Option<Bytes>;
|
|
1469
1491
|
readonly typeDef: Option<Bytes>;
|
|
1470
1492
|
}
|
|
1471
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (
|
|
1493
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (159) */
|
|
1472
1494
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataKey extends Enum {
|
|
1473
1495
|
readonly isGlobal: boolean;
|
|
1474
1496
|
readonly asGlobal: u64;
|
|
@@ -1476,7 +1498,7 @@ declare module "./types-lookup.ts" {
|
|
|
1476
1498
|
readonly asLocal: u64;
|
|
1477
1499
|
readonly type: 'Global' | 'Local';
|
|
1478
1500
|
}
|
|
1479
|
-
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (
|
|
1501
|
+
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (161) */
|
|
1480
1502
|
interface PolymeshPrimitivesPortfolioPortfolioUpdateReason extends Enum {
|
|
1481
1503
|
readonly isIssued: boolean;
|
|
1482
1504
|
readonly asIssued: {
|
|
@@ -1491,7 +1513,7 @@ declare module "./types-lookup.ts" {
|
|
|
1491
1513
|
readonly isControllerTransfer: boolean;
|
|
1492
1514
|
readonly type: 'Issued' | 'Redeemed' | 'Transferred' | 'ControllerTransfer';
|
|
1493
1515
|
}
|
|
1494
|
-
/** @name PalletCorporateActionsDistributionEvent (
|
|
1516
|
+
/** @name PalletCorporateActionsDistributionEvent (165) */
|
|
1495
1517
|
interface PalletCorporateActionsDistributionEvent extends Enum {
|
|
1496
1518
|
readonly isCreated: boolean;
|
|
1497
1519
|
readonly asCreated: ITuple<[
|
|
@@ -1514,15 +1536,15 @@ declare module "./types-lookup.ts" {
|
|
|
1514
1536
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1515
1537
|
readonly type: 'Created' | 'BenefitClaimed' | 'Reclaimed' | 'Removed';
|
|
1516
1538
|
}
|
|
1517
|
-
/** @name PolymeshPrimitivesEventOnly (
|
|
1539
|
+
/** @name PolymeshPrimitivesEventOnly (166) */
|
|
1518
1540
|
interface PolymeshPrimitivesEventOnly extends PolymeshPrimitivesIdentityId {
|
|
1519
1541
|
}
|
|
1520
|
-
/** @name PalletCorporateActionsCaId (
|
|
1542
|
+
/** @name PalletCorporateActionsCaId (167) */
|
|
1521
1543
|
interface PalletCorporateActionsCaId extends Struct {
|
|
1522
1544
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
1523
1545
|
readonly localId: u32;
|
|
1524
1546
|
}
|
|
1525
|
-
/** @name PalletCorporateActionsDistribution (
|
|
1547
|
+
/** @name PalletCorporateActionsDistribution (169) */
|
|
1526
1548
|
interface PalletCorporateActionsDistribution extends Struct {
|
|
1527
1549
|
readonly from: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
1528
1550
|
readonly currency: PolymeshPrimitivesTicker;
|
|
@@ -1533,7 +1555,7 @@ declare module "./types-lookup.ts" {
|
|
|
1533
1555
|
readonly paymentAt: u64;
|
|
1534
1556
|
readonly expiresAt: Option<u64>;
|
|
1535
1557
|
}
|
|
1536
|
-
/** @name PolymeshCommonUtilitiesCheckpointEvent (
|
|
1558
|
+
/** @name PolymeshCommonUtilitiesCheckpointEvent (171) */
|
|
1537
1559
|
interface PolymeshCommonUtilitiesCheckpointEvent extends Enum {
|
|
1538
1560
|
readonly isCheckpointCreated: boolean;
|
|
1539
1561
|
readonly asCheckpointCreated: ITuple<[
|
|
@@ -1561,11 +1583,11 @@ declare module "./types-lookup.ts" {
|
|
|
1561
1583
|
]>;
|
|
1562
1584
|
readonly type: 'CheckpointCreated' | 'MaximumSchedulesComplexityChanged' | 'ScheduleCreated' | 'ScheduleRemoved';
|
|
1563
1585
|
}
|
|
1564
|
-
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (
|
|
1586
|
+
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (174) */
|
|
1565
1587
|
interface PolymeshCommonUtilitiesCheckpointScheduleCheckpoints extends Struct {
|
|
1566
1588
|
readonly pending: BTreeSet<u64>;
|
|
1567
1589
|
}
|
|
1568
|
-
/** @name PolymeshCommonUtilitiesComplianceManagerEvent (
|
|
1590
|
+
/** @name PolymeshCommonUtilitiesComplianceManagerEvent (177) */
|
|
1569
1591
|
interface PolymeshCommonUtilitiesComplianceManagerEvent extends Enum {
|
|
1570
1592
|
readonly isComplianceRequirementCreated: boolean;
|
|
1571
1593
|
readonly asComplianceRequirementCreated: ITuple<[
|
|
@@ -1620,18 +1642,18 @@ declare module "./types-lookup.ts" {
|
|
|
1620
1642
|
]>;
|
|
1621
1643
|
readonly type: 'ComplianceRequirementCreated' | 'ComplianceRequirementRemoved' | 'AssetComplianceReplaced' | 'AssetComplianceReset' | 'AssetComplianceResumed' | 'AssetCompliancePaused' | 'ComplianceRequirementChanged' | 'TrustedDefaultClaimIssuerAdded' | 'TrustedDefaultClaimIssuerRemoved';
|
|
1622
1644
|
}
|
|
1623
|
-
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (
|
|
1645
|
+
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (178) */
|
|
1624
1646
|
interface PolymeshPrimitivesComplianceManagerComplianceRequirement extends Struct {
|
|
1625
1647
|
readonly senderConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1626
1648
|
readonly receiverConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1627
1649
|
readonly id: u32;
|
|
1628
1650
|
}
|
|
1629
|
-
/** @name PolymeshPrimitivesCondition (
|
|
1651
|
+
/** @name PolymeshPrimitivesCondition (180) */
|
|
1630
1652
|
interface PolymeshPrimitivesCondition extends Struct {
|
|
1631
1653
|
readonly conditionType: PolymeshPrimitivesConditionConditionType;
|
|
1632
1654
|
readonly issuers: Vec<PolymeshPrimitivesConditionTrustedIssuer>;
|
|
1633
1655
|
}
|
|
1634
|
-
/** @name PolymeshPrimitivesConditionConditionType (
|
|
1656
|
+
/** @name PolymeshPrimitivesConditionConditionType (181) */
|
|
1635
1657
|
interface PolymeshPrimitivesConditionConditionType extends Enum {
|
|
1636
1658
|
readonly isIsPresent: boolean;
|
|
1637
1659
|
readonly asIsPresent: PolymeshPrimitivesIdentityClaimClaim;
|
|
@@ -1645,26 +1667,26 @@ declare module "./types-lookup.ts" {
|
|
|
1645
1667
|
readonly asIsIdentity: PolymeshPrimitivesConditionTargetIdentity;
|
|
1646
1668
|
readonly type: 'IsPresent' | 'IsAbsent' | 'IsAnyOf' | 'IsNoneOf' | 'IsIdentity';
|
|
1647
1669
|
}
|
|
1648
|
-
/** @name PolymeshPrimitivesConditionTargetIdentity (
|
|
1670
|
+
/** @name PolymeshPrimitivesConditionTargetIdentity (183) */
|
|
1649
1671
|
interface PolymeshPrimitivesConditionTargetIdentity extends Enum {
|
|
1650
1672
|
readonly isExternalAgent: boolean;
|
|
1651
1673
|
readonly isSpecific: boolean;
|
|
1652
1674
|
readonly asSpecific: PolymeshPrimitivesIdentityId;
|
|
1653
1675
|
readonly type: 'ExternalAgent' | 'Specific';
|
|
1654
1676
|
}
|
|
1655
|
-
/** @name PolymeshPrimitivesConditionTrustedIssuer (
|
|
1677
|
+
/** @name PolymeshPrimitivesConditionTrustedIssuer (185) */
|
|
1656
1678
|
interface PolymeshPrimitivesConditionTrustedIssuer extends Struct {
|
|
1657
1679
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
1658
1680
|
readonly trustedFor: PolymeshPrimitivesConditionTrustedFor;
|
|
1659
1681
|
}
|
|
1660
|
-
/** @name PolymeshPrimitivesConditionTrustedFor (
|
|
1682
|
+
/** @name PolymeshPrimitivesConditionTrustedFor (186) */
|
|
1661
1683
|
interface PolymeshPrimitivesConditionTrustedFor extends Enum {
|
|
1662
1684
|
readonly isAny: boolean;
|
|
1663
1685
|
readonly isSpecific: boolean;
|
|
1664
1686
|
readonly asSpecific: Vec<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
1665
1687
|
readonly type: 'Any' | 'Specific';
|
|
1666
1688
|
}
|
|
1667
|
-
/** @name PolymeshPrimitivesIdentityClaimClaimType (
|
|
1689
|
+
/** @name PolymeshPrimitivesIdentityClaimClaimType (188) */
|
|
1668
1690
|
interface PolymeshPrimitivesIdentityClaimClaimType extends Enum {
|
|
1669
1691
|
readonly isAccredited: boolean;
|
|
1670
1692
|
readonly isAffiliate: boolean;
|
|
@@ -1679,7 +1701,7 @@ declare module "./types-lookup.ts" {
|
|
|
1679
1701
|
readonly asCustom: u32;
|
|
1680
1702
|
readonly type: 'Accredited' | 'Affiliate' | 'BuyLockup' | 'SellLockup' | 'CustomerDueDiligence' | 'KnowYourCustomer' | 'Jurisdiction' | 'Exempted' | 'Blocked' | 'Custom';
|
|
1681
1703
|
}
|
|
1682
|
-
/** @name PalletCorporateActionsEvent (
|
|
1704
|
+
/** @name PalletCorporateActionsEvent (190) */
|
|
1683
1705
|
interface PalletCorporateActionsEvent extends Enum {
|
|
1684
1706
|
readonly isMaxDetailsLengthChanged: boolean;
|
|
1685
1707
|
readonly asMaxDetailsLengthChanged: ITuple<[PolymeshPrimitivesIdentityId, u32]>;
|
|
@@ -1725,18 +1747,18 @@ declare module "./types-lookup.ts" {
|
|
|
1725
1747
|
]>;
|
|
1726
1748
|
readonly type: 'MaxDetailsLengthChanged' | 'DefaultTargetIdentitiesChanged' | 'DefaultWithholdingTaxChanged' | 'DidWithholdingTaxChanged' | 'CaInitiated' | 'CaLinkedToDoc' | 'CaRemoved' | 'RecordDateChanged';
|
|
1727
1749
|
}
|
|
1728
|
-
/** @name PalletCorporateActionsTargetIdentities (
|
|
1750
|
+
/** @name PalletCorporateActionsTargetIdentities (191) */
|
|
1729
1751
|
interface PalletCorporateActionsTargetIdentities extends Struct {
|
|
1730
1752
|
readonly identities: Vec<PolymeshPrimitivesIdentityId>;
|
|
1731
1753
|
readonly treatment: PalletCorporateActionsTargetTreatment;
|
|
1732
1754
|
}
|
|
1733
|
-
/** @name PalletCorporateActionsTargetTreatment (
|
|
1755
|
+
/** @name PalletCorporateActionsTargetTreatment (192) */
|
|
1734
1756
|
interface PalletCorporateActionsTargetTreatment extends Enum {
|
|
1735
1757
|
readonly isInclude: boolean;
|
|
1736
1758
|
readonly isExclude: boolean;
|
|
1737
1759
|
readonly type: 'Include' | 'Exclude';
|
|
1738
1760
|
}
|
|
1739
|
-
/** @name PalletCorporateActionsCorporateAction (
|
|
1761
|
+
/** @name PalletCorporateActionsCorporateAction (194) */
|
|
1740
1762
|
interface PalletCorporateActionsCorporateAction extends Struct {
|
|
1741
1763
|
readonly kind: PalletCorporateActionsCaKind;
|
|
1742
1764
|
readonly declDate: u64;
|
|
@@ -1745,7 +1767,7 @@ declare module "./types-lookup.ts" {
|
|
|
1745
1767
|
readonly defaultWithholdingTax: Permill;
|
|
1746
1768
|
readonly withholdingTax: Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>;
|
|
1747
1769
|
}
|
|
1748
|
-
/** @name PalletCorporateActionsCaKind (
|
|
1770
|
+
/** @name PalletCorporateActionsCaKind (195) */
|
|
1749
1771
|
interface PalletCorporateActionsCaKind extends Enum {
|
|
1750
1772
|
readonly isPredictableBenefit: boolean;
|
|
1751
1773
|
readonly isUnpredictableBenefit: boolean;
|
|
@@ -1754,12 +1776,12 @@ declare module "./types-lookup.ts" {
|
|
|
1754
1776
|
readonly isOther: boolean;
|
|
1755
1777
|
readonly type: 'PredictableBenefit' | 'UnpredictableBenefit' | 'IssuerNotice' | 'Reorganization' | 'Other';
|
|
1756
1778
|
}
|
|
1757
|
-
/** @name PalletCorporateActionsRecordDate (
|
|
1779
|
+
/** @name PalletCorporateActionsRecordDate (197) */
|
|
1758
1780
|
interface PalletCorporateActionsRecordDate extends Struct {
|
|
1759
1781
|
readonly date: u64;
|
|
1760
1782
|
readonly checkpoint: PalletCorporateActionsCaCheckpoint;
|
|
1761
1783
|
}
|
|
1762
|
-
/** @name PalletCorporateActionsCaCheckpoint (
|
|
1784
|
+
/** @name PalletCorporateActionsCaCheckpoint (198) */
|
|
1763
1785
|
interface PalletCorporateActionsCaCheckpoint extends Enum {
|
|
1764
1786
|
readonly isScheduled: boolean;
|
|
1765
1787
|
readonly asScheduled: ITuple<[u64, u64]>;
|
|
@@ -1767,7 +1789,7 @@ declare module "./types-lookup.ts" {
|
|
|
1767
1789
|
readonly asExisting: u64;
|
|
1768
1790
|
readonly type: 'Scheduled' | 'Existing';
|
|
1769
1791
|
}
|
|
1770
|
-
/** @name PalletCorporateActionsBallotEvent (
|
|
1792
|
+
/** @name PalletCorporateActionsBallotEvent (203) */
|
|
1771
1793
|
interface PalletCorporateActionsBallotEvent extends Enum {
|
|
1772
1794
|
readonly isCreated: boolean;
|
|
1773
1795
|
readonly asCreated: ITuple<[
|
|
@@ -1801,28 +1823,28 @@ declare module "./types-lookup.ts" {
|
|
|
1801
1823
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1802
1824
|
readonly type: 'Created' | 'VoteCast' | 'RangeChanged' | 'MetaChanged' | 'RcvChanged' | 'Removed';
|
|
1803
1825
|
}
|
|
1804
|
-
/** @name PalletCorporateActionsBallotBallotTimeRange (
|
|
1826
|
+
/** @name PalletCorporateActionsBallotBallotTimeRange (204) */
|
|
1805
1827
|
interface PalletCorporateActionsBallotBallotTimeRange extends Struct {
|
|
1806
1828
|
readonly start: u64;
|
|
1807
1829
|
readonly end: u64;
|
|
1808
1830
|
}
|
|
1809
|
-
/** @name PalletCorporateActionsBallotBallotMeta (
|
|
1831
|
+
/** @name PalletCorporateActionsBallotBallotMeta (205) */
|
|
1810
1832
|
interface PalletCorporateActionsBallotBallotMeta extends Struct {
|
|
1811
1833
|
readonly title: Bytes;
|
|
1812
1834
|
readonly motions: Vec<PalletCorporateActionsBallotMotion>;
|
|
1813
1835
|
}
|
|
1814
|
-
/** @name PalletCorporateActionsBallotMotion (
|
|
1836
|
+
/** @name PalletCorporateActionsBallotMotion (208) */
|
|
1815
1837
|
interface PalletCorporateActionsBallotMotion extends Struct {
|
|
1816
1838
|
readonly title: Bytes;
|
|
1817
1839
|
readonly infoLink: Bytes;
|
|
1818
1840
|
readonly choices: Vec<Bytes>;
|
|
1819
1841
|
}
|
|
1820
|
-
/** @name PalletCorporateActionsBallotBallotVote (
|
|
1842
|
+
/** @name PalletCorporateActionsBallotBallotVote (214) */
|
|
1821
1843
|
interface PalletCorporateActionsBallotBallotVote extends Struct {
|
|
1822
1844
|
readonly power: u128;
|
|
1823
1845
|
readonly fallback: Option<u16>;
|
|
1824
1846
|
}
|
|
1825
|
-
/** @name PalletPipsRawEvent (
|
|
1847
|
+
/** @name PalletPipsRawEvent (217) */
|
|
1826
1848
|
interface PalletPipsRawEvent extends Enum {
|
|
1827
1849
|
readonly isHistoricalPipsPruned: boolean;
|
|
1828
1850
|
readonly asHistoricalPipsPruned: ITuple<[PolymeshPrimitivesIdentityId, bool, bool]>;
|
|
@@ -1893,7 +1915,7 @@ declare module "./types-lookup.ts" {
|
|
|
1893
1915
|
readonly asExecutionCancellingFailed: u32;
|
|
1894
1916
|
readonly type: 'HistoricalPipsPruned' | 'ProposalCreated' | 'ProposalStateUpdated' | 'Voted' | 'PipClosed' | 'ExecutionScheduled' | 'DefaultEnactmentPeriodChanged' | 'MinimumProposalDepositChanged' | 'PendingPipExpiryChanged' | 'MaxPipSkipCountChanged' | 'ActivePipLimitChanged' | 'ProposalRefund' | 'SnapshotCleared' | 'SnapshotTaken' | 'PipSkipped' | 'SnapshotResultsEnacted' | 'ExecutionSchedulingFailed' | 'ExpiryScheduled' | 'ExpirySchedulingFailed' | 'ExecutionCancellingFailed';
|
|
1895
1917
|
}
|
|
1896
|
-
/** @name PalletPipsProposer (
|
|
1918
|
+
/** @name PalletPipsProposer (218) */
|
|
1897
1919
|
interface PalletPipsProposer extends Enum {
|
|
1898
1920
|
readonly isCommunity: boolean;
|
|
1899
1921
|
readonly asCommunity: AccountId32;
|
|
@@ -1901,13 +1923,13 @@ declare module "./types-lookup.ts" {
|
|
|
1901
1923
|
readonly asCommittee: PalletPipsCommittee;
|
|
1902
1924
|
readonly type: 'Community' | 'Committee';
|
|
1903
1925
|
}
|
|
1904
|
-
/** @name PalletPipsCommittee (
|
|
1926
|
+
/** @name PalletPipsCommittee (219) */
|
|
1905
1927
|
interface PalletPipsCommittee extends Enum {
|
|
1906
1928
|
readonly isTechnical: boolean;
|
|
1907
1929
|
readonly isUpgrade: boolean;
|
|
1908
1930
|
readonly type: 'Technical' | 'Upgrade';
|
|
1909
1931
|
}
|
|
1910
|
-
/** @name PalletPipsProposalData (
|
|
1932
|
+
/** @name PalletPipsProposalData (223) */
|
|
1911
1933
|
interface PalletPipsProposalData extends Enum {
|
|
1912
1934
|
readonly isHash: boolean;
|
|
1913
1935
|
readonly asHash: H256;
|
|
@@ -1915,7 +1937,7 @@ declare module "./types-lookup.ts" {
|
|
|
1915
1937
|
readonly asProposal: Bytes;
|
|
1916
1938
|
readonly type: 'Hash' | 'Proposal';
|
|
1917
1939
|
}
|
|
1918
|
-
/** @name PalletPipsProposalState (
|
|
1940
|
+
/** @name PalletPipsProposalState (224) */
|
|
1919
1941
|
interface PalletPipsProposalState extends Enum {
|
|
1920
1942
|
readonly isPending: boolean;
|
|
1921
1943
|
readonly isRejected: boolean;
|
|
@@ -1925,12 +1947,12 @@ declare module "./types-lookup.ts" {
|
|
|
1925
1947
|
readonly isExpired: boolean;
|
|
1926
1948
|
readonly type: 'Pending' | 'Rejected' | 'Scheduled' | 'Failed' | 'Executed' | 'Expired';
|
|
1927
1949
|
}
|
|
1928
|
-
/** @name PalletPipsSnapshottedPip (
|
|
1950
|
+
/** @name PalletPipsSnapshottedPip (227) */
|
|
1929
1951
|
interface PalletPipsSnapshottedPip extends Struct {
|
|
1930
1952
|
readonly id: u32;
|
|
1931
1953
|
readonly weight: ITuple<[bool, u128]>;
|
|
1932
1954
|
}
|
|
1933
|
-
/** @name PolymeshCommonUtilitiesPortfolioEvent (
|
|
1955
|
+
/** @name PolymeshCommonUtilitiesPortfolioEvent (233) */
|
|
1934
1956
|
interface PolymeshCommonUtilitiesPortfolioEvent extends Enum {
|
|
1935
1957
|
readonly isPortfolioCreated: boolean;
|
|
1936
1958
|
readonly asPortfolioCreated: ITuple<[PolymeshPrimitivesIdentityId, u64, Bytes]>;
|
|
@@ -1968,7 +1990,7 @@ declare module "./types-lookup.ts" {
|
|
|
1968
1990
|
]>;
|
|
1969
1991
|
readonly type: 'PortfolioCreated' | 'PortfolioDeleted' | 'PortfolioRenamed' | 'UserPortfolios' | 'PortfolioCustodianChanged' | 'FundsMovedBetweenPortfolios' | 'PreApprovedPortfolio' | 'RevokePreApprovedPortfolio';
|
|
1970
1992
|
}
|
|
1971
|
-
/** @name PolymeshPrimitivesPortfolioFundDescription (
|
|
1993
|
+
/** @name PolymeshPrimitivesPortfolioFundDescription (237) */
|
|
1972
1994
|
interface PolymeshPrimitivesPortfolioFundDescription extends Enum {
|
|
1973
1995
|
readonly isFungible: boolean;
|
|
1974
1996
|
readonly asFungible: {
|
|
@@ -1979,12 +2001,12 @@ declare module "./types-lookup.ts" {
|
|
|
1979
2001
|
readonly asNonFungible: PolymeshPrimitivesNftNfTs;
|
|
1980
2002
|
readonly type: 'Fungible' | 'NonFungible';
|
|
1981
2003
|
}
|
|
1982
|
-
/** @name PolymeshPrimitivesNftNfTs (
|
|
2004
|
+
/** @name PolymeshPrimitivesNftNfTs (238) */
|
|
1983
2005
|
interface PolymeshPrimitivesNftNfTs extends Struct {
|
|
1984
2006
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
1985
2007
|
readonly ids: Vec<u64>;
|
|
1986
2008
|
}
|
|
1987
|
-
/** @name PalletProtocolFeeRawEvent (
|
|
2009
|
+
/** @name PalletProtocolFeeRawEvent (241) */
|
|
1988
2010
|
interface PalletProtocolFeeRawEvent extends Enum {
|
|
1989
2011
|
readonly isFeeSet: boolean;
|
|
1990
2012
|
readonly asFeeSet: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
@@ -1994,10 +2016,10 @@ declare module "./types-lookup.ts" {
|
|
|
1994
2016
|
readonly asFeeCharged: ITuple<[AccountId32, u128]>;
|
|
1995
2017
|
readonly type: 'FeeSet' | 'CoefficientSet' | 'FeeCharged';
|
|
1996
2018
|
}
|
|
1997
|
-
/** @name PolymeshPrimitivesPosRatio (
|
|
2019
|
+
/** @name PolymeshPrimitivesPosRatio (242) */
|
|
1998
2020
|
interface PolymeshPrimitivesPosRatio extends ITuple<[u32, u32]> {
|
|
1999
2021
|
}
|
|
2000
|
-
/** @name PalletSchedulerEvent (
|
|
2022
|
+
/** @name PalletSchedulerEvent (243) */
|
|
2001
2023
|
interface PalletSchedulerEvent extends Enum {
|
|
2002
2024
|
readonly isScheduled: boolean;
|
|
2003
2025
|
readonly asScheduled: {
|
|
@@ -2032,7 +2054,7 @@ declare module "./types-lookup.ts" {
|
|
|
2032
2054
|
} & Struct;
|
|
2033
2055
|
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
|
|
2034
2056
|
}
|
|
2035
|
-
/** @name PolymeshCommonUtilitiesSettlementRawEvent (
|
|
2057
|
+
/** @name PolymeshCommonUtilitiesSettlementRawEvent (246) */
|
|
2036
2058
|
interface PolymeshCommonUtilitiesSettlementRawEvent extends Enum {
|
|
2037
2059
|
readonly isVenueCreated: boolean;
|
|
2038
2060
|
readonly asVenueCreated: ITuple<[
|
|
@@ -2134,9 +2156,13 @@ declare module "./types-lookup.ts" {
|
|
|
2134
2156
|
PolymeshPrimitivesIdentityIdPortfolioId,
|
|
2135
2157
|
u64
|
|
2136
2158
|
]>;
|
|
2137
|
-
readonly
|
|
2159
|
+
readonly isMediatorAffirmationReceived: boolean;
|
|
2160
|
+
readonly asMediatorAffirmationReceived: ITuple<[PolymeshPrimitivesIdentityId, u64]>;
|
|
2161
|
+
readonly isMediatorAffirmationWithdrawn: boolean;
|
|
2162
|
+
readonly asMediatorAffirmationWithdrawn: ITuple<[PolymeshPrimitivesIdentityId, u64]>;
|
|
2163
|
+
readonly type: 'VenueCreated' | 'VenueDetailsUpdated' | 'VenueTypeUpdated' | 'InstructionAffirmed' | 'AffirmationWithdrawn' | 'InstructionRejected' | 'ReceiptClaimed' | 'VenueFiltering' | 'VenuesAllowed' | 'VenuesBlocked' | 'LegFailedExecution' | 'InstructionFailed' | 'InstructionExecuted' | 'VenueUnauthorized' | 'SchedulingFailed' | 'InstructionRescheduled' | 'VenueSignersUpdated' | 'SettlementManuallyExecuted' | 'InstructionCreated' | 'FailedToExecuteInstruction' | 'InstructionAutomaticallyAffirmed' | 'MediatorAffirmationReceived' | 'MediatorAffirmationWithdrawn';
|
|
2138
2164
|
}
|
|
2139
|
-
/** @name PolymeshPrimitivesSettlementVenueType (
|
|
2165
|
+
/** @name PolymeshPrimitivesSettlementVenueType (249) */
|
|
2140
2166
|
interface PolymeshPrimitivesSettlementVenueType extends Enum {
|
|
2141
2167
|
readonly isOther: boolean;
|
|
2142
2168
|
readonly isDistribution: boolean;
|
|
@@ -2144,10 +2170,10 @@ declare module "./types-lookup.ts" {
|
|
|
2144
2170
|
readonly isExchange: boolean;
|
|
2145
2171
|
readonly type: 'Other' | 'Distribution' | 'Sto' | 'Exchange';
|
|
2146
2172
|
}
|
|
2147
|
-
/** @name PolymeshPrimitivesSettlementReceiptMetadata (
|
|
2173
|
+
/** @name PolymeshPrimitivesSettlementReceiptMetadata (252) */
|
|
2148
2174
|
interface PolymeshPrimitivesSettlementReceiptMetadata extends U8aFixed {
|
|
2149
2175
|
}
|
|
2150
|
-
/** @name PolymeshPrimitivesSettlementSettlementType (
|
|
2176
|
+
/** @name PolymeshPrimitivesSettlementSettlementType (254) */
|
|
2151
2177
|
interface PolymeshPrimitivesSettlementSettlementType extends Enum {
|
|
2152
2178
|
readonly isSettleOnAffirmation: boolean;
|
|
2153
2179
|
readonly isSettleOnBlock: boolean;
|
|
@@ -2156,7 +2182,7 @@ declare module "./types-lookup.ts" {
|
|
|
2156
2182
|
readonly asSettleManual: u32;
|
|
2157
2183
|
readonly type: 'SettleOnAffirmation' | 'SettleOnBlock' | 'SettleManual';
|
|
2158
2184
|
}
|
|
2159
|
-
/** @name PolymeshPrimitivesSettlementLeg (
|
|
2185
|
+
/** @name PolymeshPrimitivesSettlementLeg (256) */
|
|
2160
2186
|
interface PolymeshPrimitivesSettlementLeg extends Enum {
|
|
2161
2187
|
readonly isFungible: boolean;
|
|
2162
2188
|
readonly asFungible: {
|
|
@@ -2180,7 +2206,7 @@ declare module "./types-lookup.ts" {
|
|
|
2180
2206
|
} & Struct;
|
|
2181
2207
|
readonly type: 'Fungible' | 'NonFungible' | 'OffChain';
|
|
2182
2208
|
}
|
|
2183
|
-
/** @name PolymeshCommonUtilitiesStatisticsEvent (
|
|
2209
|
+
/** @name PolymeshCommonUtilitiesStatisticsEvent (257) */
|
|
2184
2210
|
interface PolymeshCommonUtilitiesStatisticsEvent extends Enum {
|
|
2185
2211
|
readonly isStatTypesAdded: boolean;
|
|
2186
2212
|
readonly asStatTypesAdded: ITuple<[
|
|
@@ -2221,36 +2247,36 @@ declare module "./types-lookup.ts" {
|
|
|
2221
2247
|
]>;
|
|
2222
2248
|
readonly type: 'StatTypesAdded' | 'StatTypesRemoved' | 'AssetStatsUpdated' | 'SetAssetTransferCompliance' | 'TransferConditionExemptionsAdded' | 'TransferConditionExemptionsRemoved';
|
|
2223
2249
|
}
|
|
2224
|
-
/** @name PolymeshPrimitivesStatisticsAssetScope (
|
|
2250
|
+
/** @name PolymeshPrimitivesStatisticsAssetScope (258) */
|
|
2225
2251
|
interface PolymeshPrimitivesStatisticsAssetScope extends Enum {
|
|
2226
2252
|
readonly isTicker: boolean;
|
|
2227
2253
|
readonly asTicker: PolymeshPrimitivesTicker;
|
|
2228
2254
|
readonly type: 'Ticker';
|
|
2229
2255
|
}
|
|
2230
|
-
/** @name PolymeshPrimitivesStatisticsStatType (
|
|
2256
|
+
/** @name PolymeshPrimitivesStatisticsStatType (260) */
|
|
2231
2257
|
interface PolymeshPrimitivesStatisticsStatType extends Struct {
|
|
2232
2258
|
readonly op: PolymeshPrimitivesStatisticsStatOpType;
|
|
2233
2259
|
readonly claimIssuer: Option<ITuple<[PolymeshPrimitivesIdentityClaimClaimType, PolymeshPrimitivesIdentityId]>>;
|
|
2234
2260
|
}
|
|
2235
|
-
/** @name PolymeshPrimitivesStatisticsStatOpType (
|
|
2261
|
+
/** @name PolymeshPrimitivesStatisticsStatOpType (261) */
|
|
2236
2262
|
interface PolymeshPrimitivesStatisticsStatOpType extends Enum {
|
|
2237
2263
|
readonly isCount: boolean;
|
|
2238
2264
|
readonly isBalance: boolean;
|
|
2239
2265
|
readonly type: 'Count' | 'Balance';
|
|
2240
2266
|
}
|
|
2241
|
-
/** @name PolymeshPrimitivesStatisticsStatUpdate (
|
|
2267
|
+
/** @name PolymeshPrimitivesStatisticsStatUpdate (265) */
|
|
2242
2268
|
interface PolymeshPrimitivesStatisticsStatUpdate extends Struct {
|
|
2243
2269
|
readonly key2: PolymeshPrimitivesStatisticsStat2ndKey;
|
|
2244
2270
|
readonly value: Option<u128>;
|
|
2245
2271
|
}
|
|
2246
|
-
/** @name PolymeshPrimitivesStatisticsStat2ndKey (
|
|
2272
|
+
/** @name PolymeshPrimitivesStatisticsStat2ndKey (266) */
|
|
2247
2273
|
interface PolymeshPrimitivesStatisticsStat2ndKey extends Enum {
|
|
2248
2274
|
readonly isNoClaimStat: boolean;
|
|
2249
2275
|
readonly isClaim: boolean;
|
|
2250
2276
|
readonly asClaim: PolymeshPrimitivesStatisticsStatClaim;
|
|
2251
2277
|
readonly type: 'NoClaimStat' | 'Claim';
|
|
2252
2278
|
}
|
|
2253
|
-
/** @name PolymeshPrimitivesStatisticsStatClaim (
|
|
2279
|
+
/** @name PolymeshPrimitivesStatisticsStatClaim (267) */
|
|
2254
2280
|
interface PolymeshPrimitivesStatisticsStatClaim extends Enum {
|
|
2255
2281
|
readonly isAccredited: boolean;
|
|
2256
2282
|
readonly asAccredited: bool;
|
|
@@ -2260,7 +2286,7 @@ declare module "./types-lookup.ts" {
|
|
|
2260
2286
|
readonly asJurisdiction: Option<PolymeshPrimitivesJurisdictionCountryCode>;
|
|
2261
2287
|
readonly type: 'Accredited' | 'Affiliate' | 'Jurisdiction';
|
|
2262
2288
|
}
|
|
2263
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (
|
|
2289
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (271) */
|
|
2264
2290
|
interface PolymeshPrimitivesTransferComplianceTransferCondition extends Enum {
|
|
2265
2291
|
readonly isMaxInvestorCount: boolean;
|
|
2266
2292
|
readonly asMaxInvestorCount: u64;
|
|
@@ -2282,13 +2308,13 @@ declare module "./types-lookup.ts" {
|
|
|
2282
2308
|
]>;
|
|
2283
2309
|
readonly type: 'MaxInvestorCount' | 'MaxInvestorOwnership' | 'ClaimCount' | 'ClaimOwnership';
|
|
2284
2310
|
}
|
|
2285
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (
|
|
2311
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (272) */
|
|
2286
2312
|
interface PolymeshPrimitivesTransferComplianceTransferConditionExemptKey extends Struct {
|
|
2287
2313
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
2288
2314
|
readonly op: PolymeshPrimitivesStatisticsStatOpType;
|
|
2289
2315
|
readonly claimType: Option<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
2290
2316
|
}
|
|
2291
|
-
/** @name PalletStoRawEvent (
|
|
2317
|
+
/** @name PalletStoRawEvent (274) */
|
|
2292
2318
|
interface PalletStoRawEvent extends Enum {
|
|
2293
2319
|
readonly isFundraiserCreated: boolean;
|
|
2294
2320
|
readonly asFundraiserCreated: ITuple<[
|
|
@@ -2323,7 +2349,7 @@ declare module "./types-lookup.ts" {
|
|
|
2323
2349
|
readonly asFundraiserClosed: ITuple<[PolymeshPrimitivesIdentityId, u64]>;
|
|
2324
2350
|
readonly type: 'FundraiserCreated' | 'Invested' | 'FundraiserFrozen' | 'FundraiserUnfrozen' | 'FundraiserWindowModified' | 'FundraiserClosed';
|
|
2325
2351
|
}
|
|
2326
|
-
/** @name PalletStoFundraiser (
|
|
2352
|
+
/** @name PalletStoFundraiser (277) */
|
|
2327
2353
|
interface PalletStoFundraiser extends Struct {
|
|
2328
2354
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
2329
2355
|
readonly offeringPortfolio: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
@@ -2337,13 +2363,13 @@ declare module "./types-lookup.ts" {
|
|
|
2337
2363
|
readonly status: PalletStoFundraiserStatus;
|
|
2338
2364
|
readonly minimumInvestment: u128;
|
|
2339
2365
|
}
|
|
2340
|
-
/** @name PalletStoFundraiserTier (
|
|
2366
|
+
/** @name PalletStoFundraiserTier (279) */
|
|
2341
2367
|
interface PalletStoFundraiserTier extends Struct {
|
|
2342
2368
|
readonly total: u128;
|
|
2343
2369
|
readonly price: u128;
|
|
2344
2370
|
readonly remaining: u128;
|
|
2345
2371
|
}
|
|
2346
|
-
/** @name PalletStoFundraiserStatus (
|
|
2372
|
+
/** @name PalletStoFundraiserStatus (280) */
|
|
2347
2373
|
interface PalletStoFundraiserStatus extends Enum {
|
|
2348
2374
|
readonly isLive: boolean;
|
|
2349
2375
|
readonly isFrozen: boolean;
|
|
@@ -2351,7 +2377,7 @@ declare module "./types-lookup.ts" {
|
|
|
2351
2377
|
readonly isClosedEarly: boolean;
|
|
2352
2378
|
readonly type: 'Live' | 'Frozen' | 'Closed' | 'ClosedEarly';
|
|
2353
2379
|
}
|
|
2354
|
-
/** @name PalletTreasuryRawEvent (
|
|
2380
|
+
/** @name PalletTreasuryRawEvent (281) */
|
|
2355
2381
|
interface PalletTreasuryRawEvent extends Enum {
|
|
2356
2382
|
readonly isTreasuryDisbursement: boolean;
|
|
2357
2383
|
readonly asTreasuryDisbursement: ITuple<[
|
|
@@ -2371,7 +2397,7 @@ declare module "./types-lookup.ts" {
|
|
|
2371
2397
|
readonly asTreasuryReimbursement: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
2372
2398
|
readonly type: 'TreasuryDisbursement' | 'TreasuryDisbursementFailed' | 'TreasuryReimbursement';
|
|
2373
2399
|
}
|
|
2374
|
-
/** @name PalletUtilityEvent (
|
|
2400
|
+
/** @name PalletUtilityEvent (282) */
|
|
2375
2401
|
interface PalletUtilityEvent extends Enum {
|
|
2376
2402
|
readonly isBatchInterrupted: boolean;
|
|
2377
2403
|
readonly asBatchInterrupted: {
|
|
@@ -2406,13 +2432,13 @@ declare module "./types-lookup.ts" {
|
|
|
2406
2432
|
readonly asBatchCompletedOld: Vec<u32>;
|
|
2407
2433
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs' | 'RelayedTx' | 'BatchInterruptedOld' | 'BatchOptimisticFailed' | 'BatchCompletedOld';
|
|
2408
2434
|
}
|
|
2409
|
-
/** @name PolymeshCommonUtilitiesBaseEvent (
|
|
2435
|
+
/** @name PolymeshCommonUtilitiesBaseEvent (286) */
|
|
2410
2436
|
interface PolymeshCommonUtilitiesBaseEvent extends Enum {
|
|
2411
2437
|
readonly isUnexpectedError: boolean;
|
|
2412
2438
|
readonly asUnexpectedError: Option<SpRuntimeDispatchError>;
|
|
2413
2439
|
readonly type: 'UnexpectedError';
|
|
2414
2440
|
}
|
|
2415
|
-
/** @name PolymeshCommonUtilitiesExternalAgentsEvent (
|
|
2441
|
+
/** @name PolymeshCommonUtilitiesExternalAgentsEvent (288) */
|
|
2416
2442
|
interface PolymeshCommonUtilitiesExternalAgentsEvent extends Enum {
|
|
2417
2443
|
readonly isGroupCreated: boolean;
|
|
2418
2444
|
readonly asGroupCreated: ITuple<[
|
|
@@ -2449,7 +2475,7 @@ declare module "./types-lookup.ts" {
|
|
|
2449
2475
|
]>;
|
|
2450
2476
|
readonly type: 'GroupCreated' | 'GroupPermissionsUpdated' | 'AgentAdded' | 'AgentRemoved' | 'GroupChanged';
|
|
2451
2477
|
}
|
|
2452
|
-
/** @name PolymeshCommonUtilitiesRelayerRawEvent (
|
|
2478
|
+
/** @name PolymeshCommonUtilitiesRelayerRawEvent (289) */
|
|
2453
2479
|
interface PolymeshCommonUtilitiesRelayerRawEvent extends Enum {
|
|
2454
2480
|
readonly isAuthorizedPayingKey: boolean;
|
|
2455
2481
|
readonly asAuthorizedPayingKey: ITuple<[
|
|
@@ -2473,7 +2499,7 @@ declare module "./types-lookup.ts" {
|
|
|
2473
2499
|
]>;
|
|
2474
2500
|
readonly type: 'AuthorizedPayingKey' | 'AcceptedPayingKey' | 'RemovedPayingKey' | 'UpdatedPolyxLimit';
|
|
2475
2501
|
}
|
|
2476
|
-
/** @name PalletContractsEvent (
|
|
2502
|
+
/** @name PalletContractsEvent (290) */
|
|
2477
2503
|
interface PalletContractsEvent extends Enum {
|
|
2478
2504
|
readonly isInstantiated: boolean;
|
|
2479
2505
|
readonly asInstantiated: {
|
|
@@ -2516,7 +2542,7 @@ declare module "./types-lookup.ts" {
|
|
|
2516
2542
|
} & Struct;
|
|
2517
2543
|
readonly type: 'Instantiated' | 'Terminated' | 'CodeStored' | 'ContractEmitted' | 'CodeRemoved' | 'ContractCodeUpdated' | 'Called' | 'DelegateCalled';
|
|
2518
2544
|
}
|
|
2519
|
-
/** @name PolymeshContractsRawEvent (
|
|
2545
|
+
/** @name PolymeshContractsRawEvent (291) */
|
|
2520
2546
|
interface PolymeshContractsRawEvent extends Enum {
|
|
2521
2547
|
readonly isApiHashUpdated: boolean;
|
|
2522
2548
|
readonly asApiHashUpdated: ITuple<[PolymeshContractsApi, PolymeshContractsChainVersion, H256]>;
|
|
@@ -2524,20 +2550,20 @@ declare module "./types-lookup.ts" {
|
|
|
2524
2550
|
readonly asScRuntimeCall: ITuple<[AccountId32, PolymeshContractsChainExtensionExtrinsicId]>;
|
|
2525
2551
|
readonly type: 'ApiHashUpdated' | 'ScRuntimeCall';
|
|
2526
2552
|
}
|
|
2527
|
-
/** @name PolymeshContractsApi (
|
|
2553
|
+
/** @name PolymeshContractsApi (292) */
|
|
2528
2554
|
interface PolymeshContractsApi extends Struct {
|
|
2529
2555
|
readonly desc: U8aFixed;
|
|
2530
2556
|
readonly major: u32;
|
|
2531
2557
|
}
|
|
2532
|
-
/** @name PolymeshContractsChainVersion (
|
|
2558
|
+
/** @name PolymeshContractsChainVersion (293) */
|
|
2533
2559
|
interface PolymeshContractsChainVersion extends Struct {
|
|
2534
2560
|
readonly specVersion: u32;
|
|
2535
2561
|
readonly txVersion: u32;
|
|
2536
2562
|
}
|
|
2537
|
-
/** @name PolymeshContractsChainExtensionExtrinsicId (
|
|
2563
|
+
/** @name PolymeshContractsChainExtensionExtrinsicId (294) */
|
|
2538
2564
|
interface PolymeshContractsChainExtensionExtrinsicId extends ITuple<[u8, u8]> {
|
|
2539
2565
|
}
|
|
2540
|
-
/** @name PalletPreimageEvent (
|
|
2566
|
+
/** @name PalletPreimageEvent (295) */
|
|
2541
2567
|
interface PalletPreimageEvent extends Enum {
|
|
2542
2568
|
readonly isNoted: boolean;
|
|
2543
2569
|
readonly asNoted: {
|
|
@@ -2553,7 +2579,7 @@ declare module "./types-lookup.ts" {
|
|
|
2553
2579
|
} & Struct;
|
|
2554
2580
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
|
2555
2581
|
}
|
|
2556
|
-
/** @name PolymeshCommonUtilitiesNftEvent (
|
|
2582
|
+
/** @name PolymeshCommonUtilitiesNftEvent (296) */
|
|
2557
2583
|
interface PolymeshCommonUtilitiesNftEvent extends Enum {
|
|
2558
2584
|
readonly isNftCollectionCreated: boolean;
|
|
2559
2585
|
readonly asNftCollectionCreated: ITuple<[
|
|
@@ -2571,7 +2597,7 @@ declare module "./types-lookup.ts" {
|
|
|
2571
2597
|
]>;
|
|
2572
2598
|
readonly type: 'NftCollectionCreated' | 'NftPortfolioUpdated';
|
|
2573
2599
|
}
|
|
2574
|
-
/** @name PalletTestUtilsRawEvent (
|
|
2600
|
+
/** @name PalletTestUtilsRawEvent (298) */
|
|
2575
2601
|
interface PalletTestUtilsRawEvent extends Enum {
|
|
2576
2602
|
readonly isDidStatus: boolean;
|
|
2577
2603
|
readonly asDidStatus: ITuple<[PolymeshPrimitivesIdentityId, AccountId32]>;
|
|
@@ -2579,7 +2605,7 @@ declare module "./types-lookup.ts" {
|
|
|
2579
2605
|
readonly asCddStatus: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, bool]>;
|
|
2580
2606
|
readonly type: 'DidStatus' | 'CddStatus';
|
|
2581
2607
|
}
|
|
2582
|
-
/** @name FrameSystemPhase (
|
|
2608
|
+
/** @name FrameSystemPhase (299) */
|
|
2583
2609
|
interface FrameSystemPhase extends Enum {
|
|
2584
2610
|
readonly isApplyExtrinsic: boolean;
|
|
2585
2611
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2587,12 +2613,12 @@ declare module "./types-lookup.ts" {
|
|
|
2587
2613
|
readonly isInitialization: boolean;
|
|
2588
2614
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2589
2615
|
}
|
|
2590
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2616
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (302) */
|
|
2591
2617
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2592
2618
|
readonly specVersion: Compact<u32>;
|
|
2593
2619
|
readonly specName: Text;
|
|
2594
2620
|
}
|
|
2595
|
-
/** @name FrameSystemCall (
|
|
2621
|
+
/** @name FrameSystemCall (305) */
|
|
2596
2622
|
interface FrameSystemCall extends Enum {
|
|
2597
2623
|
readonly isRemark: boolean;
|
|
2598
2624
|
readonly asRemark: {
|
|
@@ -2629,41 +2655,41 @@ declare module "./types-lookup.ts" {
|
|
|
2629
2655
|
} & Struct;
|
|
2630
2656
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
|
|
2631
2657
|
}
|
|
2632
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2658
|
+
/** @name FrameSystemLimitsBlockWeights (309) */
|
|
2633
2659
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2634
2660
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2635
2661
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2636
2662
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2637
2663
|
}
|
|
2638
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2664
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (310) */
|
|
2639
2665
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2640
2666
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2641
2667
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2642
2668
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2643
2669
|
}
|
|
2644
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2670
|
+
/** @name FrameSystemLimitsWeightsPerClass (311) */
|
|
2645
2671
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2646
2672
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2647
2673
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2648
2674
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2649
2675
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2650
2676
|
}
|
|
2651
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2677
|
+
/** @name FrameSystemLimitsBlockLength (313) */
|
|
2652
2678
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2653
2679
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2654
2680
|
}
|
|
2655
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2681
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (314) */
|
|
2656
2682
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2657
2683
|
readonly normal: u32;
|
|
2658
2684
|
readonly operational: u32;
|
|
2659
2685
|
readonly mandatory: u32;
|
|
2660
2686
|
}
|
|
2661
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2687
|
+
/** @name SpWeightsRuntimeDbWeight (315) */
|
|
2662
2688
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2663
2689
|
readonly read: u64;
|
|
2664
2690
|
readonly write: u64;
|
|
2665
2691
|
}
|
|
2666
|
-
/** @name SpVersionRuntimeVersion (
|
|
2692
|
+
/** @name SpVersionRuntimeVersion (316) */
|
|
2667
2693
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2668
2694
|
readonly specName: Text;
|
|
2669
2695
|
readonly implName: Text;
|
|
@@ -2674,7 +2700,7 @@ declare module "./types-lookup.ts" {
|
|
|
2674
2700
|
readonly transactionVersion: u32;
|
|
2675
2701
|
readonly stateVersion: u8;
|
|
2676
2702
|
}
|
|
2677
|
-
/** @name FrameSystemError (
|
|
2703
|
+
/** @name FrameSystemError (321) */
|
|
2678
2704
|
interface FrameSystemError extends Enum {
|
|
2679
2705
|
readonly isInvalidSpecName: boolean;
|
|
2680
2706
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2684,10 +2710,10 @@ declare module "./types-lookup.ts" {
|
|
|
2684
2710
|
readonly isCallFiltered: boolean;
|
|
2685
2711
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
|
|
2686
2712
|
}
|
|
2687
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2713
|
+
/** @name SpConsensusBabeAppPublic (324) */
|
|
2688
2714
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
2689
2715
|
}
|
|
2690
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2716
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (327) */
|
|
2691
2717
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
2692
2718
|
readonly isV1: boolean;
|
|
2693
2719
|
readonly asV1: {
|
|
@@ -2696,14 +2722,14 @@ declare module "./types-lookup.ts" {
|
|
|
2696
2722
|
} & Struct;
|
|
2697
2723
|
readonly type: 'V1';
|
|
2698
2724
|
}
|
|
2699
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2725
|
+
/** @name SpConsensusBabeAllowedSlots (329) */
|
|
2700
2726
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
2701
2727
|
readonly isPrimarySlots: boolean;
|
|
2702
2728
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
2703
2729
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
2704
2730
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
2705
2731
|
}
|
|
2706
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
2732
|
+
/** @name SpConsensusBabeDigestsPreDigest (333) */
|
|
2707
2733
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
2708
2734
|
readonly isPrimary: boolean;
|
|
2709
2735
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -2713,31 +2739,31 @@ declare module "./types-lookup.ts" {
|
|
|
2713
2739
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
2714
2740
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
2715
2741
|
}
|
|
2716
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
2742
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (334) */
|
|
2717
2743
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
2718
2744
|
readonly authorityIndex: u32;
|
|
2719
2745
|
readonly slot: u64;
|
|
2720
2746
|
readonly vrfOutput: U8aFixed;
|
|
2721
2747
|
readonly vrfProof: U8aFixed;
|
|
2722
2748
|
}
|
|
2723
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
2749
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (335) */
|
|
2724
2750
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
2725
2751
|
readonly authorityIndex: u32;
|
|
2726
2752
|
readonly slot: u64;
|
|
2727
2753
|
}
|
|
2728
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
2754
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (336) */
|
|
2729
2755
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
2730
2756
|
readonly authorityIndex: u32;
|
|
2731
2757
|
readonly slot: u64;
|
|
2732
2758
|
readonly vrfOutput: U8aFixed;
|
|
2733
2759
|
readonly vrfProof: U8aFixed;
|
|
2734
2760
|
}
|
|
2735
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
2761
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (337) */
|
|
2736
2762
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
2737
2763
|
readonly c: ITuple<[u64, u64]>;
|
|
2738
2764
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
2739
2765
|
}
|
|
2740
|
-
/** @name PalletBabeCall (
|
|
2766
|
+
/** @name PalletBabeCall (341) */
|
|
2741
2767
|
interface PalletBabeCall extends Enum {
|
|
2742
2768
|
readonly isReportEquivocation: boolean;
|
|
2743
2769
|
readonly asReportEquivocation: {
|
|
@@ -2755,14 +2781,14 @@ declare module "./types-lookup.ts" {
|
|
|
2755
2781
|
} & Struct;
|
|
2756
2782
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
2757
2783
|
}
|
|
2758
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2784
|
+
/** @name SpConsensusSlotsEquivocationProof (342) */
|
|
2759
2785
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
2760
2786
|
readonly offender: SpConsensusBabeAppPublic;
|
|
2761
2787
|
readonly slot: u64;
|
|
2762
2788
|
readonly firstHeader: SpRuntimeHeader;
|
|
2763
2789
|
readonly secondHeader: SpRuntimeHeader;
|
|
2764
2790
|
}
|
|
2765
|
-
/** @name SpRuntimeHeader (
|
|
2791
|
+
/** @name SpRuntimeHeader (343) */
|
|
2766
2792
|
interface SpRuntimeHeader extends Struct {
|
|
2767
2793
|
readonly parentHash: H256;
|
|
2768
2794
|
readonly number: Compact<u32>;
|
|
@@ -2770,15 +2796,15 @@ declare module "./types-lookup.ts" {
|
|
|
2770
2796
|
readonly extrinsicsRoot: H256;
|
|
2771
2797
|
readonly digest: SpRuntimeDigest;
|
|
2772
2798
|
}
|
|
2773
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2799
|
+
/** @name SpRuntimeBlakeTwo256 (344) */
|
|
2774
2800
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2775
|
-
/** @name SpSessionMembershipProof (
|
|
2801
|
+
/** @name SpSessionMembershipProof (345) */
|
|
2776
2802
|
interface SpSessionMembershipProof extends Struct {
|
|
2777
2803
|
readonly session: u32;
|
|
2778
2804
|
readonly trieNodes: Vec<Bytes>;
|
|
2779
2805
|
readonly validatorCount: u32;
|
|
2780
2806
|
}
|
|
2781
|
-
/** @name PalletBabeError (
|
|
2807
|
+
/** @name PalletBabeError (346) */
|
|
2782
2808
|
interface PalletBabeError extends Enum {
|
|
2783
2809
|
readonly isInvalidEquivocationProof: boolean;
|
|
2784
2810
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -2786,7 +2812,7 @@ declare module "./types-lookup.ts" {
|
|
|
2786
2812
|
readonly isInvalidConfiguration: boolean;
|
|
2787
2813
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
2788
2814
|
}
|
|
2789
|
-
/** @name PalletTimestampCall (
|
|
2815
|
+
/** @name PalletTimestampCall (347) */
|
|
2790
2816
|
interface PalletTimestampCall extends Enum {
|
|
2791
2817
|
readonly isSet: boolean;
|
|
2792
2818
|
readonly asSet: {
|
|
@@ -2794,7 +2820,7 @@ declare module "./types-lookup.ts" {
|
|
|
2794
2820
|
} & Struct;
|
|
2795
2821
|
readonly type: 'Set';
|
|
2796
2822
|
}
|
|
2797
|
-
/** @name PalletIndicesCall (
|
|
2823
|
+
/** @name PalletIndicesCall (349) */
|
|
2798
2824
|
interface PalletIndicesCall extends Enum {
|
|
2799
2825
|
readonly isClaim: boolean;
|
|
2800
2826
|
readonly asClaim: {
|
|
@@ -2821,7 +2847,7 @@ declare module "./types-lookup.ts" {
|
|
|
2821
2847
|
} & Struct;
|
|
2822
2848
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2823
2849
|
}
|
|
2824
|
-
/** @name PalletIndicesError (
|
|
2850
|
+
/** @name PalletIndicesError (351) */
|
|
2825
2851
|
interface PalletIndicesError extends Enum {
|
|
2826
2852
|
readonly isNotAssigned: boolean;
|
|
2827
2853
|
readonly isNotOwner: boolean;
|
|
@@ -2830,20 +2856,20 @@ declare module "./types-lookup.ts" {
|
|
|
2830
2856
|
readonly isPermanent: boolean;
|
|
2831
2857
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
2832
2858
|
}
|
|
2833
|
-
/** @name PalletBalancesBalanceLock (
|
|
2859
|
+
/** @name PalletBalancesBalanceLock (353) */
|
|
2834
2860
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2835
2861
|
readonly id: U8aFixed;
|
|
2836
2862
|
readonly amount: u128;
|
|
2837
2863
|
readonly reasons: PolymeshCommonUtilitiesBalancesReasons;
|
|
2838
2864
|
}
|
|
2839
|
-
/** @name PolymeshCommonUtilitiesBalancesReasons (
|
|
2865
|
+
/** @name PolymeshCommonUtilitiesBalancesReasons (354) */
|
|
2840
2866
|
interface PolymeshCommonUtilitiesBalancesReasons extends Enum {
|
|
2841
2867
|
readonly isFee: boolean;
|
|
2842
2868
|
readonly isMisc: boolean;
|
|
2843
2869
|
readonly isAll: boolean;
|
|
2844
2870
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2845
2871
|
}
|
|
2846
|
-
/** @name PalletBalancesCall (
|
|
2872
|
+
/** @name PalletBalancesCall (355) */
|
|
2847
2873
|
interface PalletBalancesCall extends Enum {
|
|
2848
2874
|
readonly isTransfer: boolean;
|
|
2849
2875
|
readonly asTransfer: {
|
|
@@ -2878,7 +2904,7 @@ declare module "./types-lookup.ts" {
|
|
|
2878
2904
|
} & Struct;
|
|
2879
2905
|
readonly type: 'Transfer' | 'TransferWithMemo' | 'DepositBlockRewardReserveBalance' | 'SetBalance' | 'ForceTransfer' | 'BurnAccountBalance';
|
|
2880
2906
|
}
|
|
2881
|
-
/** @name PalletBalancesError (
|
|
2907
|
+
/** @name PalletBalancesError (356) */
|
|
2882
2908
|
interface PalletBalancesError extends Enum {
|
|
2883
2909
|
readonly isLiquidityRestrictions: boolean;
|
|
2884
2910
|
readonly isOverflow: boolean;
|
|
@@ -2887,34 +2913,34 @@ declare module "./types-lookup.ts" {
|
|
|
2887
2913
|
readonly isReceiverCddMissing: boolean;
|
|
2888
2914
|
readonly type: 'LiquidityRestrictions' | 'Overflow' | 'InsufficientBalance' | 'ExistentialDeposit' | 'ReceiverCddMissing';
|
|
2889
2915
|
}
|
|
2890
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2916
|
+
/** @name PalletTransactionPaymentReleases (358) */
|
|
2891
2917
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2892
2918
|
readonly isV1Ancient: boolean;
|
|
2893
2919
|
readonly isV2: boolean;
|
|
2894
2920
|
readonly type: 'V1Ancient' | 'V2';
|
|
2895
2921
|
}
|
|
2896
|
-
/** @name SpWeightsWeightToFeeCoefficient (
|
|
2922
|
+
/** @name SpWeightsWeightToFeeCoefficient (360) */
|
|
2897
2923
|
interface SpWeightsWeightToFeeCoefficient extends Struct {
|
|
2898
2924
|
readonly coeffInteger: u128;
|
|
2899
2925
|
readonly coeffFrac: Perbill;
|
|
2900
2926
|
readonly negative: bool;
|
|
2901
2927
|
readonly degree: u8;
|
|
2902
2928
|
}
|
|
2903
|
-
/** @name PolymeshPrimitivesIdentityDidRecord (
|
|
2929
|
+
/** @name PolymeshPrimitivesIdentityDidRecord (361) */
|
|
2904
2930
|
interface PolymeshPrimitivesIdentityDidRecord extends Struct {
|
|
2905
2931
|
readonly primaryKey: Option<AccountId32>;
|
|
2906
2932
|
}
|
|
2907
|
-
/** @name PalletIdentityClaim1stKey (
|
|
2933
|
+
/** @name PalletIdentityClaim1stKey (363) */
|
|
2908
2934
|
interface PalletIdentityClaim1stKey extends Struct {
|
|
2909
2935
|
readonly target: PolymeshPrimitivesIdentityId;
|
|
2910
2936
|
readonly claimType: PolymeshPrimitivesIdentityClaimClaimType;
|
|
2911
2937
|
}
|
|
2912
|
-
/** @name PalletIdentityClaim2ndKey (
|
|
2938
|
+
/** @name PalletIdentityClaim2ndKey (364) */
|
|
2913
2939
|
interface PalletIdentityClaim2ndKey extends Struct {
|
|
2914
2940
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
2915
2941
|
readonly scope: Option<PolymeshPrimitivesIdentityClaimScope>;
|
|
2916
2942
|
}
|
|
2917
|
-
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (
|
|
2943
|
+
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (365) */
|
|
2918
2944
|
interface PolymeshPrimitivesSecondaryKeyKeyRecord extends Enum {
|
|
2919
2945
|
readonly isPrimaryKey: boolean;
|
|
2920
2946
|
readonly asPrimaryKey: PolymeshPrimitivesIdentityId;
|
|
@@ -2927,7 +2953,7 @@ declare module "./types-lookup.ts" {
|
|
|
2927
2953
|
readonly asMultiSigSignerKey: AccountId32;
|
|
2928
2954
|
readonly type: 'PrimaryKey' | 'SecondaryKey' | 'MultiSigSignerKey';
|
|
2929
2955
|
}
|
|
2930
|
-
/** @name PolymeshPrimitivesAuthorization (
|
|
2956
|
+
/** @name PolymeshPrimitivesAuthorization (368) */
|
|
2931
2957
|
interface PolymeshPrimitivesAuthorization extends Struct {
|
|
2932
2958
|
readonly authorizationData: PolymeshPrimitivesAuthorizationAuthorizationData;
|
|
2933
2959
|
readonly authorizedBy: PolymeshPrimitivesIdentityId;
|
|
@@ -2935,7 +2961,7 @@ declare module "./types-lookup.ts" {
|
|
|
2935
2961
|
readonly authId: u64;
|
|
2936
2962
|
readonly count: u32;
|
|
2937
2963
|
}
|
|
2938
|
-
/** @name PalletIdentityCall (
|
|
2964
|
+
/** @name PalletIdentityCall (372) */
|
|
2939
2965
|
interface PalletIdentityCall extends Enum {
|
|
2940
2966
|
readonly isCddRegisterDid: boolean;
|
|
2941
2967
|
readonly asCddRegisterDid: {
|
|
@@ -3045,17 +3071,17 @@ declare module "./types-lookup.ts" {
|
|
|
3045
3071
|
} & Struct;
|
|
3046
3072
|
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';
|
|
3047
3073
|
}
|
|
3048
|
-
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (
|
|
3074
|
+
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (374) */
|
|
3049
3075
|
interface PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth extends Struct {
|
|
3050
3076
|
readonly secondaryKey: PolymeshPrimitivesSecondaryKey;
|
|
3051
3077
|
readonly authSignature: H512;
|
|
3052
3078
|
}
|
|
3053
|
-
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (
|
|
3079
|
+
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (377) */
|
|
3054
3080
|
interface PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth extends Struct {
|
|
3055
3081
|
readonly key: AccountId32;
|
|
3056
3082
|
readonly authSignature: H512;
|
|
3057
3083
|
}
|
|
3058
|
-
/** @name PalletIdentityError (
|
|
3084
|
+
/** @name PalletIdentityError (378) */
|
|
3059
3085
|
interface PalletIdentityError extends Enum {
|
|
3060
3086
|
readonly isAlreadyLinked: boolean;
|
|
3061
3087
|
readonly isMissingCurrentIdentity: boolean;
|
|
@@ -3092,13 +3118,13 @@ declare module "./types-lookup.ts" {
|
|
|
3092
3118
|
readonly isExceptNotAllowedForExtrinsics: boolean;
|
|
3093
3119
|
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';
|
|
3094
3120
|
}
|
|
3095
|
-
/** @name PolymeshCommonUtilitiesGroupInactiveMember (
|
|
3121
|
+
/** @name PolymeshCommonUtilitiesGroupInactiveMember (380) */
|
|
3096
3122
|
interface PolymeshCommonUtilitiesGroupInactiveMember extends Struct {
|
|
3097
3123
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
3098
3124
|
readonly deactivatedAt: u64;
|
|
3099
3125
|
readonly expiry: Option<u64>;
|
|
3100
3126
|
}
|
|
3101
|
-
/** @name PalletGroupCall (
|
|
3127
|
+
/** @name PalletGroupCall (381) */
|
|
3102
3128
|
interface PalletGroupCall extends Enum {
|
|
3103
3129
|
readonly isSetActiveMembersLimit: boolean;
|
|
3104
3130
|
readonly asSetActiveMembersLimit: {
|
|
@@ -3130,7 +3156,7 @@ declare module "./types-lookup.ts" {
|
|
|
3130
3156
|
readonly isAbdicateMembership: boolean;
|
|
3131
3157
|
readonly type: 'SetActiveMembersLimit' | 'DisableMember' | 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'AbdicateMembership';
|
|
3132
3158
|
}
|
|
3133
|
-
/** @name PalletGroupError (
|
|
3159
|
+
/** @name PalletGroupError (382) */
|
|
3134
3160
|
interface PalletGroupError extends Enum {
|
|
3135
3161
|
readonly isOnlyPrimaryKeyAllowed: boolean;
|
|
3136
3162
|
readonly isDuplicateMember: boolean;
|
|
@@ -3141,7 +3167,7 @@ declare module "./types-lookup.ts" {
|
|
|
3141
3167
|
readonly isActiveMembersLimitOverflow: boolean;
|
|
3142
3168
|
readonly type: 'OnlyPrimaryKeyAllowed' | 'DuplicateMember' | 'NoSuchMember' | 'LastMemberCannotQuit' | 'MissingCurrentIdentity' | 'ActiveMembersLimitExceeded' | 'ActiveMembersLimitOverflow';
|
|
3143
3169
|
}
|
|
3144
|
-
/** @name PalletCommitteeCall (
|
|
3170
|
+
/** @name PalletCommitteeCall (384) */
|
|
3145
3171
|
interface PalletCommitteeCall extends Enum {
|
|
3146
3172
|
readonly isSetVoteThreshold: boolean;
|
|
3147
3173
|
readonly asSetVoteThreshold: {
|
|
@@ -3169,7 +3195,7 @@ declare module "./types-lookup.ts" {
|
|
|
3169
3195
|
} & Struct;
|
|
3170
3196
|
readonly type: 'SetVoteThreshold' | 'SetReleaseCoordinator' | 'SetExpiresAfter' | 'VoteOrPropose' | 'Vote';
|
|
3171
3197
|
}
|
|
3172
|
-
/** @name PalletMultisigCall (
|
|
3198
|
+
/** @name PalletMultisigCall (390) */
|
|
3173
3199
|
interface PalletMultisigCall extends Enum {
|
|
3174
3200
|
readonly isCreateMultisig: boolean;
|
|
3175
3201
|
readonly asCreateMultisig: {
|
|
@@ -3281,7 +3307,7 @@ declare module "./types-lookup.ts" {
|
|
|
3281
3307
|
} & Struct;
|
|
3282
3308
|
readonly type: 'CreateMultisig' | 'CreateOrApproveProposalAsIdentity' | 'CreateOrApproveProposalAsKey' | 'CreateProposalAsIdentity' | 'CreateProposalAsKey' | 'ApproveAsIdentity' | 'ApproveAsKey' | 'RejectAsIdentity' | 'RejectAsKey' | 'AcceptMultisigSignerAsIdentity' | 'AcceptMultisigSignerAsKey' | 'AddMultisigSigner' | 'RemoveMultisigSigner' | 'AddMultisigSignersViaCreator' | 'RemoveMultisigSignersViaCreator' | 'ChangeSigsRequired' | 'MakeMultisigSecondary' | 'MakeMultisigPrimary' | 'ExecuteScheduledProposal' | 'ChangeSigsRequiredViaCreator' | 'RemoveCreatorControls';
|
|
3283
3309
|
}
|
|
3284
|
-
/** @name PalletBridgeCall (
|
|
3310
|
+
/** @name PalletBridgeCall (391) */
|
|
3285
3311
|
interface PalletBridgeCall extends Enum {
|
|
3286
3312
|
readonly isChangeController: boolean;
|
|
3287
3313
|
readonly asChangeController: {
|
|
@@ -3348,7 +3374,7 @@ declare module "./types-lookup.ts" {
|
|
|
3348
3374
|
} & Struct;
|
|
3349
3375
|
readonly type: 'ChangeController' | 'ChangeAdmin' | 'ChangeTimelock' | 'Freeze' | 'Unfreeze' | 'ChangeBridgeLimit' | 'ChangeBridgeExempted' | 'ForceHandleBridgeTx' | 'BatchProposeBridgeTx' | 'ProposeBridgeTx' | 'HandleBridgeTx' | 'FreezeTxs' | 'UnfreezeTxs' | 'HandleScheduledBridgeTx' | 'AddFreezeAdmin' | 'RemoveFreezeAdmin' | 'RemoveTxs';
|
|
3350
3376
|
}
|
|
3351
|
-
/** @name PalletStakingCall (
|
|
3377
|
+
/** @name PalletStakingCall (395) */
|
|
3352
3378
|
interface PalletStakingCall extends Enum {
|
|
3353
3379
|
readonly isBond: boolean;
|
|
3354
3380
|
readonly asBond: {
|
|
@@ -3491,7 +3517,7 @@ declare module "./types-lookup.ts" {
|
|
|
3491
3517
|
} & Struct;
|
|
3492
3518
|
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';
|
|
3493
3519
|
}
|
|
3494
|
-
/** @name PalletStakingRewardDestination (
|
|
3520
|
+
/** @name PalletStakingRewardDestination (396) */
|
|
3495
3521
|
interface PalletStakingRewardDestination extends Enum {
|
|
3496
3522
|
readonly isStaked: boolean;
|
|
3497
3523
|
readonly isStash: boolean;
|
|
@@ -3500,12 +3526,12 @@ declare module "./types-lookup.ts" {
|
|
|
3500
3526
|
readonly asAccount: AccountId32;
|
|
3501
3527
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account';
|
|
3502
3528
|
}
|
|
3503
|
-
/** @name PalletStakingValidatorPrefs (
|
|
3529
|
+
/** @name PalletStakingValidatorPrefs (397) */
|
|
3504
3530
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
3505
3531
|
readonly commission: Compact<Perbill>;
|
|
3506
3532
|
readonly blocked: bool;
|
|
3507
3533
|
}
|
|
3508
|
-
/** @name PalletStakingCompactAssignments (
|
|
3534
|
+
/** @name PalletStakingCompactAssignments (403) */
|
|
3509
3535
|
interface PalletStakingCompactAssignments extends Struct {
|
|
3510
3536
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
3511
3537
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -3524,38 +3550,38 @@ declare module "./types-lookup.ts" {
|
|
|
3524
3550
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3525
3551
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3526
3552
|
}
|
|
3527
|
-
/** @name SpNposElectionsElectionScore (
|
|
3553
|
+
/** @name SpNposElectionsElectionScore (454) */
|
|
3528
3554
|
interface SpNposElectionsElectionScore extends Struct {
|
|
3529
3555
|
readonly minimalStake: u128;
|
|
3530
3556
|
readonly sumStake: u128;
|
|
3531
3557
|
readonly sumStakeSquared: u128;
|
|
3532
3558
|
}
|
|
3533
|
-
/** @name PalletStakingElectionSize (
|
|
3559
|
+
/** @name PalletStakingElectionSize (455) */
|
|
3534
3560
|
interface PalletStakingElectionSize extends Struct {
|
|
3535
3561
|
readonly validators: Compact<u16>;
|
|
3536
3562
|
readonly nominators: Compact<u32>;
|
|
3537
3563
|
}
|
|
3538
|
-
/** @name PalletSessionCall (
|
|
3564
|
+
/** @name PalletSessionCall (456) */
|
|
3539
3565
|
interface PalletSessionCall extends Enum {
|
|
3540
3566
|
readonly isSetKeys: boolean;
|
|
3541
3567
|
readonly asSetKeys: {
|
|
3542
|
-
readonly keys_:
|
|
3568
|
+
readonly keys_: PolymeshRuntimeDevelopRuntimeSessionKeys;
|
|
3543
3569
|
readonly proof: Bytes;
|
|
3544
3570
|
} & Struct;
|
|
3545
3571
|
readonly isPurgeKeys: boolean;
|
|
3546
3572
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
3547
3573
|
}
|
|
3548
|
-
/** @name
|
|
3549
|
-
interface
|
|
3574
|
+
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (457) */
|
|
3575
|
+
interface PolymeshRuntimeDevelopRuntimeSessionKeys extends Struct {
|
|
3550
3576
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
3551
3577
|
readonly babe: SpConsensusBabeAppPublic;
|
|
3552
3578
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
3553
3579
|
readonly authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3554
3580
|
}
|
|
3555
|
-
/** @name SpAuthorityDiscoveryAppPublic (
|
|
3581
|
+
/** @name SpAuthorityDiscoveryAppPublic (458) */
|
|
3556
3582
|
interface SpAuthorityDiscoveryAppPublic extends SpCoreSr25519Public {
|
|
3557
3583
|
}
|
|
3558
|
-
/** @name PalletGrandpaCall (
|
|
3584
|
+
/** @name PalletGrandpaCall (459) */
|
|
3559
3585
|
interface PalletGrandpaCall extends Enum {
|
|
3560
3586
|
readonly isReportEquivocation: boolean;
|
|
3561
3587
|
readonly asReportEquivocation: {
|
|
@@ -3574,12 +3600,12 @@ declare module "./types-lookup.ts" {
|
|
|
3574
3600
|
} & Struct;
|
|
3575
3601
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
3576
3602
|
}
|
|
3577
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
3603
|
+
/** @name SpConsensusGrandpaEquivocationProof (460) */
|
|
3578
3604
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
3579
3605
|
readonly setId: u64;
|
|
3580
3606
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
3581
3607
|
}
|
|
3582
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
3608
|
+
/** @name SpConsensusGrandpaEquivocation (461) */
|
|
3583
3609
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
3584
3610
|
readonly isPrevote: boolean;
|
|
3585
3611
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -3587,37 +3613,37 @@ declare module "./types-lookup.ts" {
|
|
|
3587
3613
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
3588
3614
|
readonly type: 'Prevote' | 'Precommit';
|
|
3589
3615
|
}
|
|
3590
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
3616
|
+
/** @name FinalityGrandpaEquivocationPrevote (462) */
|
|
3591
3617
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
3592
3618
|
readonly roundNumber: u64;
|
|
3593
3619
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3594
3620
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3595
3621
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3596
3622
|
}
|
|
3597
|
-
/** @name FinalityGrandpaPrevote (
|
|
3623
|
+
/** @name FinalityGrandpaPrevote (463) */
|
|
3598
3624
|
interface FinalityGrandpaPrevote extends Struct {
|
|
3599
3625
|
readonly targetHash: H256;
|
|
3600
3626
|
readonly targetNumber: u32;
|
|
3601
3627
|
}
|
|
3602
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3628
|
+
/** @name SpConsensusGrandpaAppSignature (464) */
|
|
3603
3629
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
3604
3630
|
}
|
|
3605
|
-
/** @name SpCoreEd25519Signature (
|
|
3631
|
+
/** @name SpCoreEd25519Signature (465) */
|
|
3606
3632
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
3607
3633
|
}
|
|
3608
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3634
|
+
/** @name FinalityGrandpaEquivocationPrecommit (467) */
|
|
3609
3635
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3610
3636
|
readonly roundNumber: u64;
|
|
3611
3637
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3612
3638
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3613
3639
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3614
3640
|
}
|
|
3615
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3641
|
+
/** @name FinalityGrandpaPrecommit (468) */
|
|
3616
3642
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3617
3643
|
readonly targetHash: H256;
|
|
3618
3644
|
readonly targetNumber: u32;
|
|
3619
3645
|
}
|
|
3620
|
-
/** @name PalletImOnlineCall (
|
|
3646
|
+
/** @name PalletImOnlineCall (470) */
|
|
3621
3647
|
interface PalletImOnlineCall extends Enum {
|
|
3622
3648
|
readonly isHeartbeat: boolean;
|
|
3623
3649
|
readonly asHeartbeat: {
|
|
@@ -3626,7 +3652,7 @@ declare module "./types-lookup.ts" {
|
|
|
3626
3652
|
} & Struct;
|
|
3627
3653
|
readonly type: 'Heartbeat';
|
|
3628
3654
|
}
|
|
3629
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3655
|
+
/** @name PalletImOnlineHeartbeat (471) */
|
|
3630
3656
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
3631
3657
|
readonly blockNumber: u32;
|
|
3632
3658
|
readonly networkState: SpCoreOffchainOpaqueNetworkState;
|
|
@@ -3634,18 +3660,40 @@ declare module "./types-lookup.ts" {
|
|
|
3634
3660
|
readonly authorityIndex: u32;
|
|
3635
3661
|
readonly validatorsLen: u32;
|
|
3636
3662
|
}
|
|
3637
|
-
/** @name SpCoreOffchainOpaqueNetworkState (
|
|
3663
|
+
/** @name SpCoreOffchainOpaqueNetworkState (472) */
|
|
3638
3664
|
interface SpCoreOffchainOpaqueNetworkState extends Struct {
|
|
3639
3665
|
readonly peerId: OpaquePeerId;
|
|
3640
3666
|
readonly externalAddresses: Vec<OpaqueMultiaddr>;
|
|
3641
3667
|
}
|
|
3642
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3668
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (476) */
|
|
3643
3669
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
3644
3670
|
}
|
|
3645
|
-
/** @name SpCoreSr25519Signature (
|
|
3671
|
+
/** @name SpCoreSr25519Signature (477) */
|
|
3646
3672
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
3647
3673
|
}
|
|
3648
|
-
/** @name
|
|
3674
|
+
/** @name PalletSudoCall (478) */
|
|
3675
|
+
interface PalletSudoCall extends Enum {
|
|
3676
|
+
readonly isSudo: boolean;
|
|
3677
|
+
readonly asSudo: {
|
|
3678
|
+
readonly call: Call;
|
|
3679
|
+
} & Struct;
|
|
3680
|
+
readonly isSudoUncheckedWeight: boolean;
|
|
3681
|
+
readonly asSudoUncheckedWeight: {
|
|
3682
|
+
readonly call: Call;
|
|
3683
|
+
readonly weight: SpWeightsWeightV2Weight;
|
|
3684
|
+
} & Struct;
|
|
3685
|
+
readonly isSetKey: boolean;
|
|
3686
|
+
readonly asSetKey: {
|
|
3687
|
+
readonly new_: MultiAddress;
|
|
3688
|
+
} & Struct;
|
|
3689
|
+
readonly isSudoAs: boolean;
|
|
3690
|
+
readonly asSudoAs: {
|
|
3691
|
+
readonly who: MultiAddress;
|
|
3692
|
+
readonly call: Call;
|
|
3693
|
+
} & Struct;
|
|
3694
|
+
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
|
|
3695
|
+
}
|
|
3696
|
+
/** @name PalletAssetCall (479) */
|
|
3649
3697
|
interface PalletAssetCall extends Enum {
|
|
3650
3698
|
readonly isRegisterTicker: boolean;
|
|
3651
3699
|
readonly asRegisterTicker: {
|
|
@@ -3804,9 +3852,19 @@ declare module "./types-lookup.ts" {
|
|
|
3804
3852
|
readonly asRemoveTickerPreApproval: {
|
|
3805
3853
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
3806
3854
|
} & Struct;
|
|
3807
|
-
readonly
|
|
3855
|
+
readonly isAddMandatoryMediators: boolean;
|
|
3856
|
+
readonly asAddMandatoryMediators: {
|
|
3857
|
+
readonly ticker: PolymeshPrimitivesTicker;
|
|
3858
|
+
readonly mediators: BTreeSet<PolymeshPrimitivesIdentityId>;
|
|
3859
|
+
} & Struct;
|
|
3860
|
+
readonly isRemoveMandatoryMediators: boolean;
|
|
3861
|
+
readonly asRemoveMandatoryMediators: {
|
|
3862
|
+
readonly ticker: PolymeshPrimitivesTicker;
|
|
3863
|
+
readonly mediators: BTreeSet<PolymeshPrimitivesIdentityId>;
|
|
3864
|
+
} & Struct;
|
|
3865
|
+
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' | 'AddMandatoryMediators' | 'RemoveMandatoryMediators';
|
|
3808
3866
|
}
|
|
3809
|
-
/** @name PalletCorporateActionsDistributionCall (
|
|
3867
|
+
/** @name PalletCorporateActionsDistributionCall (482) */
|
|
3810
3868
|
interface PalletCorporateActionsDistributionCall extends Enum {
|
|
3811
3869
|
readonly isDistribute: boolean;
|
|
3812
3870
|
readonly asDistribute: {
|
|
@@ -3837,7 +3895,7 @@ declare module "./types-lookup.ts" {
|
|
|
3837
3895
|
} & Struct;
|
|
3838
3896
|
readonly type: 'Distribute' | 'Claim' | 'PushBenefit' | 'Reclaim' | 'RemoveDistribution';
|
|
3839
3897
|
}
|
|
3840
|
-
/** @name PalletAssetCheckpointCall (
|
|
3898
|
+
/** @name PalletAssetCheckpointCall (484) */
|
|
3841
3899
|
interface PalletAssetCheckpointCall extends Enum {
|
|
3842
3900
|
readonly isCreateCheckpoint: boolean;
|
|
3843
3901
|
readonly asCreateCheckpoint: {
|
|
@@ -3859,7 +3917,7 @@ declare module "./types-lookup.ts" {
|
|
|
3859
3917
|
} & Struct;
|
|
3860
3918
|
readonly type: 'CreateCheckpoint' | 'SetSchedulesMaxComplexity' | 'CreateSchedule' | 'RemoveSchedule';
|
|
3861
3919
|
}
|
|
3862
|
-
/** @name PalletComplianceManagerCall (
|
|
3920
|
+
/** @name PalletComplianceManagerCall (485) */
|
|
3863
3921
|
interface PalletComplianceManagerCall extends Enum {
|
|
3864
3922
|
readonly isAddComplianceRequirement: boolean;
|
|
3865
3923
|
readonly asAddComplianceRequirement: {
|
|
@@ -3906,7 +3964,7 @@ declare module "./types-lookup.ts" {
|
|
|
3906
3964
|
} & Struct;
|
|
3907
3965
|
readonly type: 'AddComplianceRequirement' | 'RemoveComplianceRequirement' | 'ReplaceAssetCompliance' | 'ResetAssetCompliance' | 'PauseAssetCompliance' | 'ResumeAssetCompliance' | 'AddDefaultTrustedClaimIssuer' | 'RemoveDefaultTrustedClaimIssuer' | 'ChangeComplianceRequirement';
|
|
3908
3966
|
}
|
|
3909
|
-
/** @name PalletCorporateActionsCall (
|
|
3967
|
+
/** @name PalletCorporateActionsCall (486) */
|
|
3910
3968
|
interface PalletCorporateActionsCall extends Enum {
|
|
3911
3969
|
readonly isSetMaxDetailsLength: boolean;
|
|
3912
3970
|
readonly asSetMaxDetailsLength: {
|
|
@@ -3965,7 +4023,7 @@ declare module "./types-lookup.ts" {
|
|
|
3965
4023
|
} & Struct;
|
|
3966
4024
|
readonly type: 'SetMaxDetailsLength' | 'SetDefaultTargets' | 'SetDefaultWithholdingTax' | 'SetDidWithholdingTax' | 'InitiateCorporateAction' | 'LinkCaDoc' | 'RemoveCa' | 'ChangeRecordDate' | 'InitiateCorporateActionAndDistribute';
|
|
3967
4025
|
}
|
|
3968
|
-
/** @name PalletCorporateActionsRecordDateSpec (
|
|
4026
|
+
/** @name PalletCorporateActionsRecordDateSpec (488) */
|
|
3969
4027
|
interface PalletCorporateActionsRecordDateSpec extends Enum {
|
|
3970
4028
|
readonly isScheduled: boolean;
|
|
3971
4029
|
readonly asScheduled: u64;
|
|
@@ -3975,7 +4033,7 @@ declare module "./types-lookup.ts" {
|
|
|
3975
4033
|
readonly asExisting: u64;
|
|
3976
4034
|
readonly type: 'Scheduled' | 'ExistingSchedule' | 'Existing';
|
|
3977
4035
|
}
|
|
3978
|
-
/** @name PalletCorporateActionsInitiateCorporateActionArgs (
|
|
4036
|
+
/** @name PalletCorporateActionsInitiateCorporateActionArgs (491) */
|
|
3979
4037
|
interface PalletCorporateActionsInitiateCorporateActionArgs extends Struct {
|
|
3980
4038
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
3981
4039
|
readonly kind: PalletCorporateActionsCaKind;
|
|
@@ -3986,7 +4044,7 @@ declare module "./types-lookup.ts" {
|
|
|
3986
4044
|
readonly defaultWithholdingTax: Option<Permill>;
|
|
3987
4045
|
readonly withholdingTax: Option<Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>>;
|
|
3988
4046
|
}
|
|
3989
|
-
/** @name PalletCorporateActionsBallotCall (
|
|
4047
|
+
/** @name PalletCorporateActionsBallotCall (492) */
|
|
3990
4048
|
interface PalletCorporateActionsBallotCall extends Enum {
|
|
3991
4049
|
readonly isAttachBallot: boolean;
|
|
3992
4050
|
readonly asAttachBallot: {
|
|
@@ -4021,7 +4079,7 @@ declare module "./types-lookup.ts" {
|
|
|
4021
4079
|
} & Struct;
|
|
4022
4080
|
readonly type: 'AttachBallot' | 'Vote' | 'ChangeEnd' | 'ChangeMeta' | 'ChangeRcv' | 'RemoveBallot';
|
|
4023
4081
|
}
|
|
4024
|
-
/** @name PalletPipsCall (
|
|
4082
|
+
/** @name PalletPipsCall (493) */
|
|
4025
4083
|
interface PalletPipsCall extends Enum {
|
|
4026
4084
|
readonly isSetPruneHistoricalPips: boolean;
|
|
4027
4085
|
readonly asSetPruneHistoricalPips: {
|
|
@@ -4094,14 +4152,14 @@ declare module "./types-lookup.ts" {
|
|
|
4094
4152
|
} & Struct;
|
|
4095
4153
|
readonly type: 'SetPruneHistoricalPips' | 'SetMinProposalDeposit' | 'SetDefaultEnactmentPeriod' | 'SetPendingPipExpiry' | 'SetMaxPipSkipCount' | 'SetActivePipLimit' | 'Propose' | 'Vote' | 'ApproveCommitteeProposal' | 'RejectProposal' | 'PruneProposal' | 'RescheduleExecution' | 'ClearSnapshot' | 'Snapshot' | 'EnactSnapshotResults' | 'ExecuteScheduledPip' | 'ExpireScheduledPip';
|
|
4096
4154
|
}
|
|
4097
|
-
/** @name PalletPipsSnapshotResult (
|
|
4155
|
+
/** @name PalletPipsSnapshotResult (496) */
|
|
4098
4156
|
interface PalletPipsSnapshotResult extends Enum {
|
|
4099
4157
|
readonly isApprove: boolean;
|
|
4100
4158
|
readonly isReject: boolean;
|
|
4101
4159
|
readonly isSkip: boolean;
|
|
4102
4160
|
readonly type: 'Approve' | 'Reject' | 'Skip';
|
|
4103
4161
|
}
|
|
4104
|
-
/** @name PalletPortfolioCall (
|
|
4162
|
+
/** @name PalletPortfolioCall (497) */
|
|
4105
4163
|
interface PalletPortfolioCall extends Enum {
|
|
4106
4164
|
readonly isCreatePortfolio: boolean;
|
|
4107
4165
|
readonly asCreatePortfolio: {
|
|
@@ -4155,12 +4213,12 @@ declare module "./types-lookup.ts" {
|
|
|
4155
4213
|
} & Struct;
|
|
4156
4214
|
readonly type: 'CreatePortfolio' | 'DeletePortfolio' | 'RenamePortfolio' | 'QuitPortfolioCustody' | 'AcceptPortfolioCustody' | 'MovePortfolioFunds' | 'PreApprovePortfolio' | 'RemovePortfolioPreApproval' | 'AllowIdentityToCreatePortfolios' | 'RevokeCreatePortfoliosPermission' | 'CreateCustodyPortfolio';
|
|
4157
4215
|
}
|
|
4158
|
-
/** @name PolymeshPrimitivesPortfolioFund (
|
|
4216
|
+
/** @name PolymeshPrimitivesPortfolioFund (499) */
|
|
4159
4217
|
interface PolymeshPrimitivesPortfolioFund extends Struct {
|
|
4160
4218
|
readonly description: PolymeshPrimitivesPortfolioFundDescription;
|
|
4161
4219
|
readonly memo: Option<PolymeshPrimitivesMemo>;
|
|
4162
4220
|
}
|
|
4163
|
-
/** @name PalletProtocolFeeCall (
|
|
4221
|
+
/** @name PalletProtocolFeeCall (500) */
|
|
4164
4222
|
interface PalletProtocolFeeCall extends Enum {
|
|
4165
4223
|
readonly isChangeCoefficient: boolean;
|
|
4166
4224
|
readonly asChangeCoefficient: {
|
|
@@ -4173,7 +4231,7 @@ declare module "./types-lookup.ts" {
|
|
|
4173
4231
|
} & Struct;
|
|
4174
4232
|
readonly type: 'ChangeCoefficient' | 'ChangeBaseFee';
|
|
4175
4233
|
}
|
|
4176
|
-
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (
|
|
4234
|
+
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (501) */
|
|
4177
4235
|
interface PolymeshCommonUtilitiesProtocolFeeProtocolOp extends Enum {
|
|
4178
4236
|
readonly isAssetRegisterTicker: boolean;
|
|
4179
4237
|
readonly isAssetIssue: boolean;
|
|
@@ -4193,7 +4251,7 @@ declare module "./types-lookup.ts" {
|
|
|
4193
4251
|
readonly isIdentityCreateChildIdentity: boolean;
|
|
4194
4252
|
readonly type: 'AssetRegisterTicker' | 'AssetIssue' | 'AssetAddDocuments' | 'AssetCreateAsset' | 'CheckpointCreateSchedule' | 'ComplianceManagerAddComplianceRequirement' | 'IdentityCddRegisterDid' | 'IdentityAddClaim' | 'IdentityAddSecondaryKeysWithAuthorization' | 'PipsPropose' | 'ContractsPutCode' | 'CorporateBallotAttachBallot' | 'CapitalDistributionDistribute' | 'NftCreateCollection' | 'NftMint' | 'IdentityCreateChildIdentity';
|
|
4195
4253
|
}
|
|
4196
|
-
/** @name PalletSchedulerCall (
|
|
4254
|
+
/** @name PalletSchedulerCall (502) */
|
|
4197
4255
|
interface PalletSchedulerCall extends Enum {
|
|
4198
4256
|
readonly isSchedule: boolean;
|
|
4199
4257
|
readonly asSchedule: {
|
|
@@ -4236,7 +4294,7 @@ declare module "./types-lookup.ts" {
|
|
|
4236
4294
|
} & Struct;
|
|
4237
4295
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
4238
4296
|
}
|
|
4239
|
-
/** @name PalletSettlementCall (
|
|
4297
|
+
/** @name PalletSettlementCall (504) */
|
|
4240
4298
|
interface PalletSettlementCall extends Enum {
|
|
4241
4299
|
readonly isCreateVenue: boolean;
|
|
4242
4300
|
readonly asCreateVenue: {
|
|
@@ -4354,9 +4412,44 @@ declare module "./types-lookup.ts" {
|
|
|
4354
4412
|
readonly portfolios: Vec<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4355
4413
|
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4356
4414
|
} & Struct;
|
|
4357
|
-
readonly
|
|
4415
|
+
readonly isAddInstructionWithMediators: boolean;
|
|
4416
|
+
readonly asAddInstructionWithMediators: {
|
|
4417
|
+
readonly venueId: u64;
|
|
4418
|
+
readonly settlementType: PolymeshPrimitivesSettlementSettlementType;
|
|
4419
|
+
readonly tradeDate: Option<u64>;
|
|
4420
|
+
readonly valueDate: Option<u64>;
|
|
4421
|
+
readonly legs: Vec<PolymeshPrimitivesSettlementLeg>;
|
|
4422
|
+
readonly instructionMemo: Option<PolymeshPrimitivesMemo>;
|
|
4423
|
+
readonly mediators: BTreeSet<PolymeshPrimitivesIdentityId>;
|
|
4424
|
+
} & Struct;
|
|
4425
|
+
readonly isAddAndAffirmWithMediators: boolean;
|
|
4426
|
+
readonly asAddAndAffirmWithMediators: {
|
|
4427
|
+
readonly venueId: u64;
|
|
4428
|
+
readonly settlementType: PolymeshPrimitivesSettlementSettlementType;
|
|
4429
|
+
readonly tradeDate: Option<u64>;
|
|
4430
|
+
readonly valueDate: Option<u64>;
|
|
4431
|
+
readonly legs: Vec<PolymeshPrimitivesSettlementLeg>;
|
|
4432
|
+
readonly portfolios: Vec<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4433
|
+
readonly instructionMemo: Option<PolymeshPrimitivesMemo>;
|
|
4434
|
+
readonly mediators: BTreeSet<PolymeshPrimitivesIdentityId>;
|
|
4435
|
+
} & Struct;
|
|
4436
|
+
readonly isAffirmInstructionAsMediator: boolean;
|
|
4437
|
+
readonly asAffirmInstructionAsMediator: {
|
|
4438
|
+
readonly instructionId: u64;
|
|
4439
|
+
readonly expiry: Option<u64>;
|
|
4440
|
+
} & Struct;
|
|
4441
|
+
readonly isWithdrawAffirmationAsMediator: boolean;
|
|
4442
|
+
readonly asWithdrawAffirmationAsMediator: {
|
|
4443
|
+
readonly instructionId: u64;
|
|
4444
|
+
} & Struct;
|
|
4445
|
+
readonly isRejectInstructionAsMediator: boolean;
|
|
4446
|
+
readonly asRejectInstructionAsMediator: {
|
|
4447
|
+
readonly instructionId: u64;
|
|
4448
|
+
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAssetCount>;
|
|
4449
|
+
} & Struct;
|
|
4450
|
+
readonly type: 'CreateVenue' | 'UpdateVenueDetails' | 'UpdateVenueType' | 'AffirmWithReceipts' | 'SetVenueFiltering' | 'AllowVenues' | 'DisallowVenues' | 'UpdateVenueSigners' | 'ExecuteManualInstruction' | 'AddInstruction' | 'AddAndAffirmInstruction' | 'AffirmInstruction' | 'WithdrawAffirmation' | 'RejectInstruction' | 'ExecuteScheduledInstruction' | 'AffirmWithReceiptsWithCount' | 'AffirmInstructionWithCount' | 'RejectInstructionWithCount' | 'WithdrawAffirmationWithCount' | 'AddInstructionWithMediators' | 'AddAndAffirmWithMediators' | 'AffirmInstructionAsMediator' | 'WithdrawAffirmationAsMediator' | 'RejectInstructionAsMediator';
|
|
4358
4451
|
}
|
|
4359
|
-
/** @name PolymeshPrimitivesSettlementReceiptDetails (
|
|
4452
|
+
/** @name PolymeshPrimitivesSettlementReceiptDetails (506) */
|
|
4360
4453
|
interface PolymeshPrimitivesSettlementReceiptDetails extends Struct {
|
|
4361
4454
|
readonly uid: u64;
|
|
4362
4455
|
readonly instructionId: u64;
|
|
@@ -4365,7 +4458,7 @@ declare module "./types-lookup.ts" {
|
|
|
4365
4458
|
readonly signature: SpRuntimeMultiSignature;
|
|
4366
4459
|
readonly metadata: Option<PolymeshPrimitivesSettlementReceiptMetadata>;
|
|
4367
4460
|
}
|
|
4368
|
-
/** @name SpRuntimeMultiSignature (
|
|
4461
|
+
/** @name SpRuntimeMultiSignature (507) */
|
|
4369
4462
|
interface SpRuntimeMultiSignature extends Enum {
|
|
4370
4463
|
readonly isEd25519: boolean;
|
|
4371
4464
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -4375,22 +4468,22 @@ declare module "./types-lookup.ts" {
|
|
|
4375
4468
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
4376
4469
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
4377
4470
|
}
|
|
4378
|
-
/** @name SpCoreEcdsaSignature (
|
|
4471
|
+
/** @name SpCoreEcdsaSignature (508) */
|
|
4379
4472
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4380
4473
|
}
|
|
4381
|
-
/** @name PolymeshPrimitivesSettlementAffirmationCount (
|
|
4474
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (511) */
|
|
4382
4475
|
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4383
4476
|
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4384
4477
|
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4385
4478
|
readonly offchainCount: u32;
|
|
4386
4479
|
}
|
|
4387
|
-
/** @name PolymeshPrimitivesSettlementAssetCount (
|
|
4480
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (512) */
|
|
4388
4481
|
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4389
4482
|
readonly fungible: u32;
|
|
4390
4483
|
readonly nonFungible: u32;
|
|
4391
4484
|
readonly offChain: u32;
|
|
4392
4485
|
}
|
|
4393
|
-
/** @name PalletStatisticsCall (
|
|
4486
|
+
/** @name PalletStatisticsCall (515) */
|
|
4394
4487
|
interface PalletStatisticsCall extends Enum {
|
|
4395
4488
|
readonly isSetActiveAssetStats: boolean;
|
|
4396
4489
|
readonly asSetActiveAssetStats: {
|
|
@@ -4416,7 +4509,7 @@ declare module "./types-lookup.ts" {
|
|
|
4416
4509
|
} & Struct;
|
|
4417
4510
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4418
4511
|
}
|
|
4419
|
-
/** @name PalletStoCall (
|
|
4512
|
+
/** @name PalletStoCall (519) */
|
|
4420
4513
|
interface PalletStoCall extends Enum {
|
|
4421
4514
|
readonly isCreateFundraiser: boolean;
|
|
4422
4515
|
readonly asCreateFundraiser: {
|
|
@@ -4465,12 +4558,12 @@ declare module "./types-lookup.ts" {
|
|
|
4465
4558
|
} & Struct;
|
|
4466
4559
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4467
4560
|
}
|
|
4468
|
-
/** @name PalletStoPriceTier (
|
|
4561
|
+
/** @name PalletStoPriceTier (521) */
|
|
4469
4562
|
interface PalletStoPriceTier extends Struct {
|
|
4470
4563
|
readonly total: u128;
|
|
4471
4564
|
readonly price: u128;
|
|
4472
4565
|
}
|
|
4473
|
-
/** @name PalletTreasuryCall (
|
|
4566
|
+
/** @name PalletTreasuryCall (523) */
|
|
4474
4567
|
interface PalletTreasuryCall extends Enum {
|
|
4475
4568
|
readonly isDisbursement: boolean;
|
|
4476
4569
|
readonly asDisbursement: {
|
|
@@ -4482,12 +4575,12 @@ declare module "./types-lookup.ts" {
|
|
|
4482
4575
|
} & Struct;
|
|
4483
4576
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4484
4577
|
}
|
|
4485
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4578
|
+
/** @name PolymeshPrimitivesBeneficiary (525) */
|
|
4486
4579
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4487
4580
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4488
4581
|
readonly amount: u128;
|
|
4489
4582
|
}
|
|
4490
|
-
/** @name PalletUtilityCall (
|
|
4583
|
+
/** @name PalletUtilityCall (526) */
|
|
4491
4584
|
interface PalletUtilityCall extends Enum {
|
|
4492
4585
|
readonly isBatch: boolean;
|
|
4493
4586
|
readonly asBatch: {
|
|
@@ -4505,7 +4598,7 @@ declare module "./types-lookup.ts" {
|
|
|
4505
4598
|
} & Struct;
|
|
4506
4599
|
readonly isDispatchAs: boolean;
|
|
4507
4600
|
readonly asDispatchAs: {
|
|
4508
|
-
readonly asOrigin:
|
|
4601
|
+
readonly asOrigin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
4509
4602
|
readonly call: Call;
|
|
4510
4603
|
} & Struct;
|
|
4511
4604
|
readonly isForceBatch: boolean;
|
|
@@ -4536,13 +4629,13 @@ declare module "./types-lookup.ts" {
|
|
|
4536
4629
|
} & Struct;
|
|
4537
4630
|
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'BatchOld' | 'BatchAtomic' | 'BatchOptimistic' | 'AsDerivative';
|
|
4538
4631
|
}
|
|
4539
|
-
/** @name PalletUtilityUniqueCall (
|
|
4632
|
+
/** @name PalletUtilityUniqueCall (528) */
|
|
4540
4633
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4541
4634
|
readonly nonce: u64;
|
|
4542
4635
|
readonly call: Call;
|
|
4543
4636
|
}
|
|
4544
|
-
/** @name
|
|
4545
|
-
interface
|
|
4637
|
+
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (529) */
|
|
4638
|
+
interface PolymeshRuntimeDevelopRuntimeOriginCaller extends Enum {
|
|
4546
4639
|
readonly isSystem: boolean;
|
|
4547
4640
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
4548
4641
|
readonly isVoid: boolean;
|
|
@@ -4554,7 +4647,7 @@ declare module "./types-lookup.ts" {
|
|
|
4554
4647
|
readonly asUpgradeCommittee: PalletCommitteeRawOriginInstance4;
|
|
4555
4648
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4556
4649
|
}
|
|
4557
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4650
|
+
/** @name FrameSupportDispatchRawOrigin (530) */
|
|
4558
4651
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4559
4652
|
readonly isRoot: boolean;
|
|
4560
4653
|
readonly isSigned: boolean;
|
|
@@ -4562,26 +4655,26 @@ declare module "./types-lookup.ts" {
|
|
|
4562
4655
|
readonly isNone: boolean;
|
|
4563
4656
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4564
4657
|
}
|
|
4565
|
-
/** @name PalletCommitteeRawOriginInstance1 (
|
|
4658
|
+
/** @name PalletCommitteeRawOriginInstance1 (531) */
|
|
4566
4659
|
interface PalletCommitteeRawOriginInstance1 extends Enum {
|
|
4567
4660
|
readonly isEndorsed: boolean;
|
|
4568
4661
|
readonly type: 'Endorsed';
|
|
4569
4662
|
}
|
|
4570
|
-
/** @name PalletCommitteeRawOriginInstance3 (
|
|
4663
|
+
/** @name PalletCommitteeRawOriginInstance3 (532) */
|
|
4571
4664
|
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4572
4665
|
readonly isEndorsed: boolean;
|
|
4573
4666
|
readonly type: 'Endorsed';
|
|
4574
4667
|
}
|
|
4575
|
-
/** @name PalletCommitteeRawOriginInstance4 (
|
|
4668
|
+
/** @name PalletCommitteeRawOriginInstance4 (533) */
|
|
4576
4669
|
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4577
4670
|
readonly isEndorsed: boolean;
|
|
4578
4671
|
readonly type: 'Endorsed';
|
|
4579
4672
|
}
|
|
4580
|
-
/** @name SpCoreVoid (
|
|
4673
|
+
/** @name SpCoreVoid (534) */
|
|
4581
4674
|
type SpCoreVoid = Null;
|
|
4582
|
-
/** @name PalletBaseCall (
|
|
4675
|
+
/** @name PalletBaseCall (535) */
|
|
4583
4676
|
type PalletBaseCall = Null;
|
|
4584
|
-
/** @name PalletExternalAgentsCall (
|
|
4677
|
+
/** @name PalletExternalAgentsCall (536) */
|
|
4585
4678
|
interface PalletExternalAgentsCall extends Enum {
|
|
4586
4679
|
readonly isCreateGroup: boolean;
|
|
4587
4680
|
readonly asCreateGroup: {
|
|
@@ -4628,7 +4721,7 @@ declare module "./types-lookup.ts" {
|
|
|
4628
4721
|
} & Struct;
|
|
4629
4722
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4630
4723
|
}
|
|
4631
|
-
/** @name PalletRelayerCall (
|
|
4724
|
+
/** @name PalletRelayerCall (537) */
|
|
4632
4725
|
interface PalletRelayerCall extends Enum {
|
|
4633
4726
|
readonly isSetPayingKey: boolean;
|
|
4634
4727
|
readonly asSetPayingKey: {
|
|
@@ -4661,7 +4754,7 @@ declare module "./types-lookup.ts" {
|
|
|
4661
4754
|
} & Struct;
|
|
4662
4755
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4663
4756
|
}
|
|
4664
|
-
/** @name PalletContractsCall (
|
|
4757
|
+
/** @name PalletContractsCall (538) */
|
|
4665
4758
|
interface PalletContractsCall extends Enum {
|
|
4666
4759
|
readonly isCallOldWeight: boolean;
|
|
4667
4760
|
readonly asCallOldWeight: {
|
|
@@ -4732,13 +4825,13 @@ declare module "./types-lookup.ts" {
|
|
|
4732
4825
|
} & Struct;
|
|
4733
4826
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4734
4827
|
}
|
|
4735
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4828
|
+
/** @name PalletContractsWasmDeterminism (542) */
|
|
4736
4829
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4737
4830
|
readonly isDeterministic: boolean;
|
|
4738
4831
|
readonly isAllowIndeterminism: boolean;
|
|
4739
4832
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4740
4833
|
}
|
|
4741
|
-
/** @name PolymeshContractsCall (
|
|
4834
|
+
/** @name PolymeshContractsCall (543) */
|
|
4742
4835
|
interface PolymeshContractsCall extends Enum {
|
|
4743
4836
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4744
4837
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4789,16 +4882,16 @@ declare module "./types-lookup.ts" {
|
|
|
4789
4882
|
} & Struct;
|
|
4790
4883
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist' | 'InstantiateWithCodeAsPrimaryKey' | 'InstantiateWithHashAsPrimaryKey' | 'UpgradeApi';
|
|
4791
4884
|
}
|
|
4792
|
-
/** @name PolymeshContractsNextUpgrade (
|
|
4885
|
+
/** @name PolymeshContractsNextUpgrade (546) */
|
|
4793
4886
|
interface PolymeshContractsNextUpgrade extends Struct {
|
|
4794
4887
|
readonly chainVersion: PolymeshContractsChainVersion;
|
|
4795
4888
|
readonly apiHash: PolymeshContractsApiCodeHash;
|
|
4796
4889
|
}
|
|
4797
|
-
/** @name PolymeshContractsApiCodeHash (
|
|
4890
|
+
/** @name PolymeshContractsApiCodeHash (547) */
|
|
4798
4891
|
interface PolymeshContractsApiCodeHash extends Struct {
|
|
4799
4892
|
readonly hash_: H256;
|
|
4800
4893
|
}
|
|
4801
|
-
/** @name PalletPreimageCall (
|
|
4894
|
+
/** @name PalletPreimageCall (548) */
|
|
4802
4895
|
interface PalletPreimageCall extends Enum {
|
|
4803
4896
|
readonly isNotePreimage: boolean;
|
|
4804
4897
|
readonly asNotePreimage: {
|
|
@@ -4818,7 +4911,7 @@ declare module "./types-lookup.ts" {
|
|
|
4818
4911
|
} & Struct;
|
|
4819
4912
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4820
4913
|
}
|
|
4821
|
-
/** @name PalletNftCall (
|
|
4914
|
+
/** @name PalletNftCall (549) */
|
|
4822
4915
|
interface PalletNftCall extends Enum {
|
|
4823
4916
|
readonly isCreateNftCollection: boolean;
|
|
4824
4917
|
readonly asCreateNftCollection: {
|
|
@@ -4847,15 +4940,15 @@ declare module "./types-lookup.ts" {
|
|
|
4847
4940
|
} & Struct;
|
|
4848
4941
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft' | 'ControllerTransfer';
|
|
4849
4942
|
}
|
|
4850
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4943
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (551) */
|
|
4851
4944
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4852
4945
|
}
|
|
4853
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4946
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (554) */
|
|
4854
4947
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4855
4948
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4856
4949
|
readonly value: Bytes;
|
|
4857
4950
|
}
|
|
4858
|
-
/** @name PalletTestUtilsCall (
|
|
4951
|
+
/** @name PalletTestUtilsCall (555) */
|
|
4859
4952
|
interface PalletTestUtilsCall extends Enum {
|
|
4860
4953
|
readonly isRegisterDid: boolean;
|
|
4861
4954
|
readonly asRegisterDid: {
|
|
@@ -4872,14 +4965,14 @@ declare module "./types-lookup.ts" {
|
|
|
4872
4965
|
} & Struct;
|
|
4873
4966
|
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4874
4967
|
}
|
|
4875
|
-
/** @name PalletCommitteePolymeshVotes (
|
|
4968
|
+
/** @name PalletCommitteePolymeshVotes (556) */
|
|
4876
4969
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4877
4970
|
readonly index: u32;
|
|
4878
4971
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
4879
4972
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
4880
4973
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
4881
4974
|
}
|
|
4882
|
-
/** @name PalletCommitteeError (
|
|
4975
|
+
/** @name PalletCommitteeError (558) */
|
|
4883
4976
|
interface PalletCommitteeError extends Enum {
|
|
4884
4977
|
readonly isDuplicateVote: boolean;
|
|
4885
4978
|
readonly isNotAMember: boolean;
|
|
@@ -4892,7 +4985,7 @@ declare module "./types-lookup.ts" {
|
|
|
4892
4985
|
readonly isProposalsLimitReached: boolean;
|
|
4893
4986
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
4894
4987
|
}
|
|
4895
|
-
/** @name PolymeshPrimitivesMultisigProposalDetails (
|
|
4988
|
+
/** @name PolymeshPrimitivesMultisigProposalDetails (568) */
|
|
4896
4989
|
interface PolymeshPrimitivesMultisigProposalDetails extends Struct {
|
|
4897
4990
|
readonly approvals: u64;
|
|
4898
4991
|
readonly rejections: u64;
|
|
@@ -4900,7 +4993,7 @@ declare module "./types-lookup.ts" {
|
|
|
4900
4993
|
readonly expiry: Option<u64>;
|
|
4901
4994
|
readonly autoClose: bool;
|
|
4902
4995
|
}
|
|
4903
|
-
/** @name PolymeshPrimitivesMultisigProposalStatus (
|
|
4996
|
+
/** @name PolymeshPrimitivesMultisigProposalStatus (569) */
|
|
4904
4997
|
interface PolymeshPrimitivesMultisigProposalStatus extends Enum {
|
|
4905
4998
|
readonly isInvalid: boolean;
|
|
4906
4999
|
readonly isActiveOrExpired: boolean;
|
|
@@ -4909,7 +5002,7 @@ declare module "./types-lookup.ts" {
|
|
|
4909
5002
|
readonly isRejected: boolean;
|
|
4910
5003
|
readonly type: 'Invalid' | 'ActiveOrExpired' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
4911
5004
|
}
|
|
4912
|
-
/** @name PalletMultisigError (
|
|
5005
|
+
/** @name PalletMultisigError (571) */
|
|
4913
5006
|
interface PalletMultisigError extends Enum {
|
|
4914
5007
|
readonly isCddMissing: boolean;
|
|
4915
5008
|
readonly isProposalMissing: boolean;
|
|
@@ -4939,14 +5032,14 @@ declare module "./types-lookup.ts" {
|
|
|
4939
5032
|
readonly isCreatorControlsHaveBeenRemoved: boolean;
|
|
4940
5033
|
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';
|
|
4941
5034
|
}
|
|
4942
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
5035
|
+
/** @name PalletBridgeBridgeTxDetail (573) */
|
|
4943
5036
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
4944
5037
|
readonly amount: u128;
|
|
4945
5038
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
4946
5039
|
readonly executionBlock: u32;
|
|
4947
5040
|
readonly txHash: H256;
|
|
4948
5041
|
}
|
|
4949
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
5042
|
+
/** @name PalletBridgeBridgeTxStatus (574) */
|
|
4950
5043
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
4951
5044
|
readonly isAbsent: boolean;
|
|
4952
5045
|
readonly isPending: boolean;
|
|
@@ -4956,7 +5049,7 @@ declare module "./types-lookup.ts" {
|
|
|
4956
5049
|
readonly isHandled: boolean;
|
|
4957
5050
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
4958
5051
|
}
|
|
4959
|
-
/** @name PalletBridgeError (
|
|
5052
|
+
/** @name PalletBridgeError (577) */
|
|
4960
5053
|
interface PalletBridgeError extends Enum {
|
|
4961
5054
|
readonly isControllerNotSet: boolean;
|
|
4962
5055
|
readonly isBadCaller: boolean;
|
|
@@ -4973,7 +5066,7 @@ declare module "./types-lookup.ts" {
|
|
|
4973
5066
|
readonly isTimelockedTx: boolean;
|
|
4974
5067
|
readonly type: 'ControllerNotSet' | 'BadCaller' | 'BadAdmin' | 'NoValidCdd' | 'ProposalAlreadyHandled' | 'Unauthorized' | 'Frozen' | 'NotFrozen' | 'FrozenTx' | 'BridgeLimitReached' | 'Overflow' | 'DivisionByZero' | 'TimelockedTx';
|
|
4975
5068
|
}
|
|
4976
|
-
/** @name PalletStakingStakingLedger (
|
|
5069
|
+
/** @name PalletStakingStakingLedger (578) */
|
|
4977
5070
|
interface PalletStakingStakingLedger extends Struct {
|
|
4978
5071
|
readonly stash: AccountId32;
|
|
4979
5072
|
readonly total: Compact<u128>;
|
|
@@ -4981,28 +5074,28 @@ declare module "./types-lookup.ts" {
|
|
|
4981
5074
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
4982
5075
|
readonly claimedRewards: Vec<u32>;
|
|
4983
5076
|
}
|
|
4984
|
-
/** @name PalletStakingUnlockChunk (
|
|
5077
|
+
/** @name PalletStakingUnlockChunk (580) */
|
|
4985
5078
|
interface PalletStakingUnlockChunk extends Struct {
|
|
4986
5079
|
readonly value: Compact<u128>;
|
|
4987
5080
|
readonly era: Compact<u32>;
|
|
4988
5081
|
}
|
|
4989
|
-
/** @name PalletStakingNominations (
|
|
5082
|
+
/** @name PalletStakingNominations (581) */
|
|
4990
5083
|
interface PalletStakingNominations extends Struct {
|
|
4991
5084
|
readonly targets: Vec<AccountId32>;
|
|
4992
5085
|
readonly submittedIn: u32;
|
|
4993
5086
|
readonly suppressed: bool;
|
|
4994
5087
|
}
|
|
4995
|
-
/** @name PalletStakingActiveEraInfo (
|
|
5088
|
+
/** @name PalletStakingActiveEraInfo (582) */
|
|
4996
5089
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
4997
5090
|
readonly index: u32;
|
|
4998
5091
|
readonly start: Option<u64>;
|
|
4999
5092
|
}
|
|
5000
|
-
/** @name PalletStakingEraRewardPoints (
|
|
5093
|
+
/** @name PalletStakingEraRewardPoints (584) */
|
|
5001
5094
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
5002
5095
|
readonly total: u32;
|
|
5003
5096
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
5004
5097
|
}
|
|
5005
|
-
/** @name PalletStakingForcing (
|
|
5098
|
+
/** @name PalletStakingForcing (587) */
|
|
5006
5099
|
interface PalletStakingForcing extends Enum {
|
|
5007
5100
|
readonly isNotForcing: boolean;
|
|
5008
5101
|
readonly isForceNew: boolean;
|
|
@@ -5010,7 +5103,7 @@ declare module "./types-lookup.ts" {
|
|
|
5010
5103
|
readonly isForceAlways: boolean;
|
|
5011
5104
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
5012
5105
|
}
|
|
5013
|
-
/** @name PalletStakingUnappliedSlash (
|
|
5106
|
+
/** @name PalletStakingUnappliedSlash (589) */
|
|
5014
5107
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
5015
5108
|
readonly validator: AccountId32;
|
|
5016
5109
|
readonly own: u128;
|
|
@@ -5018,37 +5111,37 @@ declare module "./types-lookup.ts" {
|
|
|
5018
5111
|
readonly reporters: Vec<AccountId32>;
|
|
5019
5112
|
readonly payout: u128;
|
|
5020
5113
|
}
|
|
5021
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
5114
|
+
/** @name PalletStakingSlashingSlashingSpans (593) */
|
|
5022
5115
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
5023
5116
|
readonly spanIndex: u32;
|
|
5024
5117
|
readonly lastStart: u32;
|
|
5025
5118
|
readonly lastNonzeroSlash: u32;
|
|
5026
5119
|
readonly prior: Vec<u32>;
|
|
5027
5120
|
}
|
|
5028
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
5121
|
+
/** @name PalletStakingSlashingSpanRecord (594) */
|
|
5029
5122
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
5030
5123
|
readonly slashed: u128;
|
|
5031
5124
|
readonly paidOut: u128;
|
|
5032
5125
|
}
|
|
5033
|
-
/** @name PalletStakingElectionResult (
|
|
5126
|
+
/** @name PalletStakingElectionResult (597) */
|
|
5034
5127
|
interface PalletStakingElectionResult extends Struct {
|
|
5035
5128
|
readonly electedStashes: Vec<AccountId32>;
|
|
5036
5129
|
readonly exposures: Vec<ITuple<[AccountId32, PalletStakingExposure]>>;
|
|
5037
5130
|
readonly compute: PalletStakingElectionCompute;
|
|
5038
5131
|
}
|
|
5039
|
-
/** @name PalletStakingElectionStatus (
|
|
5132
|
+
/** @name PalletStakingElectionStatus (598) */
|
|
5040
5133
|
interface PalletStakingElectionStatus extends Enum {
|
|
5041
5134
|
readonly isClosed: boolean;
|
|
5042
5135
|
readonly isOpen: boolean;
|
|
5043
5136
|
readonly asOpen: u32;
|
|
5044
5137
|
readonly type: 'Closed' | 'Open';
|
|
5045
5138
|
}
|
|
5046
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
5139
|
+
/** @name PalletStakingPermissionedIdentityPrefs (599) */
|
|
5047
5140
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
5048
5141
|
readonly intendedCount: u32;
|
|
5049
5142
|
readonly runningCount: u32;
|
|
5050
5143
|
}
|
|
5051
|
-
/** @name PalletStakingReleases (
|
|
5144
|
+
/** @name PalletStakingReleases (600) */
|
|
5052
5145
|
interface PalletStakingReleases extends Enum {
|
|
5053
5146
|
readonly isV100Ancient: boolean;
|
|
5054
5147
|
readonly isV200: boolean;
|
|
@@ -5060,7 +5153,7 @@ declare module "./types-lookup.ts" {
|
|
|
5060
5153
|
readonly isV700: boolean;
|
|
5061
5154
|
readonly type: 'V100Ancient' | 'V200' | 'V300' | 'V400' | 'V500' | 'V600' | 'V601' | 'V700';
|
|
5062
5155
|
}
|
|
5063
|
-
/** @name PalletStakingError (
|
|
5156
|
+
/** @name PalletStakingError (602) */
|
|
5064
5157
|
interface PalletStakingError extends Enum {
|
|
5065
5158
|
readonly isNotController: boolean;
|
|
5066
5159
|
readonly isNotStash: boolean;
|
|
@@ -5107,15 +5200,15 @@ declare module "./types-lookup.ts" {
|
|
|
5107
5200
|
readonly isInvalidValidatorUnbondAmount: boolean;
|
|
5108
5201
|
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';
|
|
5109
5202
|
}
|
|
5110
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5203
|
+
/** @name SpStakingOffenceOffenceDetails (603) */
|
|
5111
5204
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5112
5205
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5113
5206
|
readonly reporters: Vec<AccountId32>;
|
|
5114
5207
|
}
|
|
5115
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5208
|
+
/** @name SpCoreCryptoKeyTypeId (608) */
|
|
5116
5209
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5117
5210
|
}
|
|
5118
|
-
/** @name PalletSessionError (
|
|
5211
|
+
/** @name PalletSessionError (609) */
|
|
5119
5212
|
interface PalletSessionError extends Enum {
|
|
5120
5213
|
readonly isInvalidProof: boolean;
|
|
5121
5214
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5124,7 +5217,7 @@ declare module "./types-lookup.ts" {
|
|
|
5124
5217
|
readonly isNoAccount: boolean;
|
|
5125
5218
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5126
5219
|
}
|
|
5127
|
-
/** @name PalletGrandpaStoredState (
|
|
5220
|
+
/** @name PalletGrandpaStoredState (610) */
|
|
5128
5221
|
interface PalletGrandpaStoredState extends Enum {
|
|
5129
5222
|
readonly isLive: boolean;
|
|
5130
5223
|
readonly isPendingPause: boolean;
|
|
@@ -5140,14 +5233,14 @@ declare module "./types-lookup.ts" {
|
|
|
5140
5233
|
} & Struct;
|
|
5141
5234
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5142
5235
|
}
|
|
5143
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5236
|
+
/** @name PalletGrandpaStoredPendingChange (611) */
|
|
5144
5237
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5145
5238
|
readonly scheduledAt: u32;
|
|
5146
5239
|
readonly delay: u32;
|
|
5147
5240
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5148
5241
|
readonly forced: Option<u32>;
|
|
5149
5242
|
}
|
|
5150
|
-
/** @name PalletGrandpaError (
|
|
5243
|
+
/** @name PalletGrandpaError (613) */
|
|
5151
5244
|
interface PalletGrandpaError extends Enum {
|
|
5152
5245
|
readonly isPauseFailed: boolean;
|
|
5153
5246
|
readonly isResumeFailed: boolean;
|
|
@@ -5158,42 +5251,47 @@ declare module "./types-lookup.ts" {
|
|
|
5158
5251
|
readonly isDuplicateOffenceReport: boolean;
|
|
5159
5252
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5160
5253
|
}
|
|
5161
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5254
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (617) */
|
|
5162
5255
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5163
5256
|
readonly peerId: Bytes;
|
|
5164
5257
|
readonly externalAddresses: Vec<Bytes>;
|
|
5165
5258
|
}
|
|
5166
|
-
/** @name PalletImOnlineError (
|
|
5259
|
+
/** @name PalletImOnlineError (621) */
|
|
5167
5260
|
interface PalletImOnlineError extends Enum {
|
|
5168
5261
|
readonly isInvalidKey: boolean;
|
|
5169
5262
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5170
5263
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5171
5264
|
}
|
|
5172
|
-
/** @name
|
|
5265
|
+
/** @name PalletSudoError (623) */
|
|
5266
|
+
interface PalletSudoError extends Enum {
|
|
5267
|
+
readonly isRequireSudo: boolean;
|
|
5268
|
+
readonly type: 'RequireSudo';
|
|
5269
|
+
}
|
|
5270
|
+
/** @name PalletAssetTickerRegistration (624) */
|
|
5173
5271
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5174
5272
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5175
5273
|
readonly expiry: Option<u64>;
|
|
5176
5274
|
}
|
|
5177
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5275
|
+
/** @name PalletAssetTickerRegistrationConfig (625) */
|
|
5178
5276
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5179
5277
|
readonly maxTickerLength: u8;
|
|
5180
5278
|
readonly registrationLength: Option<u64>;
|
|
5181
5279
|
}
|
|
5182
|
-
/** @name PalletAssetSecurityToken (
|
|
5280
|
+
/** @name PalletAssetSecurityToken (626) */
|
|
5183
5281
|
interface PalletAssetSecurityToken extends Struct {
|
|
5184
5282
|
readonly totalSupply: u128;
|
|
5185
5283
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5186
5284
|
readonly divisible: bool;
|
|
5187
5285
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5188
5286
|
}
|
|
5189
|
-
/** @name PalletAssetAssetOwnershipRelation (
|
|
5287
|
+
/** @name PalletAssetAssetOwnershipRelation (630) */
|
|
5190
5288
|
interface PalletAssetAssetOwnershipRelation extends Enum {
|
|
5191
5289
|
readonly isNotOwned: boolean;
|
|
5192
5290
|
readonly isTickerOwned: boolean;
|
|
5193
5291
|
readonly isAssetOwned: boolean;
|
|
5194
5292
|
readonly type: 'NotOwned' | 'TickerOwned' | 'AssetOwned';
|
|
5195
5293
|
}
|
|
5196
|
-
/** @name PalletAssetError (
|
|
5294
|
+
/** @name PalletAssetError (636) */
|
|
5197
5295
|
interface PalletAssetError extends Enum {
|
|
5198
5296
|
readonly isUnauthorized: boolean;
|
|
5199
5297
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5232,9 +5330,10 @@ declare module "./types-lookup.ts" {
|
|
|
5232
5330
|
readonly isIncompatibleAssetTypeUpdate: boolean;
|
|
5233
5331
|
readonly isAssetMetadataKeyBelongsToNFTCollection: boolean;
|
|
5234
5332
|
readonly isAssetMetadataValueIsEmpty: boolean;
|
|
5235
|
-
readonly
|
|
5333
|
+
readonly isNumberOfAssetMediatorsExceeded: boolean;
|
|
5334
|
+
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' | 'NumberOfAssetMediatorsExceeded';
|
|
5236
5335
|
}
|
|
5237
|
-
/** @name PalletCorporateActionsDistributionError (
|
|
5336
|
+
/** @name PalletCorporateActionsDistributionError (639) */
|
|
5238
5337
|
interface PalletCorporateActionsDistributionError extends Enum {
|
|
5239
5338
|
readonly isCaNotBenefit: boolean;
|
|
5240
5339
|
readonly isAlreadyExists: boolean;
|
|
@@ -5253,13 +5352,13 @@ declare module "./types-lookup.ts" {
|
|
|
5253
5352
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5254
5353
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5255
5354
|
}
|
|
5256
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5355
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (643) */
|
|
5257
5356
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5258
5357
|
readonly nextAt: u64;
|
|
5259
5358
|
readonly totalPending: u64;
|
|
5260
5359
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5261
5360
|
}
|
|
5262
|
-
/** @name PalletAssetCheckpointError (
|
|
5361
|
+
/** @name PalletAssetCheckpointError (649) */
|
|
5263
5362
|
interface PalletAssetCheckpointError extends Enum {
|
|
5264
5363
|
readonly isNoSuchSchedule: boolean;
|
|
5265
5364
|
readonly isScheduleNotRemovable: boolean;
|
|
@@ -5269,12 +5368,12 @@ declare module "./types-lookup.ts" {
|
|
|
5269
5368
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5270
5369
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5271
5370
|
}
|
|
5272
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5371
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (650) */
|
|
5273
5372
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5274
5373
|
readonly paused: bool;
|
|
5275
5374
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5276
5375
|
}
|
|
5277
|
-
/** @name PalletComplianceManagerError (
|
|
5376
|
+
/** @name PalletComplianceManagerError (652) */
|
|
5278
5377
|
interface PalletComplianceManagerError extends Enum {
|
|
5279
5378
|
readonly isUnauthorized: boolean;
|
|
5280
5379
|
readonly isDidNotExist: boolean;
|
|
@@ -5285,7 +5384,7 @@ declare module "./types-lookup.ts" {
|
|
|
5285
5384
|
readonly isWeightLimitExceeded: boolean;
|
|
5286
5385
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5287
5386
|
}
|
|
5288
|
-
/** @name PalletCorporateActionsError (
|
|
5387
|
+
/** @name PalletCorporateActionsError (655) */
|
|
5289
5388
|
interface PalletCorporateActionsError extends Enum {
|
|
5290
5389
|
readonly isDetailsTooLong: boolean;
|
|
5291
5390
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5300,7 +5399,7 @@ declare module "./types-lookup.ts" {
|
|
|
5300
5399
|
readonly isNotTargetedByCA: boolean;
|
|
5301
5400
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5302
5401
|
}
|
|
5303
|
-
/** @name PalletCorporateActionsBallotError (
|
|
5402
|
+
/** @name PalletCorporateActionsBallotError (657) */
|
|
5304
5403
|
interface PalletCorporateActionsBallotError extends Enum {
|
|
5305
5404
|
readonly isCaNotNotice: boolean;
|
|
5306
5405
|
readonly isAlreadyExists: boolean;
|
|
@@ -5318,12 +5417,12 @@ declare module "./types-lookup.ts" {
|
|
|
5318
5417
|
readonly isRcvNotAllowed: boolean;
|
|
5319
5418
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5320
5419
|
}
|
|
5321
|
-
/** @name PalletPermissionsError (
|
|
5420
|
+
/** @name PalletPermissionsError (658) */
|
|
5322
5421
|
interface PalletPermissionsError extends Enum {
|
|
5323
5422
|
readonly isUnauthorizedCaller: boolean;
|
|
5324
5423
|
readonly type: 'UnauthorizedCaller';
|
|
5325
5424
|
}
|
|
5326
|
-
/** @name PalletPipsPipsMetadata (
|
|
5425
|
+
/** @name PalletPipsPipsMetadata (659) */
|
|
5327
5426
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5328
5427
|
readonly id: u32;
|
|
5329
5428
|
readonly url: Option<Bytes>;
|
|
@@ -5332,34 +5431,34 @@ declare module "./types-lookup.ts" {
|
|
|
5332
5431
|
readonly transactionVersion: u32;
|
|
5333
5432
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5334
5433
|
}
|
|
5335
|
-
/** @name PalletPipsDepositInfo (
|
|
5434
|
+
/** @name PalletPipsDepositInfo (661) */
|
|
5336
5435
|
interface PalletPipsDepositInfo extends Struct {
|
|
5337
5436
|
readonly owner: AccountId32;
|
|
5338
5437
|
readonly amount: u128;
|
|
5339
5438
|
}
|
|
5340
|
-
/** @name PalletPipsPip (
|
|
5439
|
+
/** @name PalletPipsPip (662) */
|
|
5341
5440
|
interface PalletPipsPip extends Struct {
|
|
5342
5441
|
readonly id: u32;
|
|
5343
5442
|
readonly proposal: Call;
|
|
5344
5443
|
readonly proposer: PalletPipsProposer;
|
|
5345
5444
|
}
|
|
5346
|
-
/** @name PalletPipsVotingResult (
|
|
5445
|
+
/** @name PalletPipsVotingResult (663) */
|
|
5347
5446
|
interface PalletPipsVotingResult extends Struct {
|
|
5348
5447
|
readonly ayesCount: u32;
|
|
5349
5448
|
readonly ayesStake: u128;
|
|
5350
5449
|
readonly naysCount: u32;
|
|
5351
5450
|
readonly naysStake: u128;
|
|
5352
5451
|
}
|
|
5353
|
-
/** @name PalletPipsVote (
|
|
5452
|
+
/** @name PalletPipsVote (664) */
|
|
5354
5453
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5355
5454
|
}
|
|
5356
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5455
|
+
/** @name PalletPipsSnapshotMetadata (665) */
|
|
5357
5456
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5358
5457
|
readonly createdAt: u32;
|
|
5359
5458
|
readonly madeBy: AccountId32;
|
|
5360
5459
|
readonly id: u32;
|
|
5361
5460
|
}
|
|
5362
|
-
/** @name PalletPipsError (
|
|
5461
|
+
/** @name PalletPipsError (667) */
|
|
5363
5462
|
interface PalletPipsError extends Enum {
|
|
5364
5463
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5365
5464
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5381,7 +5480,7 @@ declare module "./types-lookup.ts" {
|
|
|
5381
5480
|
readonly isProposalNotInScheduledState: boolean;
|
|
5382
5481
|
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState';
|
|
5383
5482
|
}
|
|
5384
|
-
/** @name PalletPortfolioError (
|
|
5483
|
+
/** @name PalletPortfolioError (675) */
|
|
5385
5484
|
interface PalletPortfolioError extends Enum {
|
|
5386
5485
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5387
5486
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5402,22 +5501,22 @@ declare module "./types-lookup.ts" {
|
|
|
5402
5501
|
readonly isMissingOwnersPermission: boolean;
|
|
5403
5502
|
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer' | 'MissingOwnersPermission';
|
|
5404
5503
|
}
|
|
5405
|
-
/** @name PalletProtocolFeeError (
|
|
5504
|
+
/** @name PalletProtocolFeeError (676) */
|
|
5406
5505
|
interface PalletProtocolFeeError extends Enum {
|
|
5407
5506
|
readonly isInsufficientAccountBalance: boolean;
|
|
5408
5507
|
readonly isUnHandledImbalances: boolean;
|
|
5409
5508
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5410
5509
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5411
5510
|
}
|
|
5412
|
-
/** @name PalletSchedulerScheduled (
|
|
5511
|
+
/** @name PalletSchedulerScheduled (679) */
|
|
5413
5512
|
interface PalletSchedulerScheduled extends Struct {
|
|
5414
5513
|
readonly maybeId: Option<U8aFixed>;
|
|
5415
5514
|
readonly priority: u8;
|
|
5416
5515
|
readonly call: FrameSupportPreimagesBounded;
|
|
5417
5516
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5418
|
-
readonly origin:
|
|
5517
|
+
readonly origin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
5419
5518
|
}
|
|
5420
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5519
|
+
/** @name FrameSupportPreimagesBounded (680) */
|
|
5421
5520
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5422
5521
|
readonly isLegacy: boolean;
|
|
5423
5522
|
readonly asLegacy: {
|
|
@@ -5432,7 +5531,7 @@ declare module "./types-lookup.ts" {
|
|
|
5432
5531
|
} & Struct;
|
|
5433
5532
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5434
5533
|
}
|
|
5435
|
-
/** @name PalletSchedulerError (
|
|
5534
|
+
/** @name PalletSchedulerError (683) */
|
|
5436
5535
|
interface PalletSchedulerError extends Enum {
|
|
5437
5536
|
readonly isFailedToSchedule: boolean;
|
|
5438
5537
|
readonly isNotFound: boolean;
|
|
@@ -5441,12 +5540,12 @@ declare module "./types-lookup.ts" {
|
|
|
5441
5540
|
readonly isNamed: boolean;
|
|
5442
5541
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5443
5542
|
}
|
|
5444
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5543
|
+
/** @name PolymeshPrimitivesSettlementVenue (684) */
|
|
5445
5544
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5446
5545
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5447
5546
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5448
5547
|
}
|
|
5449
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5548
|
+
/** @name PolymeshPrimitivesSettlementInstruction (688) */
|
|
5450
5549
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5451
5550
|
readonly instructionId: u64;
|
|
5452
5551
|
readonly venueId: u64;
|
|
@@ -5455,7 +5554,7 @@ declare module "./types-lookup.ts" {
|
|
|
5455
5554
|
readonly tradeDate: Option<u64>;
|
|
5456
5555
|
readonly valueDate: Option<u64>;
|
|
5457
5556
|
}
|
|
5458
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5557
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (690) */
|
|
5459
5558
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5460
5559
|
readonly isPendingTokenLock: boolean;
|
|
5461
5560
|
readonly isExecutionPending: boolean;
|
|
@@ -5463,14 +5562,14 @@ declare module "./types-lookup.ts" {
|
|
|
5463
5562
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5464
5563
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5465
5564
|
}
|
|
5466
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5565
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (692) */
|
|
5467
5566
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5468
5567
|
readonly isUnknown: boolean;
|
|
5469
5568
|
readonly isPending: boolean;
|
|
5470
5569
|
readonly isAffirmed: boolean;
|
|
5471
5570
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5472
5571
|
}
|
|
5473
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5572
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (696) */
|
|
5474
5573
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5475
5574
|
readonly isUnknown: boolean;
|
|
5476
5575
|
readonly isPending: boolean;
|
|
@@ -5481,7 +5580,17 @@ declare module "./types-lookup.ts" {
|
|
|
5481
5580
|
readonly asRejected: u32;
|
|
5482
5581
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5483
5582
|
}
|
|
5484
|
-
/** @name
|
|
5583
|
+
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (698) */
|
|
5584
|
+
interface PolymeshPrimitivesSettlementMediatorAffirmationStatus extends Enum {
|
|
5585
|
+
readonly isUnknown: boolean;
|
|
5586
|
+
readonly isPending: boolean;
|
|
5587
|
+
readonly isAffirmed: boolean;
|
|
5588
|
+
readonly asAffirmed: {
|
|
5589
|
+
readonly expiry: Option<u64>;
|
|
5590
|
+
} & Struct;
|
|
5591
|
+
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5592
|
+
}
|
|
5593
|
+
/** @name PalletSettlementError (699) */
|
|
5485
5594
|
interface PalletSettlementError extends Enum {
|
|
5486
5595
|
readonly isInvalidVenue: boolean;
|
|
5487
5596
|
readonly isUnauthorized: boolean;
|
|
@@ -5523,19 +5632,22 @@ declare module "./types-lookup.ts" {
|
|
|
5523
5632
|
readonly isMultipleReceiptsForOneLeg: boolean;
|
|
5524
5633
|
readonly isUnexpectedLegStatus: boolean;
|
|
5525
5634
|
readonly isNumberOfVenueSignersExceeded: boolean;
|
|
5526
|
-
readonly
|
|
5635
|
+
readonly isCallerIsNotAMediator: boolean;
|
|
5636
|
+
readonly isInvalidExpiryDate: boolean;
|
|
5637
|
+
readonly isMediatorAffirmationExpired: boolean;
|
|
5638
|
+
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' | 'CallerIsNotAMediator' | 'InvalidExpiryDate' | 'MediatorAffirmationExpired';
|
|
5527
5639
|
}
|
|
5528
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5640
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (702) */
|
|
5529
5641
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5530
5642
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
5531
5643
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5532
5644
|
}
|
|
5533
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5645
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (703) */
|
|
5534
5646
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5535
5647
|
readonly paused: bool;
|
|
5536
5648
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5537
5649
|
}
|
|
5538
|
-
/** @name PalletStatisticsError (
|
|
5650
|
+
/** @name PalletStatisticsError (707) */
|
|
5539
5651
|
interface PalletStatisticsError extends Enum {
|
|
5540
5652
|
readonly isInvalidTransfer: boolean;
|
|
5541
5653
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5546,7 +5658,7 @@ declare module "./types-lookup.ts" {
|
|
|
5546
5658
|
readonly isWeightLimitExceeded: boolean;
|
|
5547
5659
|
readonly type: 'InvalidTransfer' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5548
5660
|
}
|
|
5549
|
-
/** @name PalletStoError (
|
|
5661
|
+
/** @name PalletStoError (709) */
|
|
5550
5662
|
interface PalletStoError extends Enum {
|
|
5551
5663
|
readonly isUnauthorized: boolean;
|
|
5552
5664
|
readonly isOverflow: boolean;
|
|
@@ -5562,13 +5674,13 @@ declare module "./types-lookup.ts" {
|
|
|
5562
5674
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5563
5675
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5564
5676
|
}
|
|
5565
|
-
/** @name PalletTreasuryError (
|
|
5677
|
+
/** @name PalletTreasuryError (710) */
|
|
5566
5678
|
interface PalletTreasuryError extends Enum {
|
|
5567
5679
|
readonly isInsufficientBalance: boolean;
|
|
5568
5680
|
readonly isInvalidIdentity: boolean;
|
|
5569
5681
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5570
5682
|
}
|
|
5571
|
-
/** @name PalletUtilityError (
|
|
5683
|
+
/** @name PalletUtilityError (711) */
|
|
5572
5684
|
interface PalletUtilityError extends Enum {
|
|
5573
5685
|
readonly isTooManyCalls: boolean;
|
|
5574
5686
|
readonly isInvalidSignature: boolean;
|
|
@@ -5577,13 +5689,13 @@ declare module "./types-lookup.ts" {
|
|
|
5577
5689
|
readonly isUnableToDeriveAccountId: boolean;
|
|
5578
5690
|
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce' | 'UnableToDeriveAccountId';
|
|
5579
5691
|
}
|
|
5580
|
-
/** @name PalletBaseError (
|
|
5692
|
+
/** @name PalletBaseError (712) */
|
|
5581
5693
|
interface PalletBaseError extends Enum {
|
|
5582
5694
|
readonly isTooLong: boolean;
|
|
5583
5695
|
readonly isCounterOverflow: boolean;
|
|
5584
5696
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5585
5697
|
}
|
|
5586
|
-
/** @name PalletExternalAgentsError (
|
|
5698
|
+
/** @name PalletExternalAgentsError (714) */
|
|
5587
5699
|
interface PalletExternalAgentsError extends Enum {
|
|
5588
5700
|
readonly isNoSuchAG: boolean;
|
|
5589
5701
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5593,12 +5705,12 @@ declare module "./types-lookup.ts" {
|
|
|
5593
5705
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5594
5706
|
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset';
|
|
5595
5707
|
}
|
|
5596
|
-
/** @name PalletRelayerSubsidy (
|
|
5708
|
+
/** @name PalletRelayerSubsidy (715) */
|
|
5597
5709
|
interface PalletRelayerSubsidy extends Struct {
|
|
5598
5710
|
readonly payingKey: AccountId32;
|
|
5599
5711
|
readonly remaining: u128;
|
|
5600
5712
|
}
|
|
5601
|
-
/** @name PalletRelayerError (
|
|
5713
|
+
/** @name PalletRelayerError (716) */
|
|
5602
5714
|
interface PalletRelayerError extends Enum {
|
|
5603
5715
|
readonly isUserKeyCddMissing: boolean;
|
|
5604
5716
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5609,7 +5721,7 @@ declare module "./types-lookup.ts" {
|
|
|
5609
5721
|
readonly isOverflow: boolean;
|
|
5610
5722
|
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow';
|
|
5611
5723
|
}
|
|
5612
|
-
/** @name PalletContractsWasmPrefabWasmModule (
|
|
5724
|
+
/** @name PalletContractsWasmPrefabWasmModule (718) */
|
|
5613
5725
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5614
5726
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
5615
5727
|
readonly initial: Compact<u32>;
|
|
@@ -5617,13 +5729,13 @@ declare module "./types-lookup.ts" {
|
|
|
5617
5729
|
readonly code: Bytes;
|
|
5618
5730
|
readonly determinism: PalletContractsWasmDeterminism;
|
|
5619
5731
|
}
|
|
5620
|
-
/** @name PalletContractsWasmOwnerInfo (
|
|
5732
|
+
/** @name PalletContractsWasmOwnerInfo (720) */
|
|
5621
5733
|
interface PalletContractsWasmOwnerInfo extends Struct {
|
|
5622
5734
|
readonly owner: AccountId32;
|
|
5623
5735
|
readonly deposit: Compact<u128>;
|
|
5624
5736
|
readonly refcount: Compact<u64>;
|
|
5625
5737
|
}
|
|
5626
|
-
/** @name PalletContractsStorageContractInfo (
|
|
5738
|
+
/** @name PalletContractsStorageContractInfo (721) */
|
|
5627
5739
|
interface PalletContractsStorageContractInfo extends Struct {
|
|
5628
5740
|
readonly trieId: Bytes;
|
|
5629
5741
|
readonly depositAccount: AccountId32;
|
|
@@ -5634,17 +5746,17 @@ declare module "./types-lookup.ts" {
|
|
|
5634
5746
|
readonly storageItemDeposit: u128;
|
|
5635
5747
|
readonly storageBaseDeposit: u128;
|
|
5636
5748
|
}
|
|
5637
|
-
/** @name PalletContractsStorageDeletedContract (
|
|
5749
|
+
/** @name PalletContractsStorageDeletedContract (724) */
|
|
5638
5750
|
interface PalletContractsStorageDeletedContract extends Struct {
|
|
5639
5751
|
readonly trieId: Bytes;
|
|
5640
5752
|
}
|
|
5641
|
-
/** @name PalletContractsSchedule (
|
|
5753
|
+
/** @name PalletContractsSchedule (726) */
|
|
5642
5754
|
interface PalletContractsSchedule extends Struct {
|
|
5643
5755
|
readonly limits: PalletContractsScheduleLimits;
|
|
5644
5756
|
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
|
|
5645
5757
|
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
|
|
5646
5758
|
}
|
|
5647
|
-
/** @name PalletContractsScheduleLimits (
|
|
5759
|
+
/** @name PalletContractsScheduleLimits (727) */
|
|
5648
5760
|
interface PalletContractsScheduleLimits extends Struct {
|
|
5649
5761
|
readonly eventTopics: u32;
|
|
5650
5762
|
readonly globals: u32;
|
|
@@ -5656,7 +5768,7 @@ declare module "./types-lookup.ts" {
|
|
|
5656
5768
|
readonly subjectLen: u32;
|
|
5657
5769
|
readonly payloadLen: u32;
|
|
5658
5770
|
}
|
|
5659
|
-
/** @name PalletContractsScheduleInstructionWeights (
|
|
5771
|
+
/** @name PalletContractsScheduleInstructionWeights (728) */
|
|
5660
5772
|
interface PalletContractsScheduleInstructionWeights extends Struct {
|
|
5661
5773
|
readonly version: u32;
|
|
5662
5774
|
readonly fallback: u32;
|
|
@@ -5713,7 +5825,7 @@ declare module "./types-lookup.ts" {
|
|
|
5713
5825
|
readonly i64rotl: u32;
|
|
5714
5826
|
readonly i64rotr: u32;
|
|
5715
5827
|
}
|
|
5716
|
-
/** @name PalletContractsScheduleHostFnWeights (
|
|
5828
|
+
/** @name PalletContractsScheduleHostFnWeights (729) */
|
|
5717
5829
|
interface PalletContractsScheduleHostFnWeights extends Struct {
|
|
5718
5830
|
readonly caller: SpWeightsWeightV2Weight;
|
|
5719
5831
|
readonly isContract: SpWeightsWeightV2Weight;
|
|
@@ -5775,7 +5887,7 @@ declare module "./types-lookup.ts" {
|
|
|
5775
5887
|
readonly accountReentranceCount: SpWeightsWeightV2Weight;
|
|
5776
5888
|
readonly instantiationNonce: SpWeightsWeightV2Weight;
|
|
5777
5889
|
}
|
|
5778
|
-
/** @name PalletContractsError (
|
|
5890
|
+
/** @name PalletContractsError (730) */
|
|
5779
5891
|
interface PalletContractsError extends Enum {
|
|
5780
5892
|
readonly isInvalidScheduleVersion: boolean;
|
|
5781
5893
|
readonly isInvalidCallFlags: boolean;
|
|
@@ -5807,7 +5919,7 @@ declare module "./types-lookup.ts" {
|
|
|
5807
5919
|
readonly isIndeterministic: boolean;
|
|
5808
5920
|
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';
|
|
5809
5921
|
}
|
|
5810
|
-
/** @name PolymeshContractsError (
|
|
5922
|
+
/** @name PolymeshContractsError (732) */
|
|
5811
5923
|
interface PolymeshContractsError extends Enum {
|
|
5812
5924
|
readonly isInvalidFuncId: boolean;
|
|
5813
5925
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5823,7 +5935,7 @@ declare module "./types-lookup.ts" {
|
|
|
5823
5935
|
readonly isNoUpgradesSupported: boolean;
|
|
5824
5936
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied' | 'CallerNotAPrimaryKey' | 'MissingKeyPermissions' | 'InvalidChainVersion' | 'NoUpgradesSupported';
|
|
5825
5937
|
}
|
|
5826
|
-
/** @name PalletPreimageRequestStatus (
|
|
5938
|
+
/** @name PalletPreimageRequestStatus (733) */
|
|
5827
5939
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5828
5940
|
readonly isUnrequested: boolean;
|
|
5829
5941
|
readonly asUnrequested: {
|
|
@@ -5838,7 +5950,7 @@ declare module "./types-lookup.ts" {
|
|
|
5838
5950
|
} & Struct;
|
|
5839
5951
|
readonly type: 'Unrequested' | 'Requested';
|
|
5840
5952
|
}
|
|
5841
|
-
/** @name PalletPreimageError (
|
|
5953
|
+
/** @name PalletPreimageError (737) */
|
|
5842
5954
|
interface PalletPreimageError extends Enum {
|
|
5843
5955
|
readonly isTooBig: boolean;
|
|
5844
5956
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5848,12 +5960,12 @@ declare module "./types-lookup.ts" {
|
|
|
5848
5960
|
readonly isNotRequested: boolean;
|
|
5849
5961
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5850
5962
|
}
|
|
5851
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
5963
|
+
/** @name PolymeshPrimitivesNftNftCollection (738) */
|
|
5852
5964
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5853
5965
|
readonly id: u64;
|
|
5854
5966
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
5855
5967
|
}
|
|
5856
|
-
/** @name PalletNftError (
|
|
5968
|
+
/** @name PalletNftError (743) */
|
|
5857
5969
|
interface PalletNftError extends Enum {
|
|
5858
5970
|
readonly isBalanceOverflow: boolean;
|
|
5859
5971
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5879,28 +5991,28 @@ declare module "./types-lookup.ts" {
|
|
|
5879
5991
|
readonly isSupplyUnderflow: boolean;
|
|
5880
5992
|
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount' | 'SupplyOverflow' | 'SupplyUnderflow';
|
|
5881
5993
|
}
|
|
5882
|
-
/** @name PalletTestUtilsError (
|
|
5994
|
+
/** @name PalletTestUtilsError (744) */
|
|
5883
5995
|
type PalletTestUtilsError = Null;
|
|
5884
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5996
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (747) */
|
|
5885
5997
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5886
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5998
|
+
/** @name FrameSystemExtensionsCheckTxVersion (748) */
|
|
5887
5999
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5888
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
6000
|
+
/** @name FrameSystemExtensionsCheckGenesis (749) */
|
|
5889
6001
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5890
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
6002
|
+
/** @name FrameSystemExtensionsCheckNonce (752) */
|
|
5891
6003
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
5892
6004
|
}
|
|
5893
|
-
/** @name PolymeshExtensionsCheckWeight (
|
|
6005
|
+
/** @name PolymeshExtensionsCheckWeight (753) */
|
|
5894
6006
|
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
5895
6007
|
}
|
|
5896
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
6008
|
+
/** @name FrameSystemExtensionsCheckWeight (754) */
|
|
5897
6009
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5898
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
6010
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (755) */
|
|
5899
6011
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
5900
6012
|
}
|
|
5901
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
6013
|
+
/** @name PalletPermissionsStoreCallMetadata (756) */
|
|
5902
6014
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
5903
|
-
/** @name
|
|
5904
|
-
type
|
|
6015
|
+
/** @name PolymeshRuntimeDevelopRuntime (757) */
|
|
6016
|
+
type PolymeshRuntimeDevelopRuntime = Null;
|
|
5905
6017
|
}
|
|
5906
6018
|
//# sourceMappingURL=types-lookup.d.ts.map
|