@argonprotocol/mainchain 1.4.10-dev.479c016c → 1.4.10-dev.925a902e
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/browser/index.d.ts +31 -2
- package/browser/index.js +2 -2
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +31 -2
- package/lib/index.d.ts +31 -2
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +1 -0
- package/src/interfaces/augment-api-errors.ts +4 -0
- package/src/interfaces/augment-api-events.ts +16 -0
- package/src/interfaces/augment-api-query.ts +11 -0
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +9 -0
- package/src/interfaces/registry.ts +1 -0
- package/src/interfaces/types-lookup.ts +10 -1
package/browser/index.d.ts
CHANGED
|
@@ -1126,6 +1126,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1126
1126
|
* The account has not registered a council signer for this destination chain.
|
|
1127
1127
|
**/
|
|
1128
1128
|
CouncilSignerNotRegistered: AugmentedError<ApiType>;
|
|
1129
|
+
/**
|
|
1130
|
+
* The account already has a council signer rotation pending for this destination chain.
|
|
1131
|
+
**/
|
|
1132
|
+
CouncilSignerRotationPending: AugmentedError<ApiType>;
|
|
1129
1133
|
/**
|
|
1130
1134
|
* The supplied Global Issuance Council contains the same account more than once.
|
|
1131
1135
|
**/
|
|
@@ -2804,6 +2808,18 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2804
2808
|
destinationChain: PalletCrosschainTransferSourceChain;
|
|
2805
2809
|
councilHash: H256;
|
|
2806
2810
|
}>;
|
|
2811
|
+
/**
|
|
2812
|
+
* A frame transition queued a new Global Issuance Council for destination-chain approval.
|
|
2813
|
+
**/
|
|
2814
|
+
GlobalIssuanceCouncilRotationQueued: AugmentedEvent<ApiType, [
|
|
2815
|
+
destinationChain: PalletCrosschainTransferSourceChain,
|
|
2816
|
+
councilHash: H256,
|
|
2817
|
+
approvalQueueNonce: u64
|
|
2818
|
+
], {
|
|
2819
|
+
destinationChain: PalletCrosschainTransferSourceChain;
|
|
2820
|
+
councilHash: H256;
|
|
2821
|
+
approvalQueueNonce: u64;
|
|
2822
|
+
}>;
|
|
2807
2823
|
/**
|
|
2808
2824
|
* Root updated the minimum normalized microgon value required to register a Minting
|
|
2809
2825
|
* Authority on one destination chain.
|
|
@@ -4882,6 +4898,12 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4882
4898
|
nextCouncilApprovalQueueNonceByDestinationChain: AugmentedQuery<ApiType, (arg: PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array) => Observable<u64>, [
|
|
4883
4899
|
PalletCrosschainTransferSourceChain
|
|
4884
4900
|
]>;
|
|
4901
|
+
/**
|
|
4902
|
+
* First frame where a new council snapshot may be added to a chain's approval queue.
|
|
4903
|
+
**/
|
|
4904
|
+
nextCouncilRotationFrameByDestinationChain: AugmentedQuery<ApiType, (arg: PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array) => Observable<Option<u64>>, [
|
|
4905
|
+
PalletCrosschainTransferSourceChain
|
|
4906
|
+
]>;
|
|
4885
4907
|
/**
|
|
4886
4908
|
* Next outbound transfer nonce for each sending account.
|
|
4887
4909
|
**/
|
|
@@ -11275,6 +11297,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11275
11297
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
11276
11298
|
readonly councilHash: H256;
|
|
11277
11299
|
} & Struct;
|
|
11300
|
+
readonly isGlobalIssuanceCouncilRotationQueued: boolean;
|
|
11301
|
+
readonly asGlobalIssuanceCouncilRotationQueued: {
|
|
11302
|
+
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
11303
|
+
readonly councilHash: H256;
|
|
11304
|
+
readonly approvalQueueNonce: u64;
|
|
11305
|
+
} & Struct;
|
|
11278
11306
|
readonly isCouncilSignerRegistered: boolean;
|
|
11279
11307
|
readonly asCouncilSignerRegistered: {
|
|
11280
11308
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -11387,7 +11415,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11387
11415
|
readonly transferId: H256;
|
|
11388
11416
|
readonly destinationSigningKey: H160;
|
|
11389
11417
|
} & Struct;
|
|
11390
|
-
readonly type: 'TransferToArgonSettled' | 'GlobalIssuanceCouncilForced' | 'CouncilSignerRegistered' | 'CouncilSignerRotationQueued' | 'MintingAuthorityRegistered' | 'MintingAuthorityDeactivationQueued' | 'MinimumMintingAuthorityValueSet' | 'MintingAuthorityActivationRepaymentPricingSet' | 'QueueEntryApprovalRecorded' | 'QueueEntryApprovalReady' | 'MintingAuthorityActivationFinalized' | 'MintingAuthorityActivationCompleted' | 'MintingAuthorityDeactivationFinalized' | 'GatewaySyncPaused' | 'GatewayUnpaused' | 'GatewayStateAdvanced' | 'TransferOutStarted' | 'TransferCollateralized' | 'TransferOutReady' | 'TransferOutFinalized' | 'TransferOutCanceled' | 'TransferCollateralInvalidated';
|
|
11418
|
+
readonly type: 'TransferToArgonSettled' | 'GlobalIssuanceCouncilForced' | 'GlobalIssuanceCouncilRotationQueued' | 'CouncilSignerRegistered' | 'CouncilSignerRotationQueued' | 'MintingAuthorityRegistered' | 'MintingAuthorityDeactivationQueued' | 'MinimumMintingAuthorityValueSet' | 'MintingAuthorityActivationRepaymentPricingSet' | 'QueueEntryApprovalRecorded' | 'QueueEntryApprovalReady' | 'MintingAuthorityActivationFinalized' | 'MintingAuthorityActivationCompleted' | 'MintingAuthorityDeactivationFinalized' | 'GatewaySyncPaused' | 'GatewayUnpaused' | 'GatewayStateAdvanced' | 'TransferOutStarted' | 'TransferCollateralized' | 'TransferOutReady' | 'TransferOutFinalized' | 'TransferOutCanceled' | 'TransferCollateralInvalidated';
|
|
11391
11419
|
}
|
|
11392
11420
|
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
11393
11421
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
@@ -13652,7 +13680,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
13652
13680
|
readonly isInsufficientMintingAuthorityCollateral: boolean;
|
|
13653
13681
|
readonly isTransferCollateralIncrementTooSmall: boolean;
|
|
13654
13682
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
13655
|
-
readonly
|
|
13683
|
+
readonly isCouncilSignerRotationPending: boolean;
|
|
13684
|
+
readonly type: 'InvalidTransferToArgonActivity' | 'NoGatewayProofBlocksProvided' | 'NoGatewayActivitiesProvided' | 'InvalidProof' | 'UnsupportedSource' | 'UnsupportedGateway' | 'UnsupportedToken' | 'UnexpectedPreviousGatewayActivityNonce' | 'UnexpectedGatewayActivityNonce' | 'InvalidChainConfig' | 'InsufficientLiquidity' | 'MintingAuthorityNotFound' | 'MintingAuthorityMismatch' | 'UnexpectedMintingAuthorityState' | 'UnknownOwnerVault' | 'InvalidMintingAuthoritySigningKey' | 'MintingAuthorityAlreadyRegistered' | 'InvalidMintingAuthoritySigningKeyProof' | 'InvalidMintingAuthorityCollateral' | 'GlobalIssuanceCouncilNotFound' | 'InvalidGlobalIssuanceCouncil' | 'DuplicateGlobalIssuanceCouncilSigner' | 'DuplicateGlobalIssuanceCouncilAccount' | 'InvalidCouncilSignerProof' | 'GlobalIssuanceCouncilMemberNotFound' | 'CouncilSignerNotRegistered' | 'CouncilApprovalQueueEntryNotFound' | 'CouncilApprovalAlreadyRecorded' | 'InvalidForceSetAfterNonce' | 'CannotForceSetQuorumApprovedQueueEntry' | 'InvalidCouncilApprovalSignature' | 'NoCouncilApprovalSignaturesProvided' | 'InsufficientCommittedMicrogonCollateral' | 'InsufficientCommittedArgonotCollateral' | 'InvalidMintingAuthorityDeactivationSignature' | 'InvalidMicrogonsPerArgonot' | 'MintingAuthorityCollateralBelowMinimum' | 'InvalidMintingAuthorityActivationRepaymentPricing' | 'MissingMintingAuthorityActivationRepaymentPricing' | 'InvalidGatewayActivity' | 'GatewaySyncPaused' | 'InvalidTransferOutAmount' | 'InvalidTransferOutRecipient' | 'MissingVerifiedExecutionBlock' | 'StaleVerifiedExecutionBlock' | 'TransferOutNotFound' | 'TransferOutAlreadyReady' | 'TransferOutExpired' | 'InvalidTransferCollateral' | 'InvalidTransferCollateralUpdate' | 'InvalidTransferCollateralSignature' | 'InsufficientMintingAuthorityCollateral' | 'TransferCollateralIncrementTooSmall' | 'TooManyPendingTransferOuts' | 'CouncilSignerRotationPending';
|
|
13656
13685
|
}
|
|
13657
13686
|
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
13658
13687
|
type FrameSystemExtensionsAuthorizeCall = Null;
|