@argonprotocol/mainchain 0.0.3 → 0.0.5
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/lib/cjs/interfaces/augment-api-errors.d.ts +1 -9
- package/lib/cjs/interfaces/augment-api-events.d.ts +11 -11
- package/lib/cjs/interfaces/augment-api-query.d.ts +4 -5
- package/lib/cjs/interfaces/augment-api-tx.d.ts +4 -4
- package/lib/cjs/interfaces/lookup.d.ts +68 -72
- package/lib/cjs/interfaces/lookup.js +75 -79
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +8 -8
- package/lib/cjs/interfaces/types-lookup.d.ts +82 -88
- package/lib/esm/interfaces/augment-api-errors.d.ts +1 -9
- package/lib/esm/interfaces/augment-api-events.d.ts +11 -11
- package/lib/esm/interfaces/augment-api-query.d.ts +4 -5
- package/lib/esm/interfaces/augment-api-tx.d.ts +4 -4
- package/lib/esm/interfaces/lookup.d.ts +68 -72
- package/lib/esm/interfaces/lookup.js +75 -79
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +8 -8
- package/lib/esm/interfaces/types-lookup.d.ts +82 -88
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/interfaces/augment-api-errors.d.ts +1 -9
- package/lib/types/interfaces/augment-api-events.d.ts +11 -11
- package/lib/types/interfaces/augment-api-query.d.ts +4 -5
- package/lib/types/interfaces/augment-api-tx.d.ts +4 -4
- package/lib/types/interfaces/lookup.d.ts +68 -72
- package/lib/types/interfaces/registry.d.ts +8 -8
- package/lib/types/interfaces/types-lookup.d.ts +82 -88
- package/package.json +1 -1
|
@@ -129,10 +129,6 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
129
129
|
* The merkle proof of vote inclusion in the notebook is invalid
|
|
130
130
|
**/
|
|
131
131
|
InvalidBlockVoteProof: AugmentedError<ApiType>;
|
|
132
|
-
/**
|
|
133
|
-
* The data domain account is mismatched with the block reward seeker
|
|
134
|
-
**/
|
|
135
|
-
InvalidDataDomainAccount: AugmentedError<ApiType>;
|
|
136
132
|
/**
|
|
137
133
|
* Vote not submitted by the right miner
|
|
138
134
|
**/
|
|
@@ -173,10 +169,6 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
173
169
|
* The block author is not a registered miner
|
|
174
170
|
**/
|
|
175
171
|
UnregisteredBlockAuthor: AugmentedError<ApiType>;
|
|
176
|
-
/**
|
|
177
|
-
* The data domain was not registered
|
|
178
|
-
**/
|
|
179
|
-
UnregisteredDataDomain: AugmentedError<ApiType>;
|
|
180
172
|
};
|
|
181
173
|
blockSealSpec: {
|
|
182
174
|
/**
|
|
@@ -281,7 +273,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
281
273
|
**/
|
|
282
274
|
NotebookIncludesExpiredLocalchainTransfer: AugmentedError<ApiType>;
|
|
283
275
|
};
|
|
284
|
-
|
|
276
|
+
domain: {
|
|
285
277
|
/**
|
|
286
278
|
* Error decoding account from notary
|
|
287
279
|
**/
|
|
@@ -3,7 +3,7 @@ import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
|
|
|
3
3
|
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
|
|
4
4
|
import type { ITuple } from '@polkadot/types-codec/types';
|
|
5
5
|
import type { AccountId32, H256 } from '@polkadot/types/interfaces/runtime';
|
|
6
|
-
import type { ArgonNodeRuntimeProxyType, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBondBondExpiration, ArgonPrimitivesBondBondType,
|
|
6
|
+
import type { ArgonNodeRuntimeProxyType, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBondBondExpiration, ArgonPrimitivesBondBondType, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryRecord, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, PalletDomainsDomainRegistration, PalletMintMintType, PalletMultisigTimepoint, SpConsensusGrandpaAppPublic, SpRuntimeDispatchError } from '@polkadot/types/lookup';
|
|
7
7
|
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
|
|
8
8
|
declare module '@polkadot/api-base/types/events' {
|
|
9
9
|
interface AugmentedEvents<ApiType extends ApiTypes> {
|
|
@@ -352,32 +352,32 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
352
352
|
error: SpRuntimeDispatchError;
|
|
353
353
|
}>;
|
|
354
354
|
};
|
|
355
|
-
|
|
355
|
+
domain: {
|
|
356
356
|
/**
|
|
357
357
|
* A data domain was expired
|
|
358
358
|
**/
|
|
359
|
-
|
|
359
|
+
DomainExpired: AugmentedEvent<ApiType, [domainHash: H256], {
|
|
360
360
|
domainHash: H256;
|
|
361
361
|
}>;
|
|
362
362
|
/**
|
|
363
363
|
* A data domain was registered
|
|
364
364
|
**/
|
|
365
|
-
|
|
365
|
+
DomainRegistered: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
|
|
366
366
|
domainHash: H256;
|
|
367
|
-
registration:
|
|
367
|
+
registration: PalletDomainsDomainRegistration;
|
|
368
368
|
}>;
|
|
369
369
|
/**
|
|
370
370
|
* A data domain registration was canceled due to a conflicting registration in the same
|
|
371
371
|
* tick
|
|
372
372
|
**/
|
|
373
|
-
|
|
373
|
+
DomainRegistrationCanceled: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
|
|
374
374
|
domainHash: H256;
|
|
375
|
-
registration:
|
|
375
|
+
registration: PalletDomainsDomainRegistration;
|
|
376
376
|
}>;
|
|
377
377
|
/**
|
|
378
378
|
* A data domain registration failed due to an error
|
|
379
379
|
**/
|
|
380
|
-
|
|
380
|
+
DomainRegistrationError: AugmentedEvent<ApiType, [domainHash: H256, accountId: AccountId32, error: SpRuntimeDispatchError], {
|
|
381
381
|
domainHash: H256;
|
|
382
382
|
accountId: AccountId32;
|
|
383
383
|
error: SpRuntimeDispatchError;
|
|
@@ -385,15 +385,15 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
385
385
|
/**
|
|
386
386
|
* A data domain was registered
|
|
387
387
|
**/
|
|
388
|
-
|
|
388
|
+
DomainRenewed: AugmentedEvent<ApiType, [domainHash: H256], {
|
|
389
389
|
domainHash: H256;
|
|
390
390
|
}>;
|
|
391
391
|
/**
|
|
392
392
|
* A data domain zone record was updated
|
|
393
393
|
**/
|
|
394
|
-
ZoneRecordUpdated: AugmentedEvent<ApiType, [domainHash: H256, zoneRecord:
|
|
394
|
+
ZoneRecordUpdated: AugmentedEvent<ApiType, [domainHash: H256, zoneRecord: ArgonPrimitivesDomainZoneRecord], {
|
|
395
395
|
domainHash: H256;
|
|
396
|
-
zoneRecord:
|
|
396
|
+
zoneRecord: ArgonPrimitivesDomainZoneRecord;
|
|
397
397
|
}>;
|
|
398
398
|
};
|
|
399
399
|
grandpa: {
|
|
@@ -3,7 +3,7 @@ import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/
|
|
|
3
3
|
import type { BTreeMap, Bytes, Null, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
|
|
4
4
|
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
|
|
5
5
|
import type { AccountId32, H256 } from '@polkadot/types/interfaces/runtime';
|
|
6
|
-
import type { ArgonNodeRuntimeOpaqueSessionKeys, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealAppPublic, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBond, ArgonPrimitivesBondVault,
|
|
6
|
+
import type { ArgonNodeRuntimeOpaqueSessionKeys, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealAppPublic, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBond, ArgonPrimitivesBondVault, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesTickTicker, FrameSupportDispatchPerDispatchClassWeight, FrameSupportTokensMiscIdAmountRuntimeFreezeReason, FrameSupportTokensMiscIdAmountRuntimeHoldReason, FrameSystemAccountInfo, FrameSystemCodeUpgradeAuthorization, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletBondUtxoCosignRequest, PalletBondUtxoState, PalletChainTransferQueuedTransferOut, PalletDomainsDomainRegistration, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletMultisigMultisig, PalletPriceIndexPriceIndex, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletTransactionPaymentReleases, SpConsensusGrandpaAppPublic, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpStakingOffenceOffenceDetails } from '@polkadot/types/lookup';
|
|
7
7
|
import type { Observable } from '@polkadot/types/types';
|
|
8
8
|
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
|
|
9
9
|
export type __QueryableStorageEntry<ApiType extends ApiTypes> = QueryableStorageEntry<ApiType>;
|
|
@@ -206,11 +206,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
206
206
|
pendingTransfersOut: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletChainTransferQueuedTransferOut>>, [u32]>;
|
|
207
207
|
transfersUsedInBlockNotebooks: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u32]>>>, [u32]>;
|
|
208
208
|
};
|
|
209
|
-
|
|
210
|
-
domainPaymentAddressHistory: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u32]>>>, [H256]>;
|
|
209
|
+
domain: {
|
|
211
210
|
expiringDomainsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [u32]>;
|
|
212
|
-
|
|
213
|
-
zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<
|
|
211
|
+
registeredDomains: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletDomainsDomainRegistration>>, [H256]>;
|
|
212
|
+
zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<ArgonPrimitivesDomainZoneRecord>>, [H256]>;
|
|
214
213
|
};
|
|
215
214
|
grandpa: {
|
|
216
215
|
/**
|
|
@@ -3,7 +3,7 @@ import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableE
|
|
|
3
3
|
import type { Bytes, Compact, Option, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
|
|
4
4
|
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
|
|
5
5
|
import type { AccountId32, Call, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
|
|
6
|
-
import type { ArgonNodeRuntimeOpaqueSessionKeys, ArgonNodeRuntimeOriginCaller, ArgonNodeRuntimeProxyType, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesBondVaultTerms,
|
|
6
|
+
import type { ArgonNodeRuntimeOpaqueSessionKeys, ArgonNodeRuntimeOriginCaller, ArgonNodeRuntimeProxyType, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesBondVaultTerms, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotebookSignedNotebookHeader, PalletBalancesAdjustmentDirection, PalletMiningSlotMiningSlotBid, PalletMultisigTimepoint, PalletPriceIndexPriceIndex, PalletVaultsVaultConfig, SpConsensusGrandpaEquivocationProof, SpSessionMembershipProof, SpWeightsWeightV2Weight } from '@polkadot/types/lookup';
|
|
7
7
|
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
|
|
8
8
|
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
|
|
9
9
|
export type __SubmittableExtrinsicFunction<ApiType extends ApiTypes> = SubmittableExtrinsicFunction<ApiType>;
|
|
@@ -232,12 +232,12 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
232
232
|
chainTransfer: {
|
|
233
233
|
sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, u32]>;
|
|
234
234
|
};
|
|
235
|
-
|
|
236
|
-
setZoneRecord: AugmentedSubmittable<(domainHash: H256 | string | Uint8Array, zoneRecord:
|
|
235
|
+
domain: {
|
|
236
|
+
setZoneRecord: AugmentedSubmittable<(domainHash: H256 | string | Uint8Array, zoneRecord: ArgonPrimitivesDomainZoneRecord | {
|
|
237
237
|
paymentAccount?: any;
|
|
238
238
|
notaryId?: any;
|
|
239
239
|
versions?: any;
|
|
240
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256,
|
|
240
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, ArgonPrimitivesDomainZoneRecord]>;
|
|
241
241
|
};
|
|
242
242
|
grandpa: {
|
|
243
243
|
/**
|
|
@@ -595,17 +595,17 @@ declare const _default: {
|
|
|
595
595
|
NotebookTooOld: string;
|
|
596
596
|
CatchupNotebooksMissing: string;
|
|
597
597
|
DecodeError: string;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
598
|
+
AccountChannelHoldDoesntExist: string;
|
|
599
|
+
AccountAlreadyHasChannelHold: string;
|
|
600
|
+
ChannelHoldNotReadyForClaim: {
|
|
601
601
|
currentTick: string;
|
|
602
602
|
claimTick: string;
|
|
603
603
|
};
|
|
604
604
|
AccountLocked: string;
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
605
|
+
MissingChannelHoldNote: string;
|
|
606
|
+
InvalidChannelHoldNote: string;
|
|
607
|
+
InvalidChannelHoldClaimers: string;
|
|
608
|
+
ChannelHoldNoteBelowMinimum: string;
|
|
609
609
|
InvalidTaxNoteAccount: string;
|
|
610
610
|
InvalidTaxOperation: string;
|
|
611
611
|
InsufficientTaxIncluded: {
|
|
@@ -624,8 +624,6 @@ declare const _default: {
|
|
|
624
624
|
InvalidComputeProof: string;
|
|
625
625
|
InvalidBlockVoteSource: string;
|
|
626
626
|
InsufficientBlockVoteMinimum: string;
|
|
627
|
-
BlockVoteDataDomainMismatch: string;
|
|
628
|
-
BlockVoteEscrowReused: string;
|
|
629
627
|
};
|
|
630
628
|
};
|
|
631
629
|
/**
|
|
@@ -709,29 +707,29 @@ declare const _default: {
|
|
|
709
707
|
};
|
|
710
708
|
};
|
|
711
709
|
/**
|
|
712
|
-
* Lookup77:
|
|
710
|
+
* Lookup77: pallet_domains::pallet::Event<T>
|
|
713
711
|
**/
|
|
714
|
-
|
|
712
|
+
PalletDomainsEvent: {
|
|
715
713
|
_enum: {
|
|
716
714
|
ZoneRecordUpdated: {
|
|
717
715
|
domainHash: string;
|
|
718
716
|
zoneRecord: string;
|
|
719
717
|
};
|
|
720
|
-
|
|
718
|
+
DomainRegistered: {
|
|
721
719
|
domainHash: string;
|
|
722
720
|
registration: string;
|
|
723
721
|
};
|
|
724
|
-
|
|
722
|
+
DomainRenewed: {
|
|
725
723
|
domainHash: string;
|
|
726
724
|
};
|
|
727
|
-
|
|
725
|
+
DomainExpired: {
|
|
728
726
|
domainHash: string;
|
|
729
727
|
};
|
|
730
|
-
|
|
728
|
+
DomainRegistrationCanceled: {
|
|
731
729
|
domainHash: string;
|
|
732
730
|
registration: string;
|
|
733
731
|
};
|
|
734
|
-
|
|
732
|
+
DomainRegistrationError: {
|
|
735
733
|
domainHash: string;
|
|
736
734
|
accountId: string;
|
|
737
735
|
error: string;
|
|
@@ -739,32 +737,32 @@ declare const _default: {
|
|
|
739
737
|
};
|
|
740
738
|
};
|
|
741
739
|
/**
|
|
742
|
-
* Lookup78: argon_primitives::
|
|
740
|
+
* Lookup78: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
|
|
743
741
|
**/
|
|
744
|
-
|
|
742
|
+
ArgonPrimitivesDomainZoneRecord: {
|
|
745
743
|
paymentAccount: string;
|
|
746
744
|
notaryId: string;
|
|
747
745
|
versions: string;
|
|
748
746
|
};
|
|
749
747
|
/**
|
|
750
|
-
* Lookup80: argon_primitives::
|
|
748
|
+
* Lookup80: argon_primitives::domain::Semver
|
|
751
749
|
**/
|
|
752
|
-
|
|
750
|
+
ArgonPrimitivesDomainSemver: {
|
|
753
751
|
major: string;
|
|
754
752
|
minor: string;
|
|
755
753
|
patch: string;
|
|
756
754
|
};
|
|
757
755
|
/**
|
|
758
|
-
* Lookup81: argon_primitives::
|
|
756
|
+
* Lookup81: argon_primitives::domain::VersionHost
|
|
759
757
|
**/
|
|
760
|
-
|
|
758
|
+
ArgonPrimitivesDomainVersionHost: {
|
|
761
759
|
datastoreId: string;
|
|
762
760
|
host: string;
|
|
763
761
|
};
|
|
764
762
|
/**
|
|
765
|
-
* Lookup85:
|
|
763
|
+
* Lookup85: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
|
|
766
764
|
**/
|
|
767
|
-
|
|
765
|
+
PalletDomainsDomainRegistration: {
|
|
768
766
|
accountId: string;
|
|
769
767
|
registeredAtTick: string;
|
|
770
768
|
};
|
|
@@ -1470,7 +1468,7 @@ declare const _default: {
|
|
|
1470
1468
|
blockVotingPower: string;
|
|
1471
1469
|
secretHash: string;
|
|
1472
1470
|
parentSecret: string;
|
|
1473
|
-
|
|
1471
|
+
domains: string;
|
|
1474
1472
|
};
|
|
1475
1473
|
/**
|
|
1476
1474
|
* Lookup178: argon_primitives::notebook::ChainTransfer
|
|
@@ -1516,9 +1514,9 @@ declare const _default: {
|
|
|
1516
1514
|
};
|
|
1517
1515
|
};
|
|
1518
1516
|
/**
|
|
1519
|
-
* Lookup191:
|
|
1517
|
+
* Lookup191: pallet_domains::pallet::Call<T>
|
|
1520
1518
|
**/
|
|
1521
|
-
|
|
1519
|
+
PalletDomainsCall: {
|
|
1522
1520
|
_enum: {
|
|
1523
1521
|
set_zone_record: {
|
|
1524
1522
|
domainHash: string;
|
|
@@ -1616,8 +1614,6 @@ declare const _default: {
|
|
|
1616
1614
|
blockHash: string;
|
|
1617
1615
|
index: string;
|
|
1618
1616
|
power: string;
|
|
1619
|
-
dataDomainHash: string;
|
|
1620
|
-
dataDomainAccount: string;
|
|
1621
1617
|
signature: string;
|
|
1622
1618
|
blockRewardsAccountId: string;
|
|
1623
1619
|
};
|
|
@@ -1896,7 +1892,7 @@ declare const _default: {
|
|
|
1896
1892
|
ArgonPrimitivesTickTicker: {
|
|
1897
1893
|
tickDurationMillis: string;
|
|
1898
1894
|
genesisUtcTime: string;
|
|
1899
|
-
|
|
1895
|
+
channelHoldExpirationTicks: string;
|
|
1900
1896
|
};
|
|
1901
1897
|
/**
|
|
1902
1898
|
* Lookup243: pallet_ticks::pallet::Error<T>
|
|
@@ -2178,52 +2174,52 @@ declare const _default: {
|
|
|
2178
2174
|
_enum: string[];
|
|
2179
2175
|
};
|
|
2180
2176
|
/**
|
|
2181
|
-
*
|
|
2177
|
+
* Lookup328: pallet_domains::pallet::Error<T>
|
|
2182
2178
|
**/
|
|
2183
|
-
|
|
2179
|
+
PalletDomainsError: {
|
|
2184
2180
|
_enum: string[];
|
|
2185
2181
|
};
|
|
2186
2182
|
/**
|
|
2187
|
-
*
|
|
2183
|
+
* Lookup329: pallet_price_index::pallet::Error<T>
|
|
2188
2184
|
**/
|
|
2189
2185
|
PalletPriceIndexError: {
|
|
2190
2186
|
_enum: string[];
|
|
2191
2187
|
};
|
|
2192
2188
|
/**
|
|
2193
|
-
*
|
|
2189
|
+
* Lookup334: sp_core::crypto::KeyTypeId
|
|
2194
2190
|
**/
|
|
2195
2191
|
SpCoreCryptoKeyTypeId: string;
|
|
2196
2192
|
/**
|
|
2197
|
-
*
|
|
2193
|
+
* Lookup335: pallet_session::pallet::Error<T>
|
|
2198
2194
|
**/
|
|
2199
2195
|
PalletSessionError: {
|
|
2200
2196
|
_enum: string[];
|
|
2201
2197
|
};
|
|
2202
2198
|
/**
|
|
2203
|
-
*
|
|
2199
|
+
* Lookup336: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2204
2200
|
**/
|
|
2205
2201
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2206
2202
|
blockAuthorAccountId: string;
|
|
2207
2203
|
blockVoteRewardsAccount: string;
|
|
2208
2204
|
};
|
|
2209
2205
|
/**
|
|
2210
|
-
*
|
|
2206
|
+
* Lookup337: argon_primitives::digests::ParentVotingKeyDigest
|
|
2211
2207
|
**/
|
|
2212
2208
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
2213
2209
|
parentVotingKey: string;
|
|
2214
2210
|
};
|
|
2215
2211
|
/**
|
|
2216
|
-
*
|
|
2212
|
+
* Lookup338: pallet_block_seal::pallet::Error<T>
|
|
2217
2213
|
**/
|
|
2218
2214
|
PalletBlockSealError: {
|
|
2219
2215
|
_enum: string[];
|
|
2220
2216
|
};
|
|
2221
2217
|
/**
|
|
2222
|
-
*
|
|
2218
|
+
* Lookup340: pallet_block_rewards::pallet::Error<T>
|
|
2223
2219
|
**/
|
|
2224
2220
|
PalletBlockRewardsError: string;
|
|
2225
2221
|
/**
|
|
2226
|
-
*
|
|
2222
|
+
* Lookup341: pallet_grandpa::StoredState<N>
|
|
2227
2223
|
**/
|
|
2228
2224
|
PalletGrandpaStoredState: {
|
|
2229
2225
|
_enum: {
|
|
@@ -2240,7 +2236,7 @@ declare const _default: {
|
|
|
2240
2236
|
};
|
|
2241
2237
|
};
|
|
2242
2238
|
/**
|
|
2243
|
-
*
|
|
2239
|
+
* Lookup342: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2244
2240
|
**/
|
|
2245
2241
|
PalletGrandpaStoredPendingChange: {
|
|
2246
2242
|
scheduledAt: string;
|
|
@@ -2249,32 +2245,32 @@ declare const _default: {
|
|
|
2249
2245
|
forced: string;
|
|
2250
2246
|
};
|
|
2251
2247
|
/**
|
|
2252
|
-
*
|
|
2248
|
+
* Lookup345: pallet_grandpa::pallet::Error<T>
|
|
2253
2249
|
**/
|
|
2254
2250
|
PalletGrandpaError: {
|
|
2255
2251
|
_enum: string[];
|
|
2256
2252
|
};
|
|
2257
2253
|
/**
|
|
2258
|
-
*
|
|
2254
|
+
* Lookup346: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
2259
2255
|
**/
|
|
2260
2256
|
SpStakingOffenceOffenceDetails: {
|
|
2261
2257
|
offender: string;
|
|
2262
2258
|
reporters: string;
|
|
2263
2259
|
};
|
|
2264
2260
|
/**
|
|
2265
|
-
*
|
|
2261
|
+
* Lookup348: pallet_mining_slot::MinerHistory
|
|
2266
2262
|
**/
|
|
2267
2263
|
PalletMiningSlotMinerHistory: {
|
|
2268
2264
|
authorityIndex: string;
|
|
2269
2265
|
};
|
|
2270
2266
|
/**
|
|
2271
|
-
*
|
|
2267
|
+
* Lookup353: pallet_mint::pallet::Error<T>
|
|
2272
2268
|
**/
|
|
2273
2269
|
PalletMintError: {
|
|
2274
2270
|
_enum: string[];
|
|
2275
2271
|
};
|
|
2276
2272
|
/**
|
|
2277
|
-
*
|
|
2273
|
+
* Lookup355: pallet_balances::types::BalanceLock<Balance>
|
|
2278
2274
|
**/
|
|
2279
2275
|
PalletBalancesBalanceLock: {
|
|
2280
2276
|
id: string;
|
|
@@ -2282,27 +2278,27 @@ declare const _default: {
|
|
|
2282
2278
|
reasons: string;
|
|
2283
2279
|
};
|
|
2284
2280
|
/**
|
|
2285
|
-
*
|
|
2281
|
+
* Lookup356: pallet_balances::types::Reasons
|
|
2286
2282
|
**/
|
|
2287
2283
|
PalletBalancesReasons: {
|
|
2288
2284
|
_enum: string[];
|
|
2289
2285
|
};
|
|
2290
2286
|
/**
|
|
2291
|
-
*
|
|
2287
|
+
* Lookup359: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2292
2288
|
**/
|
|
2293
2289
|
PalletBalancesReserveData: {
|
|
2294
2290
|
id: string;
|
|
2295
2291
|
amount: string;
|
|
2296
2292
|
};
|
|
2297
2293
|
/**
|
|
2298
|
-
*
|
|
2294
|
+
* Lookup362: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeHoldReason, Balance>
|
|
2299
2295
|
**/
|
|
2300
2296
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2301
2297
|
id: string;
|
|
2302
2298
|
amount: string;
|
|
2303
2299
|
};
|
|
2304
2300
|
/**
|
|
2305
|
-
*
|
|
2301
|
+
* Lookup363: argon_node_runtime::RuntimeHoldReason
|
|
2306
2302
|
**/
|
|
2307
2303
|
ArgonNodeRuntimeRuntimeHoldReason: {
|
|
2308
2304
|
_enum: {
|
|
@@ -2329,38 +2325,38 @@ declare const _default: {
|
|
|
2329
2325
|
};
|
|
2330
2326
|
};
|
|
2331
2327
|
/**
|
|
2332
|
-
*
|
|
2328
|
+
* Lookup364: pallet_mining_slot::pallet::HoldReason
|
|
2333
2329
|
**/
|
|
2334
2330
|
PalletMiningSlotHoldReason: {
|
|
2335
2331
|
_enum: string[];
|
|
2336
2332
|
};
|
|
2337
2333
|
/**
|
|
2338
|
-
*
|
|
2334
|
+
* Lookup365: pallet_vaults::pallet::HoldReason
|
|
2339
2335
|
**/
|
|
2340
2336
|
PalletVaultsHoldReason: {
|
|
2341
2337
|
_enum: string[];
|
|
2342
2338
|
};
|
|
2343
2339
|
/**
|
|
2344
|
-
*
|
|
2340
|
+
* Lookup366: pallet_bond::pallet::HoldReason
|
|
2345
2341
|
**/
|
|
2346
2342
|
PalletBondHoldReason: {
|
|
2347
2343
|
_enum: string[];
|
|
2348
2344
|
};
|
|
2349
2345
|
/**
|
|
2350
|
-
*
|
|
2346
|
+
* Lookup367: pallet_block_rewards::pallet::HoldReason
|
|
2351
2347
|
**/
|
|
2352
2348
|
PalletBlockRewardsHoldReason: {
|
|
2353
2349
|
_enum: string[];
|
|
2354
2350
|
};
|
|
2355
2351
|
/**
|
|
2356
|
-
*
|
|
2352
|
+
* Lookup370: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeFreezeReason, Balance>
|
|
2357
2353
|
**/
|
|
2358
2354
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2359
2355
|
id: string;
|
|
2360
2356
|
amount: string;
|
|
2361
2357
|
};
|
|
2362
2358
|
/**
|
|
2363
|
-
*
|
|
2359
|
+
* Lookup371: argon_node_runtime::RuntimeFreezeReason
|
|
2364
2360
|
**/
|
|
2365
2361
|
ArgonNodeRuntimeRuntimeFreezeReason: {
|
|
2366
2362
|
_enum: {
|
|
@@ -2387,83 +2383,83 @@ declare const _default: {
|
|
|
2387
2383
|
};
|
|
2388
2384
|
};
|
|
2389
2385
|
/**
|
|
2390
|
-
*
|
|
2386
|
+
* Lookup372: pallet_block_rewards::pallet::FreezeReason
|
|
2391
2387
|
**/
|
|
2392
2388
|
PalletBlockRewardsFreezeReason: {
|
|
2393
2389
|
_enum: string[];
|
|
2394
2390
|
};
|
|
2395
2391
|
/**
|
|
2396
|
-
*
|
|
2392
|
+
* Lookup374: pallet_balances::pallet::Error<T, I>
|
|
2397
2393
|
**/
|
|
2398
2394
|
PalletBalancesError: {
|
|
2399
2395
|
_enum: string[];
|
|
2400
2396
|
};
|
|
2401
2397
|
/**
|
|
2402
|
-
*
|
|
2398
|
+
* Lookup376: pallet_tx_pause::pallet::Error<T>
|
|
2403
2399
|
**/
|
|
2404
2400
|
PalletTxPauseError: {
|
|
2405
2401
|
_enum: string[];
|
|
2406
2402
|
};
|
|
2407
2403
|
/**
|
|
2408
|
-
*
|
|
2404
|
+
* Lookup377: pallet_transaction_payment::Releases
|
|
2409
2405
|
**/
|
|
2410
2406
|
PalletTransactionPaymentReleases: {
|
|
2411
2407
|
_enum: string[];
|
|
2412
2408
|
};
|
|
2413
2409
|
/**
|
|
2414
|
-
*
|
|
2410
|
+
* Lookup378: pallet_utility::pallet::Error<T>
|
|
2415
2411
|
**/
|
|
2416
2412
|
PalletUtilityError: {
|
|
2417
2413
|
_enum: string[];
|
|
2418
2414
|
};
|
|
2419
2415
|
/**
|
|
2420
|
-
*
|
|
2416
|
+
* Lookup379: pallet_sudo::pallet::Error<T>
|
|
2421
2417
|
**/
|
|
2422
2418
|
PalletSudoError: {
|
|
2423
2419
|
_enum: string[];
|
|
2424
2420
|
};
|
|
2425
2421
|
/**
|
|
2426
|
-
*
|
|
2422
|
+
* Lookup382: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2427
2423
|
**/
|
|
2428
2424
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2429
2425
|
/**
|
|
2430
|
-
*
|
|
2426
|
+
* Lookup383: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2431
2427
|
**/
|
|
2432
2428
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2433
2429
|
/**
|
|
2434
|
-
*
|
|
2430
|
+
* Lookup384: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2435
2431
|
**/
|
|
2436
2432
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2437
2433
|
/**
|
|
2438
|
-
*
|
|
2434
|
+
* Lookup385: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2439
2435
|
**/
|
|
2440
2436
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2441
2437
|
/**
|
|
2442
|
-
*
|
|
2438
|
+
* Lookup388: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2443
2439
|
**/
|
|
2444
2440
|
FrameSystemExtensionsCheckNonce: string;
|
|
2445
2441
|
/**
|
|
2446
|
-
*
|
|
2442
|
+
* Lookup389: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2447
2443
|
**/
|
|
2448
2444
|
FrameSystemExtensionsCheckWeight: string;
|
|
2449
2445
|
/**
|
|
2450
|
-
*
|
|
2446
|
+
* Lookup390: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2451
2447
|
**/
|
|
2452
2448
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2453
2449
|
/**
|
|
2454
|
-
*
|
|
2450
|
+
* Lookup391: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2455
2451
|
**/
|
|
2456
2452
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2457
2453
|
mode: string;
|
|
2458
2454
|
};
|
|
2459
2455
|
/**
|
|
2460
|
-
*
|
|
2456
|
+
* Lookup392: frame_metadata_hash_extension::Mode
|
|
2461
2457
|
**/
|
|
2462
2458
|
FrameMetadataHashExtensionMode: {
|
|
2463
2459
|
_enum: string[];
|
|
2464
2460
|
};
|
|
2465
2461
|
/**
|
|
2466
|
-
*
|
|
2462
|
+
* Lookup394: argon_node_runtime::Runtime
|
|
2467
2463
|
**/
|
|
2468
2464
|
ArgonNodeRuntimeRuntime: string;
|
|
2469
2465
|
};
|