@argonprotocol/mainchain 1.4.11-dev.825bb01a → 1.4.11-dev.f3bdc948
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 +195 -225
- package/browser/index.js +9 -5
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +9 -5
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +195 -225
- package/lib/index.d.ts +195 -225
- package/lib/index.js +9 -5
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-errors.ts +0 -20
- package/src/interfaces/lookup.ts +183 -193
- package/src/interfaces/types-lookup.ts +184 -199
package/browser/index.d.ts
CHANGED
|
@@ -862,26 +862,6 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
862
862
|
* Fee coupons can only be applied when initializing a lock.
|
|
863
863
|
**/
|
|
864
864
|
FeeCouponOnlyForInitialization: AugmentedError<ApiType>;
|
|
865
|
-
/**
|
|
866
|
-
* The fee coupon was issued for a different beneficiary.
|
|
867
|
-
**/
|
|
868
|
-
FeeCouponWrongAccount: AugmentedError<ApiType>;
|
|
869
|
-
/**
|
|
870
|
-
* The fee coupon was issued for a different chain.
|
|
871
|
-
**/
|
|
872
|
-
FeeCouponWrongChain: AugmentedError<ApiType>;
|
|
873
|
-
/**
|
|
874
|
-
* The fee coupon was issued for a different number of requested satoshis.
|
|
875
|
-
**/
|
|
876
|
-
FeeCouponWrongSatoshis: AugmentedError<ApiType>;
|
|
877
|
-
/**
|
|
878
|
-
* The fee coupon was issued for a different target price.
|
|
879
|
-
**/
|
|
880
|
-
FeeCouponWrongTargetPrice: AugmentedError<ApiType>;
|
|
881
|
-
/**
|
|
882
|
-
* The fee coupon was issued for a different vault.
|
|
883
|
-
**/
|
|
884
|
-
FeeCouponWrongVault: AugmentedError<ApiType>;
|
|
885
865
|
/**
|
|
886
866
|
* Cannot request an orphaned release for the funding UTXO
|
|
887
867
|
**/
|
|
@@ -12189,25 +12169,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
12189
12169
|
} & Struct;
|
|
12190
12170
|
readonly isV2: boolean;
|
|
12191
12171
|
readonly asV2: {
|
|
12192
|
-
readonly microgonsAtTargetPerBtc:
|
|
12193
|
-
readonly feeCoupon:
|
|
12172
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
12173
|
+
readonly feeCoupon: PalletBitcoinLocksFeeCoupon;
|
|
12194
12174
|
} & Struct;
|
|
12195
12175
|
readonly type: 'V1' | 'V2';
|
|
12196
12176
|
}
|
|
12197
|
-
/** @name PalletBitcoinLocksFeeCoupon (
|
|
12177
|
+
/** @name PalletBitcoinLocksFeeCoupon (221) */
|
|
12198
12178
|
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
12199
|
-
readonly vaultId: Compact<u32>;
|
|
12200
|
-
readonly genesisHash: H256;
|
|
12201
|
-
readonly beneficiary: AccountId32;
|
|
12202
|
-
readonly requestedSatoshis: Compact<u64>;
|
|
12203
|
-
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
12204
12179
|
readonly feeDiscount: Compact<u128>;
|
|
12205
12180
|
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
12206
12181
|
readonly expiresAtFrame: Compact<u64>;
|
|
12207
12182
|
readonly nonce: Compact<u64>;
|
|
12208
12183
|
readonly signature: SpRuntimeMultiSignature;
|
|
12209
12184
|
}
|
|
12210
|
-
/** @name SpRuntimeMultiSignature (
|
|
12185
|
+
/** @name SpRuntimeMultiSignature (222) */
|
|
12211
12186
|
interface SpRuntimeMultiSignature extends Enum {
|
|
12212
12187
|
readonly isEd25519: boolean;
|
|
12213
12188
|
readonly asEd25519: U8aFixed;
|
|
@@ -12219,7 +12194,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12219
12194
|
readonly asEth: U8aFixed;
|
|
12220
12195
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
12221
12196
|
}
|
|
12222
|
-
/** @name PalletNotariesCall (
|
|
12197
|
+
/** @name PalletNotariesCall (227) */
|
|
12223
12198
|
interface PalletNotariesCall extends Enum {
|
|
12224
12199
|
readonly isPropose: boolean;
|
|
12225
12200
|
readonly asPropose: {
|
|
@@ -12237,7 +12212,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12237
12212
|
} & Struct;
|
|
12238
12213
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
12239
12214
|
}
|
|
12240
|
-
/** @name PalletNotebookCall (
|
|
12215
|
+
/** @name PalletNotebookCall (228) */
|
|
12241
12216
|
interface PalletNotebookCall extends Enum {
|
|
12242
12217
|
readonly isSubmit: boolean;
|
|
12243
12218
|
readonly asSubmit: {
|
|
@@ -12249,12 +12224,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12249
12224
|
} & Struct;
|
|
12250
12225
|
readonly type: 'Submit' | 'Unlock';
|
|
12251
12226
|
}
|
|
12252
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
12227
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (230) */
|
|
12253
12228
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
12254
12229
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
12255
12230
|
readonly signature: U8aFixed;
|
|
12256
12231
|
}
|
|
12257
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
12232
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (231) */
|
|
12258
12233
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
12259
12234
|
readonly version: Compact<u16>;
|
|
12260
12235
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -12272,7 +12247,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12272
12247
|
readonly parentSecret: Option<H256>;
|
|
12273
12248
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
12274
12249
|
}
|
|
12275
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
12250
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (234) */
|
|
12276
12251
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
12277
12252
|
readonly isToMainchain: boolean;
|
|
12278
12253
|
readonly asToMainchain: {
|
|
@@ -12285,12 +12260,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12285
12260
|
} & Struct;
|
|
12286
12261
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
12287
12262
|
}
|
|
12288
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
12263
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (237) */
|
|
12289
12264
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
12290
12265
|
readonly notebookNumber: Compact<u32>;
|
|
12291
12266
|
readonly accountUid: Compact<u32>;
|
|
12292
12267
|
}
|
|
12293
|
-
/** @name PalletLocalchainTransferCall (
|
|
12268
|
+
/** @name PalletLocalchainTransferCall (243) */
|
|
12294
12269
|
interface PalletLocalchainTransferCall extends Enum {
|
|
12295
12270
|
readonly isSendToLocalchain: boolean;
|
|
12296
12271
|
readonly asSendToLocalchain: {
|
|
@@ -12299,7 +12274,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12299
12274
|
} & Struct;
|
|
12300
12275
|
readonly type: 'SendToLocalchain';
|
|
12301
12276
|
}
|
|
12302
|
-
/** @name PalletBlockSealSpecCall (
|
|
12277
|
+
/** @name PalletBlockSealSpecCall (244) */
|
|
12303
12278
|
interface PalletBlockSealSpecCall extends Enum {
|
|
12304
12279
|
readonly isConfigure: boolean;
|
|
12305
12280
|
readonly asConfigure: {
|
|
@@ -12308,7 +12283,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12308
12283
|
} & Struct;
|
|
12309
12284
|
readonly type: 'Configure';
|
|
12310
12285
|
}
|
|
12311
|
-
/** @name PalletDomainsCall (
|
|
12286
|
+
/** @name PalletDomainsCall (245) */
|
|
12312
12287
|
interface PalletDomainsCall extends Enum {
|
|
12313
12288
|
readonly isSetZoneRecord: boolean;
|
|
12314
12289
|
readonly asSetZoneRecord: {
|
|
@@ -12317,7 +12292,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12317
12292
|
} & Struct;
|
|
12318
12293
|
readonly type: 'SetZoneRecord';
|
|
12319
12294
|
}
|
|
12320
|
-
/** @name PalletPriceIndexCall (
|
|
12295
|
+
/** @name PalletPriceIndexCall (246) */
|
|
12321
12296
|
interface PalletPriceIndexCall extends Enum {
|
|
12322
12297
|
readonly isSubmit: boolean;
|
|
12323
12298
|
readonly asSubmit: {
|
|
@@ -12330,7 +12305,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12330
12305
|
} & Struct;
|
|
12331
12306
|
readonly type: 'Submit' | 'SetOperator';
|
|
12332
12307
|
}
|
|
12333
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
12308
|
+
/** @name PalletPriceIndexPriceIndex (247) */
|
|
12334
12309
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
12335
12310
|
readonly btcUsdPrice: Compact<u128>;
|
|
12336
12311
|
readonly argonotUsdPrice: u128;
|
|
@@ -12339,13 +12314,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12339
12314
|
readonly argonTimeWeightedAverageLiquidity: u128;
|
|
12340
12315
|
readonly tick: Compact<u64>;
|
|
12341
12316
|
}
|
|
12342
|
-
/** @name PalletPriceIndexEthereumPriceIndex (
|
|
12317
|
+
/** @name PalletPriceIndexEthereumPriceIndex (249) */
|
|
12343
12318
|
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
12344
12319
|
readonly ethereumUsdPrice: u128;
|
|
12345
12320
|
readonly ethereumGasPriceWei: Compact<u128>;
|
|
12346
12321
|
readonly tick: Compact<u64>;
|
|
12347
12322
|
}
|
|
12348
|
-
/** @name PalletGrandpaCall (
|
|
12323
|
+
/** @name PalletGrandpaCall (250) */
|
|
12349
12324
|
interface PalletGrandpaCall extends Enum {
|
|
12350
12325
|
readonly isReportEquivocation: boolean;
|
|
12351
12326
|
readonly asReportEquivocation: {
|
|
@@ -12364,12 +12339,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12364
12339
|
} & Struct;
|
|
12365
12340
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
12366
12341
|
}
|
|
12367
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
12342
|
+
/** @name SpConsensusGrandpaEquivocationProof (251) */
|
|
12368
12343
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
12369
12344
|
readonly setId: u64;
|
|
12370
12345
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
12371
12346
|
}
|
|
12372
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
12347
|
+
/** @name SpConsensusGrandpaEquivocation (252) */
|
|
12373
12348
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
12374
12349
|
readonly isPrevote: boolean;
|
|
12375
12350
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -12377,36 +12352,36 @@ declare module '@polkadot/types/lookup' {
|
|
|
12377
12352
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
12378
12353
|
readonly type: 'Prevote' | 'Precommit';
|
|
12379
12354
|
}
|
|
12380
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
12355
|
+
/** @name FinalityGrandpaEquivocationPrevote (253) */
|
|
12381
12356
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
12382
12357
|
readonly roundNumber: u64;
|
|
12383
12358
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
12384
12359
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
12385
12360
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
12386
12361
|
}
|
|
12387
|
-
/** @name FinalityGrandpaPrevote (
|
|
12362
|
+
/** @name FinalityGrandpaPrevote (254) */
|
|
12388
12363
|
interface FinalityGrandpaPrevote extends Struct {
|
|
12389
12364
|
readonly targetHash: H256;
|
|
12390
12365
|
readonly targetNumber: u32;
|
|
12391
12366
|
}
|
|
12392
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
12367
|
+
/** @name SpConsensusGrandpaAppSignature (255) */
|
|
12393
12368
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {
|
|
12394
12369
|
}
|
|
12395
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
12370
|
+
/** @name FinalityGrandpaEquivocationPrecommit (257) */
|
|
12396
12371
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
12397
12372
|
readonly roundNumber: u64;
|
|
12398
12373
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
12399
12374
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
12400
12375
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
12401
12376
|
}
|
|
12402
|
-
/** @name FinalityGrandpaPrecommit (
|
|
12377
|
+
/** @name FinalityGrandpaPrecommit (258) */
|
|
12403
12378
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
12404
12379
|
readonly targetHash: H256;
|
|
12405
12380
|
readonly targetNumber: u32;
|
|
12406
12381
|
}
|
|
12407
|
-
/** @name SpCoreVoid (
|
|
12382
|
+
/** @name SpCoreVoid (260) */
|
|
12408
12383
|
type SpCoreVoid = Null;
|
|
12409
|
-
/** @name PalletBlockSealCall (
|
|
12384
|
+
/** @name PalletBlockSealCall (261) */
|
|
12410
12385
|
interface PalletBlockSealCall extends Enum {
|
|
12411
12386
|
readonly isApply: boolean;
|
|
12412
12387
|
readonly asApply: {
|
|
@@ -12414,7 +12389,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12414
12389
|
} & Struct;
|
|
12415
12390
|
readonly type: 'Apply';
|
|
12416
12391
|
}
|
|
12417
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
12392
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (262) */
|
|
12418
12393
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
12419
12394
|
readonly isVote: boolean;
|
|
12420
12395
|
readonly asVote: {
|
|
@@ -12428,13 +12403,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12428
12403
|
readonly isCompute: boolean;
|
|
12429
12404
|
readonly type: 'Vote' | 'Compute';
|
|
12430
12405
|
}
|
|
12431
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
12406
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (263) */
|
|
12432
12407
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
12433
12408
|
readonly proof: Vec<H256>;
|
|
12434
12409
|
readonly numberOfLeaves: Compact<u32>;
|
|
12435
12410
|
readonly leafIndex: Compact<u32>;
|
|
12436
12411
|
}
|
|
12437
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
12412
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (265) */
|
|
12438
12413
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
12439
12414
|
readonly accountId: AccountId32;
|
|
12440
12415
|
readonly blockHash: H256;
|
|
@@ -12444,7 +12419,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12444
12419
|
readonly blockRewardsAccountId: AccountId32;
|
|
12445
12420
|
readonly tick: Compact<u64>;
|
|
12446
12421
|
}
|
|
12447
|
-
/** @name PalletBlockRewardsCall (
|
|
12422
|
+
/** @name PalletBlockRewardsCall (266) */
|
|
12448
12423
|
interface PalletBlockRewardsCall extends Enum {
|
|
12449
12424
|
readonly isSetBlockRewardsPaused: boolean;
|
|
12450
12425
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -12456,9 +12431,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
12456
12431
|
} & Struct;
|
|
12457
12432
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
12458
12433
|
}
|
|
12459
|
-
/** @name PalletMintCall (
|
|
12434
|
+
/** @name PalletMintCall (267) */
|
|
12460
12435
|
type PalletMintCall = Null;
|
|
12461
|
-
/** @name PalletBalancesCall (
|
|
12436
|
+
/** @name PalletBalancesCall (268) */
|
|
12462
12437
|
interface PalletBalancesCall extends Enum {
|
|
12463
12438
|
readonly isTransferAllowDeath: boolean;
|
|
12464
12439
|
readonly asTransferAllowDeath: {
|
|
@@ -12507,13 +12482,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12507
12482
|
} & Struct;
|
|
12508
12483
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
|
|
12509
12484
|
}
|
|
12510
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
12485
|
+
/** @name PalletBalancesAdjustmentDirection (269) */
|
|
12511
12486
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
12512
12487
|
readonly isIncrease: boolean;
|
|
12513
12488
|
readonly isDecrease: boolean;
|
|
12514
12489
|
readonly type: 'Increase' | 'Decrease';
|
|
12515
12490
|
}
|
|
12516
|
-
/** @name PalletTxPauseCall (
|
|
12491
|
+
/** @name PalletTxPauseCall (271) */
|
|
12517
12492
|
interface PalletTxPauseCall extends Enum {
|
|
12518
12493
|
readonly isPause: boolean;
|
|
12519
12494
|
readonly asPause: {
|
|
@@ -12525,7 +12500,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12525
12500
|
} & Struct;
|
|
12526
12501
|
readonly type: 'Pause' | 'Unpause';
|
|
12527
12502
|
}
|
|
12528
|
-
/** @name PalletUtilityCall (
|
|
12503
|
+
/** @name PalletUtilityCall (272) */
|
|
12529
12504
|
interface PalletUtilityCall extends Enum {
|
|
12530
12505
|
readonly isBatch: boolean;
|
|
12531
12506
|
readonly asBatch: {
|
|
@@ -12566,7 +12541,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12566
12541
|
} & Struct;
|
|
12567
12542
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'IfElse' | 'DispatchAsFallible';
|
|
12568
12543
|
}
|
|
12569
|
-
/** @name PalletSudoCall (
|
|
12544
|
+
/** @name PalletSudoCall (274) */
|
|
12570
12545
|
interface PalletSudoCall extends Enum {
|
|
12571
12546
|
readonly isSudo: boolean;
|
|
12572
12547
|
readonly asSudo: {
|
|
@@ -12589,7 +12564,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12589
12564
|
readonly isRemoveKey: boolean;
|
|
12590
12565
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
12591
12566
|
}
|
|
12592
|
-
/** @name PalletTreasuryCall (
|
|
12567
|
+
/** @name PalletTreasuryCall (275) */
|
|
12593
12568
|
interface PalletTreasuryCall extends Enum {
|
|
12594
12569
|
readonly isBuyBonds: boolean;
|
|
12595
12570
|
readonly asBuyBonds: {
|
|
@@ -12617,7 +12592,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12617
12592
|
} & Struct;
|
|
12618
12593
|
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds' | 'SetBondLotFlexible' | 'SetReservedBondSpace';
|
|
12619
12594
|
}
|
|
12620
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
12595
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (277) */
|
|
12621
12596
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
12622
12597
|
readonly vaultId: Compact<u32>;
|
|
12623
12598
|
readonly beneficiary: AccountId32;
|
|
@@ -12627,7 +12602,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12627
12602
|
readonly nonce: Compact<u64>;
|
|
12628
12603
|
readonly signature: SpRuntimeMultiSignature;
|
|
12629
12604
|
}
|
|
12630
|
-
/** @name PalletOperationalAccountsCall (
|
|
12605
|
+
/** @name PalletOperationalAccountsCall (278) */
|
|
12631
12606
|
interface PalletOperationalAccountsCall extends Enum {
|
|
12632
12607
|
readonly isRegister: boolean;
|
|
12633
12608
|
readonly asRegister: {
|
|
@@ -12655,13 +12630,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12655
12630
|
} & Struct;
|
|
12656
12631
|
readonly type: 'Register' | 'SetName' | 'SetRewardConfig' | 'ForceSetProgress' | 'Activate' | 'ClaimRewards';
|
|
12657
12632
|
}
|
|
12658
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
12633
|
+
/** @name PalletOperationalAccountsRegistration (279) */
|
|
12659
12634
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
12660
12635
|
readonly isV1: boolean;
|
|
12661
12636
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
12662
12637
|
readonly type: 'V1';
|
|
12663
12638
|
}
|
|
12664
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
12639
|
+
/** @name PalletOperationalAccountsRegistrationV1 (280) */
|
|
12665
12640
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
12666
12641
|
readonly operationalAccount: AccountId32;
|
|
12667
12642
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -12672,19 +12647,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
12672
12647
|
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
12673
12648
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
12674
12649
|
}
|
|
12675
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
12650
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (281) */
|
|
12676
12651
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {
|
|
12677
12652
|
}
|
|
12678
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
12653
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (282) */
|
|
12679
12654
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
12680
12655
|
readonly signature: SpRuntimeMultiSignature;
|
|
12681
12656
|
}
|
|
12682
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
12657
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (284) */
|
|
12683
12658
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
12684
12659
|
readonly upstreamAccount: AccountId32;
|
|
12685
12660
|
readonly signature: SpRuntimeMultiSignature;
|
|
12686
12661
|
}
|
|
12687
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
12662
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (287) */
|
|
12688
12663
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
12689
12664
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
12690
12665
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -12693,7 +12668,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12693
12668
|
readonly vaultBitcoinAmount: Option<u128>;
|
|
12694
12669
|
readonly miningSeatCount: Option<u32>;
|
|
12695
12670
|
}
|
|
12696
|
-
/** @name PalletEthereumVerifierCall (
|
|
12671
|
+
/** @name PalletEthereumVerifierCall (289) */
|
|
12697
12672
|
interface PalletEthereumVerifierCall extends Enum {
|
|
12698
12673
|
readonly isForceCheckpoint: boolean;
|
|
12699
12674
|
readonly asForceCheckpoint: {
|
|
@@ -12716,7 +12691,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12716
12691
|
} & Struct;
|
|
12717
12692
|
readonly type: 'ForceCheckpoint' | 'Submit' | 'ImportTrustedExecutionHeaderBackfill' | 'SetOperatingMode';
|
|
12718
12693
|
}
|
|
12719
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
12694
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (290) */
|
|
12720
12695
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
12721
12696
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
12722
12697
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -12724,7 +12699,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12724
12699
|
readonly validatorsRoot: H256;
|
|
12725
12700
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
12726
12701
|
}
|
|
12727
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
12702
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (291) */
|
|
12728
12703
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
12729
12704
|
readonly slot: u64;
|
|
12730
12705
|
readonly proposerIndex: u64;
|
|
@@ -12732,20 +12707,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
12732
12707
|
readonly stateRoot: H256;
|
|
12733
12708
|
readonly bodyRoot: H256;
|
|
12734
12709
|
}
|
|
12735
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
12710
|
+
/** @name PalletEthereumVerifierSyncCommittee (292) */
|
|
12736
12711
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
12737
12712
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
12738
12713
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
12739
12714
|
}
|
|
12740
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
12715
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (294) */
|
|
12741
12716
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {
|
|
12742
12717
|
}
|
|
12743
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
12718
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (298) */
|
|
12744
12719
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
12745
12720
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
12746
12721
|
readonly executionBranch: Vec<H256>;
|
|
12747
12722
|
}
|
|
12748
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
12723
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (299) */
|
|
12749
12724
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
12750
12725
|
readonly isCapella: boolean;
|
|
12751
12726
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -12753,7 +12728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12753
12728
|
readonly asDeneb: SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader;
|
|
12754
12729
|
readonly type: 'Capella' | 'Deneb';
|
|
12755
12730
|
}
|
|
12756
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
12731
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (300) */
|
|
12757
12732
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
12758
12733
|
readonly parentHash: H256;
|
|
12759
12734
|
readonly feeRecipient: H160;
|
|
@@ -12771,7 +12746,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12771
12746
|
readonly transactionsRoot: H256;
|
|
12772
12747
|
readonly withdrawalsRoot: H256;
|
|
12773
12748
|
}
|
|
12774
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
12749
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (301) */
|
|
12775
12750
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
12776
12751
|
readonly parentHash: H256;
|
|
12777
12752
|
readonly feeRecipient: H160;
|
|
@@ -12791,7 +12766,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12791
12766
|
readonly blobGasUsed: u64;
|
|
12792
12767
|
readonly excessBlobGas: u64;
|
|
12793
12768
|
}
|
|
12794
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
12769
|
+
/** @name PalletEthereumVerifierForkVersions (302) */
|
|
12795
12770
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
12796
12771
|
readonly genesis: PalletEthereumVerifierFork;
|
|
12797
12772
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -12801,12 +12776,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12801
12776
|
readonly electra: PalletEthereumVerifierFork;
|
|
12802
12777
|
readonly fulu: PalletEthereumVerifierFork;
|
|
12803
12778
|
}
|
|
12804
|
-
/** @name PalletEthereumVerifierFork (
|
|
12779
|
+
/** @name PalletEthereumVerifierFork (303) */
|
|
12805
12780
|
interface PalletEthereumVerifierFork extends Struct {
|
|
12806
12781
|
readonly version: U8aFixed;
|
|
12807
12782
|
readonly epoch: Compact<u64>;
|
|
12808
12783
|
}
|
|
12809
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
12784
|
+
/** @name PalletEthereumVerifierUpdate (304) */
|
|
12810
12785
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
12811
12786
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
12812
12787
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -12816,20 +12791,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
12816
12791
|
readonly finalityBranch: Vec<H256>;
|
|
12817
12792
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
12818
12793
|
}
|
|
12819
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
12794
|
+
/** @name PalletEthereumVerifierSyncAggregate (305) */
|
|
12820
12795
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
12821
12796
|
readonly syncCommitteeBits: Bytes;
|
|
12822
12797
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
12823
12798
|
}
|
|
12824
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
12799
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (307) */
|
|
12825
12800
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {
|
|
12826
12801
|
}
|
|
12827
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
12802
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (310) */
|
|
12828
12803
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
12829
12804
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
12830
12805
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
12831
12806
|
}
|
|
12832
|
-
/** @name PalletCrosschainTransferCall (
|
|
12807
|
+
/** @name PalletCrosschainTransferCall (311) */
|
|
12833
12808
|
interface PalletCrosschainTransferCall extends Enum {
|
|
12834
12809
|
readonly isSetChainConfig: boolean;
|
|
12835
12810
|
readonly asSetChainConfig: {
|
|
@@ -12905,7 +12880,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12905
12880
|
} & Struct;
|
|
12906
12881
|
readonly type: 'SetChainConfig' | 'ForceSetGlobalIssuanceCouncil' | 'PauseGateway' | 'UnpauseGateway' | 'SetMinimumMintingAuthorityValue' | 'SetMintingAuthorityActivationRepaymentPricing' | 'RegisterCouncilSigner' | 'ApproveQueueEntries' | 'ProveGatewayActivity' | 'RegisterMintingAuthority' | 'DeactivateMintingAuthority' | 'TransferOut' | 'CollateralizeTransfer';
|
|
12907
12882
|
}
|
|
12908
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
12883
|
+
/** @name PalletCrosschainTransferChainConfig (312) */
|
|
12909
12884
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
12910
12885
|
readonly isEvm: boolean;
|
|
12911
12886
|
readonly asEvm: {
|
|
@@ -12916,55 +12891,55 @@ declare module '@polkadot/types/lookup' {
|
|
|
12916
12891
|
} & Struct;
|
|
12917
12892
|
readonly type: 'Evm';
|
|
12918
12893
|
}
|
|
12919
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
12894
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (314) */
|
|
12920
12895
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
12921
12896
|
readonly activationGasCost: Compact<u128>;
|
|
12922
12897
|
readonly signatureGasCost: Compact<u128>;
|
|
12923
12898
|
readonly estimatedWeiPerGas: Compact<u128>;
|
|
12924
12899
|
readonly estimatedMicrogonsPerEth: u128;
|
|
12925
12900
|
}
|
|
12926
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
12901
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (317) */
|
|
12927
12902
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
12928
12903
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
12929
12904
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
12930
12905
|
}
|
|
12931
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
12906
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (318) */
|
|
12932
12907
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
12933
12908
|
readonly anchorBlockHash: H256;
|
|
12934
12909
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
12935
12910
|
}
|
|
12936
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
12911
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (320) */
|
|
12937
12912
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
12938
12913
|
readonly rlp: Bytes;
|
|
12939
12914
|
}
|
|
12940
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
12915
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (324) */
|
|
12941
12916
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
12942
12917
|
readonly targetBlockNumber: Compact<u64>;
|
|
12943
12918
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
12944
12919
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
12945
12920
|
}
|
|
12946
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
12921
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (325) */
|
|
12947
12922
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
12948
12923
|
readonly nodes: Vec<Bytes>;
|
|
12949
12924
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
12950
12925
|
}
|
|
12951
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
12926
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (329) */
|
|
12952
12927
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
12953
12928
|
readonly transactionIndex: Compact<u64>;
|
|
12954
12929
|
readonly nodeIndexes: Vec<u16>;
|
|
12955
12930
|
}
|
|
12956
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
12931
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (334) */
|
|
12957
12932
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
12958
12933
|
readonly transactionIndex: Compact<u64>;
|
|
12959
12934
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
12960
12935
|
}
|
|
12961
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
12936
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (335) */
|
|
12962
12937
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
12963
12938
|
readonly address: H160;
|
|
12964
12939
|
readonly topics: Vec<H256>;
|
|
12965
12940
|
readonly data: Bytes;
|
|
12966
12941
|
}
|
|
12967
|
-
/** @name PalletBootstrapCall (
|
|
12942
|
+
/** @name PalletBootstrapCall (340) */
|
|
12968
12943
|
interface PalletBootstrapCall extends Enum {
|
|
12969
12944
|
readonly isSetRecoveryPayload: boolean;
|
|
12970
12945
|
readonly asSetRecoveryPayload: {
|
|
@@ -12979,11 +12954,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
12979
12954
|
} & Struct;
|
|
12980
12955
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
12981
12956
|
}
|
|
12982
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
12957
|
+
/** @name PalletBootstrapRecoveryProof (341) */
|
|
12983
12958
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
12984
12959
|
readonly signature: U8aFixed;
|
|
12985
12960
|
}
|
|
12986
|
-
/** @name PalletMultisigError (
|
|
12961
|
+
/** @name PalletMultisigError (343) */
|
|
12987
12962
|
interface PalletMultisigError extends Enum {
|
|
12988
12963
|
readonly isMinimumThreshold: boolean;
|
|
12989
12964
|
readonly isAlreadyApproved: boolean;
|
|
@@ -13001,19 +12976,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
13001
12976
|
readonly isAlreadyStored: boolean;
|
|
13002
12977
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
13003
12978
|
}
|
|
13004
|
-
/** @name PalletProxyProxyDefinition (
|
|
12979
|
+
/** @name PalletProxyProxyDefinition (346) */
|
|
13005
12980
|
interface PalletProxyProxyDefinition extends Struct {
|
|
13006
12981
|
readonly delegate: AccountId32;
|
|
13007
12982
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
13008
12983
|
readonly delay: u32;
|
|
13009
12984
|
}
|
|
13010
|
-
/** @name PalletProxyAnnouncement (
|
|
12985
|
+
/** @name PalletProxyAnnouncement (350) */
|
|
13011
12986
|
interface PalletProxyAnnouncement extends Struct {
|
|
13012
12987
|
readonly real: AccountId32;
|
|
13013
12988
|
readonly callHash: H256;
|
|
13014
12989
|
readonly height: u32;
|
|
13015
12990
|
}
|
|
13016
|
-
/** @name PalletProxyError (
|
|
12991
|
+
/** @name PalletProxyError (352) */
|
|
13017
12992
|
interface PalletProxyError extends Enum {
|
|
13018
12993
|
readonly isTooMany: boolean;
|
|
13019
12994
|
readonly isNotFound: boolean;
|
|
@@ -13025,34 +13000,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
13025
13000
|
readonly isNoSelfProxy: boolean;
|
|
13026
13001
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
13027
13002
|
}
|
|
13028
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
13003
|
+
/** @name ArgonPrimitivesTickTicker (353) */
|
|
13029
13004
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
13030
13005
|
readonly tickDurationMillis: Compact<u64>;
|
|
13031
13006
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
13032
13007
|
}
|
|
13033
|
-
/** @name PalletTicksError (
|
|
13008
|
+
/** @name PalletTicksError (355) */
|
|
13034
13009
|
type PalletTicksError = Null;
|
|
13035
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
13010
|
+
/** @name PalletMiningSlotMinerNonceScoring (358) */
|
|
13036
13011
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
13037
13012
|
readonly nonce: U256;
|
|
13038
13013
|
readonly lastWinBlock: Option<u32>;
|
|
13039
13014
|
readonly blocksWonInFrame: u16;
|
|
13040
13015
|
readonly frameStartBlocksWonSurplus: i16;
|
|
13041
13016
|
}
|
|
13042
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
13017
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (370) */
|
|
13043
13018
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
13044
13019
|
readonly bidsCount: u32;
|
|
13045
13020
|
readonly bidAmountMin: u128;
|
|
13046
13021
|
readonly bidAmountMax: u128;
|
|
13047
13022
|
readonly bidAmountSum: u128;
|
|
13048
13023
|
}
|
|
13049
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
13024
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (374) */
|
|
13050
13025
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
13051
13026
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
13052
13027
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
13053
13028
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
13054
13029
|
}
|
|
13055
|
-
/** @name PalletMiningSlotError (
|
|
13030
|
+
/** @name PalletMiningSlotError (384) */
|
|
13056
13031
|
interface PalletMiningSlotError extends Enum {
|
|
13057
13032
|
readonly isSlotNotTakingBids: boolean;
|
|
13058
13033
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -13067,7 +13042,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13067
13042
|
readonly isUnrecoverableHold: boolean;
|
|
13068
13043
|
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'OperationalAccountRegistrationRequired' | 'UnrecoverableHold';
|
|
13069
13044
|
}
|
|
13070
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
13045
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (385) */
|
|
13071
13046
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
13072
13047
|
readonly utxoId: u64;
|
|
13073
13048
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -13075,7 +13050,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13075
13050
|
readonly submittedAtHeight: Compact<u64>;
|
|
13076
13051
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
13077
13052
|
}
|
|
13078
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
13053
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (386) */
|
|
13079
13054
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
13080
13055
|
readonly isP2wsh: boolean;
|
|
13081
13056
|
readonly asP2wsh: {
|
|
@@ -13083,7 +13058,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13083
13058
|
} & Struct;
|
|
13084
13059
|
readonly type: 'P2wsh';
|
|
13085
13060
|
}
|
|
13086
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
13061
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (395) */
|
|
13087
13062
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
13088
13063
|
readonly isBitcoin: boolean;
|
|
13089
13064
|
readonly isTestnet: boolean;
|
|
@@ -13091,7 +13066,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13091
13066
|
readonly isRegtest: boolean;
|
|
13092
13067
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
13093
13068
|
}
|
|
13094
|
-
/** @name PalletBitcoinUtxosError (
|
|
13069
|
+
/** @name PalletBitcoinUtxosError (396) */
|
|
13095
13070
|
interface PalletBitcoinUtxosError extends Enum {
|
|
13096
13071
|
readonly isNoPermissions: boolean;
|
|
13097
13072
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -13110,7 +13085,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13110
13085
|
readonly isLockAlreadyFunded: boolean;
|
|
13111
13086
|
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
|
|
13112
13087
|
}
|
|
13113
|
-
/** @name ArgonPrimitivesVault (
|
|
13088
|
+
/** @name ArgonPrimitivesVault (397) */
|
|
13114
13089
|
interface ArgonPrimitivesVault extends Struct {
|
|
13115
13090
|
readonly operatorAccountId: AccountId32;
|
|
13116
13091
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -13131,12 +13106,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
13131
13106
|
readonly openedTick: Compact<u64>;
|
|
13132
13107
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
13133
13108
|
}
|
|
13134
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
13109
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (404) */
|
|
13135
13110
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
13136
13111
|
readonly committedMicronots: Compact<u128>;
|
|
13137
13112
|
readonly encumberedMicronots: Compact<u128>;
|
|
13138
13113
|
}
|
|
13139
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
13114
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (406) */
|
|
13140
13115
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
13141
13116
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
13142
13117
|
readonly depth: Compact<u8>;
|
|
@@ -13145,13 +13120,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
13145
13120
|
readonly chainCode: U8aFixed;
|
|
13146
13121
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
13147
13122
|
}
|
|
13148
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
13123
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (408) */
|
|
13149
13124
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
13150
13125
|
readonly isMain: boolean;
|
|
13151
13126
|
readonly isTest: boolean;
|
|
13152
13127
|
readonly type: 'Main' | 'Test';
|
|
13153
13128
|
}
|
|
13154
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
13129
|
+
/** @name PalletVaultsVaultFrameRevenue (417) */
|
|
13155
13130
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
13156
13131
|
readonly frameId: Compact<u64>;
|
|
13157
13132
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -13170,7 +13145,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13170
13145
|
readonly treasuryExternalCapital: Compact<u128>;
|
|
13171
13146
|
readonly uncollectedRevenue: Compact<u128>;
|
|
13172
13147
|
}
|
|
13173
|
-
/** @name PalletVaultsError (
|
|
13148
|
+
/** @name PalletVaultsError (419) */
|
|
13174
13149
|
interface PalletVaultsError extends Enum {
|
|
13175
13150
|
readonly isNoMoreVaultIds: boolean;
|
|
13176
13151
|
readonly isInsufficientFunds: boolean;
|
|
@@ -13206,7 +13181,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13206
13181
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
13207
13182
|
readonly type: 'NoMoreVaultIds' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowSecuritization' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'OverdueCollectBlockersBeforeCollect' | 'AccountAlreadyHasVault' | 'OperationalAccountRegistrationRequired' | 'CommittedArgonotsBelowEncumberedBacking';
|
|
13208
13183
|
}
|
|
13209
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
13184
|
+
/** @name PalletBitcoinLocksLockedBitcoin (420) */
|
|
13210
13185
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
13211
13186
|
readonly vaultId: Compact<u32>;
|
|
13212
13187
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -13230,7 +13205,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13230
13205
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
13231
13206
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
13232
13207
|
}
|
|
13233
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
13208
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (424) */
|
|
13234
13209
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
13235
13210
|
readonly utxoId: Compact<u64>;
|
|
13236
13211
|
readonly vaultId: Compact<u32>;
|
|
@@ -13239,7 +13214,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13239
13214
|
readonly toScriptPubkey: Bytes;
|
|
13240
13215
|
readonly redemptionAmount: Compact<u128>;
|
|
13241
13216
|
}
|
|
13242
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
13217
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (426) */
|
|
13243
13218
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
13244
13219
|
readonly utxoId: Compact<u64>;
|
|
13245
13220
|
readonly vaultId: Compact<u32>;
|
|
@@ -13247,13 +13222,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
13247
13222
|
readonly recordedArgonBlockNumber: Compact<u32>;
|
|
13248
13223
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
13249
13224
|
}
|
|
13250
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
13225
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (428) */
|
|
13251
13226
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
13252
13227
|
readonly bitcoinNetworkFee: u64;
|
|
13253
13228
|
readonly toScriptPubkey: Bytes;
|
|
13254
13229
|
readonly createdAtArgonBlockNumber: u32;
|
|
13255
13230
|
}
|
|
13256
|
-
/** @name PalletBitcoinLocksError (
|
|
13231
|
+
/** @name PalletBitcoinLocksError (435) */
|
|
13257
13232
|
interface PalletBitcoinLocksError extends Enum {
|
|
13258
13233
|
readonly isInsufficientFunds: boolean;
|
|
13259
13234
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -13287,9 +13262,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
13287
13262
|
readonly isLockPendingFunding: boolean;
|
|
13288
13263
|
readonly isOverflowError: boolean;
|
|
13289
13264
|
readonly isIneligibleMicrogonRateRequested: boolean;
|
|
13290
|
-
readonly isFeeCouponWrongVault: boolean;
|
|
13291
|
-
readonly isFeeCouponWrongChain: boolean;
|
|
13292
|
-
readonly isFeeCouponWrongAccount: boolean;
|
|
13293
13265
|
readonly isFeeCouponExpired: boolean;
|
|
13294
13266
|
readonly isInvalidFeeCouponSignature: boolean;
|
|
13295
13267
|
readonly isFeeCouponAlreadyUsed: boolean;
|
|
@@ -13298,11 +13270,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
13298
13270
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
13299
13271
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
13300
13272
|
readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
|
|
13301
|
-
readonly
|
|
13302
|
-
readonly isFeeCouponWrongTargetPrice: boolean;
|
|
13303
|
-
readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'FeeCouponWrongVault' | 'FeeCouponWrongChain' | 'FeeCouponWrongAccount' | 'FeeCouponExpired' | 'InvalidFeeCouponSignature' | 'FeeCouponAlreadyUsed' | 'FeeCouponOnlyForInitialization' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded' | 'FeeCouponWrongSatoshis' | 'FeeCouponWrongTargetPrice';
|
|
13273
|
+
readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'FeeCouponExpired' | 'InvalidFeeCouponSignature' | 'FeeCouponAlreadyUsed' | 'FeeCouponOnlyForInitialization' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
13304
13274
|
}
|
|
13305
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
13275
|
+
/** @name ArgonPrimitivesVaultVaultError (436) */
|
|
13306
13276
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
13307
13277
|
readonly isVaultClosed: boolean;
|
|
13308
13278
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -13319,7 +13289,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13319
13289
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
13320
13290
|
readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive' | 'CommittedArgonotsBelowEncumberedBacking';
|
|
13321
13291
|
}
|
|
13322
|
-
/** @name PalletNotariesError (
|
|
13292
|
+
/** @name PalletNotariesError (448) */
|
|
13323
13293
|
interface PalletNotariesError extends Enum {
|
|
13324
13294
|
readonly isProposalNotFound: boolean;
|
|
13325
13295
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -13332,7 +13302,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13332
13302
|
readonly isInvalidNotary: boolean;
|
|
13333
13303
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
13334
13304
|
}
|
|
13335
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
13305
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (452) */
|
|
13336
13306
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
13337
13307
|
readonly notebookNumber: Compact<u32>;
|
|
13338
13308
|
readonly tick: Compact<u64>;
|
|
@@ -13340,7 +13310,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13340
13310
|
readonly secretHash: H256;
|
|
13341
13311
|
readonly parentSecret: Option<H256>;
|
|
13342
13312
|
}
|
|
13343
|
-
/** @name PalletNotebookError (
|
|
13313
|
+
/** @name PalletNotebookError (455) */
|
|
13344
13314
|
interface PalletNotebookError extends Enum {
|
|
13345
13315
|
readonly isDuplicateNotebookNumber: boolean;
|
|
13346
13316
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -13359,17 +13329,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
13359
13329
|
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
13360
13330
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
13361
13331
|
}
|
|
13362
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
13332
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (456) */
|
|
13363
13333
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
13364
13334
|
readonly accountId: AccountId32;
|
|
13365
13335
|
readonly amount: u128;
|
|
13366
13336
|
readonly expirationTick: u64;
|
|
13367
13337
|
readonly notaryId: u32;
|
|
13368
13338
|
}
|
|
13369
|
-
/** @name FrameSupportPalletId (
|
|
13339
|
+
/** @name FrameSupportPalletId (458) */
|
|
13370
13340
|
interface FrameSupportPalletId extends U8aFixed {
|
|
13371
13341
|
}
|
|
13372
|
-
/** @name PalletLocalchainTransferError (
|
|
13342
|
+
/** @name PalletLocalchainTransferError (459) */
|
|
13373
13343
|
interface PalletLocalchainTransferError extends Enum {
|
|
13374
13344
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
13375
13345
|
readonly isInsufficientFunds: boolean;
|
|
@@ -13381,7 +13351,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13381
13351
|
readonly isNoAvailableTransferId: boolean;
|
|
13382
13352
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
|
|
13383
13353
|
}
|
|
13384
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
13354
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (463) */
|
|
13385
13355
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
13386
13356
|
readonly notaryId: Compact<u32>;
|
|
13387
13357
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -13389,12 +13359,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
13389
13359
|
readonly blockVotesCount: Compact<u32>;
|
|
13390
13360
|
readonly blockVotingPower: Compact<u128>;
|
|
13391
13361
|
}
|
|
13392
|
-
/** @name PalletBlockSealSpecError (
|
|
13362
|
+
/** @name PalletBlockSealSpecError (468) */
|
|
13393
13363
|
interface PalletBlockSealSpecError extends Enum {
|
|
13394
13364
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
13395
13365
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
13396
13366
|
}
|
|
13397
|
-
/** @name PalletDomainsError (
|
|
13367
|
+
/** @name PalletDomainsError (470) */
|
|
13398
13368
|
interface PalletDomainsError extends Enum {
|
|
13399
13369
|
readonly isDomainNotRegistered: boolean;
|
|
13400
13370
|
readonly isNotDomainOwner: boolean;
|
|
@@ -13403,25 +13373,25 @@ declare module '@polkadot/types/lookup' {
|
|
|
13403
13373
|
readonly isAccountDecodingError: boolean;
|
|
13404
13374
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
13405
13375
|
}
|
|
13406
|
-
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (
|
|
13376
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (472) */
|
|
13407
13377
|
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
13408
13378
|
readonly totalUsdPrice: u128;
|
|
13409
13379
|
readonly totalWeiPerGas: Compact<u128>;
|
|
13410
13380
|
readonly sampleCount: Compact<u32>;
|
|
13411
13381
|
}
|
|
13412
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
13382
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (477) */
|
|
13413
13383
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
13414
13384
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
13415
13385
|
readonly totalCpi: i128;
|
|
13416
13386
|
readonly measurementsCount: u32;
|
|
13417
13387
|
}
|
|
13418
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
13388
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (481) */
|
|
13419
13389
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
13420
13390
|
readonly frameId: Compact<u64>;
|
|
13421
13391
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
13422
13392
|
readonly sampleCount: Compact<u32>;
|
|
13423
13393
|
}
|
|
13424
|
-
/** @name PalletPriceIndexError (
|
|
13394
|
+
/** @name PalletPriceIndexError (482) */
|
|
13425
13395
|
interface PalletPriceIndexError extends Enum {
|
|
13426
13396
|
readonly isNotAuthorizedOperator: boolean;
|
|
13427
13397
|
readonly isMissingValue: boolean;
|
|
@@ -13430,7 +13400,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13430
13400
|
readonly isInvalidEthereumPrices: boolean;
|
|
13431
13401
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded' | 'InvalidEthereumPrices';
|
|
13432
13402
|
}
|
|
13433
|
-
/** @name PalletGrandpaStoredState (
|
|
13403
|
+
/** @name PalletGrandpaStoredState (483) */
|
|
13434
13404
|
interface PalletGrandpaStoredState extends Enum {
|
|
13435
13405
|
readonly isLive: boolean;
|
|
13436
13406
|
readonly isPendingPause: boolean;
|
|
@@ -13446,14 +13416,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
13446
13416
|
} & Struct;
|
|
13447
13417
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
13448
13418
|
}
|
|
13449
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
13419
|
+
/** @name PalletGrandpaStoredPendingChange (484) */
|
|
13450
13420
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
13451
13421
|
readonly scheduledAt: u32;
|
|
13452
13422
|
readonly delay: u32;
|
|
13453
13423
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
13454
13424
|
readonly forced: Option<u32>;
|
|
13455
13425
|
}
|
|
13456
|
-
/** @name PalletGrandpaError (
|
|
13426
|
+
/** @name PalletGrandpaError (486) */
|
|
13457
13427
|
interface PalletGrandpaError extends Enum {
|
|
13458
13428
|
readonly isPauseFailed: boolean;
|
|
13459
13429
|
readonly isResumeFailed: boolean;
|
|
@@ -13464,13 +13434,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
13464
13434
|
readonly isDuplicateOffenceReport: boolean;
|
|
13465
13435
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
13466
13436
|
}
|
|
13467
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
13437
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (487) */
|
|
13468
13438
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
13469
13439
|
readonly blockAuthorAccountId: AccountId32;
|
|
13470
13440
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
13471
13441
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
13472
13442
|
}
|
|
13473
|
-
/** @name PalletBlockSealError (
|
|
13443
|
+
/** @name PalletBlockSealError (489) */
|
|
13474
13444
|
interface PalletBlockSealError extends Enum {
|
|
13475
13445
|
readonly isInvalidVoteSealStrength: boolean;
|
|
13476
13446
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -13495,72 +13465,72 @@ declare module '@polkadot/types/lookup' {
|
|
|
13495
13465
|
readonly isDuplicateVoteBlockAtTick: boolean;
|
|
13496
13466
|
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
|
|
13497
13467
|
}
|
|
13498
|
-
/** @name PalletBlockRewardsError (
|
|
13468
|
+
/** @name PalletBlockRewardsError (493) */
|
|
13499
13469
|
type PalletBlockRewardsError = Null;
|
|
13500
|
-
/** @name PalletMintPendingMintUtxo (
|
|
13470
|
+
/** @name PalletMintPendingMintUtxo (494) */
|
|
13501
13471
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
13502
13472
|
readonly utxoId: Compact<u64>;
|
|
13503
13473
|
readonly accountId: AccountId32;
|
|
13504
13474
|
readonly remainingAmount: Compact<u128>;
|
|
13505
13475
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
13506
13476
|
}
|
|
13507
|
-
/** @name PalletMintMintQueueCursor (
|
|
13477
|
+
/** @name PalletMintMintQueueCursor (496) */
|
|
13508
13478
|
interface PalletMintMintQueueCursor extends Struct {
|
|
13509
13479
|
readonly payoutStartIndex: Compact<u64>;
|
|
13510
13480
|
readonly payoutCursorIndex: Compact<u64>;
|
|
13511
13481
|
readonly payoutCursorFrameId: Option<u64>;
|
|
13512
13482
|
}
|
|
13513
|
-
/** @name PalletMintMintAction (
|
|
13483
|
+
/** @name PalletMintMintAction (499) */
|
|
13514
13484
|
interface PalletMintMintAction extends Struct {
|
|
13515
13485
|
readonly argonBurned: u128;
|
|
13516
13486
|
readonly argonMinted: u128;
|
|
13517
13487
|
readonly bitcoinMinted: u128;
|
|
13518
13488
|
}
|
|
13519
|
-
/** @name PalletMintError (
|
|
13489
|
+
/** @name PalletMintError (501) */
|
|
13520
13490
|
interface PalletMintError extends Enum {
|
|
13521
13491
|
readonly isTooManyPendingMints: boolean;
|
|
13522
13492
|
readonly type: 'TooManyPendingMints';
|
|
13523
13493
|
}
|
|
13524
|
-
/** @name PalletBalancesBalanceLock (
|
|
13494
|
+
/** @name PalletBalancesBalanceLock (503) */
|
|
13525
13495
|
interface PalletBalancesBalanceLock extends Struct {
|
|
13526
13496
|
readonly id: U8aFixed;
|
|
13527
13497
|
readonly amount: u128;
|
|
13528
13498
|
readonly reasons: PalletBalancesReasons;
|
|
13529
13499
|
}
|
|
13530
|
-
/** @name PalletBalancesReasons (
|
|
13500
|
+
/** @name PalletBalancesReasons (504) */
|
|
13531
13501
|
interface PalletBalancesReasons extends Enum {
|
|
13532
13502
|
readonly isFee: boolean;
|
|
13533
13503
|
readonly isMisc: boolean;
|
|
13534
13504
|
readonly isAll: boolean;
|
|
13535
13505
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
13536
13506
|
}
|
|
13537
|
-
/** @name PalletBalancesReserveData (
|
|
13507
|
+
/** @name PalletBalancesReserveData (507) */
|
|
13538
13508
|
interface PalletBalancesReserveData extends Struct {
|
|
13539
13509
|
readonly id: U8aFixed;
|
|
13540
13510
|
readonly amount: u128;
|
|
13541
13511
|
}
|
|
13542
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
13512
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (510) */
|
|
13543
13513
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
13544
13514
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
13545
13515
|
readonly amount: u128;
|
|
13546
13516
|
}
|
|
13547
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
13517
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (513) */
|
|
13548
13518
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
13549
13519
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
13550
13520
|
readonly amount: u128;
|
|
13551
13521
|
}
|
|
13552
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
13522
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (514) */
|
|
13553
13523
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
13554
13524
|
readonly isBlockRewards: boolean;
|
|
13555
13525
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
13556
13526
|
readonly type: 'BlockRewards';
|
|
13557
13527
|
}
|
|
13558
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
13528
|
+
/** @name PalletBlockRewardsFreezeReason (515) */
|
|
13559
13529
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
13560
13530
|
readonly isMaturationPeriod: boolean;
|
|
13561
13531
|
readonly type: 'MaturationPeriod';
|
|
13562
13532
|
}
|
|
13563
|
-
/** @name PalletBalancesError (
|
|
13533
|
+
/** @name PalletBalancesError (517) */
|
|
13564
13534
|
interface PalletBalancesError extends Enum {
|
|
13565
13535
|
readonly isVestingBalance: boolean;
|
|
13566
13536
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -13576,7 +13546,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13576
13546
|
readonly isDeltaZero: boolean;
|
|
13577
13547
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
13578
13548
|
}
|
|
13579
|
-
/** @name PalletTxPauseError (
|
|
13549
|
+
/** @name PalletTxPauseError (519) */
|
|
13580
13550
|
interface PalletTxPauseError extends Enum {
|
|
13581
13551
|
readonly isIsPaused: boolean;
|
|
13582
13552
|
readonly isIsUnpaused: boolean;
|
|
@@ -13584,58 +13554,58 @@ declare module '@polkadot/types/lookup' {
|
|
|
13584
13554
|
readonly isNotFound: boolean;
|
|
13585
13555
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
13586
13556
|
}
|
|
13587
|
-
/** @name PalletTransactionPaymentReleases (
|
|
13557
|
+
/** @name PalletTransactionPaymentReleases (520) */
|
|
13588
13558
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
13589
13559
|
readonly isV1Ancient: boolean;
|
|
13590
13560
|
readonly isV2: boolean;
|
|
13591
13561
|
readonly type: 'V1Ancient' | 'V2';
|
|
13592
13562
|
}
|
|
13593
|
-
/** @name FrameSupportStorageNoDrop (
|
|
13563
|
+
/** @name FrameSupportStorageNoDrop (521) */
|
|
13594
13564
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {
|
|
13595
13565
|
}
|
|
13596
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
13566
|
+
/** @name FrameSupportTokensFungibleImbalance (522) */
|
|
13597
13567
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
13598
13568
|
readonly amount: u128;
|
|
13599
13569
|
}
|
|
13600
|
-
/** @name PalletUtilityError (
|
|
13570
|
+
/** @name PalletUtilityError (523) */
|
|
13601
13571
|
interface PalletUtilityError extends Enum {
|
|
13602
13572
|
readonly isTooManyCalls: boolean;
|
|
13603
13573
|
readonly type: 'TooManyCalls';
|
|
13604
13574
|
}
|
|
13605
|
-
/** @name PalletSudoError (
|
|
13575
|
+
/** @name PalletSudoError (524) */
|
|
13606
13576
|
interface PalletSudoError extends Enum {
|
|
13607
13577
|
readonly isRequireSudo: boolean;
|
|
13608
13578
|
readonly type: 'RequireSudo';
|
|
13609
13579
|
}
|
|
13610
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
13580
|
+
/** @name PalletTreasuryFrameVaultCapital (525) */
|
|
13611
13581
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
13612
13582
|
readonly frameId: Compact<u64>;
|
|
13613
13583
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
13614
13584
|
}
|
|
13615
|
-
/** @name PalletTreasuryVaultCapital (
|
|
13585
|
+
/** @name PalletTreasuryVaultCapital (527) */
|
|
13616
13586
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
13617
13587
|
readonly regularBondAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
13618
13588
|
readonly flexibleBondsEligible: Compact<u32>;
|
|
13619
13589
|
readonly flexibleProrata: u128;
|
|
13620
13590
|
readonly eligibleBonds: Compact<u32>;
|
|
13621
13591
|
}
|
|
13622
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
13592
|
+
/** @name PalletTreasuryBondLotAllocation (529) */
|
|
13623
13593
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
13624
13594
|
readonly bondLotId: Compact<u64>;
|
|
13625
13595
|
readonly prorata: u128;
|
|
13626
13596
|
}
|
|
13627
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
13597
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (534) */
|
|
13628
13598
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
13629
13599
|
readonly frameId: Compact<u64>;
|
|
13630
13600
|
readonly totalBonds: Compact<u32>;
|
|
13631
13601
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
13632
13602
|
}
|
|
13633
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
13603
|
+
/** @name PalletTreasuryBondLotSummary (536) */
|
|
13634
13604
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
13635
13605
|
readonly bondLotId: Compact<u64>;
|
|
13636
13606
|
readonly bonds: Compact<u32>;
|
|
13637
13607
|
}
|
|
13638
|
-
/** @name PalletTreasuryBondLot (
|
|
13608
|
+
/** @name PalletTreasuryBondLot (538) */
|
|
13639
13609
|
interface PalletTreasuryBondLot extends Struct {
|
|
13640
13610
|
readonly owner: AccountId32;
|
|
13641
13611
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -13649,7 +13619,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13649
13619
|
readonly releaseFrameId: Option<u64>;
|
|
13650
13620
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
13651
13621
|
}
|
|
13652
|
-
/** @name PalletTreasuryBondProgram (
|
|
13622
|
+
/** @name PalletTreasuryBondProgram (539) */
|
|
13653
13623
|
interface PalletTreasuryBondProgram extends Enum {
|
|
13654
13624
|
readonly isVault: boolean;
|
|
13655
13625
|
readonly asVault: {
|
|
@@ -13660,13 +13630,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
13660
13630
|
readonly isArgonot: boolean;
|
|
13661
13631
|
readonly type: 'Vault' | 'Argonot';
|
|
13662
13632
|
}
|
|
13663
|
-
/** @name PalletTreasuryVaultBondState (
|
|
13633
|
+
/** @name PalletTreasuryVaultBondState (542) */
|
|
13664
13634
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
13665
13635
|
readonly regularBondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
13666
13636
|
readonly flexibleBonds: Compact<u32>;
|
|
13667
13637
|
readonly reservedBondSpace: Compact<u32>;
|
|
13668
13638
|
}
|
|
13669
|
-
/** @name PalletTreasuryError (
|
|
13639
|
+
/** @name PalletTreasuryError (544) */
|
|
13670
13640
|
interface PalletTreasuryError extends Enum {
|
|
13671
13641
|
readonly isBondPurchaseRejected: boolean;
|
|
13672
13642
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -13691,12 +13661,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
13691
13661
|
readonly isNoPermissions: boolean;
|
|
13692
13662
|
readonly type: 'BondPurchaseRejected' | 'VaultNotAcceptingBondPurchases' | 'BondPurchaseBelowMinimum' | 'InternalError' | 'MaxAcceptedBondLotsExceeded' | 'MaxPendingBondReleasesExceeded' | 'BondLotNotFound' | 'NotBondLotOwner' | 'BondLotAlreadyReleasing' | 'InsufficientBondSpace' | 'ActiveBondAmountBelowEncumberedBacking' | 'BonusApprovalWrongVault' | 'BonusApprovalWrongAccount' | 'BonusApprovalExpired' | 'BonusApprovalAlreadyUsed' | 'InvalidBonusApprovalSignature' | 'BonusApprovalExceedsProfitSharing' | 'ArgonotBondPurchaseBelowCutoff' | 'ArgonotBondPurchaseAboveCap' | 'BondLotCannotBeFlexible' | 'NoPermissions';
|
|
13693
13663
|
}
|
|
13694
|
-
/** @name PalletFeeControlError (
|
|
13664
|
+
/** @name PalletFeeControlError (545) */
|
|
13695
13665
|
interface PalletFeeControlError extends Enum {
|
|
13696
13666
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
13697
13667
|
readonly type: 'SponsoredFeeTooHigh';
|
|
13698
13668
|
}
|
|
13699
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
13669
|
+
/** @name PalletOperationalAccountsOperationalAccount (546) */
|
|
13700
13670
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
13701
13671
|
readonly vaultAccount: AccountId32;
|
|
13702
13672
|
readonly miningAccount: AccountId32;
|
|
@@ -13719,12 +13689,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
13719
13689
|
readonly rewardsCollectedAmount: u128;
|
|
13720
13690
|
readonly isOperationallyCertified: bool;
|
|
13721
13691
|
}
|
|
13722
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
13692
|
+
/** @name PalletOperationalAccountsRewardsConfig (547) */
|
|
13723
13693
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
13724
13694
|
readonly operationalCertificationReward: Compact<u128>;
|
|
13725
13695
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
13726
13696
|
}
|
|
13727
|
-
/** @name PalletOperationalAccountsError (
|
|
13697
|
+
/** @name PalletOperationalAccountsError (548) */
|
|
13728
13698
|
interface PalletOperationalAccountsError extends Enum {
|
|
13729
13699
|
readonly isAlreadyRegistered: boolean;
|
|
13730
13700
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -13748,11 +13718,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
13748
13718
|
readonly isInvalidName: boolean;
|
|
13749
13719
|
readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'RegistrationInviteRequired' | 'InvalidAccessProof' | 'UpstreamNotOperationalAccount' | 'MinimumsNotMet' | 'CannotGrantAccessToSelf' | 'NoProgressUpdateProvided' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperationallyCertified' | 'NotEligibleForActivation' | 'UpstreamHasNoAvailableAccessCodes' | 'InvalidName';
|
|
13750
13720
|
}
|
|
13751
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
13721
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (549) */
|
|
13752
13722
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
13753
13723
|
readonly slot: Compact<u64>;
|
|
13754
13724
|
}
|
|
13755
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
13725
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (550) */
|
|
13756
13726
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
13757
13727
|
readonly blockNumber: Compact<u64>;
|
|
13758
13728
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -13761,38 +13731,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
13761
13731
|
readonly stateRoot: H256;
|
|
13762
13732
|
readonly receiptsRoot: H256;
|
|
13763
13733
|
}
|
|
13764
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
13734
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (551) */
|
|
13765
13735
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
13766
13736
|
readonly root: H256;
|
|
13767
13737
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
13768
13738
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
13769
13739
|
}
|
|
13770
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
13740
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (553) */
|
|
13771
13741
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
13772
13742
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
13773
13743
|
}
|
|
13774
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
13744
|
+
/** @name SnowbridgeAmclBls381Ecp (554) */
|
|
13775
13745
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
13776
13746
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
13777
13747
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
13778
13748
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
13779
13749
|
}
|
|
13780
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
13750
|
+
/** @name SnowbridgeAmclBls381Fp (555) */
|
|
13781
13751
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
13782
13752
|
readonly x: SnowbridgeAmclBls381Big;
|
|
13783
13753
|
readonly xes: i32;
|
|
13784
13754
|
}
|
|
13785
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
13755
|
+
/** @name SnowbridgeAmclBls381Big (556) */
|
|
13786
13756
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
13787
13757
|
readonly w: Vec<i32>;
|
|
13788
13758
|
}
|
|
13789
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
13759
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (560) */
|
|
13790
13760
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
13791
13761
|
readonly isMainnet: boolean;
|
|
13792
13762
|
readonly isMinimal: boolean;
|
|
13793
13763
|
readonly type: 'Mainnet' | 'Minimal';
|
|
13794
13764
|
}
|
|
13795
|
-
/** @name PalletEthereumVerifierError (
|
|
13765
|
+
/** @name PalletEthereumVerifierError (561) */
|
|
13796
13766
|
interface PalletEthereumVerifierError extends Enum {
|
|
13797
13767
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
13798
13768
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -13820,7 +13790,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13820
13790
|
readonly isHalted: boolean;
|
|
13821
13791
|
readonly type: 'SkippedSyncCommitteePeriod' | 'SyncCommitteeUpdateRequired' | 'IrrelevantUpdate' | 'NotBootstrapped' | 'SyncCommitteeParticipantsNotSupermajority' | 'InvalidHeaderMerkleProof' | 'InvalidSyncCommitteeMerkleProof' | 'InvalidExecutionHeaderProof' | 'InvalidFinalizedHeaderGap' | 'InvalidBackfillHeaderRoot' | 'ExecutionHeaderAnchorAlreadyImported' | 'ExecutionHeaderAnchorNotHistorical' | 'HeaderHashTreeRootFailed' | 'BlockBodyHashTreeRootFailed' | 'SyncCommitteeHashTreeRootFailed' | 'SigningRootHashTreeRootFailed' | 'ForkDataHashTreeRootFailed' | 'ExpectedFinalizedHeaderNotStored' | 'BlsPreparePublicKeysFailed' | 'BlsVerificationFailed' | 'UnexpectedBeaconPreset' | 'InvalidUpdateSlot' | 'InvalidSyncCommitteeUpdate' | 'Halted';
|
|
13822
13792
|
}
|
|
13823
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
13793
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (562) */
|
|
13824
13794
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
13825
13795
|
readonly microgonsIn: u128;
|
|
13826
13796
|
readonly microgonsOut: u128;
|
|
@@ -13831,19 +13801,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
13831
13801
|
readonly argonotTransfersInCount: Compact<u32>;
|
|
13832
13802
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
13833
13803
|
}
|
|
13834
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
13804
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (564) */
|
|
13835
13805
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
13836
13806
|
readonly epochMicrogonsPerArgonot: u128;
|
|
13837
13807
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
13838
13808
|
readonly totalWeight: u128;
|
|
13839
13809
|
}
|
|
13840
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
13810
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (566) */
|
|
13841
13811
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
13842
13812
|
readonly accountId: AccountId32;
|
|
13843
13813
|
readonly signer: H160;
|
|
13844
13814
|
readonly weight: u128;
|
|
13845
13815
|
}
|
|
13846
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
13816
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (571) */
|
|
13847
13817
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
13848
13818
|
readonly approvingCouncilHash: H256;
|
|
13849
13819
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -13854,7 +13824,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13854
13824
|
readonly approvedTotalWeight: u128;
|
|
13855
13825
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
13856
13826
|
}
|
|
13857
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
13827
|
+
/** @name PalletCrosschainTransferMintingAuthority (576) */
|
|
13858
13828
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
13859
13829
|
readonly accountId: AccountId32;
|
|
13860
13830
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -13870,14 +13840,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
13870
13840
|
readonly activationSignatureRepaymentQuote: Compact<u128>;
|
|
13871
13841
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
13872
13842
|
}
|
|
13873
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
13843
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (577) */
|
|
13874
13844
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
13875
13845
|
readonly isPendingActivation: boolean;
|
|
13876
13846
|
readonly isActive: boolean;
|
|
13877
13847
|
readonly isDeactivating: boolean;
|
|
13878
13848
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
13879
13849
|
}
|
|
13880
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
13850
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (579) */
|
|
13881
13851
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
13882
13852
|
readonly argonAccountId: AccountId32;
|
|
13883
13853
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -13892,31 +13862,31 @@ declare module '@polkadot/types/lookup' {
|
|
|
13892
13862
|
readonly mintingAuthorityCollateralBySigner: BTreeMap<H160, PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation>;
|
|
13893
13863
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
13894
13864
|
}
|
|
13895
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
13865
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (581) */
|
|
13896
13866
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
13897
13867
|
readonly microgonCollateral: u128;
|
|
13898
13868
|
readonly micronotCollateral: u128;
|
|
13899
13869
|
readonly collateralShare: u128;
|
|
13900
13870
|
readonly signature: U8aFixed;
|
|
13901
13871
|
}
|
|
13902
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
13872
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (585) */
|
|
13903
13873
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
13904
13874
|
readonly isStarted: boolean;
|
|
13905
13875
|
readonly isReady: boolean;
|
|
13906
13876
|
readonly type: 'Started' | 'Ready';
|
|
13907
13877
|
}
|
|
13908
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
13878
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (587) */
|
|
13909
13879
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
13910
13880
|
readonly transferId: H256;
|
|
13911
13881
|
readonly remainingCollateral: u128;
|
|
13912
13882
|
readonly remainingMintingAuthorityTip: u128;
|
|
13913
13883
|
}
|
|
13914
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
13884
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (589) */
|
|
13915
13885
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
13916
13886
|
readonly argonCirculation: u128;
|
|
13917
13887
|
readonly argonotCirculation: u128;
|
|
13918
13888
|
}
|
|
13919
|
-
/** @name PalletCrosschainTransferError (
|
|
13889
|
+
/** @name PalletCrosschainTransferError (590) */
|
|
13920
13890
|
interface PalletCrosschainTransferError extends Enum {
|
|
13921
13891
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
13922
13892
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -13975,44 +13945,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
13975
13945
|
readonly isCouncilSignerRotationPending: boolean;
|
|
13976
13946
|
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';
|
|
13977
13947
|
}
|
|
13978
|
-
/** @name PalletBootstrapError (
|
|
13948
|
+
/** @name PalletBootstrapError (592) */
|
|
13979
13949
|
interface PalletBootstrapError extends Enum {
|
|
13980
13950
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
13981
13951
|
readonly isInvalidRecoveryProof: boolean;
|
|
13982
13952
|
readonly isEndpointOwnedByAnotherAccount: boolean;
|
|
13983
13953
|
readonly type: 'EncryptedPayloadTooLong' | 'InvalidRecoveryProof' | 'EndpointOwnedByAnotherAccount';
|
|
13984
13954
|
}
|
|
13985
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
13955
|
+
/** @name FrameSystemExtensionsAuthorizeCall (595) */
|
|
13986
13956
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
13987
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
13957
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (596) */
|
|
13988
13958
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
13989
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
13959
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (597) */
|
|
13990
13960
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
13991
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
13961
|
+
/** @name FrameSystemExtensionsCheckTxVersion (598) */
|
|
13992
13962
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
13993
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
13963
|
+
/** @name FrameSystemExtensionsCheckGenesis (599) */
|
|
13994
13964
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
13995
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
13965
|
+
/** @name FrameSystemExtensionsCheckNonce (602) */
|
|
13996
13966
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
13997
13967
|
}
|
|
13998
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
13968
|
+
/** @name FrameSystemExtensionsCheckWeight (603) */
|
|
13999
13969
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
14000
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
13970
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (604) */
|
|
14001
13971
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
14002
13972
|
}
|
|
14003
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
13973
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (605) */
|
|
14004
13974
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
14005
13975
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
14006
13976
|
}
|
|
14007
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
13977
|
+
/** @name FrameMetadataHashExtensionMode (606) */
|
|
14008
13978
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
14009
13979
|
readonly isDisabled: boolean;
|
|
14010
13980
|
readonly isEnabled: boolean;
|
|
14011
13981
|
readonly type: 'Disabled' | 'Enabled';
|
|
14012
13982
|
}
|
|
14013
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
13983
|
+
/** @name FrameSystemExtensionsWeightReclaim (607) */
|
|
14014
13984
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
14015
|
-
/** @name ArgonRuntimeRuntime (
|
|
13985
|
+
/** @name ArgonRuntimeRuntime (609) */
|
|
14016
13986
|
type ArgonRuntimeRuntime = Null;
|
|
14017
13987
|
}
|
|
14018
13988
|
|
|
@@ -14341,17 +14311,21 @@ type UtxoRefLike = ArgonPrimitivesBitcoinUtxoRef | {
|
|
|
14341
14311
|
outputIndex: number;
|
|
14342
14312
|
};
|
|
14343
14313
|
type BitcoinLockFeeCoupon = {
|
|
14344
|
-
vaultId: number;
|
|
14345
|
-
genesisHash: string;
|
|
14346
|
-
beneficiary: string;
|
|
14347
|
-
requestedSatoshis: bigint;
|
|
14348
|
-
microgonsAtTargetPerBtc: bigint | null;
|
|
14349
14314
|
feeDiscount: bigint;
|
|
14350
14315
|
securitizationSpaceToUnreserve: bigint;
|
|
14351
14316
|
expiresAtFrame: bigint;
|
|
14352
14317
|
nonce: bigint;
|
|
14353
14318
|
signature: AnyJson;
|
|
14354
14319
|
};
|
|
14320
|
+
type BitcoinLockInitializationTerms = {
|
|
14321
|
+
feeCoupon: BitcoinLockFeeCoupon;
|
|
14322
|
+
microgonsAtTargetPerBtc: bigint;
|
|
14323
|
+
initializeForAccountId?: never;
|
|
14324
|
+
} | {
|
|
14325
|
+
feeCoupon?: undefined;
|
|
14326
|
+
microgonsAtTargetPerBtc?: bigint;
|
|
14327
|
+
initializeForAccountId?: string;
|
|
14328
|
+
};
|
|
14355
14329
|
declare class BitcoinLock implements IBitcoinLock {
|
|
14356
14330
|
utxoId: number;
|
|
14357
14331
|
p2wshScriptHashHex: string;
|
|
@@ -14479,12 +14453,9 @@ declare class BitcoinLock implements IBitcoinLock {
|
|
|
14479
14453
|
satoshis: bigint;
|
|
14480
14454
|
txSigner: TxSigningAccount;
|
|
14481
14455
|
reducedBalanceBy?: bigint;
|
|
14482
|
-
microgonsAtTargetPerBtc?: bigint;
|
|
14483
14456
|
tip?: bigint;
|
|
14484
|
-
feeCoupon?: BitcoinLockFeeCoupon;
|
|
14485
|
-
initializeForAccountId?: string;
|
|
14486
14457
|
securitizationSpaceToUnreserve?: bigint;
|
|
14487
|
-
}): Promise<{
|
|
14458
|
+
} & BitcoinLockInitializationTerms): Promise<{
|
|
14488
14459
|
tx: SubmittableExtrinsic$1;
|
|
14489
14460
|
securityFee: bigint;
|
|
14490
14461
|
txFee: bigint;
|
|
@@ -14500,8 +14471,7 @@ declare class BitcoinLock implements IBitcoinLock {
|
|
|
14500
14471
|
ownerBitcoinPubkey: Uint8Array;
|
|
14501
14472
|
txSigner: TxSigningAccount;
|
|
14502
14473
|
satoshis: bigint;
|
|
14503
|
-
|
|
14504
|
-
} & ISubmittableOptions): Promise<{
|
|
14474
|
+
} & BitcoinLockInitializationTerms & ISubmittableOptions): Promise<{
|
|
14505
14475
|
getLock(): Promise<{
|
|
14506
14476
|
lock: BitcoinLock;
|
|
14507
14477
|
createdAtHeight: number;
|