@argonprotocol/mainchain 1.4.3-dev.f22e7b4b → 1.4.3-dev.f32d0f42
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 +184 -163
- package/browser/index.js +43 -2
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +43 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +184 -163
- package/lib/index.d.ts +184 -163
- package/lib/index.js +43 -2
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/browser/index.d.ts
CHANGED
|
@@ -1775,6 +1775,11 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1775
1775
|
* Funding would result in an overflow of the balance type
|
|
1776
1776
|
**/
|
|
1777
1777
|
InvalidVaultAmount: AugmentedError<ApiType>;
|
|
1778
|
+
/**
|
|
1779
|
+
* Vault names must start with an uppercase ASCII letter and otherwise be ASCII
|
|
1780
|
+
* alphanumeric.
|
|
1781
|
+
**/
|
|
1782
|
+
InvalidVaultName: AugmentedError<ApiType>;
|
|
1778
1783
|
/**
|
|
1779
1784
|
* Unable to decode xpubkey
|
|
1780
1785
|
**/
|
|
@@ -6940,6 +6945,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6940
6945
|
]>;
|
|
6941
6946
|
create: AugmentedSubmittable<(vaultConfig: PalletVaultsVaultConfig | {
|
|
6942
6947
|
terms?: any;
|
|
6948
|
+
name?: any;
|
|
6943
6949
|
securitization?: any;
|
|
6944
6950
|
bitcoinXpubkey?: any;
|
|
6945
6951
|
securitizationRatio?: any;
|
|
@@ -6982,10 +6988,12 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6982
6988
|
u32,
|
|
6983
6989
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub
|
|
6984
6990
|
]>;
|
|
6985
|
-
setBitcoinLockDelegate: AugmentedSubmittable<(
|
|
6986
|
-
u32,
|
|
6991
|
+
setBitcoinLockDelegate: AugmentedSubmittable<(delegateAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [
|
|
6987
6992
|
Option<AccountId32>
|
|
6988
6993
|
]>;
|
|
6994
|
+
setName: AugmentedSubmittable<(name: Option<Bytes> | null | Uint8Array | Bytes | string) => SubmittableExtrinsic<ApiType>, [
|
|
6995
|
+
Option<Bytes>
|
|
6996
|
+
]>;
|
|
6989
6997
|
};
|
|
6990
6998
|
}
|
|
6991
6999
|
}
|
|
@@ -11166,14 +11174,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
11166
11174
|
} & Struct;
|
|
11167
11175
|
readonly isSetBitcoinLockDelegate: boolean;
|
|
11168
11176
|
readonly asSetBitcoinLockDelegate: {
|
|
11169
|
-
readonly vaultId: u32;
|
|
11170
11177
|
readonly delegateAccountId: Option<AccountId32>;
|
|
11171
11178
|
} & Struct;
|
|
11172
|
-
readonly
|
|
11179
|
+
readonly isSetName: boolean;
|
|
11180
|
+
readonly asSetName: {
|
|
11181
|
+
readonly name: Option<Bytes>;
|
|
11182
|
+
} & Struct;
|
|
11183
|
+
readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub' | 'Collect' | 'SetBitcoinLockDelegate' | 'SetName';
|
|
11173
11184
|
}
|
|
11174
11185
|
/** @name PalletVaultsVaultConfig (215) */
|
|
11175
11186
|
interface PalletVaultsVaultConfig extends Struct {
|
|
11176
11187
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
11188
|
+
readonly name: Option<Bytes>;
|
|
11177
11189
|
readonly securitization: Compact<u128>;
|
|
11178
11190
|
readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
11179
11191
|
readonly securitizationRatio: Compact<u128>;
|
|
@@ -11184,10 +11196,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
11184
11196
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
11185
11197
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
11186
11198
|
}
|
|
11187
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
11199
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (222) */
|
|
11188
11200
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
|
|
11189
11201
|
}
|
|
11190
|
-
/** @name PalletBitcoinLocksCall (
|
|
11202
|
+
/** @name PalletBitcoinLocksCall (224) */
|
|
11191
11203
|
interface PalletBitcoinLocksCall extends Enum {
|
|
11192
11204
|
readonly isInitialize: boolean;
|
|
11193
11205
|
readonly asInitialize: {
|
|
@@ -11243,10 +11255,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
11243
11255
|
} & Struct;
|
|
11244
11256
|
readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'Ratchet' | 'AdminModifyMinimumLockedSats' | 'RequestOrphanedUtxoRelease' | 'CosignOrphanedUtxoRelease' | 'InitializeFor' | 'IncreaseSecuritization';
|
|
11245
11257
|
}
|
|
11246
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
11258
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (225) */
|
|
11247
11259
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
|
|
11248
11260
|
}
|
|
11249
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
11261
|
+
/** @name PalletBitcoinLocksLockOptions (228) */
|
|
11250
11262
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
11251
11263
|
readonly isV1: boolean;
|
|
11252
11264
|
readonly asV1: {
|
|
@@ -11254,7 +11266,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11254
11266
|
} & Struct;
|
|
11255
11267
|
readonly type: 'V1';
|
|
11256
11268
|
}
|
|
11257
|
-
/** @name PalletNotariesCall (
|
|
11269
|
+
/** @name PalletNotariesCall (231) */
|
|
11258
11270
|
interface PalletNotariesCall extends Enum {
|
|
11259
11271
|
readonly isPropose: boolean;
|
|
11260
11272
|
readonly asPropose: {
|
|
@@ -11272,7 +11284,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11272
11284
|
} & Struct;
|
|
11273
11285
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
11274
11286
|
}
|
|
11275
|
-
/** @name PalletNotebookCall (
|
|
11287
|
+
/** @name PalletNotebookCall (232) */
|
|
11276
11288
|
interface PalletNotebookCall extends Enum {
|
|
11277
11289
|
readonly isSubmit: boolean;
|
|
11278
11290
|
readonly asSubmit: {
|
|
@@ -11284,12 +11296,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11284
11296
|
} & Struct;
|
|
11285
11297
|
readonly type: 'Submit' | 'Unlock';
|
|
11286
11298
|
}
|
|
11287
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
11299
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (234) */
|
|
11288
11300
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
11289
11301
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
11290
11302
|
readonly signature: U8aFixed;
|
|
11291
11303
|
}
|
|
11292
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
11304
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (235) */
|
|
11293
11305
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
11294
11306
|
readonly version: Compact<u16>;
|
|
11295
11307
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -11307,7 +11319,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11307
11319
|
readonly parentSecret: Option<H256>;
|
|
11308
11320
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
11309
11321
|
}
|
|
11310
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
11322
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (238) */
|
|
11311
11323
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
11312
11324
|
readonly isToMainchain: boolean;
|
|
11313
11325
|
readonly asToMainchain: {
|
|
@@ -11320,12 +11332,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11320
11332
|
} & Struct;
|
|
11321
11333
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
11322
11334
|
}
|
|
11323
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
11335
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (241) */
|
|
11324
11336
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
11325
11337
|
readonly notebookNumber: Compact<u32>;
|
|
11326
11338
|
readonly accountUid: Compact<u32>;
|
|
11327
11339
|
}
|
|
11328
|
-
/** @name PalletChainTransferCall (
|
|
11340
|
+
/** @name PalletChainTransferCall (248) */
|
|
11329
11341
|
interface PalletChainTransferCall extends Enum {
|
|
11330
11342
|
readonly isSendToLocalchain: boolean;
|
|
11331
11343
|
readonly asSendToLocalchain: {
|
|
@@ -11334,7 +11346,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11334
11346
|
} & Struct;
|
|
11335
11347
|
readonly type: 'SendToLocalchain';
|
|
11336
11348
|
}
|
|
11337
|
-
/** @name PalletBlockSealSpecCall (
|
|
11349
|
+
/** @name PalletBlockSealSpecCall (249) */
|
|
11338
11350
|
interface PalletBlockSealSpecCall extends Enum {
|
|
11339
11351
|
readonly isConfigure: boolean;
|
|
11340
11352
|
readonly asConfigure: {
|
|
@@ -11343,7 +11355,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11343
11355
|
} & Struct;
|
|
11344
11356
|
readonly type: 'Configure';
|
|
11345
11357
|
}
|
|
11346
|
-
/** @name PalletDomainsCall (
|
|
11358
|
+
/** @name PalletDomainsCall (250) */
|
|
11347
11359
|
interface PalletDomainsCall extends Enum {
|
|
11348
11360
|
readonly isSetZoneRecord: boolean;
|
|
11349
11361
|
readonly asSetZoneRecord: {
|
|
@@ -11352,7 +11364,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11352
11364
|
} & Struct;
|
|
11353
11365
|
readonly type: 'SetZoneRecord';
|
|
11354
11366
|
}
|
|
11355
|
-
/** @name PalletPriceIndexCall (
|
|
11367
|
+
/** @name PalletPriceIndexCall (251) */
|
|
11356
11368
|
interface PalletPriceIndexCall extends Enum {
|
|
11357
11369
|
readonly isSubmit: boolean;
|
|
11358
11370
|
readonly asSubmit: {
|
|
@@ -11364,7 +11376,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11364
11376
|
} & Struct;
|
|
11365
11377
|
readonly type: 'Submit' | 'SetOperator';
|
|
11366
11378
|
}
|
|
11367
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
11379
|
+
/** @name PalletPriceIndexPriceIndex (252) */
|
|
11368
11380
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
11369
11381
|
readonly btcUsdPrice: Compact<u128>;
|
|
11370
11382
|
readonly argonotUsdPrice: u128;
|
|
@@ -11373,7 +11385,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11373
11385
|
readonly argonTimeWeightedAverageLiquidity: u128;
|
|
11374
11386
|
readonly tick: Compact<u64>;
|
|
11375
11387
|
}
|
|
11376
|
-
/** @name PalletGrandpaCall (
|
|
11388
|
+
/** @name PalletGrandpaCall (253) */
|
|
11377
11389
|
interface PalletGrandpaCall extends Enum {
|
|
11378
11390
|
readonly isReportEquivocation: boolean;
|
|
11379
11391
|
readonly asReportEquivocation: {
|
|
@@ -11392,12 +11404,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11392
11404
|
} & Struct;
|
|
11393
11405
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
11394
11406
|
}
|
|
11395
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
11407
|
+
/** @name SpConsensusGrandpaEquivocationProof (254) */
|
|
11396
11408
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
11397
11409
|
readonly setId: u64;
|
|
11398
11410
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
11399
11411
|
}
|
|
11400
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
11412
|
+
/** @name SpConsensusGrandpaEquivocation (255) */
|
|
11401
11413
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
11402
11414
|
readonly isPrevote: boolean;
|
|
11403
11415
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -11405,36 +11417,36 @@ declare module '@polkadot/types/lookup' {
|
|
|
11405
11417
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
11406
11418
|
readonly type: 'Prevote' | 'Precommit';
|
|
11407
11419
|
}
|
|
11408
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
11420
|
+
/** @name FinalityGrandpaEquivocationPrevote (256) */
|
|
11409
11421
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
11410
11422
|
readonly roundNumber: u64;
|
|
11411
11423
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
11412
11424
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
11413
11425
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
11414
11426
|
}
|
|
11415
|
-
/** @name FinalityGrandpaPrevote (
|
|
11427
|
+
/** @name FinalityGrandpaPrevote (257) */
|
|
11416
11428
|
interface FinalityGrandpaPrevote extends Struct {
|
|
11417
11429
|
readonly targetHash: H256;
|
|
11418
11430
|
readonly targetNumber: u32;
|
|
11419
11431
|
}
|
|
11420
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
11432
|
+
/** @name SpConsensusGrandpaAppSignature (258) */
|
|
11421
11433
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {
|
|
11422
11434
|
}
|
|
11423
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
11435
|
+
/** @name FinalityGrandpaEquivocationPrecommit (260) */
|
|
11424
11436
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
11425
11437
|
readonly roundNumber: u64;
|
|
11426
11438
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
11427
11439
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
11428
11440
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
11429
11441
|
}
|
|
11430
|
-
/** @name FinalityGrandpaPrecommit (
|
|
11442
|
+
/** @name FinalityGrandpaPrecommit (261) */
|
|
11431
11443
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
11432
11444
|
readonly targetHash: H256;
|
|
11433
11445
|
readonly targetNumber: u32;
|
|
11434
11446
|
}
|
|
11435
|
-
/** @name SpCoreVoid (
|
|
11447
|
+
/** @name SpCoreVoid (263) */
|
|
11436
11448
|
type SpCoreVoid = Null;
|
|
11437
|
-
/** @name PalletBlockSealCall (
|
|
11449
|
+
/** @name PalletBlockSealCall (264) */
|
|
11438
11450
|
interface PalletBlockSealCall extends Enum {
|
|
11439
11451
|
readonly isApply: boolean;
|
|
11440
11452
|
readonly asApply: {
|
|
@@ -11442,7 +11454,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11442
11454
|
} & Struct;
|
|
11443
11455
|
readonly type: 'Apply';
|
|
11444
11456
|
}
|
|
11445
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
11457
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (265) */
|
|
11446
11458
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
11447
11459
|
readonly isVote: boolean;
|
|
11448
11460
|
readonly asVote: {
|
|
@@ -11456,13 +11468,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
11456
11468
|
readonly isCompute: boolean;
|
|
11457
11469
|
readonly type: 'Vote' | 'Compute';
|
|
11458
11470
|
}
|
|
11459
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
11471
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (266) */
|
|
11460
11472
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
11461
11473
|
readonly proof: Vec<H256>;
|
|
11462
11474
|
readonly numberOfLeaves: Compact<u32>;
|
|
11463
11475
|
readonly leafIndex: Compact<u32>;
|
|
11464
11476
|
}
|
|
11465
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
11477
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (268) */
|
|
11466
11478
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
11467
11479
|
readonly accountId: AccountId32;
|
|
11468
11480
|
readonly blockHash: H256;
|
|
@@ -11472,7 +11484,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11472
11484
|
readonly blockRewardsAccountId: AccountId32;
|
|
11473
11485
|
readonly tick: Compact<u64>;
|
|
11474
11486
|
}
|
|
11475
|
-
/** @name SpRuntimeMultiSignature (
|
|
11487
|
+
/** @name SpRuntimeMultiSignature (269) */
|
|
11476
11488
|
interface SpRuntimeMultiSignature extends Enum {
|
|
11477
11489
|
readonly isEd25519: boolean;
|
|
11478
11490
|
readonly asEd25519: U8aFixed;
|
|
@@ -11484,7 +11496,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11484
11496
|
readonly asEth: U8aFixed;
|
|
11485
11497
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
11486
11498
|
}
|
|
11487
|
-
/** @name PalletBlockRewardsCall (
|
|
11499
|
+
/** @name PalletBlockRewardsCall (271) */
|
|
11488
11500
|
interface PalletBlockRewardsCall extends Enum {
|
|
11489
11501
|
readonly isSetBlockRewardsPaused: boolean;
|
|
11490
11502
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -11492,9 +11504,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
11492
11504
|
} & Struct;
|
|
11493
11505
|
readonly type: 'SetBlockRewardsPaused';
|
|
11494
11506
|
}
|
|
11495
|
-
/** @name PalletMintCall (
|
|
11507
|
+
/** @name PalletMintCall (272) */
|
|
11496
11508
|
type PalletMintCall = Null;
|
|
11497
|
-
/** @name PalletBalancesCall (
|
|
11509
|
+
/** @name PalletBalancesCall (273) */
|
|
11498
11510
|
interface PalletBalancesCall extends Enum {
|
|
11499
11511
|
readonly isTransferAllowDeath: boolean;
|
|
11500
11512
|
readonly asTransferAllowDeath: {
|
|
@@ -11543,13 +11555,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
11543
11555
|
} & Struct;
|
|
11544
11556
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
|
|
11545
11557
|
}
|
|
11546
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
11558
|
+
/** @name PalletBalancesAdjustmentDirection (274) */
|
|
11547
11559
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
11548
11560
|
readonly isIncrease: boolean;
|
|
11549
11561
|
readonly isDecrease: boolean;
|
|
11550
11562
|
readonly type: 'Increase' | 'Decrease';
|
|
11551
11563
|
}
|
|
11552
|
-
/** @name PalletTxPauseCall (
|
|
11564
|
+
/** @name PalletTxPauseCall (276) */
|
|
11553
11565
|
interface PalletTxPauseCall extends Enum {
|
|
11554
11566
|
readonly isPause: boolean;
|
|
11555
11567
|
readonly asPause: {
|
|
@@ -11561,7 +11573,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11561
11573
|
} & Struct;
|
|
11562
11574
|
readonly type: 'Pause' | 'Unpause';
|
|
11563
11575
|
}
|
|
11564
|
-
/** @name PalletUtilityCall (
|
|
11576
|
+
/** @name PalletUtilityCall (277) */
|
|
11565
11577
|
interface PalletUtilityCall extends Enum {
|
|
11566
11578
|
readonly isBatch: boolean;
|
|
11567
11579
|
readonly asBatch: {
|
|
@@ -11602,7 +11614,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11602
11614
|
} & Struct;
|
|
11603
11615
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'IfElse' | 'DispatchAsFallible';
|
|
11604
11616
|
}
|
|
11605
|
-
/** @name PalletSudoCall (
|
|
11617
|
+
/** @name PalletSudoCall (279) */
|
|
11606
11618
|
interface PalletSudoCall extends Enum {
|
|
11607
11619
|
readonly isSudo: boolean;
|
|
11608
11620
|
readonly asSudo: {
|
|
@@ -11625,7 +11637,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11625
11637
|
readonly isRemoveKey: boolean;
|
|
11626
11638
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
11627
11639
|
}
|
|
11628
|
-
/** @name PalletIsmpCall (
|
|
11640
|
+
/** @name PalletIsmpCall (280) */
|
|
11629
11641
|
interface PalletIsmpCall extends Enum {
|
|
11630
11642
|
readonly isHandleUnsigned: boolean;
|
|
11631
11643
|
readonly asHandleUnsigned: {
|
|
@@ -11645,7 +11657,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11645
11657
|
} & Struct;
|
|
11646
11658
|
readonly type: 'HandleUnsigned' | 'CreateConsensusClient' | 'UpdateConsensusState' | 'FundMessage';
|
|
11647
11659
|
}
|
|
11648
|
-
/** @name IsmpMessagingMessage (
|
|
11660
|
+
/** @name IsmpMessagingMessage (282) */
|
|
11649
11661
|
interface IsmpMessagingMessage extends Enum {
|
|
11650
11662
|
readonly isConsensus: boolean;
|
|
11651
11663
|
readonly asConsensus: IsmpMessagingConsensusMessage;
|
|
@@ -11659,26 +11671,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
11659
11671
|
readonly asTimeout: IsmpMessagingTimeoutMessage;
|
|
11660
11672
|
readonly type: 'Consensus' | 'FraudProof' | 'Request' | 'Response' | 'Timeout';
|
|
11661
11673
|
}
|
|
11662
|
-
/** @name IsmpMessagingConsensusMessage (
|
|
11674
|
+
/** @name IsmpMessagingConsensusMessage (283) */
|
|
11663
11675
|
interface IsmpMessagingConsensusMessage extends Struct {
|
|
11664
11676
|
readonly consensusProof: Bytes;
|
|
11665
11677
|
readonly consensusStateId: U8aFixed;
|
|
11666
11678
|
readonly signer: Bytes;
|
|
11667
11679
|
}
|
|
11668
|
-
/** @name IsmpMessagingFraudProofMessage (
|
|
11680
|
+
/** @name IsmpMessagingFraudProofMessage (284) */
|
|
11669
11681
|
interface IsmpMessagingFraudProofMessage extends Struct {
|
|
11670
11682
|
readonly proof1: Bytes;
|
|
11671
11683
|
readonly proof2: Bytes;
|
|
11672
11684
|
readonly consensusStateId: U8aFixed;
|
|
11673
11685
|
readonly signer: Bytes;
|
|
11674
11686
|
}
|
|
11675
|
-
/** @name IsmpMessagingRequestMessage (
|
|
11687
|
+
/** @name IsmpMessagingRequestMessage (285) */
|
|
11676
11688
|
interface IsmpMessagingRequestMessage extends Struct {
|
|
11677
11689
|
readonly requests: Vec<IsmpRouterPostRequest>;
|
|
11678
11690
|
readonly proof: IsmpMessagingProof;
|
|
11679
11691
|
readonly signer: Bytes;
|
|
11680
11692
|
}
|
|
11681
|
-
/** @name IsmpRouterPostRequest (
|
|
11693
|
+
/** @name IsmpRouterPostRequest (287) */
|
|
11682
11694
|
interface IsmpRouterPostRequest extends Struct {
|
|
11683
11695
|
readonly source: IsmpHostStateMachine;
|
|
11684
11696
|
readonly dest: IsmpHostStateMachine;
|
|
@@ -11688,18 +11700,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
11688
11700
|
readonly timeoutTimestamp: u64;
|
|
11689
11701
|
readonly body: Bytes;
|
|
11690
11702
|
}
|
|
11691
|
-
/** @name IsmpMessagingProof (
|
|
11703
|
+
/** @name IsmpMessagingProof (288) */
|
|
11692
11704
|
interface IsmpMessagingProof extends Struct {
|
|
11693
11705
|
readonly height: IsmpConsensusStateMachineHeight;
|
|
11694
11706
|
readonly proof: Bytes;
|
|
11695
11707
|
}
|
|
11696
|
-
/** @name IsmpMessagingResponseMessage (
|
|
11708
|
+
/** @name IsmpMessagingResponseMessage (289) */
|
|
11697
11709
|
interface IsmpMessagingResponseMessage extends Struct {
|
|
11698
11710
|
readonly datagram: IsmpRouterRequestResponse;
|
|
11699
11711
|
readonly proof: IsmpMessagingProof;
|
|
11700
11712
|
readonly signer: Bytes;
|
|
11701
11713
|
}
|
|
11702
|
-
/** @name IsmpRouterRequestResponse (
|
|
11714
|
+
/** @name IsmpRouterRequestResponse (290) */
|
|
11703
11715
|
interface IsmpRouterRequestResponse extends Enum {
|
|
11704
11716
|
readonly isRequest: boolean;
|
|
11705
11717
|
readonly asRequest: Vec<IsmpRouterRequest>;
|
|
@@ -11707,7 +11719,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11707
11719
|
readonly asResponse: Vec<IsmpRouterResponse>;
|
|
11708
11720
|
readonly type: 'Request' | 'Response';
|
|
11709
11721
|
}
|
|
11710
|
-
/** @name IsmpRouterRequest (
|
|
11722
|
+
/** @name IsmpRouterRequest (292) */
|
|
11711
11723
|
interface IsmpRouterRequest extends Enum {
|
|
11712
11724
|
readonly isPost: boolean;
|
|
11713
11725
|
readonly asPost: IsmpRouterPostRequest;
|
|
@@ -11715,7 +11727,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11715
11727
|
readonly asGet: IsmpRouterGetRequest;
|
|
11716
11728
|
readonly type: 'Post' | 'Get';
|
|
11717
11729
|
}
|
|
11718
|
-
/** @name IsmpRouterGetRequest (
|
|
11730
|
+
/** @name IsmpRouterGetRequest (293) */
|
|
11719
11731
|
interface IsmpRouterGetRequest extends Struct {
|
|
11720
11732
|
readonly source: IsmpHostStateMachine;
|
|
11721
11733
|
readonly dest: IsmpHostStateMachine;
|
|
@@ -11726,7 +11738,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11726
11738
|
readonly context: Bytes;
|
|
11727
11739
|
readonly timeoutTimestamp: u64;
|
|
11728
11740
|
}
|
|
11729
|
-
/** @name IsmpRouterResponse (
|
|
11741
|
+
/** @name IsmpRouterResponse (295) */
|
|
11730
11742
|
interface IsmpRouterResponse extends Enum {
|
|
11731
11743
|
readonly isPost: boolean;
|
|
11732
11744
|
readonly asPost: IsmpRouterPostResponse;
|
|
@@ -11734,23 +11746,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
11734
11746
|
readonly asGet: IsmpRouterGetResponse;
|
|
11735
11747
|
readonly type: 'Post' | 'Get';
|
|
11736
11748
|
}
|
|
11737
|
-
/** @name IsmpRouterPostResponse (
|
|
11749
|
+
/** @name IsmpRouterPostResponse (296) */
|
|
11738
11750
|
interface IsmpRouterPostResponse extends Struct {
|
|
11739
11751
|
readonly post: IsmpRouterPostRequest;
|
|
11740
11752
|
readonly response: Bytes;
|
|
11741
11753
|
readonly timeoutTimestamp: u64;
|
|
11742
11754
|
}
|
|
11743
|
-
/** @name IsmpRouterGetResponse (
|
|
11755
|
+
/** @name IsmpRouterGetResponse (297) */
|
|
11744
11756
|
interface IsmpRouterGetResponse extends Struct {
|
|
11745
11757
|
readonly get_: IsmpRouterGetRequest;
|
|
11746
11758
|
readonly values_: Vec<IsmpRouterStorageValue>;
|
|
11747
11759
|
}
|
|
11748
|
-
/** @name IsmpRouterStorageValue (
|
|
11760
|
+
/** @name IsmpRouterStorageValue (299) */
|
|
11749
11761
|
interface IsmpRouterStorageValue extends Struct {
|
|
11750
11762
|
readonly key: Bytes;
|
|
11751
11763
|
readonly value: Option<Bytes>;
|
|
11752
11764
|
}
|
|
11753
|
-
/** @name IsmpMessagingTimeoutMessage (
|
|
11765
|
+
/** @name IsmpMessagingTimeoutMessage (301) */
|
|
11754
11766
|
interface IsmpMessagingTimeoutMessage extends Enum {
|
|
11755
11767
|
readonly isPost: boolean;
|
|
11756
11768
|
readonly asPost: {
|
|
@@ -11768,7 +11780,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11768
11780
|
} & Struct;
|
|
11769
11781
|
readonly type: 'Post' | 'PostResponse' | 'Get';
|
|
11770
11782
|
}
|
|
11771
|
-
/** @name IsmpMessagingCreateConsensusState (
|
|
11783
|
+
/** @name IsmpMessagingCreateConsensusState (303) */
|
|
11772
11784
|
interface IsmpMessagingCreateConsensusState extends Struct {
|
|
11773
11785
|
readonly consensusState: Bytes;
|
|
11774
11786
|
readonly consensusClientId: U8aFixed;
|
|
@@ -11777,29 +11789,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
11777
11789
|
readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
|
|
11778
11790
|
readonly stateMachineCommitments: Vec<ITuple<[IsmpConsensusStateMachineId, IsmpMessagingStateCommitmentHeight]>>;
|
|
11779
11791
|
}
|
|
11780
|
-
/** @name IsmpMessagingStateCommitmentHeight (
|
|
11792
|
+
/** @name IsmpMessagingStateCommitmentHeight (309) */
|
|
11781
11793
|
interface IsmpMessagingStateCommitmentHeight extends Struct {
|
|
11782
11794
|
readonly commitment: IsmpConsensusStateCommitment;
|
|
11783
11795
|
readonly height: u64;
|
|
11784
11796
|
}
|
|
11785
|
-
/** @name IsmpConsensusStateCommitment (
|
|
11797
|
+
/** @name IsmpConsensusStateCommitment (310) */
|
|
11786
11798
|
interface IsmpConsensusStateCommitment extends Struct {
|
|
11787
11799
|
readonly timestamp: u64;
|
|
11788
11800
|
readonly overlayRoot: Option<H256>;
|
|
11789
11801
|
readonly stateRoot: H256;
|
|
11790
11802
|
}
|
|
11791
|
-
/** @name PalletIsmpUtilsUpdateConsensusState (
|
|
11803
|
+
/** @name PalletIsmpUtilsUpdateConsensusState (311) */
|
|
11792
11804
|
interface PalletIsmpUtilsUpdateConsensusState extends Struct {
|
|
11793
11805
|
readonly consensusStateId: U8aFixed;
|
|
11794
11806
|
readonly unbondingPeriod: Option<u64>;
|
|
11795
11807
|
readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
|
|
11796
11808
|
}
|
|
11797
|
-
/** @name PalletIsmpUtilsFundMessageParams (
|
|
11809
|
+
/** @name PalletIsmpUtilsFundMessageParams (312) */
|
|
11798
11810
|
interface PalletIsmpUtilsFundMessageParams extends Struct {
|
|
11799
11811
|
readonly commitment: PalletIsmpUtilsMessageCommitment;
|
|
11800
11812
|
readonly amount: u128;
|
|
11801
11813
|
}
|
|
11802
|
-
/** @name PalletIsmpUtilsMessageCommitment (
|
|
11814
|
+
/** @name PalletIsmpUtilsMessageCommitment (313) */
|
|
11803
11815
|
interface PalletIsmpUtilsMessageCommitment extends Enum {
|
|
11804
11816
|
readonly isRequest: boolean;
|
|
11805
11817
|
readonly asRequest: H256;
|
|
@@ -11807,7 +11819,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11807
11819
|
readonly asResponse: H256;
|
|
11808
11820
|
readonly type: 'Request' | 'Response';
|
|
11809
11821
|
}
|
|
11810
|
-
/** @name IsmpGrandpaCall (
|
|
11822
|
+
/** @name IsmpGrandpaCall (314) */
|
|
11811
11823
|
interface IsmpGrandpaCall extends Enum {
|
|
11812
11824
|
readonly isAddStateMachines: boolean;
|
|
11813
11825
|
readonly asAddStateMachines: {
|
|
@@ -11819,12 +11831,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11819
11831
|
} & Struct;
|
|
11820
11832
|
readonly type: 'AddStateMachines' | 'RemoveStateMachines';
|
|
11821
11833
|
}
|
|
11822
|
-
/** @name IsmpGrandpaAddStateMachine (
|
|
11834
|
+
/** @name IsmpGrandpaAddStateMachine (316) */
|
|
11823
11835
|
interface IsmpGrandpaAddStateMachine extends Struct {
|
|
11824
11836
|
readonly stateMachine: IsmpHostStateMachine;
|
|
11825
11837
|
readonly slotDuration: u64;
|
|
11826
11838
|
}
|
|
11827
|
-
/** @name PalletTokenGatewayCall (
|
|
11839
|
+
/** @name PalletTokenGatewayCall (317) */
|
|
11828
11840
|
interface PalletTokenGatewayCall extends Enum {
|
|
11829
11841
|
readonly isTeleport: boolean;
|
|
11830
11842
|
readonly asTeleport: {
|
|
@@ -11844,7 +11856,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11844
11856
|
} & Struct;
|
|
11845
11857
|
readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateAssetPrecision';
|
|
11846
11858
|
}
|
|
11847
|
-
/** @name PalletTokenGatewayTeleportParams (
|
|
11859
|
+
/** @name PalletTokenGatewayTeleportParams (318) */
|
|
11848
11860
|
interface PalletTokenGatewayTeleportParams extends Struct {
|
|
11849
11861
|
readonly assetId: u32;
|
|
11850
11862
|
readonly destination: IsmpHostStateMachine;
|
|
@@ -11856,26 +11868,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
11856
11868
|
readonly callData: Option<Bytes>;
|
|
11857
11869
|
readonly redeem: bool;
|
|
11858
11870
|
}
|
|
11859
|
-
/** @name PalletTokenGatewayAssetRegistration (
|
|
11871
|
+
/** @name PalletTokenGatewayAssetRegistration (322) */
|
|
11860
11872
|
interface PalletTokenGatewayAssetRegistration extends Struct {
|
|
11861
11873
|
readonly localId: u32;
|
|
11862
11874
|
readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
|
|
11863
11875
|
readonly native: bool;
|
|
11864
11876
|
readonly precision: BTreeMap<IsmpHostStateMachine, u8>;
|
|
11865
11877
|
}
|
|
11866
|
-
/** @name TokenGatewayPrimitivesGatewayAssetRegistration (
|
|
11878
|
+
/** @name TokenGatewayPrimitivesGatewayAssetRegistration (323) */
|
|
11867
11879
|
interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
|
|
11868
11880
|
readonly name: Bytes;
|
|
11869
11881
|
readonly symbol: Bytes;
|
|
11870
11882
|
readonly chains: Vec<IsmpHostStateMachine>;
|
|
11871
11883
|
readonly minimumBalance: Option<u128>;
|
|
11872
11884
|
}
|
|
11873
|
-
/** @name PalletTokenGatewayPrecisionUpdate (
|
|
11885
|
+
/** @name PalletTokenGatewayPrecisionUpdate (328) */
|
|
11874
11886
|
interface PalletTokenGatewayPrecisionUpdate extends Struct {
|
|
11875
11887
|
readonly assetId: u32;
|
|
11876
11888
|
readonly precisions: BTreeMap<IsmpHostStateMachine, u8>;
|
|
11877
11889
|
}
|
|
11878
|
-
/** @name PalletTreasuryCall (
|
|
11890
|
+
/** @name PalletTreasuryCall (329) */
|
|
11879
11891
|
interface PalletTreasuryCall extends Enum {
|
|
11880
11892
|
readonly isSetAllocation: boolean;
|
|
11881
11893
|
readonly asSetAllocation: {
|
|
@@ -11884,7 +11896,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11884
11896
|
} & Struct;
|
|
11885
11897
|
readonly type: 'SetAllocation';
|
|
11886
11898
|
}
|
|
11887
|
-
/** @name PalletOperationalAccountsCall (
|
|
11899
|
+
/** @name PalletOperationalAccountsCall (330) */
|
|
11888
11900
|
interface PalletOperationalAccountsCall extends Enum {
|
|
11889
11901
|
readonly isRegister: boolean;
|
|
11890
11902
|
readonly asRegister: {
|
|
@@ -11912,13 +11924,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
11912
11924
|
} & Struct;
|
|
11913
11925
|
readonly type: 'Register' | 'IssueAccessCode' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForSponsee';
|
|
11914
11926
|
}
|
|
11915
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
11927
|
+
/** @name PalletOperationalAccountsRegistration (331) */
|
|
11916
11928
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
11917
11929
|
readonly isV1: boolean;
|
|
11918
11930
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
11919
11931
|
readonly type: 'V1';
|
|
11920
11932
|
}
|
|
11921
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
11933
|
+
/** @name PalletOperationalAccountsRegistrationV1 (332) */
|
|
11922
11934
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
11923
11935
|
readonly operationalAccount: AccountId32;
|
|
11924
11936
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -11931,19 +11943,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
11931
11943
|
readonly miningBotAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
11932
11944
|
readonly accessCode: Option<PalletOperationalAccountsAccessCodeProof>;
|
|
11933
11945
|
}
|
|
11934
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
11946
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (333) */
|
|
11935
11947
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {
|
|
11936
11948
|
}
|
|
11937
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
11949
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (334) */
|
|
11938
11950
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
11939
11951
|
readonly signature: SpRuntimeMultiSignature;
|
|
11940
11952
|
}
|
|
11941
|
-
/** @name PalletOperationalAccountsAccessCodeProof (
|
|
11953
|
+
/** @name PalletOperationalAccountsAccessCodeProof (336) */
|
|
11942
11954
|
interface PalletOperationalAccountsAccessCodeProof extends Struct {
|
|
11943
11955
|
readonly public: U8aFixed;
|
|
11944
11956
|
readonly signature: U8aFixed;
|
|
11945
11957
|
}
|
|
11946
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
11958
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (337) */
|
|
11947
11959
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
11948
11960
|
readonly hasUniswapTransfer: Option<bool>;
|
|
11949
11961
|
readonly vaultCreated: Option<bool>;
|
|
@@ -11951,7 +11963,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
11951
11963
|
readonly observedBitcoinTotal: Option<u128>;
|
|
11952
11964
|
readonly observedMiningSeatTotal: Option<u32>;
|
|
11953
11965
|
}
|
|
11954
|
-
/** @name PalletMultisigError (
|
|
11966
|
+
/** @name PalletMultisigError (341) */
|
|
11955
11967
|
interface PalletMultisigError extends Enum {
|
|
11956
11968
|
readonly isMinimumThreshold: boolean;
|
|
11957
11969
|
readonly isAlreadyApproved: boolean;
|
|
@@ -11969,19 +11981,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
11969
11981
|
readonly isAlreadyStored: boolean;
|
|
11970
11982
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
11971
11983
|
}
|
|
11972
|
-
/** @name PalletProxyProxyDefinition (
|
|
11984
|
+
/** @name PalletProxyProxyDefinition (344) */
|
|
11973
11985
|
interface PalletProxyProxyDefinition extends Struct {
|
|
11974
11986
|
readonly delegate: AccountId32;
|
|
11975
11987
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
11976
11988
|
readonly delay: u32;
|
|
11977
11989
|
}
|
|
11978
|
-
/** @name PalletProxyAnnouncement (
|
|
11990
|
+
/** @name PalletProxyAnnouncement (348) */
|
|
11979
11991
|
interface PalletProxyAnnouncement extends Struct {
|
|
11980
11992
|
readonly real: AccountId32;
|
|
11981
11993
|
readonly callHash: H256;
|
|
11982
11994
|
readonly height: u32;
|
|
11983
11995
|
}
|
|
11984
|
-
/** @name PalletProxyError (
|
|
11996
|
+
/** @name PalletProxyError (350) */
|
|
11985
11997
|
interface PalletProxyError extends Enum {
|
|
11986
11998
|
readonly isTooMany: boolean;
|
|
11987
11999
|
readonly isNotFound: boolean;
|
|
@@ -11993,34 +12005,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
11993
12005
|
readonly isNoSelfProxy: boolean;
|
|
11994
12006
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
11995
12007
|
}
|
|
11996
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
12008
|
+
/** @name ArgonPrimitivesTickTicker (351) */
|
|
11997
12009
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
11998
12010
|
readonly tickDurationMillis: Compact<u64>;
|
|
11999
12011
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
12000
12012
|
}
|
|
12001
|
-
/** @name PalletTicksError (
|
|
12013
|
+
/** @name PalletTicksError (353) */
|
|
12002
12014
|
type PalletTicksError = Null;
|
|
12003
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
12015
|
+
/** @name PalletMiningSlotMinerNonceScoring (356) */
|
|
12004
12016
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
12005
12017
|
readonly nonce: U256;
|
|
12006
12018
|
readonly lastWinBlock: Option<u32>;
|
|
12007
12019
|
readonly blocksWonInFrame: u16;
|
|
12008
12020
|
readonly frameStartBlocksWonSurplus: i16;
|
|
12009
12021
|
}
|
|
12010
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
12022
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (368) */
|
|
12011
12023
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
12012
12024
|
readonly bidsCount: u32;
|
|
12013
12025
|
readonly bidAmountMin: u128;
|
|
12014
12026
|
readonly bidAmountMax: u128;
|
|
12015
12027
|
readonly bidAmountSum: u128;
|
|
12016
12028
|
}
|
|
12017
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
12029
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (372) */
|
|
12018
12030
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
12019
12031
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
12020
12032
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
12021
12033
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
12022
12034
|
}
|
|
12023
|
-
/** @name PalletMiningSlotError (
|
|
12035
|
+
/** @name PalletMiningSlotError (383) */
|
|
12024
12036
|
interface PalletMiningSlotError extends Enum {
|
|
12025
12037
|
readonly isSlotNotTakingBids: boolean;
|
|
12026
12038
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -12034,7 +12046,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12034
12046
|
readonly isUnrecoverableHold: boolean;
|
|
12035
12047
|
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'UnrecoverableHold';
|
|
12036
12048
|
}
|
|
12037
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
12049
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (384) */
|
|
12038
12050
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
12039
12051
|
readonly utxoId: u64;
|
|
12040
12052
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -12042,7 +12054,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12042
12054
|
readonly submittedAtHeight: Compact<u64>;
|
|
12043
12055
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
12044
12056
|
}
|
|
12045
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
12057
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (385) */
|
|
12046
12058
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
12047
12059
|
readonly isP2wsh: boolean;
|
|
12048
12060
|
readonly asP2wsh: {
|
|
@@ -12050,7 +12062,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12050
12062
|
} & Struct;
|
|
12051
12063
|
readonly type: 'P2wsh';
|
|
12052
12064
|
}
|
|
12053
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
12065
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (394) */
|
|
12054
12066
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
12055
12067
|
readonly isBitcoin: boolean;
|
|
12056
12068
|
readonly isTestnet: boolean;
|
|
@@ -12058,7 +12070,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12058
12070
|
readonly isRegtest: boolean;
|
|
12059
12071
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
12060
12072
|
}
|
|
12061
|
-
/** @name PalletBitcoinUtxosError (
|
|
12073
|
+
/** @name PalletBitcoinUtxosError (395) */
|
|
12062
12074
|
interface PalletBitcoinUtxosError extends Enum {
|
|
12063
12075
|
readonly isNoPermissions: boolean;
|
|
12064
12076
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -12077,10 +12089,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12077
12089
|
readonly isLockAlreadyFunded: boolean;
|
|
12078
12090
|
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
|
|
12079
12091
|
}
|
|
12080
|
-
/** @name ArgonPrimitivesVault (
|
|
12092
|
+
/** @name ArgonPrimitivesVault (396) */
|
|
12081
12093
|
interface ArgonPrimitivesVault extends Struct {
|
|
12082
12094
|
readonly operatorAccountId: AccountId32;
|
|
12083
12095
|
readonly bitcoinLockDelegateAccount: Option<AccountId32>;
|
|
12096
|
+
readonly name: Option<Bytes>;
|
|
12097
|
+
readonly lastNameChangeTick: Option<u64>;
|
|
12084
12098
|
readonly securitization: Compact<u128>;
|
|
12085
12099
|
readonly securitizationTarget: Compact<u128>;
|
|
12086
12100
|
readonly securitizationLocked: Compact<u128>;
|
|
@@ -12095,7 +12109,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12095
12109
|
readonly openedTick: Compact<u64>;
|
|
12096
12110
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
12097
12111
|
}
|
|
12098
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
12112
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (404) */
|
|
12099
12113
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
12100
12114
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
12101
12115
|
readonly depth: Compact<u8>;
|
|
@@ -12104,13 +12118,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12104
12118
|
readonly chainCode: U8aFixed;
|
|
12105
12119
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
12106
12120
|
}
|
|
12107
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
12121
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (406) */
|
|
12108
12122
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
12109
12123
|
readonly isMain: boolean;
|
|
12110
12124
|
readonly isTest: boolean;
|
|
12111
12125
|
readonly type: 'Main' | 'Test';
|
|
12112
12126
|
}
|
|
12113
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
12127
|
+
/** @name PalletVaultsVaultFrameRevenue (415) */
|
|
12114
12128
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
12115
12129
|
readonly frameId: Compact<u64>;
|
|
12116
12130
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -12129,14 +12143,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
12129
12143
|
readonly treasuryExternalCapital: Compact<u128>;
|
|
12130
12144
|
readonly uncollectedRevenue: Compact<u128>;
|
|
12131
12145
|
}
|
|
12132
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
12146
|
+
/** @name PalletVaultsRecentCapacityDrop (418) */
|
|
12133
12147
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
12134
12148
|
readonly blockNumber: Compact<u32>;
|
|
12135
12149
|
readonly availableBeforeDrop: Compact<u128>;
|
|
12136
12150
|
readonly availableAfterDrop: Compact<u128>;
|
|
12137
12151
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
12138
12152
|
}
|
|
12139
|
-
/** @name PalletVaultsError (
|
|
12153
|
+
/** @name PalletVaultsError (420) */
|
|
12140
12154
|
interface PalletVaultsError extends Enum {
|
|
12141
12155
|
readonly isNoMoreVaultIds: boolean;
|
|
12142
12156
|
readonly isInsufficientFunds: boolean;
|
|
@@ -12164,12 +12178,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12164
12178
|
readonly isInternalError: boolean;
|
|
12165
12179
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
12166
12180
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
12181
|
+
readonly isInvalidVaultName: boolean;
|
|
12167
12182
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
12168
12183
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
12169
12184
|
readonly isAccountAlreadyHasVault: boolean;
|
|
12170
|
-
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' | 'AccountAlreadyHasVault';
|
|
12185
|
+
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' | 'InvalidVaultName' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'AccountAlreadyHasVault';
|
|
12171
12186
|
}
|
|
12172
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
12187
|
+
/** @name PalletBitcoinLocksLockedBitcoin (421) */
|
|
12173
12188
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
12174
12189
|
readonly vaultId: Compact<u32>;
|
|
12175
12190
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -12192,7 +12207,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12192
12207
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
12193
12208
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
12194
12209
|
}
|
|
12195
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
12210
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (424) */
|
|
12196
12211
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
12197
12212
|
readonly utxoId: Compact<u64>;
|
|
12198
12213
|
readonly vaultId: Compact<u32>;
|
|
@@ -12201,7 +12216,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12201
12216
|
readonly toScriptPubkey: Bytes;
|
|
12202
12217
|
readonly redemptionPrice: Compact<u128>;
|
|
12203
12218
|
}
|
|
12204
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
12219
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (426) */
|
|
12205
12220
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
12206
12221
|
readonly utxoId: Compact<u64>;
|
|
12207
12222
|
readonly vaultId: Compact<u32>;
|
|
@@ -12209,13 +12224,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12209
12224
|
readonly recordedArgonBlockNumber: Compact<u32>;
|
|
12210
12225
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
12211
12226
|
}
|
|
12212
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
12227
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (428) */
|
|
12213
12228
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
12214
12229
|
readonly bitcoinNetworkFee: u64;
|
|
12215
12230
|
readonly toScriptPubkey: Bytes;
|
|
12216
12231
|
readonly createdAtArgonBlockNumber: u32;
|
|
12217
12232
|
}
|
|
12218
|
-
/** @name PalletBitcoinLocksError (
|
|
12233
|
+
/** @name PalletBitcoinLocksError (435) */
|
|
12219
12234
|
interface PalletBitcoinLocksError extends Enum {
|
|
12220
12235
|
readonly isInsufficientFunds: boolean;
|
|
12221
12236
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -12255,7 +12270,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12255
12270
|
readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
|
|
12256
12271
|
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' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
12257
12272
|
}
|
|
12258
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
12273
|
+
/** @name ArgonPrimitivesVaultVaultError (436) */
|
|
12259
12274
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
12260
12275
|
readonly isVaultClosed: boolean;
|
|
12261
12276
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -12271,7 +12286,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12271
12286
|
readonly isVaultNotYetActive: boolean;
|
|
12272
12287
|
readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive';
|
|
12273
12288
|
}
|
|
12274
|
-
/** @name PalletNotariesError (
|
|
12289
|
+
/** @name PalletNotariesError (448) */
|
|
12275
12290
|
interface PalletNotariesError extends Enum {
|
|
12276
12291
|
readonly isProposalNotFound: boolean;
|
|
12277
12292
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -12284,7 +12299,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12284
12299
|
readonly isInvalidNotary: boolean;
|
|
12285
12300
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
12286
12301
|
}
|
|
12287
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
12302
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (452) */
|
|
12288
12303
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
12289
12304
|
readonly notebookNumber: Compact<u32>;
|
|
12290
12305
|
readonly tick: Compact<u64>;
|
|
@@ -12292,7 +12307,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12292
12307
|
readonly secretHash: H256;
|
|
12293
12308
|
readonly parentSecret: Option<H256>;
|
|
12294
12309
|
}
|
|
12295
|
-
/** @name PalletNotebookError (
|
|
12310
|
+
/** @name PalletNotebookError (455) */
|
|
12296
12311
|
interface PalletNotebookError extends Enum {
|
|
12297
12312
|
readonly isDuplicateNotebookNumber: boolean;
|
|
12298
12313
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -12311,17 +12326,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
12311
12326
|
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
12312
12327
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
12313
12328
|
}
|
|
12314
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
12329
|
+
/** @name PalletChainTransferQueuedTransferOut (456) */
|
|
12315
12330
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
12316
12331
|
readonly accountId: AccountId32;
|
|
12317
12332
|
readonly amount: u128;
|
|
12318
12333
|
readonly expirationTick: u64;
|
|
12319
12334
|
readonly notaryId: u32;
|
|
12320
12335
|
}
|
|
12321
|
-
/** @name FrameSupportPalletId (
|
|
12336
|
+
/** @name FrameSupportPalletId (458) */
|
|
12322
12337
|
interface FrameSupportPalletId extends U8aFixed {
|
|
12323
12338
|
}
|
|
12324
|
-
/** @name PalletChainTransferError (
|
|
12339
|
+
/** @name PalletChainTransferError (459) */
|
|
12325
12340
|
interface PalletChainTransferError extends Enum {
|
|
12326
12341
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
12327
12342
|
readonly isInsufficientFunds: boolean;
|
|
@@ -12333,7 +12348,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12333
12348
|
readonly isNoAvailableTransferId: boolean;
|
|
12334
12349
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
|
|
12335
12350
|
}
|
|
12336
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
12351
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (463) */
|
|
12337
12352
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
12338
12353
|
readonly notaryId: Compact<u32>;
|
|
12339
12354
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -12341,12 +12356,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12341
12356
|
readonly blockVotesCount: Compact<u32>;
|
|
12342
12357
|
readonly blockVotingPower: Compact<u128>;
|
|
12343
12358
|
}
|
|
12344
|
-
/** @name PalletBlockSealSpecError (
|
|
12359
|
+
/** @name PalletBlockSealSpecError (468) */
|
|
12345
12360
|
interface PalletBlockSealSpecError extends Enum {
|
|
12346
12361
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
12347
12362
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
12348
12363
|
}
|
|
12349
|
-
/** @name PalletDomainsError (
|
|
12364
|
+
/** @name PalletDomainsError (470) */
|
|
12350
12365
|
interface PalletDomainsError extends Enum {
|
|
12351
12366
|
readonly isDomainNotRegistered: boolean;
|
|
12352
12367
|
readonly isNotDomainOwner: boolean;
|
|
@@ -12355,13 +12370,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12355
12370
|
readonly isAccountDecodingError: boolean;
|
|
12356
12371
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
12357
12372
|
}
|
|
12358
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
12373
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (472) */
|
|
12359
12374
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
12360
12375
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
12361
12376
|
readonly totalCpi: i128;
|
|
12362
12377
|
readonly measurementsCount: u32;
|
|
12363
12378
|
}
|
|
12364
|
-
/** @name PalletPriceIndexError (
|
|
12379
|
+
/** @name PalletPriceIndexError (474) */
|
|
12365
12380
|
interface PalletPriceIndexError extends Enum {
|
|
12366
12381
|
readonly isNotAuthorizedOperator: boolean;
|
|
12367
12382
|
readonly isMissingValue: boolean;
|
|
@@ -12369,7 +12384,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12369
12384
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
12370
12385
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
12371
12386
|
}
|
|
12372
|
-
/** @name PalletGrandpaStoredState (
|
|
12387
|
+
/** @name PalletGrandpaStoredState (475) */
|
|
12373
12388
|
interface PalletGrandpaStoredState extends Enum {
|
|
12374
12389
|
readonly isLive: boolean;
|
|
12375
12390
|
readonly isPendingPause: boolean;
|
|
@@ -12385,14 +12400,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
12385
12400
|
} & Struct;
|
|
12386
12401
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
12387
12402
|
}
|
|
12388
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
12403
|
+
/** @name PalletGrandpaStoredPendingChange (476) */
|
|
12389
12404
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
12390
12405
|
readonly scheduledAt: u32;
|
|
12391
12406
|
readonly delay: u32;
|
|
12392
12407
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
12393
12408
|
readonly forced: Option<u32>;
|
|
12394
12409
|
}
|
|
12395
|
-
/** @name PalletGrandpaError (
|
|
12410
|
+
/** @name PalletGrandpaError (478) */
|
|
12396
12411
|
interface PalletGrandpaError extends Enum {
|
|
12397
12412
|
readonly isPauseFailed: boolean;
|
|
12398
12413
|
readonly isResumeFailed: boolean;
|
|
@@ -12403,13 +12418,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12403
12418
|
readonly isDuplicateOffenceReport: boolean;
|
|
12404
12419
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
12405
12420
|
}
|
|
12406
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
12421
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (479) */
|
|
12407
12422
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
12408
12423
|
readonly blockAuthorAccountId: AccountId32;
|
|
12409
12424
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
12410
12425
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
12411
12426
|
}
|
|
12412
|
-
/** @name PalletBlockSealError (
|
|
12427
|
+
/** @name PalletBlockSealError (481) */
|
|
12413
12428
|
interface PalletBlockSealError extends Enum {
|
|
12414
12429
|
readonly isInvalidVoteSealStrength: boolean;
|
|
12415
12430
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -12434,59 +12449,59 @@ declare module '@polkadot/types/lookup' {
|
|
|
12434
12449
|
readonly isDuplicateVoteBlockAtTick: boolean;
|
|
12435
12450
|
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
|
|
12436
12451
|
}
|
|
12437
|
-
/** @name PalletBlockRewardsError (
|
|
12452
|
+
/** @name PalletBlockRewardsError (485) */
|
|
12438
12453
|
type PalletBlockRewardsError = Null;
|
|
12439
|
-
/** @name PalletMintMintAction (
|
|
12454
|
+
/** @name PalletMintMintAction (491) */
|
|
12440
12455
|
interface PalletMintMintAction extends Struct {
|
|
12441
12456
|
readonly argonBurned: u128;
|
|
12442
12457
|
readonly argonMinted: u128;
|
|
12443
12458
|
readonly bitcoinMinted: u128;
|
|
12444
12459
|
}
|
|
12445
|
-
/** @name PalletMintError (
|
|
12460
|
+
/** @name PalletMintError (492) */
|
|
12446
12461
|
interface PalletMintError extends Enum {
|
|
12447
12462
|
readonly isTooManyPendingMints: boolean;
|
|
12448
12463
|
readonly type: 'TooManyPendingMints';
|
|
12449
12464
|
}
|
|
12450
|
-
/** @name PalletBalancesBalanceLock (
|
|
12465
|
+
/** @name PalletBalancesBalanceLock (494) */
|
|
12451
12466
|
interface PalletBalancesBalanceLock extends Struct {
|
|
12452
12467
|
readonly id: U8aFixed;
|
|
12453
12468
|
readonly amount: u128;
|
|
12454
12469
|
readonly reasons: PalletBalancesReasons;
|
|
12455
12470
|
}
|
|
12456
|
-
/** @name PalletBalancesReasons (
|
|
12471
|
+
/** @name PalletBalancesReasons (495) */
|
|
12457
12472
|
interface PalletBalancesReasons extends Enum {
|
|
12458
12473
|
readonly isFee: boolean;
|
|
12459
12474
|
readonly isMisc: boolean;
|
|
12460
12475
|
readonly isAll: boolean;
|
|
12461
12476
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
12462
12477
|
}
|
|
12463
|
-
/** @name PalletBalancesReserveData (
|
|
12478
|
+
/** @name PalletBalancesReserveData (498) */
|
|
12464
12479
|
interface PalletBalancesReserveData extends Struct {
|
|
12465
12480
|
readonly id: U8aFixed;
|
|
12466
12481
|
readonly amount: u128;
|
|
12467
12482
|
}
|
|
12468
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
12483
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (501) */
|
|
12469
12484
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
12470
12485
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
12471
12486
|
readonly amount: u128;
|
|
12472
12487
|
}
|
|
12473
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
12488
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (504) */
|
|
12474
12489
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
12475
12490
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
12476
12491
|
readonly amount: u128;
|
|
12477
12492
|
}
|
|
12478
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
12493
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (505) */
|
|
12479
12494
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
12480
12495
|
readonly isBlockRewards: boolean;
|
|
12481
12496
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
12482
12497
|
readonly type: 'BlockRewards';
|
|
12483
12498
|
}
|
|
12484
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
12499
|
+
/** @name PalletBlockRewardsFreezeReason (506) */
|
|
12485
12500
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
12486
12501
|
readonly isMaturationPeriod: boolean;
|
|
12487
12502
|
readonly type: 'MaturationPeriod';
|
|
12488
12503
|
}
|
|
12489
|
-
/** @name PalletBalancesError (
|
|
12504
|
+
/** @name PalletBalancesError (508) */
|
|
12490
12505
|
interface PalletBalancesError extends Enum {
|
|
12491
12506
|
readonly isVestingBalance: boolean;
|
|
12492
12507
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -12502,7 +12517,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12502
12517
|
readonly isDeltaZero: boolean;
|
|
12503
12518
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
12504
12519
|
}
|
|
12505
|
-
/** @name PalletTxPauseError (
|
|
12520
|
+
/** @name PalletTxPauseError (510) */
|
|
12506
12521
|
interface PalletTxPauseError extends Enum {
|
|
12507
12522
|
readonly isIsPaused: boolean;
|
|
12508
12523
|
readonly isIsUnpaused: boolean;
|
|
@@ -12510,30 +12525,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
12510
12525
|
readonly isNotFound: boolean;
|
|
12511
12526
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
12512
12527
|
}
|
|
12513
|
-
/** @name PalletTransactionPaymentReleases (
|
|
12528
|
+
/** @name PalletTransactionPaymentReleases (511) */
|
|
12514
12529
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
12515
12530
|
readonly isV1Ancient: boolean;
|
|
12516
12531
|
readonly isV2: boolean;
|
|
12517
12532
|
readonly type: 'V1Ancient' | 'V2';
|
|
12518
12533
|
}
|
|
12519
|
-
/** @name FrameSupportStorageNoDrop (
|
|
12534
|
+
/** @name FrameSupportStorageNoDrop (512) */
|
|
12520
12535
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {
|
|
12521
12536
|
}
|
|
12522
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
12537
|
+
/** @name FrameSupportTokensFungibleImbalance (513) */
|
|
12523
12538
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
12524
12539
|
readonly amount: u128;
|
|
12525
12540
|
}
|
|
12526
|
-
/** @name PalletUtilityError (
|
|
12541
|
+
/** @name PalletUtilityError (514) */
|
|
12527
12542
|
interface PalletUtilityError extends Enum {
|
|
12528
12543
|
readonly isTooManyCalls: boolean;
|
|
12529
12544
|
readonly type: 'TooManyCalls';
|
|
12530
12545
|
}
|
|
12531
|
-
/** @name PalletSudoError (
|
|
12546
|
+
/** @name PalletSudoError (515) */
|
|
12532
12547
|
interface PalletSudoError extends Enum {
|
|
12533
12548
|
readonly isRequireSudo: boolean;
|
|
12534
12549
|
readonly type: 'RequireSudo';
|
|
12535
12550
|
}
|
|
12536
|
-
/** @name PalletIsmpError (
|
|
12551
|
+
/** @name PalletIsmpError (516) */
|
|
12537
12552
|
interface PalletIsmpError extends Enum {
|
|
12538
12553
|
readonly isInvalidMessage: boolean;
|
|
12539
12554
|
readonly isMessageNotFound: boolean;
|
|
@@ -12543,9 +12558,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
12543
12558
|
readonly isErrorChargingFee: boolean;
|
|
12544
12559
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed' | 'ErrorChargingFee';
|
|
12545
12560
|
}
|
|
12546
|
-
/** @name PalletHyperbridgeError (
|
|
12561
|
+
/** @name PalletHyperbridgeError (517) */
|
|
12547
12562
|
type PalletHyperbridgeError = Null;
|
|
12548
|
-
/** @name PalletTokenGatewayError (
|
|
12563
|
+
/** @name PalletTokenGatewayError (519) */
|
|
12549
12564
|
interface PalletTokenGatewayError extends Enum {
|
|
12550
12565
|
readonly isUnregisteredAsset: boolean;
|
|
12551
12566
|
readonly isAssetTeleportError: boolean;
|
|
@@ -12558,13 +12573,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12558
12573
|
readonly isNotAssetOwner: boolean;
|
|
12559
12574
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
12560
12575
|
}
|
|
12561
|
-
/** @name PalletTreasuryTreasuryPool (
|
|
12576
|
+
/** @name PalletTreasuryTreasuryPool (521) */
|
|
12562
12577
|
interface PalletTreasuryTreasuryPool extends Struct {
|
|
12563
12578
|
readonly bondHolders: Vec<ITuple<[AccountId32, u128]>>;
|
|
12564
12579
|
readonly distributedEarnings: Option<u128>;
|
|
12565
12580
|
readonly vaultSharingPercent: Compact<Permill>;
|
|
12566
12581
|
}
|
|
12567
|
-
/** @name PalletTreasuryFunderState (
|
|
12582
|
+
/** @name PalletTreasuryFunderState (528) */
|
|
12568
12583
|
interface PalletTreasuryFunderState extends Struct {
|
|
12569
12584
|
readonly heldPrincipal: Compact<u128>;
|
|
12570
12585
|
readonly pendingUnlockAmount: Compact<u128>;
|
|
@@ -12573,18 +12588,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
12573
12588
|
readonly lifetimePrincipalDeployed: Compact<u128>;
|
|
12574
12589
|
readonly lifetimePrincipalLastBasisFrame: Compact<u64>;
|
|
12575
12590
|
}
|
|
12576
|
-
/** @name PalletTreasuryTreasuryCapital (
|
|
12591
|
+
/** @name PalletTreasuryTreasuryCapital (530) */
|
|
12577
12592
|
interface PalletTreasuryTreasuryCapital extends Struct {
|
|
12578
12593
|
readonly vaultId: Compact<u32>;
|
|
12579
12594
|
readonly activatedCapital: Compact<u128>;
|
|
12580
12595
|
readonly frameId: Compact<u64>;
|
|
12581
12596
|
}
|
|
12582
|
-
/** @name PalletTreasuryPendingUnlock (
|
|
12597
|
+
/** @name PalletTreasuryPendingUnlock (533) */
|
|
12583
12598
|
interface PalletTreasuryPendingUnlock extends Struct {
|
|
12584
12599
|
readonly vaultId: Compact<u32>;
|
|
12585
12600
|
readonly accountId: AccountId32;
|
|
12586
12601
|
}
|
|
12587
|
-
/** @name PalletTreasuryError (
|
|
12602
|
+
/** @name PalletTreasuryError (536) */
|
|
12588
12603
|
interface PalletTreasuryError extends Enum {
|
|
12589
12604
|
readonly isContributionTooLow: boolean;
|
|
12590
12605
|
readonly isVaultNotAcceptingMiningBonds: boolean;
|
|
@@ -12599,12 +12614,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12599
12614
|
readonly isNotAVaultOperator: boolean;
|
|
12600
12615
|
readonly type: 'ContributionTooLow' | 'VaultNotAcceptingMiningBonds' | 'BelowMinimum' | 'NotAFundContributor' | 'InternalError' | 'CouldNotFindTreasury' | 'MaxContributorsExceeded' | 'MaxVaultsExceeded' | 'MaxPendingUnlocksExceeded' | 'AlreadyRenewed' | 'NotAVaultOperator';
|
|
12601
12616
|
}
|
|
12602
|
-
/** @name PalletFeeControlError (
|
|
12617
|
+
/** @name PalletFeeControlError (537) */
|
|
12603
12618
|
interface PalletFeeControlError extends Enum {
|
|
12604
12619
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
12605
12620
|
readonly type: 'SponsoredFeeTooHigh';
|
|
12606
12621
|
}
|
|
12607
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
12622
|
+
/** @name PalletOperationalAccountsOperationalAccount (539) */
|
|
12608
12623
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
12609
12624
|
readonly vaultAccount: AccountId32;
|
|
12610
12625
|
readonly miningFundingAccount: AccountId32;
|
|
@@ -12627,24 +12642,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
12627
12642
|
readonly rewardsCollectedAmount: u128;
|
|
12628
12643
|
readonly isOperational: bool;
|
|
12629
12644
|
}
|
|
12630
|
-
/** @name PalletOperationalAccountsAccessCodeMetadata (
|
|
12645
|
+
/** @name PalletOperationalAccountsAccessCodeMetadata (540) */
|
|
12631
12646
|
interface PalletOperationalAccountsAccessCodeMetadata extends Struct {
|
|
12632
12647
|
readonly sponsor: AccountId32;
|
|
12633
12648
|
readonly expirationFrame: Compact<u64>;
|
|
12634
12649
|
}
|
|
12635
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
12650
|
+
/** @name PalletOperationalAccountsRewardsConfig (543) */
|
|
12636
12651
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
12637
12652
|
readonly operationalReferralReward: Compact<u128>;
|
|
12638
12653
|
readonly referralBonusReward: Compact<u128>;
|
|
12639
12654
|
}
|
|
12640
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardPayout (
|
|
12655
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardPayout (545) */
|
|
12641
12656
|
interface ArgonPrimitivesProvidersOperationalRewardPayout extends Struct {
|
|
12642
12657
|
readonly operationalAccount: AccountId32;
|
|
12643
12658
|
readonly payoutAccount: AccountId32;
|
|
12644
12659
|
readonly rewardKind: ArgonPrimitivesProvidersOperationalRewardKind;
|
|
12645
12660
|
readonly amount: u128;
|
|
12646
12661
|
}
|
|
12647
|
-
/** @name PalletOperationalAccountsError (
|
|
12662
|
+
/** @name PalletOperationalAccountsError (548) */
|
|
12648
12663
|
interface PalletOperationalAccountsError extends Enum {
|
|
12649
12664
|
readonly isAlreadyRegistered: boolean;
|
|
12650
12665
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -12662,37 +12677,37 @@ declare module '@polkadot/types/lookup' {
|
|
|
12662
12677
|
readonly isNotSponsorOfSponsee: boolean;
|
|
12663
12678
|
readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'AccessCodeAlreadyRegistered' | 'InvalidAccessCode' | 'InvalidAccessCodeProof' | 'NoIssuableAccessCodes' | 'MaxUnactivatedAccessCodesReached' | 'MaxAccessCodesExpiringPerFrameReached' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotSponsorOfSponsee';
|
|
12664
12679
|
}
|
|
12665
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
12680
|
+
/** @name FrameSystemExtensionsAuthorizeCall (551) */
|
|
12666
12681
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
12667
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
12682
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (552) */
|
|
12668
12683
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
12669
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
12684
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (553) */
|
|
12670
12685
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
12671
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
12686
|
+
/** @name FrameSystemExtensionsCheckTxVersion (554) */
|
|
12672
12687
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
12673
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
12688
|
+
/** @name FrameSystemExtensionsCheckGenesis (555) */
|
|
12674
12689
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
12675
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
12690
|
+
/** @name FrameSystemExtensionsCheckNonce (558) */
|
|
12676
12691
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
12677
12692
|
}
|
|
12678
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
12693
|
+
/** @name FrameSystemExtensionsCheckWeight (559) */
|
|
12679
12694
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
12680
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
12695
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (560) */
|
|
12681
12696
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
12682
12697
|
}
|
|
12683
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
12698
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (561) */
|
|
12684
12699
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
12685
12700
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
12686
12701
|
}
|
|
12687
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
12702
|
+
/** @name FrameMetadataHashExtensionMode (562) */
|
|
12688
12703
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
12689
12704
|
readonly isDisabled: boolean;
|
|
12690
12705
|
readonly isEnabled: boolean;
|
|
12691
12706
|
readonly type: 'Disabled' | 'Enabled';
|
|
12692
12707
|
}
|
|
12693
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
12708
|
+
/** @name FrameSystemExtensionsWeightReclaim (563) */
|
|
12694
12709
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
12695
|
-
/** @name ArgonRuntimeRuntime (
|
|
12710
|
+
/** @name ArgonRuntimeRuntime (565) */
|
|
12696
12711
|
type ArgonRuntimeRuntime = Null;
|
|
12697
12712
|
}
|
|
12698
12713
|
|
|
@@ -12887,6 +12902,8 @@ declare class Vault {
|
|
|
12887
12902
|
securitizationRatio: number;
|
|
12888
12903
|
lockedSatoshis: number;
|
|
12889
12904
|
securitizedSatoshis: number;
|
|
12905
|
+
name?: string;
|
|
12906
|
+
lastNameChangeTick?: number;
|
|
12890
12907
|
bitcoinLockDelegateAccount?: string;
|
|
12891
12908
|
constructor(id: number, vault: ArgonPrimitivesVault, tickDuration: number);
|
|
12892
12909
|
load(vault: ArgonPrimitivesVault | ArgonPrimitivesVaultV144): void;
|
|
@@ -12907,6 +12924,7 @@ declare class Vault {
|
|
|
12907
12924
|
annualPercentRate: number;
|
|
12908
12925
|
baseFee: bigint | number;
|
|
12909
12926
|
bitcoinXpub: string;
|
|
12927
|
+
name?: string;
|
|
12910
12928
|
treasuryProfitSharing: number;
|
|
12911
12929
|
doNotExceedBalance?: bigint;
|
|
12912
12930
|
} & ISubmittableOptions, config?: {
|
|
@@ -12915,6 +12933,9 @@ declare class Vault {
|
|
|
12915
12933
|
getVault(): Promise<Vault>;
|
|
12916
12934
|
txResult: TxResult;
|
|
12917
12935
|
}>;
|
|
12936
|
+
static setName(client: ArgonClient, keypair: KeyringPair, args: {
|
|
12937
|
+
name?: string | null;
|
|
12938
|
+
} & ISubmittableOptions): Promise<TxResult>;
|
|
12918
12939
|
}
|
|
12919
12940
|
interface ITerms {
|
|
12920
12941
|
readonly bitcoinAnnualPercentRate: BigNumber;
|