@dedot/chaintypes 0.248.0 → 0.249.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/paseo-asset-hub/consts.d.ts +87 -0
- package/paseo-asset-hub/errors.d.ts +170 -0
- package/paseo-asset-hub/events.d.ts +359 -6
- package/paseo-asset-hub/index.d.ts +3 -1
- package/paseo-asset-hub/query.d.ts +261 -17
- package/paseo-asset-hub/runtime.d.ts +11 -6
- package/paseo-asset-hub/tx.d.ts +729 -1
- package/paseo-asset-hub/types.d.ts +1426 -155
- package/paseo-asset-hub/view-functions.d.ts +195 -2
- package/polkadot-asset-hub/consts.d.ts +87 -0
- package/polkadot-asset-hub/errors.d.ts +170 -0
- package/polkadot-asset-hub/events.d.ts +359 -6
- package/polkadot-asset-hub/index.d.ts +3 -1
- package/polkadot-asset-hub/query.d.ts +261 -17
- package/polkadot-asset-hub/runtime.d.ts +11 -6
- package/polkadot-asset-hub/tx.d.ts +729 -1
- package/polkadot-asset-hub/types.d.ts +1426 -155
- package/polkadot-asset-hub/view-functions.d.ts +195 -2
- package/polkadot-people/consts.d.ts +75 -0
- package/polkadot-people/errors.d.ts +170 -0
- package/polkadot-people/events.d.ts +377 -3
- package/polkadot-people/index.d.ts +5 -4
- package/polkadot-people/query.d.ts +169 -16
- package/polkadot-people/runtime.d.ts +9 -5
- package/polkadot-people/tx.d.ts +1316 -2
- package/polkadot-people/types.d.ts +1857 -182
- package/polkadot-people/view-functions.d.ts +46 -1
|
@@ -7,9 +7,9 @@ import type {
|
|
|
7
7
|
H256,
|
|
8
8
|
FixedBytes,
|
|
9
9
|
Result,
|
|
10
|
+
Bytes,
|
|
10
11
|
EthereumAddress,
|
|
11
12
|
FixedU128,
|
|
12
|
-
Bytes,
|
|
13
13
|
Permill,
|
|
14
14
|
Perbill,
|
|
15
15
|
H160,
|
|
@@ -21,6 +21,7 @@ import type {
|
|
|
21
21
|
AssetHubPolkadotRuntimeRuntimeParametersKey,
|
|
22
22
|
AssetHubPolkadotRuntimeRuntimeParametersValue,
|
|
23
23
|
FrameSupportTokensMiscBalanceStatus,
|
|
24
|
+
AssetHubPolkadotRuntimeRuntimeHoldReason,
|
|
24
25
|
PalletBalancesUnexpectedKind,
|
|
25
26
|
StagingXcmV5Location,
|
|
26
27
|
StagingXcmV5TraitsOutcome,
|
|
@@ -40,6 +41,7 @@ import type {
|
|
|
40
41
|
PalletNftsAttributeNamespace,
|
|
41
42
|
PalletNftsPriceWithDirection,
|
|
42
43
|
PalletNftsPalletAttributes,
|
|
44
|
+
AssetsCommonLocalAndForeignAssetsForeignAssetReserveData,
|
|
43
45
|
PolkadotRuntimeCommonImplsVersionedLocatableAsset,
|
|
44
46
|
ParachainsCommonPayVersionedLocatableAccount,
|
|
45
47
|
PalletConvictionVotingVoteAccountVote,
|
|
@@ -342,6 +344,135 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
342
344
|
**/
|
|
343
345
|
[prop: string]: GenericPalletEvent;
|
|
344
346
|
};
|
|
347
|
+
/**
|
|
348
|
+
* Pallet `MultiBlockMigrations`'s events
|
|
349
|
+
**/
|
|
350
|
+
multiBlockMigrations: {
|
|
351
|
+
/**
|
|
352
|
+
* A Runtime upgrade started.
|
|
353
|
+
*
|
|
354
|
+
* Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
|
|
355
|
+
**/
|
|
356
|
+
UpgradeStarted: GenericPalletEvent<
|
|
357
|
+
'MultiBlockMigrations',
|
|
358
|
+
'UpgradeStarted',
|
|
359
|
+
{
|
|
360
|
+
/**
|
|
361
|
+
* The number of migrations that this upgrade contains.
|
|
362
|
+
*
|
|
363
|
+
* This can be used to design a progress indicator in combination with counting the
|
|
364
|
+
* `MigrationCompleted` and `MigrationSkipped` events.
|
|
365
|
+
**/
|
|
366
|
+
migrations: number;
|
|
367
|
+
}
|
|
368
|
+
>;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* The current runtime upgrade completed.
|
|
372
|
+
*
|
|
373
|
+
* This implies that all of its migrations completed successfully as well.
|
|
374
|
+
**/
|
|
375
|
+
UpgradeCompleted: GenericPalletEvent<'MultiBlockMigrations', 'UpgradeCompleted', null>;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Runtime upgrade failed.
|
|
379
|
+
*
|
|
380
|
+
* This is very bad and will require governance intervention.
|
|
381
|
+
**/
|
|
382
|
+
UpgradeFailed: GenericPalletEvent<'MultiBlockMigrations', 'UpgradeFailed', null>;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* A migration was skipped since it was already executed in the past.
|
|
386
|
+
**/
|
|
387
|
+
MigrationSkipped: GenericPalletEvent<
|
|
388
|
+
'MultiBlockMigrations',
|
|
389
|
+
'MigrationSkipped',
|
|
390
|
+
{
|
|
391
|
+
/**
|
|
392
|
+
* The index of the skipped migration within the [`Config::Migrations`] list.
|
|
393
|
+
**/
|
|
394
|
+
index: number;
|
|
395
|
+
}
|
|
396
|
+
>;
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* A migration progressed.
|
|
400
|
+
**/
|
|
401
|
+
MigrationAdvanced: GenericPalletEvent<
|
|
402
|
+
'MultiBlockMigrations',
|
|
403
|
+
'MigrationAdvanced',
|
|
404
|
+
{
|
|
405
|
+
/**
|
|
406
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
407
|
+
**/
|
|
408
|
+
index: number;
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* The number of blocks that this migration took so far.
|
|
412
|
+
**/
|
|
413
|
+
took: number;
|
|
414
|
+
}
|
|
415
|
+
>;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* A Migration completed.
|
|
419
|
+
**/
|
|
420
|
+
MigrationCompleted: GenericPalletEvent<
|
|
421
|
+
'MultiBlockMigrations',
|
|
422
|
+
'MigrationCompleted',
|
|
423
|
+
{
|
|
424
|
+
/**
|
|
425
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
426
|
+
**/
|
|
427
|
+
index: number;
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* The number of blocks that this migration took so far.
|
|
431
|
+
**/
|
|
432
|
+
took: number;
|
|
433
|
+
}
|
|
434
|
+
>;
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* A Migration failed.
|
|
438
|
+
*
|
|
439
|
+
* This implies that the whole upgrade failed and governance intervention is required.
|
|
440
|
+
**/
|
|
441
|
+
MigrationFailed: GenericPalletEvent<
|
|
442
|
+
'MultiBlockMigrations',
|
|
443
|
+
'MigrationFailed',
|
|
444
|
+
{
|
|
445
|
+
/**
|
|
446
|
+
* The index of the migration within the [`Config::Migrations`] list.
|
|
447
|
+
**/
|
|
448
|
+
index: number;
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* The number of blocks that this migration took so far.
|
|
452
|
+
**/
|
|
453
|
+
took: number;
|
|
454
|
+
}
|
|
455
|
+
>;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* The set of historical migrations has been cleared.
|
|
459
|
+
**/
|
|
460
|
+
HistoricCleared: GenericPalletEvent<
|
|
461
|
+
'MultiBlockMigrations',
|
|
462
|
+
'HistoricCleared',
|
|
463
|
+
{
|
|
464
|
+
/**
|
|
465
|
+
* Should be passed to `clear_historic` in a successive call.
|
|
466
|
+
**/
|
|
467
|
+
nextCursor?: Bytes | undefined;
|
|
468
|
+
}
|
|
469
|
+
>;
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* Generic pallet event
|
|
473
|
+
**/
|
|
474
|
+
[prop: string]: GenericPalletEvent;
|
|
475
|
+
};
|
|
345
476
|
/**
|
|
346
477
|
* Pallet `Balances`'s events
|
|
347
478
|
**/
|
|
@@ -407,11 +538,21 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
407
538
|
**/
|
|
408
539
|
Minted: GenericPalletEvent<'Balances', 'Minted', { who: AccountId32; amount: bigint }>;
|
|
409
540
|
|
|
541
|
+
/**
|
|
542
|
+
* Some credit was balanced and added to the TotalIssuance.
|
|
543
|
+
**/
|
|
544
|
+
MintedCredit: GenericPalletEvent<'Balances', 'MintedCredit', { amount: bigint }>;
|
|
545
|
+
|
|
410
546
|
/**
|
|
411
547
|
* Some amount was burned from an account.
|
|
412
548
|
**/
|
|
413
549
|
Burned: GenericPalletEvent<'Balances', 'Burned', { who: AccountId32; amount: bigint }>;
|
|
414
550
|
|
|
551
|
+
/**
|
|
552
|
+
* Some debt has been dropped from the Total Issuance.
|
|
553
|
+
**/
|
|
554
|
+
BurnedDebt: GenericPalletEvent<'Balances', 'BurnedDebt', { amount: bigint }>;
|
|
555
|
+
|
|
415
556
|
/**
|
|
416
557
|
* Some amount was suspended from an account (it can be restored later).
|
|
417
558
|
**/
|
|
@@ -462,6 +603,51 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
462
603
|
**/
|
|
463
604
|
TotalIssuanceForced: GenericPalletEvent<'Balances', 'TotalIssuanceForced', { old: bigint; new: bigint }>;
|
|
464
605
|
|
|
606
|
+
/**
|
|
607
|
+
* Some balance was placed on hold.
|
|
608
|
+
**/
|
|
609
|
+
Held: GenericPalletEvent<
|
|
610
|
+
'Balances',
|
|
611
|
+
'Held',
|
|
612
|
+
{ reason: AssetHubPolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
613
|
+
>;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* Held balance was burned from an account.
|
|
617
|
+
**/
|
|
618
|
+
BurnedHeld: GenericPalletEvent<
|
|
619
|
+
'Balances',
|
|
620
|
+
'BurnedHeld',
|
|
621
|
+
{ reason: AssetHubPolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
622
|
+
>;
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* A transfer of `amount` on hold from `source` to `dest` was initiated.
|
|
626
|
+
**/
|
|
627
|
+
TransferOnHold: GenericPalletEvent<
|
|
628
|
+
'Balances',
|
|
629
|
+
'TransferOnHold',
|
|
630
|
+
{ reason: AssetHubPolkadotRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; amount: bigint }
|
|
631
|
+
>;
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* The `transferred` balance is placed on hold at the `dest` account.
|
|
635
|
+
**/
|
|
636
|
+
TransferAndHold: GenericPalletEvent<
|
|
637
|
+
'Balances',
|
|
638
|
+
'TransferAndHold',
|
|
639
|
+
{ reason: AssetHubPolkadotRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; transferred: bigint }
|
|
640
|
+
>;
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* Some balance was released from hold.
|
|
644
|
+
**/
|
|
645
|
+
Released: GenericPalletEvent<
|
|
646
|
+
'Balances',
|
|
647
|
+
'Released',
|
|
648
|
+
{ reason: AssetHubPolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
649
|
+
>;
|
|
650
|
+
|
|
465
651
|
/**
|
|
466
652
|
* An unexpected/defensive event was triggered.
|
|
467
653
|
**/
|
|
@@ -1339,7 +1525,14 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1339
1525
|
PureCreated: GenericPalletEvent<
|
|
1340
1526
|
'Proxy',
|
|
1341
1527
|
'PureCreated',
|
|
1342
|
-
{
|
|
1528
|
+
{
|
|
1529
|
+
pure: AccountId32;
|
|
1530
|
+
who: AccountId32;
|
|
1531
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
1532
|
+
disambiguationIndex: number;
|
|
1533
|
+
at: number;
|
|
1534
|
+
extrinsicIndex: number;
|
|
1535
|
+
}
|
|
1343
1536
|
>;
|
|
1344
1537
|
|
|
1345
1538
|
/**
|
|
@@ -1597,6 +1790,16 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1597
1790
|
**/
|
|
1598
1791
|
Withdrawn: GenericPalletEvent<'Assets', 'Withdrawn', { assetId: number; who: AccountId32; amount: bigint }>;
|
|
1599
1792
|
|
|
1793
|
+
/**
|
|
1794
|
+
* Reserve information was set or updated for `asset_id`.
|
|
1795
|
+
**/
|
|
1796
|
+
ReservesUpdated: GenericPalletEvent<'Assets', 'ReservesUpdated', { assetId: number; reserves: Array<[]> }>;
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* Reserve information was removed for `asset_id`.
|
|
1800
|
+
**/
|
|
1801
|
+
ReservesRemoved: GenericPalletEvent<'Assets', 'ReservesRemoved', { assetId: number }>;
|
|
1802
|
+
|
|
1600
1803
|
/**
|
|
1601
1804
|
* Generic pallet event
|
|
1602
1805
|
**/
|
|
@@ -2325,6 +2528,20 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2325
2528
|
{ assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
|
|
2326
2529
|
>;
|
|
2327
2530
|
|
|
2531
|
+
/**
|
|
2532
|
+
* Reserve information was set or updated for `asset_id`.
|
|
2533
|
+
**/
|
|
2534
|
+
ReservesUpdated: GenericPalletEvent<
|
|
2535
|
+
'ForeignAssets',
|
|
2536
|
+
'ReservesUpdated',
|
|
2537
|
+
{ assetId: StagingXcmV5Location; reserves: Array<AssetsCommonLocalAndForeignAssetsForeignAssetReserveData> }
|
|
2538
|
+
>;
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* Reserve information was removed for `asset_id`.
|
|
2542
|
+
**/
|
|
2543
|
+
ReservesRemoved: GenericPalletEvent<'ForeignAssets', 'ReservesRemoved', { assetId: StagingXcmV5Location }>;
|
|
2544
|
+
|
|
2328
2545
|
/**
|
|
2329
2546
|
* Generic pallet event
|
|
2330
2547
|
**/
|
|
@@ -2501,6 +2718,16 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2501
2718
|
**/
|
|
2502
2719
|
Withdrawn: GenericPalletEvent<'PoolAssets', 'Withdrawn', { assetId: number; who: AccountId32; amount: bigint }>;
|
|
2503
2720
|
|
|
2721
|
+
/**
|
|
2722
|
+
* Reserve information was set or updated for `asset_id`.
|
|
2723
|
+
**/
|
|
2724
|
+
ReservesUpdated: GenericPalletEvent<'PoolAssets', 'ReservesUpdated', { assetId: number; reserves: Array<[]> }>;
|
|
2725
|
+
|
|
2726
|
+
/**
|
|
2727
|
+
* Reserve information was removed for `asset_id`.
|
|
2728
|
+
**/
|
|
2729
|
+
ReservesRemoved: GenericPalletEvent<'PoolAssets', 'ReservesRemoved', { assetId: number }>;
|
|
2730
|
+
|
|
2504
2731
|
/**
|
|
2505
2732
|
* Generic pallet event
|
|
2506
2733
|
**/
|
|
@@ -2811,12 +3038,12 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2811
3038
|
/**
|
|
2812
3039
|
* An account has delegated their vote to another account. \[who, target\]
|
|
2813
3040
|
**/
|
|
2814
|
-
Delegated: GenericPalletEvent<'ConvictionVoting', 'Delegated', [AccountId32, AccountId32]>;
|
|
3041
|
+
Delegated: GenericPalletEvent<'ConvictionVoting', 'Delegated', [AccountId32, AccountId32, number]>;
|
|
2815
3042
|
|
|
2816
3043
|
/**
|
|
2817
3044
|
* An \[account\] has cancelled a previous delegation operation.
|
|
2818
3045
|
**/
|
|
2819
|
-
Undelegated: GenericPalletEvent<'ConvictionVoting', 'Undelegated', AccountId32>;
|
|
3046
|
+
Undelegated: GenericPalletEvent<'ConvictionVoting', 'Undelegated', [AccountId32, number]>;
|
|
2820
3047
|
|
|
2821
3048
|
/**
|
|
2822
3049
|
* An account has voted
|
|
@@ -2824,7 +3051,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2824
3051
|
Voted: GenericPalletEvent<
|
|
2825
3052
|
'ConvictionVoting',
|
|
2826
3053
|
'Voted',
|
|
2827
|
-
{ who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
|
|
3054
|
+
{ who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number }
|
|
2828
3055
|
>;
|
|
2829
3056
|
|
|
2830
3057
|
/**
|
|
@@ -2833,7 +3060,7 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2833
3060
|
VoteRemoved: GenericPalletEvent<
|
|
2834
3061
|
'ConvictionVoting',
|
|
2835
3062
|
'VoteRemoved',
|
|
2836
|
-
{ who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
|
|
3063
|
+
{ who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number }
|
|
2837
3064
|
>;
|
|
2838
3065
|
|
|
2839
3066
|
/**
|
|
@@ -3322,6 +3549,125 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3322
3549
|
**/
|
|
3323
3550
|
[prop: string]: GenericPalletEvent;
|
|
3324
3551
|
};
|
|
3552
|
+
/**
|
|
3553
|
+
* Pallet `MultiAssetBounties`'s events
|
|
3554
|
+
**/
|
|
3555
|
+
multiAssetBounties: {
|
|
3556
|
+
/**
|
|
3557
|
+
* A new bounty was created and funding has been initiated.
|
|
3558
|
+
**/
|
|
3559
|
+
BountyCreated: GenericPalletEvent<'MultiAssetBounties', 'BountyCreated', { index: number }>;
|
|
3560
|
+
|
|
3561
|
+
/**
|
|
3562
|
+
* A new child-bounty was created and funding has been initiated.
|
|
3563
|
+
**/
|
|
3564
|
+
ChildBountyCreated: GenericPalletEvent<
|
|
3565
|
+
'MultiAssetBounties',
|
|
3566
|
+
'ChildBountyCreated',
|
|
3567
|
+
{ index: number; childIndex: number }
|
|
3568
|
+
>;
|
|
3569
|
+
|
|
3570
|
+
/**
|
|
3571
|
+
* The curator accepted role and child-/bounty became active.
|
|
3572
|
+
**/
|
|
3573
|
+
BountyBecameActive: GenericPalletEvent<
|
|
3574
|
+
'MultiAssetBounties',
|
|
3575
|
+
'BountyBecameActive',
|
|
3576
|
+
{ index: number; childIndex?: number | undefined; curator: AccountId32 }
|
|
3577
|
+
>;
|
|
3578
|
+
|
|
3579
|
+
/**
|
|
3580
|
+
* A child-/bounty was awarded to a beneficiary.
|
|
3581
|
+
**/
|
|
3582
|
+
BountyAwarded: GenericPalletEvent<
|
|
3583
|
+
'MultiAssetBounties',
|
|
3584
|
+
'BountyAwarded',
|
|
3585
|
+
{ index: number; childIndex?: number | undefined; beneficiary: ParachainsCommonPayVersionedLocatableAccount }
|
|
3586
|
+
>;
|
|
3587
|
+
|
|
3588
|
+
/**
|
|
3589
|
+
* Payout payment to the beneficiary has concluded successfully.
|
|
3590
|
+
**/
|
|
3591
|
+
BountyPayoutProcessed: GenericPalletEvent<
|
|
3592
|
+
'MultiAssetBounties',
|
|
3593
|
+
'BountyPayoutProcessed',
|
|
3594
|
+
{
|
|
3595
|
+
index: number;
|
|
3596
|
+
childIndex?: number | undefined;
|
|
3597
|
+
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
3598
|
+
value: bigint;
|
|
3599
|
+
beneficiary: ParachainsCommonPayVersionedLocatableAccount;
|
|
3600
|
+
}
|
|
3601
|
+
>;
|
|
3602
|
+
|
|
3603
|
+
/**
|
|
3604
|
+
* Funding payment has concluded successfully.
|
|
3605
|
+
**/
|
|
3606
|
+
BountyFundingProcessed: GenericPalletEvent<
|
|
3607
|
+
'MultiAssetBounties',
|
|
3608
|
+
'BountyFundingProcessed',
|
|
3609
|
+
{ index: number; childIndex?: number | undefined }
|
|
3610
|
+
>;
|
|
3611
|
+
|
|
3612
|
+
/**
|
|
3613
|
+
* Refund payment has concluded successfully.
|
|
3614
|
+
**/
|
|
3615
|
+
BountyRefundProcessed: GenericPalletEvent<
|
|
3616
|
+
'MultiAssetBounties',
|
|
3617
|
+
'BountyRefundProcessed',
|
|
3618
|
+
{ index: number; childIndex?: number | undefined }
|
|
3619
|
+
>;
|
|
3620
|
+
|
|
3621
|
+
/**
|
|
3622
|
+
* A child-/bounty was cancelled.
|
|
3623
|
+
**/
|
|
3624
|
+
BountyCanceled: GenericPalletEvent<
|
|
3625
|
+
'MultiAssetBounties',
|
|
3626
|
+
'BountyCanceled',
|
|
3627
|
+
{ index: number; childIndex?: number | undefined }
|
|
3628
|
+
>;
|
|
3629
|
+
|
|
3630
|
+
/**
|
|
3631
|
+
* A child-/bounty curator was unassigned.
|
|
3632
|
+
**/
|
|
3633
|
+
CuratorUnassigned: GenericPalletEvent<
|
|
3634
|
+
'MultiAssetBounties',
|
|
3635
|
+
'CuratorUnassigned',
|
|
3636
|
+
{ index: number; childIndex?: number | undefined }
|
|
3637
|
+
>;
|
|
3638
|
+
|
|
3639
|
+
/**
|
|
3640
|
+
* A child-/bounty curator was proposed.
|
|
3641
|
+
**/
|
|
3642
|
+
CuratorProposed: GenericPalletEvent<
|
|
3643
|
+
'MultiAssetBounties',
|
|
3644
|
+
'CuratorProposed',
|
|
3645
|
+
{ index: number; childIndex?: number | undefined; curator: AccountId32 }
|
|
3646
|
+
>;
|
|
3647
|
+
|
|
3648
|
+
/**
|
|
3649
|
+
* A payment failed and can be retried.
|
|
3650
|
+
**/
|
|
3651
|
+
PaymentFailed: GenericPalletEvent<
|
|
3652
|
+
'MultiAssetBounties',
|
|
3653
|
+
'PaymentFailed',
|
|
3654
|
+
{ index: number; childIndex?: number | undefined; paymentId: bigint }
|
|
3655
|
+
>;
|
|
3656
|
+
|
|
3657
|
+
/**
|
|
3658
|
+
* A payment happened and can be checked.
|
|
3659
|
+
**/
|
|
3660
|
+
Paid: GenericPalletEvent<
|
|
3661
|
+
'MultiAssetBounties',
|
|
3662
|
+
'Paid',
|
|
3663
|
+
{ index: number; childIndex?: number | undefined; paymentId: bigint }
|
|
3664
|
+
>;
|
|
3665
|
+
|
|
3666
|
+
/**
|
|
3667
|
+
* Generic pallet event
|
|
3668
|
+
**/
|
|
3669
|
+
[prop: string]: GenericPalletEvent;
|
|
3670
|
+
};
|
|
3325
3671
|
/**
|
|
3326
3672
|
* Pallet `StateTrieMigration`'s events
|
|
3327
3673
|
**/
|
|
@@ -3671,6 +4017,13 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3671
4017
|
{ slashSession: number; offencesCount: number }
|
|
3672
4018
|
>;
|
|
3673
4019
|
|
|
4020
|
+
/**
|
|
4021
|
+
* Fees were charged for a user operation (set_keys or purge_keys).
|
|
4022
|
+
*
|
|
4023
|
+
* The fee includes both XCM delivery fee and relay chain execution cost.
|
|
4024
|
+
**/
|
|
4025
|
+
FeesPaid: GenericPalletEvent<'StakingRcClient', 'FeesPaid', { who: AccountId32; fees: bigint }>;
|
|
4026
|
+
|
|
3674
4027
|
/**
|
|
3675
4028
|
* Something occurred that should never happen under normal operation.
|
|
3676
4029
|
* Logged as an event for fail-safe observability.
|
|
@@ -6,6 +6,7 @@ import type {
|
|
|
6
6
|
FrameSystemEventRecord,
|
|
7
7
|
AssetHubPolkadotRuntimeRuntimeCall,
|
|
8
8
|
SpRuntimeMultiSignature,
|
|
9
|
+
FrameSystemExtensionsAuthorizeCall,
|
|
9
10
|
FrameSystemExtensionsCheckNonZeroSender,
|
|
10
11
|
FrameSystemExtensionsCheckSpecVersion,
|
|
11
12
|
FrameSystemExtensionsCheckTxVersion,
|
|
@@ -34,6 +35,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
|
|
|
34
35
|
Signature: SpRuntimeMultiSignature;
|
|
35
36
|
RuntimeCall: AssetHubPolkadotRuntimeRuntimeCall;
|
|
36
37
|
Extra: [
|
|
38
|
+
FrameSystemExtensionsAuthorizeCall,
|
|
37
39
|
FrameSystemExtensionsCheckNonZeroSender,
|
|
38
40
|
FrameSystemExtensionsCheckSpecVersion,
|
|
39
41
|
FrameSystemExtensionsCheckTxVersion,
|
|
@@ -52,7 +54,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
|
|
|
52
54
|
|
|
53
55
|
/**
|
|
54
56
|
* @name: PaseoAssetHubApi
|
|
55
|
-
* @specVersion:
|
|
57
|
+
* @specVersion: 2001001
|
|
56
58
|
**/
|
|
57
59
|
export interface PaseoAssetHubApi extends GenericSubstrateApi {
|
|
58
60
|
rpc: ChainJsonRpcApis;
|