@argonprotocol/mainchain 1.0.5 → 1.0.6
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 +4 -0
- package/lib/cjs/interfaces/lookup.js +1 -1
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +2 -1
- package/lib/esm/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/esm/interfaces/lookup.js +1 -1
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +2 -1
- 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 +4 -0
- package/lib/types/interfaces/types-lookup.d.ts +2 -1
- package/package.json +1 -1
|
@@ -564,6 +564,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
564
564
|
* The signature of the notebook is invalid
|
|
565
565
|
**/
|
|
566
566
|
InvalidNotebookSignature: AugmentedError<ApiType>;
|
|
567
|
+
/**
|
|
568
|
+
* Invalid notebook submission tick
|
|
569
|
+
**/
|
|
570
|
+
InvalidNotebookSubmissionTick: AugmentedError<ApiType>;
|
|
567
571
|
/**
|
|
568
572
|
* Invalid reprocess notebook
|
|
569
573
|
**/
|
|
@@ -2606,7 +2606,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
2606
2606
|
readonly isNotebookSubmittedForLockedNotary: boolean;
|
|
2607
2607
|
readonly isInvalidReprocessNotebook: boolean;
|
|
2608
2608
|
readonly isInvalidNotaryOperator: boolean;
|
|
2609
|
-
readonly
|
|
2609
|
+
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
2610
|
+
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
2610
2611
|
}
|
|
2611
2612
|
/** @name PalletChainTransferQueuedTransferOut (388) */
|
|
2612
2613
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|