@dedot/chaintypes 0.248.0 → 0.250.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/errors.d.ts +5 -0
- package/paseo/events.d.ts +94 -16
- package/paseo/index.d.ts +1 -1
- package/paseo/json-rpc.d.ts +1 -0
- package/paseo/query.d.ts +85 -46
- package/paseo/runtime.d.ts +90 -79
- package/paseo/tx.d.ts +81 -32
- package/paseo/types.d.ts +278 -209
- 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/json-rpc.d.ts +1 -0
- 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/paseo-people/errors.d.ts +5 -0
- package/paseo-people/events.d.ts +78 -2
- package/paseo-people/index.d.ts +1 -1
- package/paseo-people/query.d.ts +44 -16
- package/paseo-people/runtime.d.ts +9 -5
- package/paseo-people/tx.d.ts +30 -0
- package/paseo-people/types.d.ts +107 -25
- package/paseo-people/view-functions.d.ts +46 -1
- 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
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
// Generated by dedot cli
|
|
2
2
|
|
|
3
3
|
import type { GenericChainEvents, GenericPalletEvent } from 'dedot/types';
|
|
4
|
-
import type { DispatchError, AccountId32, H256, FixedBytes, Bytes, Result } from 'dedot/codecs';
|
|
4
|
+
import type { DispatchError, AccountId32, H256, FixedBytes, Bytes, FixedU128, Result } from 'dedot/codecs';
|
|
5
5
|
import type {
|
|
6
6
|
FrameSystemDispatchEventInfo,
|
|
7
7
|
SpWeightsWeightV2Weight,
|
|
8
8
|
FrameSupportTokensMiscBalanceStatus,
|
|
9
|
+
PeoplePolkadotRuntimeRuntimeHoldReason,
|
|
9
10
|
PalletBalancesUnexpectedKind,
|
|
10
|
-
StagingXcmV5TraitsOutcome,
|
|
11
11
|
StagingXcmV5Location,
|
|
12
|
+
StagingXcmV5TraitsOutcome,
|
|
12
13
|
StagingXcmV5Xcm,
|
|
13
14
|
XcmV3TraitsSendError,
|
|
14
15
|
XcmV5TraitsError,
|
|
@@ -326,11 +327,21 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
326
327
|
**/
|
|
327
328
|
Minted: GenericPalletEvent<'Balances', 'Minted', { who: AccountId32; amount: bigint }>;
|
|
328
329
|
|
|
330
|
+
/**
|
|
331
|
+
* Some credit was balanced and added to the TotalIssuance.
|
|
332
|
+
**/
|
|
333
|
+
MintedCredit: GenericPalletEvent<'Balances', 'MintedCredit', { amount: bigint }>;
|
|
334
|
+
|
|
329
335
|
/**
|
|
330
336
|
* Some amount was burned from an account.
|
|
331
337
|
**/
|
|
332
338
|
Burned: GenericPalletEvent<'Balances', 'Burned', { who: AccountId32; amount: bigint }>;
|
|
333
339
|
|
|
340
|
+
/**
|
|
341
|
+
* Some debt has been dropped from the Total Issuance.
|
|
342
|
+
**/
|
|
343
|
+
BurnedDebt: GenericPalletEvent<'Balances', 'BurnedDebt', { amount: bigint }>;
|
|
344
|
+
|
|
334
345
|
/**
|
|
335
346
|
* Some amount was suspended from an account (it can be restored later).
|
|
336
347
|
**/
|
|
@@ -381,6 +392,51 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
381
392
|
**/
|
|
382
393
|
TotalIssuanceForced: GenericPalletEvent<'Balances', 'TotalIssuanceForced', { old: bigint; new: bigint }>;
|
|
383
394
|
|
|
395
|
+
/**
|
|
396
|
+
* Some balance was placed on hold.
|
|
397
|
+
**/
|
|
398
|
+
Held: GenericPalletEvent<
|
|
399
|
+
'Balances',
|
|
400
|
+
'Held',
|
|
401
|
+
{ reason: PeoplePolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
402
|
+
>;
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* Held balance was burned from an account.
|
|
406
|
+
**/
|
|
407
|
+
BurnedHeld: GenericPalletEvent<
|
|
408
|
+
'Balances',
|
|
409
|
+
'BurnedHeld',
|
|
410
|
+
{ reason: PeoplePolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
411
|
+
>;
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* A transfer of `amount` on hold from `source` to `dest` was initiated.
|
|
415
|
+
**/
|
|
416
|
+
TransferOnHold: GenericPalletEvent<
|
|
417
|
+
'Balances',
|
|
418
|
+
'TransferOnHold',
|
|
419
|
+
{ reason: PeoplePolkadotRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; amount: bigint }
|
|
420
|
+
>;
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* The `transferred` balance is placed on hold at the `dest` account.
|
|
424
|
+
**/
|
|
425
|
+
TransferAndHold: GenericPalletEvent<
|
|
426
|
+
'Balances',
|
|
427
|
+
'TransferAndHold',
|
|
428
|
+
{ reason: PeoplePolkadotRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; transferred: bigint }
|
|
429
|
+
>;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Some balance was released from hold.
|
|
433
|
+
**/
|
|
434
|
+
Released: GenericPalletEvent<
|
|
435
|
+
'Balances',
|
|
436
|
+
'Released',
|
|
437
|
+
{ reason: PeoplePolkadotRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
|
|
438
|
+
>;
|
|
439
|
+
|
|
384
440
|
/**
|
|
385
441
|
* An unexpected/defensive event was triggered.
|
|
386
442
|
**/
|
|
@@ -410,6 +466,317 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
410
466
|
**/
|
|
411
467
|
[prop: string]: GenericPalletEvent;
|
|
412
468
|
};
|
|
469
|
+
/**
|
|
470
|
+
* Pallet `Assets`'s events
|
|
471
|
+
**/
|
|
472
|
+
assets: {
|
|
473
|
+
/**
|
|
474
|
+
* Some asset class was created.
|
|
475
|
+
**/
|
|
476
|
+
Created: GenericPalletEvent<
|
|
477
|
+
'Assets',
|
|
478
|
+
'Created',
|
|
479
|
+
{ assetId: StagingXcmV5Location; creator: AccountId32; owner: AccountId32 }
|
|
480
|
+
>;
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Some assets were issued.
|
|
484
|
+
**/
|
|
485
|
+
Issued: GenericPalletEvent<
|
|
486
|
+
'Assets',
|
|
487
|
+
'Issued',
|
|
488
|
+
{ assetId: StagingXcmV5Location; owner: AccountId32; amount: bigint }
|
|
489
|
+
>;
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* Some assets were transferred.
|
|
493
|
+
**/
|
|
494
|
+
Transferred: GenericPalletEvent<
|
|
495
|
+
'Assets',
|
|
496
|
+
'Transferred',
|
|
497
|
+
{ assetId: StagingXcmV5Location; from: AccountId32; to: AccountId32; amount: bigint }
|
|
498
|
+
>;
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* Some assets were destroyed.
|
|
502
|
+
**/
|
|
503
|
+
Burned: GenericPalletEvent<
|
|
504
|
+
'Assets',
|
|
505
|
+
'Burned',
|
|
506
|
+
{ assetId: StagingXcmV5Location; owner: AccountId32; balance: bigint }
|
|
507
|
+
>;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* The management team changed.
|
|
511
|
+
**/
|
|
512
|
+
TeamChanged: GenericPalletEvent<
|
|
513
|
+
'Assets',
|
|
514
|
+
'TeamChanged',
|
|
515
|
+
{ assetId: StagingXcmV5Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 }
|
|
516
|
+
>;
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* The owner changed.
|
|
520
|
+
**/
|
|
521
|
+
OwnerChanged: GenericPalletEvent<'Assets', 'OwnerChanged', { assetId: StagingXcmV5Location; owner: AccountId32 }>;
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* Some account `who` was frozen.
|
|
525
|
+
**/
|
|
526
|
+
Frozen: GenericPalletEvent<'Assets', 'Frozen', { assetId: StagingXcmV5Location; who: AccountId32 }>;
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* Some account `who` was thawed.
|
|
530
|
+
**/
|
|
531
|
+
Thawed: GenericPalletEvent<'Assets', 'Thawed', { assetId: StagingXcmV5Location; who: AccountId32 }>;
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* Some asset `asset_id` was frozen.
|
|
535
|
+
**/
|
|
536
|
+
AssetFrozen: GenericPalletEvent<'Assets', 'AssetFrozen', { assetId: StagingXcmV5Location }>;
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* Some asset `asset_id` was thawed.
|
|
540
|
+
**/
|
|
541
|
+
AssetThawed: GenericPalletEvent<'Assets', 'AssetThawed', { assetId: StagingXcmV5Location }>;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Accounts were destroyed for given asset.
|
|
545
|
+
**/
|
|
546
|
+
AccountsDestroyed: GenericPalletEvent<
|
|
547
|
+
'Assets',
|
|
548
|
+
'AccountsDestroyed',
|
|
549
|
+
{ assetId: StagingXcmV5Location; accountsDestroyed: number; accountsRemaining: number }
|
|
550
|
+
>;
|
|
551
|
+
|
|
552
|
+
/**
|
|
553
|
+
* Approvals were destroyed for given asset.
|
|
554
|
+
**/
|
|
555
|
+
ApprovalsDestroyed: GenericPalletEvent<
|
|
556
|
+
'Assets',
|
|
557
|
+
'ApprovalsDestroyed',
|
|
558
|
+
{ assetId: StagingXcmV5Location; approvalsDestroyed: number; approvalsRemaining: number }
|
|
559
|
+
>;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* An asset class is in the process of being destroyed.
|
|
563
|
+
**/
|
|
564
|
+
DestructionStarted: GenericPalletEvent<'Assets', 'DestructionStarted', { assetId: StagingXcmV5Location }>;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* An asset class was destroyed.
|
|
568
|
+
**/
|
|
569
|
+
Destroyed: GenericPalletEvent<'Assets', 'Destroyed', { assetId: StagingXcmV5Location }>;
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* Some asset class was force-created.
|
|
573
|
+
**/
|
|
574
|
+
ForceCreated: GenericPalletEvent<'Assets', 'ForceCreated', { assetId: StagingXcmV5Location; owner: AccountId32 }>;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* New metadata has been set for an asset.
|
|
578
|
+
**/
|
|
579
|
+
MetadataSet: GenericPalletEvent<
|
|
580
|
+
'Assets',
|
|
581
|
+
'MetadataSet',
|
|
582
|
+
{ assetId: StagingXcmV5Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean }
|
|
583
|
+
>;
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Metadata has been cleared for an asset.
|
|
587
|
+
**/
|
|
588
|
+
MetadataCleared: GenericPalletEvent<'Assets', 'MetadataCleared', { assetId: StagingXcmV5Location }>;
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* (Additional) funds have been approved for transfer to a destination account.
|
|
592
|
+
**/
|
|
593
|
+
ApprovedTransfer: GenericPalletEvent<
|
|
594
|
+
'Assets',
|
|
595
|
+
'ApprovedTransfer',
|
|
596
|
+
{ assetId: StagingXcmV5Location; source: AccountId32; delegate: AccountId32; amount: bigint }
|
|
597
|
+
>;
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* An approval for account `delegate` was cancelled by `owner`.
|
|
601
|
+
**/
|
|
602
|
+
ApprovalCancelled: GenericPalletEvent<
|
|
603
|
+
'Assets',
|
|
604
|
+
'ApprovalCancelled',
|
|
605
|
+
{ assetId: StagingXcmV5Location; owner: AccountId32; delegate: AccountId32 }
|
|
606
|
+
>;
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* An `amount` was transferred in its entirety from `owner` to `destination` by
|
|
610
|
+
* the approved `delegate`.
|
|
611
|
+
**/
|
|
612
|
+
TransferredApproved: GenericPalletEvent<
|
|
613
|
+
'Assets',
|
|
614
|
+
'TransferredApproved',
|
|
615
|
+
{
|
|
616
|
+
assetId: StagingXcmV5Location;
|
|
617
|
+
owner: AccountId32;
|
|
618
|
+
delegate: AccountId32;
|
|
619
|
+
destination: AccountId32;
|
|
620
|
+
amount: bigint;
|
|
621
|
+
}
|
|
622
|
+
>;
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* An asset has had its attributes changed by the `Force` origin.
|
|
626
|
+
**/
|
|
627
|
+
AssetStatusChanged: GenericPalletEvent<'Assets', 'AssetStatusChanged', { assetId: StagingXcmV5Location }>;
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* The min_balance of an asset has been updated by the asset owner.
|
|
631
|
+
**/
|
|
632
|
+
AssetMinBalanceChanged: GenericPalletEvent<
|
|
633
|
+
'Assets',
|
|
634
|
+
'AssetMinBalanceChanged',
|
|
635
|
+
{ assetId: StagingXcmV5Location; newMinBalance: bigint }
|
|
636
|
+
>;
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* Some account `who` was created with a deposit from `depositor`.
|
|
640
|
+
**/
|
|
641
|
+
Touched: GenericPalletEvent<
|
|
642
|
+
'Assets',
|
|
643
|
+
'Touched',
|
|
644
|
+
{ assetId: StagingXcmV5Location; who: AccountId32; depositor: AccountId32 }
|
|
645
|
+
>;
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* Some account `who` was blocked.
|
|
649
|
+
**/
|
|
650
|
+
Blocked: GenericPalletEvent<'Assets', 'Blocked', { assetId: StagingXcmV5Location; who: AccountId32 }>;
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* Some assets were deposited (e.g. for transaction fees).
|
|
654
|
+
**/
|
|
655
|
+
Deposited: GenericPalletEvent<
|
|
656
|
+
'Assets',
|
|
657
|
+
'Deposited',
|
|
658
|
+
{ assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
|
|
659
|
+
>;
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* Some assets were withdrawn from the account (e.g. for transaction fees).
|
|
663
|
+
**/
|
|
664
|
+
Withdrawn: GenericPalletEvent<
|
|
665
|
+
'Assets',
|
|
666
|
+
'Withdrawn',
|
|
667
|
+
{ assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
|
|
668
|
+
>;
|
|
669
|
+
|
|
670
|
+
/**
|
|
671
|
+
* Reserve information was set or updated for `asset_id`.
|
|
672
|
+
**/
|
|
673
|
+
ReservesUpdated: GenericPalletEvent<
|
|
674
|
+
'Assets',
|
|
675
|
+
'ReservesUpdated',
|
|
676
|
+
{ assetId: StagingXcmV5Location; reserves: Array<[]> }
|
|
677
|
+
>;
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* Reserve information was removed for `asset_id`.
|
|
681
|
+
**/
|
|
682
|
+
ReservesRemoved: GenericPalletEvent<'Assets', 'ReservesRemoved', { assetId: StagingXcmV5Location }>;
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* Generic pallet event
|
|
686
|
+
**/
|
|
687
|
+
[prop: string]: GenericPalletEvent;
|
|
688
|
+
};
|
|
689
|
+
/**
|
|
690
|
+
* Pallet `AssetRate`'s events
|
|
691
|
+
**/
|
|
692
|
+
assetRate: {
|
|
693
|
+
AssetRateCreated: GenericPalletEvent<
|
|
694
|
+
'AssetRate',
|
|
695
|
+
'AssetRateCreated',
|
|
696
|
+
{ assetKind: StagingXcmV5Location; rate: FixedU128 }
|
|
697
|
+
>;
|
|
698
|
+
AssetRateRemoved: GenericPalletEvent<'AssetRate', 'AssetRateRemoved', { assetKind: StagingXcmV5Location }>;
|
|
699
|
+
AssetRateUpdated: GenericPalletEvent<
|
|
700
|
+
'AssetRate',
|
|
701
|
+
'AssetRateUpdated',
|
|
702
|
+
{ assetKind: StagingXcmV5Location; old: FixedU128; new: FixedU128 }
|
|
703
|
+
>;
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* Generic pallet event
|
|
707
|
+
**/
|
|
708
|
+
[prop: string]: GenericPalletEvent;
|
|
709
|
+
};
|
|
710
|
+
/**
|
|
711
|
+
* Pallet `AssetTxPayment`'s events
|
|
712
|
+
**/
|
|
713
|
+
assetTxPayment: {
|
|
714
|
+
/**
|
|
715
|
+
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
|
716
|
+
* has been paid by `who` in an asset `asset_id`.
|
|
717
|
+
**/
|
|
718
|
+
AssetTxFeePaid: GenericPalletEvent<
|
|
719
|
+
'AssetTxPayment',
|
|
720
|
+
'AssetTxFeePaid',
|
|
721
|
+
{ who: AccountId32; actualFee: bigint; tip: bigint; assetId?: StagingXcmV5Location | undefined }
|
|
722
|
+
>;
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* Generic pallet event
|
|
726
|
+
**/
|
|
727
|
+
[prop: string]: GenericPalletEvent;
|
|
728
|
+
};
|
|
729
|
+
/**
|
|
730
|
+
* Pallet `AssetsHolder`'s events
|
|
731
|
+
**/
|
|
732
|
+
assetsHolder: {
|
|
733
|
+
/**
|
|
734
|
+
* `who`s balance on hold was increased by `amount`.
|
|
735
|
+
**/
|
|
736
|
+
Held: GenericPalletEvent<
|
|
737
|
+
'AssetsHolder',
|
|
738
|
+
'Held',
|
|
739
|
+
{
|
|
740
|
+
who: AccountId32;
|
|
741
|
+
assetId: StagingXcmV5Location;
|
|
742
|
+
reason: PeoplePolkadotRuntimeRuntimeHoldReason;
|
|
743
|
+
amount: bigint;
|
|
744
|
+
}
|
|
745
|
+
>;
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* `who`s balance on hold was decreased by `amount`.
|
|
749
|
+
**/
|
|
750
|
+
Released: GenericPalletEvent<
|
|
751
|
+
'AssetsHolder',
|
|
752
|
+
'Released',
|
|
753
|
+
{
|
|
754
|
+
who: AccountId32;
|
|
755
|
+
assetId: StagingXcmV5Location;
|
|
756
|
+
reason: PeoplePolkadotRuntimeRuntimeHoldReason;
|
|
757
|
+
amount: bigint;
|
|
758
|
+
}
|
|
759
|
+
>;
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* `who`s balance on hold was burned by `amount`.
|
|
763
|
+
**/
|
|
764
|
+
Burned: GenericPalletEvent<
|
|
765
|
+
'AssetsHolder',
|
|
766
|
+
'Burned',
|
|
767
|
+
{
|
|
768
|
+
who: AccountId32;
|
|
769
|
+
assetId: StagingXcmV5Location;
|
|
770
|
+
reason: PeoplePolkadotRuntimeRuntimeHoldReason;
|
|
771
|
+
amount: bigint;
|
|
772
|
+
}
|
|
773
|
+
>;
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* Generic pallet event
|
|
777
|
+
**/
|
|
778
|
+
[prop: string]: GenericPalletEvent;
|
|
779
|
+
};
|
|
413
780
|
/**
|
|
414
781
|
* Pallet `CollatorSelection`'s events
|
|
415
782
|
**/
|
|
@@ -1122,7 +1489,14 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1122
1489
|
PureCreated: GenericPalletEvent<
|
|
1123
1490
|
'Proxy',
|
|
1124
1491
|
'PureCreated',
|
|
1125
|
-
{
|
|
1492
|
+
{
|
|
1493
|
+
pure: AccountId32;
|
|
1494
|
+
who: AccountId32;
|
|
1495
|
+
proxyType: PeoplePolkadotRuntimeProxyType;
|
|
1496
|
+
disambiguationIndex: number;
|
|
1497
|
+
at: number;
|
|
1498
|
+
extrinsicIndex: number;
|
|
1499
|
+
}
|
|
1126
1500
|
>;
|
|
1127
1501
|
|
|
1128
1502
|
/**
|
|
@@ -13,8 +13,9 @@ import type {
|
|
|
13
13
|
FrameSystemExtensionsCheckMortality,
|
|
14
14
|
FrameSystemExtensionsCheckNonce,
|
|
15
15
|
FrameSystemExtensionsCheckWeight,
|
|
16
|
-
|
|
16
|
+
PalletAssetTxPaymentChargeAssetTxPayment,
|
|
17
17
|
FrameMetadataHashExtensionCheckMetadataHash,
|
|
18
|
+
StagingXcmV5Location,
|
|
18
19
|
} from './types.js';
|
|
19
20
|
import { ChainConsts } from './consts.js';
|
|
20
21
|
import { ChainStorage } from './query.js';
|
|
@@ -39,17 +40,17 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
|
|
|
39
40
|
FrameSystemExtensionsCheckMortality,
|
|
40
41
|
FrameSystemExtensionsCheckNonce,
|
|
41
42
|
FrameSystemExtensionsCheckWeight,
|
|
42
|
-
|
|
43
|
+
PalletAssetTxPaymentChargeAssetTxPayment,
|
|
43
44
|
FrameMetadataHashExtensionCheckMetadataHash,
|
|
44
45
|
[],
|
|
45
46
|
];
|
|
46
|
-
AssetId:
|
|
47
|
+
AssetId: StagingXcmV5Location;
|
|
47
48
|
EventRecord: FrameSystemEventRecord;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
/**
|
|
51
52
|
* @name: PolkadotPeopleApi
|
|
52
|
-
* @specVersion:
|
|
53
|
+
* @specVersion: 2001001
|
|
53
54
|
**/
|
|
54
55
|
export interface PolkadotPeopleApi extends GenericSubstrateApi {
|
|
55
56
|
rpc: ChainJsonRpcApis;
|