@argonprotocol/mainchain 1.0.10 → 1.0.11
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-events.d.ts +7 -7
- package/lib/cjs/interfaces/augment-api-tx.d.ts +7 -7
- package/lib/cjs/interfaces/lookup.d.ts +3 -3
- package/lib/cjs/interfaces/lookup.js +13 -13
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +2 -2
- package/lib/cjs/interfaces/types-lookup.d.ts +12 -12
- package/lib/esm/interfaces/augment-api-events.d.ts +7 -7
- package/lib/esm/interfaces/augment-api-tx.d.ts +7 -7
- package/lib/esm/interfaces/lookup.d.ts +3 -3
- package/lib/esm/interfaces/lookup.js +13 -13
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +2 -2
- package/lib/esm/interfaces/types-lookup.d.ts +12 -12
- 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-events.d.ts +7 -7
- package/lib/types/interfaces/augment-api-tx.d.ts +7 -7
- package/lib/types/interfaces/lookup.d.ts +3 -3
- package/lib/types/interfaces/registry.d.ts +2 -2
- package/lib/types/interfaces/types-lookup.d.ts +12 -12
- package/package.json +1 -1
|
@@ -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 { ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesVaultFundType, ArgonPrimitivesVaultObligationExpiration,
|
|
6
|
+
import type { ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesVaultFundType, ArgonPrimitivesVaultObligationExpiration, ArgonRuntimeProxyType, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, IsmpConsensusStateMachineHeight, IsmpConsensusStateMachineId, IsmpEventsRequestResponseHandled, IsmpEventsTimeoutHandled, IsmpHostStateMachine, PalletDomainsDomainRegistration, PalletHyperbridgeVersionedHostParams, PalletIsmpErrorsHandlingError, 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> {
|
|
@@ -834,10 +834,10 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
834
834
|
/**
|
|
835
835
|
* A proxy was added.
|
|
836
836
|
**/
|
|
837
|
-
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType:
|
|
837
|
+
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
|
|
838
838
|
delegator: AccountId32;
|
|
839
839
|
delegatee: AccountId32;
|
|
840
|
-
proxyType:
|
|
840
|
+
proxyType: ArgonRuntimeProxyType;
|
|
841
841
|
delay: u32;
|
|
842
842
|
}>;
|
|
843
843
|
/**
|
|
@@ -849,20 +849,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
849
849
|
/**
|
|
850
850
|
* A proxy was removed.
|
|
851
851
|
**/
|
|
852
|
-
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType:
|
|
852
|
+
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
|
|
853
853
|
delegator: AccountId32;
|
|
854
854
|
delegatee: AccountId32;
|
|
855
|
-
proxyType:
|
|
855
|
+
proxyType: ArgonRuntimeProxyType;
|
|
856
856
|
delay: u32;
|
|
857
857
|
}>;
|
|
858
858
|
/**
|
|
859
859
|
* A pure account has been created by new proxy with given
|
|
860
860
|
* disambiguation index and proxy type.
|
|
861
861
|
**/
|
|
862
|
-
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType:
|
|
862
|
+
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: ArgonRuntimeProxyType, disambiguationIndex: u16], {
|
|
863
863
|
pure: AccountId32;
|
|
864
864
|
who: AccountId32;
|
|
865
|
-
proxyType:
|
|
865
|
+
proxyType: ArgonRuntimeProxyType;
|
|
866
866
|
disambiguationIndex: u16;
|
|
867
867
|
}>;
|
|
868
868
|
};
|
|
@@ -3,7 +3,7 @@ import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableE
|
|
|
3
3
|
import type { BTreeMap, 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 { ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotebookSignedNotebookHeader, ArgonPrimitivesVaultVaultTerms,
|
|
6
|
+
import type { ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotebookSignedNotebookHeader, ArgonPrimitivesVaultVaultTerms, ArgonRuntimeOriginCaller, ArgonRuntimeProxyType, ArgonRuntimeSessionKeys, IsmpGrandpaAddStateMachine, IsmpHostStateMachine, IsmpMessagingCreateConsensusState, IsmpMessagingMessage, PalletBalancesAdjustmentDirection, PalletIsmpUtilsFundMessageParams, PalletIsmpUtilsUpdateConsensusState, PalletMiningSlotMiningSlotBid, PalletMultisigTimepoint, PalletPriceIndexPriceIndex, PalletTokenGatewayAssetRegistration, PalletTokenGatewayPrecisionUpdate, PalletTokenGatewayTeleportParams, PalletVaultsVaultConfig, SpConsensusGrandpaEquivocationProof, SpCoreVoid, SpWeightsWeightV2Weight, TokenGatewayPrimitivesGatewayAssetUpdate } 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>;
|
|
@@ -771,7 +771,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
771
771
|
Address32: any;
|
|
772
772
|
} | {
|
|
773
773
|
Address20: any;
|
|
774
|
-
} | string | Uint8Array, proxyType:
|
|
774
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
|
|
775
775
|
/**
|
|
776
776
|
* Publish the hash of a proxy-call that will be made in the future.
|
|
777
777
|
*
|
|
@@ -820,7 +820,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
820
820
|
*
|
|
821
821
|
* Fails if there are insufficient funds to pay for deposit.
|
|
822
822
|
**/
|
|
823
|
-
createPure: AugmentedSubmittable<(proxyType:
|
|
823
|
+
createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeProxyType, u32, u16]>;
|
|
824
824
|
/**
|
|
825
825
|
* Removes a previously spawned pure proxy.
|
|
826
826
|
*
|
|
@@ -849,7 +849,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
849
849
|
Address32: any;
|
|
850
850
|
} | {
|
|
851
851
|
Address20: any;
|
|
852
|
-
} | string | Uint8Array, proxyType:
|
|
852
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
|
|
853
853
|
/**
|
|
854
854
|
* Dispatch the given `call` from an account that the sender is authorised for through
|
|
855
855
|
* `add_proxy`.
|
|
@@ -871,7 +871,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
871
871
|
Address32: any;
|
|
872
872
|
} | {
|
|
873
873
|
Address20: any;
|
|
874
|
-
} | string | Uint8Array, forceProxyType: Option<
|
|
874
|
+
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
|
|
875
875
|
/**
|
|
876
876
|
* Dispatch the given `call` from an account that the sender is authorized for through
|
|
877
877
|
* `add_proxy`.
|
|
@@ -905,7 +905,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
905
905
|
Address32: any;
|
|
906
906
|
} | {
|
|
907
907
|
Address20: any;
|
|
908
|
-
} | string | Uint8Array, forceProxyType: Option<
|
|
908
|
+
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
|
|
909
909
|
/**
|
|
910
910
|
* Remove the given announcement of a delegate.
|
|
911
911
|
*
|
|
@@ -980,7 +980,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
980
980
|
Address32: any;
|
|
981
981
|
} | {
|
|
982
982
|
Address20: any;
|
|
983
|
-
} | string | Uint8Array, proxyType:
|
|
983
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
|
|
984
984
|
};
|
|
985
985
|
sudo: {
|
|
986
986
|
/**
|
|
@@ -237,9 +237,9 @@ declare const _default: {
|
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
239
|
/**
|
|
240
|
-
* Lookup37: argon_runtime::
|
|
240
|
+
* Lookup37: argon_runtime::ProxyType
|
|
241
241
|
**/
|
|
242
|
-
|
|
242
|
+
ArgonRuntimeProxyType: {
|
|
243
243
|
_enum: string[];
|
|
244
244
|
};
|
|
245
245
|
/**
|
|
@@ -2416,7 +2416,7 @@ declare const _default: {
|
|
|
2416
2416
|
_enum: string[];
|
|
2417
2417
|
};
|
|
2418
2418
|
/**
|
|
2419
|
-
* Lookup317: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::
|
|
2419
|
+
* Lookup317: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
2420
2420
|
**/
|
|
2421
2421
|
PalletProxyProxyDefinition: {
|
|
2422
2422
|
delegate: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@polkadot/types/types/registry';
|
|
2
|
-
import type { ArgonNotaryAuditAccountHistoryLookupError, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesAccountAccountType, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBalanceChangeMerkleProof, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinNetworkKind, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealAppPublic, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealBlockRewardType, ArgonPrimitivesBlockSealMiningBidStats, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesBlockSealRewardSharing, ArgonPrimitivesBlockVoteBlockVoteT, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsDigestset, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesForkPower, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesNotebookChainTransfer, ArgonPrimitivesNotebookNotebookAuditResult, ArgonPrimitivesNotebookNotebookHeader, ArgonPrimitivesNotebookSignedNotebookHeader, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesTickTicker, ArgonPrimitivesVault, ArgonPrimitivesVaultFundType, ArgonPrimitivesVaultObligation, ArgonPrimitivesVaultObligationError, ArgonPrimitivesVaultObligationExpiration, ArgonPrimitivesVaultVaultArgons, ArgonPrimitivesVaultVaultTerms,
|
|
2
|
+
import type { ArgonNotaryAuditAccountHistoryLookupError, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesAccountAccountType, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBalanceChangeMerkleProof, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinNetworkKind, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealAppPublic, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealBlockRewardType, ArgonPrimitivesBlockSealMiningBidStats, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBlockSealRewardDestination, ArgonPrimitivesBlockSealRewardSharing, ArgonPrimitivesBlockVoteBlockVoteT, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsDigestset, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesForkPower, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesNotebookChainTransfer, ArgonPrimitivesNotebookNotebookAuditResult, ArgonPrimitivesNotebookNotebookHeader, ArgonPrimitivesNotebookSignedNotebookHeader, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesTickTicker, ArgonPrimitivesVault, ArgonPrimitivesVaultFundType, ArgonPrimitivesVaultObligation, ArgonPrimitivesVaultObligationError, ArgonPrimitivesVaultObligationExpiration, ArgonPrimitivesVaultVaultArgons, ArgonPrimitivesVaultVaultTerms, ArgonRuntimeOriginCaller, ArgonRuntimeProxyType, ArgonRuntimeRuntime, ArgonRuntimeRuntimeFreezeReason, ArgonRuntimeRuntimeHoldReason, ArgonRuntimeSessionKeys, FinalityGrandpaEquivocationPrecommit, FinalityGrandpaEquivocationPrevote, FinalityGrandpaPrecommit, FinalityGrandpaPrevote, FrameMetadataHashExtensionCheckMetadataHash, FrameMetadataHashExtensionMode, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportTokensMiscIdAmountRuntimeFreezeReason, FrameSupportTokensMiscIdAmountRuntimeHoldReason, FrameSystemAccountInfo, FrameSystemCall, FrameSystemCodeUpgradeAuthorization, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, IsmpConsensusStateCommitment, IsmpConsensusStateMachineHeight, IsmpConsensusStateMachineId, IsmpEventsRequestResponseHandled, IsmpEventsTimeoutHandled, IsmpGrandpaAddStateMachine, IsmpGrandpaCall, IsmpGrandpaEvent, IsmpHostStateMachine, IsmpMessagingConsensusMessage, IsmpMessagingCreateConsensusState, IsmpMessagingFraudProofMessage, IsmpMessagingMessage, IsmpMessagingProof, IsmpMessagingRequestMessage, IsmpMessagingResponseMessage, IsmpMessagingStateCommitmentHeight, IsmpMessagingTimeoutMessage, IsmpRouterGetRequest, IsmpRouterGetResponse, IsmpRouterPostRequest, IsmpRouterPostResponse, IsmpRouterRequest, IsmpRouterRequestResponse, IsmpRouterResponse, IsmpRouterStorageValue, PalletBalancesAccountData, PalletBalancesAdjustmentDirection, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletBitcoinLocksCall, PalletBitcoinLocksError, PalletBitcoinLocksEvent, PalletBitcoinLocksHoldReason, PalletBitcoinLocksLockReleaseRequest, PalletBitcoinLocksLockedBitcoin, PalletBitcoinUtxosCall, PalletBitcoinUtxosError, PalletBitcoinUtxosEvent, PalletBlockRewardsCall, PalletBlockRewardsError, PalletBlockRewardsEvent, PalletBlockRewardsFreezeReason, PalletBlockRewardsHoldReason, PalletBlockSealCall, PalletBlockSealError, PalletBlockSealSpecCall, PalletBlockSealSpecError, PalletBlockSealSpecEvent, PalletChainTransferCall, PalletChainTransferError, PalletChainTransferEvent, PalletChainTransferQueuedTransferOut, PalletDigestsError, PalletDigestsEvent, PalletDomainsCall, PalletDomainsDomainRegistration, PalletDomainsError, PalletDomainsEvent, PalletGrandpaCall, PalletGrandpaError, PalletGrandpaEvent, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletHyperbridgeError, PalletHyperbridgeEvent, PalletHyperbridgeSubstrateHostParams, PalletHyperbridgeVersionedHostParams, PalletIsmpCall, PalletIsmpError, PalletIsmpErrorsHandlingError, PalletIsmpEvent, PalletIsmpUtilsFundMessageParams, PalletIsmpUtilsMessageCommitment, PalletIsmpUtilsUpdateConsensusState, PalletMiningSlotCall, PalletMiningSlotError, PalletMiningSlotEvent, PalletMiningSlotHoldReason, PalletMiningSlotMiningSlotBid, PalletMintCall, PalletMintError, PalletMintEvent, PalletMintMintAction, PalletMintMintType, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletNotariesCall, PalletNotariesError, PalletNotariesEvent, PalletNotebookCall, PalletNotebookError, PalletNotebookEvent, PalletPriceIndexCall, PalletPriceIndexError, PalletPriceIndexEvent, PalletPriceIndexPriceIndex, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTicksCall, PalletTicksError, PalletTimestampCall, PalletTokenGatewayAssetRegistration, PalletTokenGatewayCall, PalletTokenGatewayError, PalletTokenGatewayEvent, PalletTokenGatewayPrecisionUpdate, PalletTokenGatewayTeleportParams, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTxPauseCall, PalletTxPauseError, PalletTxPauseEvent, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletVaultsCall, PalletVaultsError, PalletVaultsEvent, PalletVaultsHoldReason, PalletVaultsVaultConfig, SpArithmeticArithmeticError, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, TokenGatewayPrimitivesGatewayAssetRegistration, TokenGatewayPrimitivesGatewayAssetUpdate } from '@polkadot/types/lookup';
|
|
3
3
|
declare module '@polkadot/types/types/registry' {
|
|
4
4
|
interface InterfaceTypes {
|
|
5
5
|
ArgonNotaryAuditAccountHistoryLookupError: ArgonNotaryAuditAccountHistoryLookupError;
|
|
@@ -54,8 +54,8 @@ declare module '@polkadot/types/types/registry' {
|
|
|
54
54
|
ArgonPrimitivesVaultObligationExpiration: ArgonPrimitivesVaultObligationExpiration;
|
|
55
55
|
ArgonPrimitivesVaultVaultArgons: ArgonPrimitivesVaultVaultArgons;
|
|
56
56
|
ArgonPrimitivesVaultVaultTerms: ArgonPrimitivesVaultVaultTerms;
|
|
57
|
-
ArgonRuntimeConfigsProxyType: ArgonRuntimeConfigsProxyType;
|
|
58
57
|
ArgonRuntimeOriginCaller: ArgonRuntimeOriginCaller;
|
|
58
|
+
ArgonRuntimeProxyType: ArgonRuntimeProxyType;
|
|
59
59
|
ArgonRuntimeRuntime: ArgonRuntimeRuntime;
|
|
60
60
|
ArgonRuntimeRuntimeFreezeReason: ArgonRuntimeRuntimeFreezeReason;
|
|
61
61
|
ArgonRuntimeRuntimeHoldReason: ArgonRuntimeRuntimeHoldReason;
|
|
@@ -207,7 +207,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
207
207
|
readonly asPureCreated: {
|
|
208
208
|
readonly pure: AccountId32;
|
|
209
209
|
readonly who: AccountId32;
|
|
210
|
-
readonly proxyType:
|
|
210
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
211
211
|
readonly disambiguationIndex: u16;
|
|
212
212
|
} & Struct;
|
|
213
213
|
readonly isAnnounced: boolean;
|
|
@@ -220,20 +220,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
220
220
|
readonly asProxyAdded: {
|
|
221
221
|
readonly delegator: AccountId32;
|
|
222
222
|
readonly delegatee: AccountId32;
|
|
223
|
-
readonly proxyType:
|
|
223
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
224
224
|
readonly delay: u32;
|
|
225
225
|
} & Struct;
|
|
226
226
|
readonly isProxyRemoved: boolean;
|
|
227
227
|
readonly asProxyRemoved: {
|
|
228
228
|
readonly delegator: AccountId32;
|
|
229
229
|
readonly delegatee: AccountId32;
|
|
230
|
-
readonly proxyType:
|
|
230
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
231
231
|
readonly delay: u32;
|
|
232
232
|
} & Struct;
|
|
233
233
|
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
|
234
234
|
}
|
|
235
|
-
/** @name
|
|
236
|
-
interface
|
|
235
|
+
/** @name ArgonRuntimeProxyType (37) */
|
|
236
|
+
interface ArgonRuntimeProxyType extends Enum {
|
|
237
237
|
readonly isAny: boolean;
|
|
238
238
|
readonly isNonTransfer: boolean;
|
|
239
239
|
readonly isPriceIndex: boolean;
|
|
@@ -1500,32 +1500,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
1500
1500
|
readonly isProxy: boolean;
|
|
1501
1501
|
readonly asProxy: {
|
|
1502
1502
|
readonly real: MultiAddress;
|
|
1503
|
-
readonly forceProxyType: Option<
|
|
1503
|
+
readonly forceProxyType: Option<ArgonRuntimeProxyType>;
|
|
1504
1504
|
readonly call: Call;
|
|
1505
1505
|
} & Struct;
|
|
1506
1506
|
readonly isAddProxy: boolean;
|
|
1507
1507
|
readonly asAddProxy: {
|
|
1508
1508
|
readonly delegate: MultiAddress;
|
|
1509
|
-
readonly proxyType:
|
|
1509
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
1510
1510
|
readonly delay: u32;
|
|
1511
1511
|
} & Struct;
|
|
1512
1512
|
readonly isRemoveProxy: boolean;
|
|
1513
1513
|
readonly asRemoveProxy: {
|
|
1514
1514
|
readonly delegate: MultiAddress;
|
|
1515
|
-
readonly proxyType:
|
|
1515
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
1516
1516
|
readonly delay: u32;
|
|
1517
1517
|
} & Struct;
|
|
1518
1518
|
readonly isRemoveProxies: boolean;
|
|
1519
1519
|
readonly isCreatePure: boolean;
|
|
1520
1520
|
readonly asCreatePure: {
|
|
1521
|
-
readonly proxyType:
|
|
1521
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
1522
1522
|
readonly delay: u32;
|
|
1523
1523
|
readonly index: u16;
|
|
1524
1524
|
} & Struct;
|
|
1525
1525
|
readonly isKillPure: boolean;
|
|
1526
1526
|
readonly asKillPure: {
|
|
1527
1527
|
readonly spawner: MultiAddress;
|
|
1528
|
-
readonly proxyType:
|
|
1528
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
1529
1529
|
readonly index: u16;
|
|
1530
1530
|
readonly height: Compact<u32>;
|
|
1531
1531
|
readonly extIndex: Compact<u32>;
|
|
@@ -1549,7 +1549,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1549
1549
|
readonly asProxyAnnounced: {
|
|
1550
1550
|
readonly delegate: MultiAddress;
|
|
1551
1551
|
readonly real: MultiAddress;
|
|
1552
|
-
readonly forceProxyType: Option<
|
|
1552
|
+
readonly forceProxyType: Option<ArgonRuntimeProxyType>;
|
|
1553
1553
|
readonly call: Call;
|
|
1554
1554
|
} & Struct;
|
|
1555
1555
|
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
|
@@ -2332,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2332
2332
|
/** @name PalletProxyProxyDefinition (317) */
|
|
2333
2333
|
interface PalletProxyProxyDefinition extends Struct {
|
|
2334
2334
|
readonly delegate: AccountId32;
|
|
2335
|
-
readonly proxyType:
|
|
2335
|
+
readonly proxyType: ArgonRuntimeProxyType;
|
|
2336
2336
|
readonly delay: u32;
|
|
2337
2337
|
}
|
|
2338
2338
|
/** @name PalletProxyAnnouncement (321) */
|