@argonprotocol/mainchain 1.4.3-dev.fbc5662c → 1.4.4-dev.abb08dac
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/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
- package/browser/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
- package/browser/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
- package/browser/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
- package/browser/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
- package/browser/index.d.ts +1884 -465
- package/browser/index.js +6670 -539
- package/browser/index.js.map +1 -1
- package/lib/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
- package/lib/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
- package/lib/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
- package/lib/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
- package/lib/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
- package/lib/index.cjs +6692 -551
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +1884 -465
- package/lib/index.d.ts +1884 -465
- package/lib/index.js +6683 -542
- package/lib/index.js.map +1 -1
- package/package.json +17 -19
- package/src/interfaces/augment-api-consts.ts +59 -6
- package/src/interfaces/augment-api-errors.ts +212 -11
- package/src/interfaces/augment-api-events.ts +295 -13
- package/src/interfaces/augment-api-query.ts +291 -27
- package/src/interfaces/augment-api-rpc.ts +1 -1
- package/src/interfaces/augment-api-runtime.ts +1 -27
- package/src/interfaces/augment-api-tx.ts +138 -24
- package/src/interfaces/augment-types.ts +7 -3
- package/src/interfaces/definitions.ts +11 -26
- package/src/interfaces/ethereum/types.ts +17 -5
- package/src/interfaces/lookup.ts +700 -301
- package/src/interfaces/registry.ts +56 -16
- package/src/interfaces/types-lookup.ts +845 -322
- package/lib/chunk-3KFMHNNJ.cjs +0 -706
- package/lib/chunk-3KFMHNNJ.cjs.map +0 -1
- package/lib/chunk-D3FCDADJ.cjs +0 -175
- package/lib/chunk-D3FCDADJ.cjs.map +0 -1
- package/lib/chunk-RF6NOJOR.js +0 -706
- package/lib/chunk-RF6NOJOR.js.map +0 -1
- package/lib/chunk-YPXWOFUS.js +0 -175
- package/lib/chunk-YPXWOFUS.js.map +0 -1
- package/lib/lib-CU2JUZW6.cjs +0 -403
- package/lib/lib-CU2JUZW6.cjs.map +0 -1
- package/lib/lib-P3PEMYOB.js +0 -403
- package/lib/lib-P3PEMYOB.js.map +0 -1
- package/lib/setPreset-NCTHSXWD.js +0 -15
- package/lib/setPreset-NCTHSXWD.js.map +0 -1
- package/lib/setPreset-XHOPATBO.cjs +0 -15
- package/lib/setPreset-XHOPATBO.cjs.map +0 -1
package/src/interfaces/lookup.ts
CHANGED
|
@@ -515,6 +515,11 @@ export default {
|
|
|
515
515
|
vaultEarnings: 'u128',
|
|
516
516
|
error: 'SpRuntimeDispatchError',
|
|
517
517
|
},
|
|
518
|
+
CommittedArgonotsSet: {
|
|
519
|
+
vaultId: 'u32',
|
|
520
|
+
operatorAccountId: 'AccountId32',
|
|
521
|
+
amount: 'u128',
|
|
522
|
+
},
|
|
518
523
|
},
|
|
519
524
|
},
|
|
520
525
|
/**
|
|
@@ -527,7 +532,7 @@ export default {
|
|
|
527
532
|
vaultId: 'u32',
|
|
528
533
|
liquidityPromised: 'u128',
|
|
529
534
|
securitization: 'u128',
|
|
530
|
-
|
|
535
|
+
lockedTargetPrice: 'u128',
|
|
531
536
|
accountId: 'AccountId32',
|
|
532
537
|
securityFee: 'u128',
|
|
533
538
|
},
|
|
@@ -535,9 +540,9 @@ export default {
|
|
|
535
540
|
utxoId: 'u64',
|
|
536
541
|
vaultId: 'u32',
|
|
537
542
|
liquidityPromised: 'u128',
|
|
538
|
-
|
|
543
|
+
oldTargetPrice: 'u128',
|
|
539
544
|
securityFee: 'u128',
|
|
540
|
-
|
|
545
|
+
newTargetPrice: 'u128',
|
|
541
546
|
amountBurned: 'u128',
|
|
542
547
|
accountId: 'AccountId32',
|
|
543
548
|
},
|
|
@@ -1191,6 +1196,11 @@ export default {
|
|
|
1191
1196
|
__Unused29: 'Null',
|
|
1192
1197
|
__Unused30: 'Null',
|
|
1193
1198
|
Treasury: 'PalletTreasuryHoldReason',
|
|
1199
|
+
__Unused32: 'Null',
|
|
1200
|
+
__Unused33: 'Null',
|
|
1201
|
+
__Unused34: 'Null',
|
|
1202
|
+
__Unused35: 'Null',
|
|
1203
|
+
CrosschainTransfer: 'PalletCrosschainTransferHoldReason',
|
|
1194
1204
|
},
|
|
1195
1205
|
},
|
|
1196
1206
|
/**
|
|
@@ -1224,13 +1234,19 @@ export default {
|
|
|
1224
1234
|
_enum: ['ContributedToTreasury'],
|
|
1225
1235
|
},
|
|
1226
1236
|
/**
|
|
1227
|
-
* Lookup110:
|
|
1237
|
+
* Lookup110: pallet_crosschain_transfer::pallet::HoldReason
|
|
1238
|
+
**/
|
|
1239
|
+
PalletCrosschainTransferHoldReason: {
|
|
1240
|
+
_enum: ['TransferOutMintingAuthorityTip', 'MintingAuthorityActivationRepayment'],
|
|
1241
|
+
},
|
|
1242
|
+
/**
|
|
1243
|
+
* Lookup111: pallet_balances::pallet::UnexpectedKind
|
|
1228
1244
|
**/
|
|
1229
1245
|
PalletBalancesUnexpectedKind: {
|
|
1230
1246
|
_enum: ['BalanceUpdated', 'FailedToMutateAccount'],
|
|
1231
1247
|
},
|
|
1232
1248
|
/**
|
|
1233
|
-
*
|
|
1249
|
+
* Lookup113: pallet_tx_pause::pallet::Event<T>
|
|
1234
1250
|
**/
|
|
1235
1251
|
PalletTxPauseEvent: {
|
|
1236
1252
|
_enum: {
|
|
@@ -1243,7 +1259,7 @@ export default {
|
|
|
1243
1259
|
},
|
|
1244
1260
|
},
|
|
1245
1261
|
/**
|
|
1246
|
-
*
|
|
1262
|
+
* Lookup116: pallet_transaction_payment::pallet::Event<T>
|
|
1247
1263
|
**/
|
|
1248
1264
|
PalletTransactionPaymentEvent: {
|
|
1249
1265
|
_enum: {
|
|
@@ -1255,7 +1271,7 @@ export default {
|
|
|
1255
1271
|
},
|
|
1256
1272
|
},
|
|
1257
1273
|
/**
|
|
1258
|
-
*
|
|
1274
|
+
* Lookup117: pallet_utility::pallet::Event
|
|
1259
1275
|
**/
|
|
1260
1276
|
PalletUtilityEvent: {
|
|
1261
1277
|
_enum: {
|
|
@@ -1279,7 +1295,7 @@ export default {
|
|
|
1279
1295
|
},
|
|
1280
1296
|
},
|
|
1281
1297
|
/**
|
|
1282
|
-
*
|
|
1298
|
+
* Lookup118: pallet_sudo::pallet::Event<T>
|
|
1283
1299
|
**/
|
|
1284
1300
|
PalletSudoEvent: {
|
|
1285
1301
|
_enum: {
|
|
@@ -1300,7 +1316,7 @@ export default {
|
|
|
1300
1316
|
},
|
|
1301
1317
|
},
|
|
1302
1318
|
/**
|
|
1303
|
-
*
|
|
1319
|
+
* Lookup119: pallet_treasury::pallet::Event<T>
|
|
1304
1320
|
**/
|
|
1305
1321
|
PalletTreasuryEvent: {
|
|
1306
1322
|
_enum: {
|
|
@@ -1357,16 +1373,21 @@ export default {
|
|
|
1357
1373
|
accountId: 'AccountId32',
|
|
1358
1374
|
bonds: 'u32',
|
|
1359
1375
|
},
|
|
1376
|
+
EncumberedBondMicrogonsBurned: {
|
|
1377
|
+
accountId: 'AccountId32',
|
|
1378
|
+
burnedAmount: 'u128',
|
|
1379
|
+
releasedAmount: 'u128',
|
|
1380
|
+
},
|
|
1360
1381
|
},
|
|
1361
1382
|
},
|
|
1362
1383
|
/**
|
|
1363
|
-
*
|
|
1384
|
+
* Lookup120: pallet_treasury::pallet::BondReleaseReason
|
|
1364
1385
|
**/
|
|
1365
1386
|
PalletTreasuryBondReleaseReason: {
|
|
1366
1387
|
_enum: ['UserLiquidation', 'Bumped', 'VaultClosed'],
|
|
1367
1388
|
},
|
|
1368
1389
|
/**
|
|
1369
|
-
*
|
|
1390
|
+
* Lookup121: pallet_fee_control::pallet::Event<T>
|
|
1370
1391
|
**/
|
|
1371
1392
|
PalletFeeControlEvent: {
|
|
1372
1393
|
_enum: {
|
|
@@ -1381,7 +1402,7 @@ export default {
|
|
|
1381
1402
|
},
|
|
1382
1403
|
},
|
|
1383
1404
|
/**
|
|
1384
|
-
*
|
|
1405
|
+
* Lookup122: argon_runtime::OriginCaller
|
|
1385
1406
|
**/
|
|
1386
1407
|
ArgonRuntimeOriginCaller: {
|
|
1387
1408
|
_enum: {
|
|
@@ -1389,7 +1410,7 @@ export default {
|
|
|
1389
1410
|
},
|
|
1390
1411
|
},
|
|
1391
1412
|
/**
|
|
1392
|
-
*
|
|
1413
|
+
* Lookup123: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1393
1414
|
**/
|
|
1394
1415
|
FrameSupportDispatchRawOrigin: {
|
|
1395
1416
|
_enum: {
|
|
@@ -1400,7 +1421,7 @@ export default {
|
|
|
1400
1421
|
},
|
|
1401
1422
|
},
|
|
1402
1423
|
/**
|
|
1403
|
-
*
|
|
1424
|
+
* Lookup124: pallet_operational_accounts::pallet::Event<T>
|
|
1404
1425
|
**/
|
|
1405
1426
|
PalletOperationalAccountsEvent: {
|
|
1406
1427
|
_enum: {
|
|
@@ -1445,13 +1466,13 @@ export default {
|
|
|
1445
1466
|
},
|
|
1446
1467
|
},
|
|
1447
1468
|
/**
|
|
1448
|
-
*
|
|
1469
|
+
* Lookup125: argon_primitives::providers::OperationalRewardKind
|
|
1449
1470
|
**/
|
|
1450
1471
|
ArgonPrimitivesProvidersOperationalRewardKind: {
|
|
1451
1472
|
_enum: ['Activation', 'ReferralBonus'],
|
|
1452
1473
|
},
|
|
1453
1474
|
/**
|
|
1454
|
-
*
|
|
1475
|
+
* Lookup126: pallet_ethereum_verifier::pallet::Event<T>
|
|
1455
1476
|
**/
|
|
1456
1477
|
PalletEthereumVerifierEvent: {
|
|
1457
1478
|
_enum: {
|
|
@@ -1472,46 +1493,186 @@ export default {
|
|
|
1472
1493
|
},
|
|
1473
1494
|
},
|
|
1474
1495
|
/**
|
|
1475
|
-
*
|
|
1496
|
+
* Lookup127: pallet_ethereum_verifier::types::BasicOperatingMode
|
|
1476
1497
|
**/
|
|
1477
1498
|
PalletEthereumVerifierBasicOperatingMode: {
|
|
1478
1499
|
_enum: ['Normal', 'Halted'],
|
|
1479
1500
|
},
|
|
1480
1501
|
/**
|
|
1481
|
-
*
|
|
1502
|
+
* Lookup128: pallet_crosschain_transfer::pallet::Event<T>
|
|
1482
1503
|
**/
|
|
1483
1504
|
PalletCrosschainTransferEvent: {
|
|
1484
1505
|
_enum: {
|
|
1485
|
-
|
|
1506
|
+
TransferToArgonSettled: {
|
|
1507
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1508
|
+
transfer: 'PalletCrosschainTransferTransferToArgonActivity',
|
|
1509
|
+
},
|
|
1510
|
+
GlobalIssuanceCouncilForced: {
|
|
1511
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1512
|
+
councilHash: 'H256',
|
|
1513
|
+
},
|
|
1514
|
+
CouncilSignerRegistered: {
|
|
1515
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1516
|
+
accountId: 'AccountId32',
|
|
1517
|
+
signer: 'H160',
|
|
1518
|
+
},
|
|
1519
|
+
CouncilSignerRotationQueued: {
|
|
1520
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1521
|
+
accountId: 'AccountId32',
|
|
1522
|
+
signer: 'H160',
|
|
1523
|
+
},
|
|
1524
|
+
MintingAuthorityRegistered: {
|
|
1525
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1526
|
+
destinationSigningKey: 'H160',
|
|
1527
|
+
accountId: 'AccountId32',
|
|
1528
|
+
approvalQueueNonce: 'u64',
|
|
1529
|
+
},
|
|
1530
|
+
MintingAuthorityDeactivationQueued: {
|
|
1531
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1532
|
+
destinationSigningKey: 'H160',
|
|
1533
|
+
approvalQueueNonce: 'u64',
|
|
1534
|
+
},
|
|
1535
|
+
MinimumMintingAuthorityValueSet: {
|
|
1536
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1537
|
+
minimumValue: 'u128',
|
|
1538
|
+
},
|
|
1539
|
+
MintingAuthorityActivationRepaymentPricingSet: {
|
|
1540
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1541
|
+
},
|
|
1542
|
+
QueueEntryApprovalRecorded: {
|
|
1543
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1544
|
+
target: 'PalletCrosschainTransferCouncilApprovalTargetId',
|
|
1545
|
+
approvalQueueNonce: 'u64',
|
|
1546
|
+
},
|
|
1547
|
+
QueueEntryApprovalReady: {
|
|
1548
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1549
|
+
target: 'PalletCrosschainTransferCouncilApprovalTargetId',
|
|
1550
|
+
approvalQueueNonce: 'u64',
|
|
1551
|
+
},
|
|
1552
|
+
MintingAuthorityActivationFinalized: {
|
|
1553
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1554
|
+
destinationSigningKey: 'H160',
|
|
1555
|
+
},
|
|
1556
|
+
MintingAuthorityActivationCompleted: {
|
|
1557
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1558
|
+
destinationSigningKey: 'H160',
|
|
1559
|
+
relayerArgonAccountId: 'AccountId32',
|
|
1560
|
+
repaymentAmount: 'u128',
|
|
1561
|
+
},
|
|
1562
|
+
MintingAuthorityDeactivationFinalized: {
|
|
1563
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1564
|
+
destinationSigningKey: 'H160',
|
|
1565
|
+
},
|
|
1566
|
+
GatewaySyncPaused: {
|
|
1486
1567
|
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1487
|
-
|
|
1568
|
+
pause: 'PalletCrosschainTransferGatewaySyncPause',
|
|
1569
|
+
},
|
|
1570
|
+
GatewayUnpaused: {
|
|
1571
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1572
|
+
},
|
|
1573
|
+
GatewayStateAdvanced: {
|
|
1574
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1575
|
+
gatewayState: 'PalletCrosschainTransferGatewayState',
|
|
1576
|
+
},
|
|
1577
|
+
TransferOutStarted: {
|
|
1578
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
1579
|
+
transferId: 'H256',
|
|
1580
|
+
accountId: 'AccountId32',
|
|
1581
|
+
asset: 'PalletCrosschainTransferAssetKind',
|
|
1582
|
+
amount: 'u128',
|
|
1583
|
+
mintingAuthorityTip: 'u128',
|
|
1584
|
+
},
|
|
1585
|
+
TransferCollateralized: {
|
|
1586
|
+
transferId: 'H256',
|
|
1587
|
+
destinationSigningKey: 'H160',
|
|
1588
|
+
microgonCollateral: 'u128',
|
|
1589
|
+
micronotCollateral: 'u128',
|
|
1590
|
+
},
|
|
1591
|
+
TransferOutReady: {
|
|
1592
|
+
transferId: 'H256',
|
|
1593
|
+
},
|
|
1594
|
+
TransferOutFinalized: {
|
|
1595
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1596
|
+
transferId: 'H256',
|
|
1597
|
+
},
|
|
1598
|
+
TransferOutCanceled: {
|
|
1599
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
1600
|
+
transferId: 'H256',
|
|
1601
|
+
},
|
|
1602
|
+
TransferCollateralInvalidated: {
|
|
1603
|
+
transferId: 'H256',
|
|
1604
|
+
destinationSigningKey: 'H160',
|
|
1488
1605
|
},
|
|
1489
1606
|
},
|
|
1490
1607
|
},
|
|
1491
1608
|
/**
|
|
1492
|
-
*
|
|
1609
|
+
* Lookup129: pallet_crosschain_transfer::pallet::SourceChain
|
|
1493
1610
|
**/
|
|
1494
1611
|
PalletCrosschainTransferSourceChain: {
|
|
1495
1612
|
_enum: ['Ethereum'],
|
|
1496
1613
|
},
|
|
1497
1614
|
/**
|
|
1498
|
-
*
|
|
1615
|
+
* Lookup130: pallet_crosschain_transfer::pallet::TransferToArgonActivity<T>
|
|
1499
1616
|
**/
|
|
1500
|
-
|
|
1617
|
+
PalletCrosschainTransferTransferToArgonActivity: {
|
|
1618
|
+
gatewayActivityNonce: 'Compact<u64>',
|
|
1501
1619
|
from: 'H160',
|
|
1620
|
+
asset: 'PalletCrosschainTransferAssetKind',
|
|
1502
1621
|
to: 'AccountId32',
|
|
1503
|
-
|
|
1504
|
-
amount: 'u128',
|
|
1505
|
-
accountNonce: 'Compact<u64>',
|
|
1622
|
+
amount: 'Compact<u128>',
|
|
1506
1623
|
},
|
|
1507
1624
|
/**
|
|
1508
|
-
*
|
|
1625
|
+
* Lookup133: pallet_crosschain_transfer::pallet::AssetKind
|
|
1509
1626
|
**/
|
|
1510
1627
|
PalletCrosschainTransferAssetKind: {
|
|
1511
1628
|
_enum: ['Argon', 'Argonot'],
|
|
1512
1629
|
},
|
|
1513
1630
|
/**
|
|
1514
|
-
*
|
|
1631
|
+
* Lookup134: pallet_crosschain_transfer::pallet::CouncilApprovalTargetId
|
|
1632
|
+
**/
|
|
1633
|
+
PalletCrosschainTransferCouncilApprovalTargetId: {
|
|
1634
|
+
_enum: {
|
|
1635
|
+
MintingAuthorityActivation: 'H160',
|
|
1636
|
+
MintingAuthorityDeactivation: 'H160',
|
|
1637
|
+
GlobalIssuanceCouncilRotation: 'H256',
|
|
1638
|
+
},
|
|
1639
|
+
},
|
|
1640
|
+
/**
|
|
1641
|
+
* Lookup135: pallet_crosschain_transfer::pallet::GatewaySyncPause
|
|
1642
|
+
**/
|
|
1643
|
+
PalletCrosschainTransferGatewaySyncPause: {
|
|
1644
|
+
lastGoodGatewayActivityNonce: 'Compact<u64>',
|
|
1645
|
+
failedGatewayActivityNonce: 'Compact<u64>',
|
|
1646
|
+
reason: 'PalletCrosschainTransferGatewaySyncPauseReason',
|
|
1647
|
+
},
|
|
1648
|
+
/**
|
|
1649
|
+
* Lookup136: pallet_crosschain_transfer::pallet::GatewaySyncPauseReason
|
|
1650
|
+
**/
|
|
1651
|
+
PalletCrosschainTransferGatewaySyncPauseReason: {
|
|
1652
|
+
_enum: [
|
|
1653
|
+
'Manual',
|
|
1654
|
+
'MalformedGatewayActivity',
|
|
1655
|
+
'UnsupportedToken',
|
|
1656
|
+
'MintingAuthorityNotFound',
|
|
1657
|
+
'UnexpectedMintingAuthorityState',
|
|
1658
|
+
'MintingAuthorityMismatch',
|
|
1659
|
+
'MissingMintingAuthorityActivationRepaymentPricing',
|
|
1660
|
+
'MintingAuthorityActivationRepaymentMismatch',
|
|
1661
|
+
'GlobalIssuanceCouncilNotFound',
|
|
1662
|
+
'GatewayStateDrift',
|
|
1663
|
+
],
|
|
1664
|
+
},
|
|
1665
|
+
/**
|
|
1666
|
+
* Lookup137: pallet_crosschain_transfer::pallet::GatewayState<T>
|
|
1667
|
+
**/
|
|
1668
|
+
PalletCrosschainTransferGatewayState: {
|
|
1669
|
+
gatewayActivityNonce: 'Compact<u64>',
|
|
1670
|
+
argonApprovalsNonce: 'Compact<u64>',
|
|
1671
|
+
argonCirculation: 'u128',
|
|
1672
|
+
argonotCirculation: 'u128',
|
|
1673
|
+
},
|
|
1674
|
+
/**
|
|
1675
|
+
* Lookup138: frame_system::Phase
|
|
1515
1676
|
**/
|
|
1516
1677
|
FrameSystemPhase: {
|
|
1517
1678
|
_enum: {
|
|
@@ -1521,21 +1682,21 @@ export default {
|
|
|
1521
1682
|
},
|
|
1522
1683
|
},
|
|
1523
1684
|
/**
|
|
1524
|
-
*
|
|
1685
|
+
* Lookup142: frame_system::LastRuntimeUpgradeInfo
|
|
1525
1686
|
**/
|
|
1526
1687
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1527
1688
|
specVersion: 'Compact<u32>',
|
|
1528
1689
|
specName: 'Text',
|
|
1529
1690
|
},
|
|
1530
1691
|
/**
|
|
1531
|
-
*
|
|
1692
|
+
* Lookup145: frame_system::CodeUpgradeAuthorization<T>
|
|
1532
1693
|
**/
|
|
1533
1694
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1534
1695
|
codeHash: 'H256',
|
|
1535
1696
|
checkVersion: 'bool',
|
|
1536
1697
|
},
|
|
1537
1698
|
/**
|
|
1538
|
-
*
|
|
1699
|
+
* Lookup146: frame_system::pallet::Call<T>
|
|
1539
1700
|
**/
|
|
1540
1701
|
FrameSystemCall: {
|
|
1541
1702
|
_enum: {
|
|
@@ -1580,7 +1741,7 @@ export default {
|
|
|
1580
1741
|
},
|
|
1581
1742
|
},
|
|
1582
1743
|
/**
|
|
1583
|
-
*
|
|
1744
|
+
* Lookup150: frame_system::limits::BlockWeights
|
|
1584
1745
|
**/
|
|
1585
1746
|
FrameSystemLimitsBlockWeights: {
|
|
1586
1747
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
@@ -1588,7 +1749,7 @@ export default {
|
|
|
1588
1749
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass',
|
|
1589
1750
|
},
|
|
1590
1751
|
/**
|
|
1591
|
-
*
|
|
1752
|
+
* Lookup151: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1592
1753
|
**/
|
|
1593
1754
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1594
1755
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
@@ -1596,7 +1757,7 @@ export default {
|
|
|
1596
1757
|
mandatory: 'FrameSystemLimitsWeightsPerClass',
|
|
1597
1758
|
},
|
|
1598
1759
|
/**
|
|
1599
|
-
*
|
|
1760
|
+
* Lookup152: frame_system::limits::WeightsPerClass
|
|
1600
1761
|
**/
|
|
1601
1762
|
FrameSystemLimitsWeightsPerClass: {
|
|
1602
1763
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -1605,14 +1766,14 @@ export default {
|
|
|
1605
1766
|
reserved: 'Option<SpWeightsWeightV2Weight>',
|
|
1606
1767
|
},
|
|
1607
1768
|
/**
|
|
1608
|
-
*
|
|
1769
|
+
* Lookup154: frame_system::limits::BlockLength
|
|
1609
1770
|
**/
|
|
1610
1771
|
FrameSystemLimitsBlockLength: {
|
|
1611
1772
|
max: 'FrameSupportDispatchPerDispatchClassU32',
|
|
1612
1773
|
maxHeaderSize: 'Option<u32>',
|
|
1613
1774
|
},
|
|
1614
1775
|
/**
|
|
1615
|
-
*
|
|
1776
|
+
* Lookup155: frame_support::dispatch::PerDispatchClass<T>
|
|
1616
1777
|
**/
|
|
1617
1778
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1618
1779
|
normal: 'u32',
|
|
@@ -1620,14 +1781,14 @@ export default {
|
|
|
1620
1781
|
mandatory: 'u32',
|
|
1621
1782
|
},
|
|
1622
1783
|
/**
|
|
1623
|
-
*
|
|
1784
|
+
* Lookup157: sp_weights::RuntimeDbWeight
|
|
1624
1785
|
**/
|
|
1625
1786
|
SpWeightsRuntimeDbWeight: {
|
|
1626
1787
|
read: 'u64',
|
|
1627
1788
|
write: 'u64',
|
|
1628
1789
|
},
|
|
1629
1790
|
/**
|
|
1630
|
-
*
|
|
1791
|
+
* Lookup158: sp_version::RuntimeVersion
|
|
1631
1792
|
**/
|
|
1632
1793
|
SpVersionRuntimeVersion: {
|
|
1633
1794
|
specName: 'Text',
|
|
@@ -1640,7 +1801,7 @@ export default {
|
|
|
1640
1801
|
systemVersion: 'u8',
|
|
1641
1802
|
},
|
|
1642
1803
|
/**
|
|
1643
|
-
*
|
|
1804
|
+
* Lookup163: frame_system::pallet::Error<T>
|
|
1644
1805
|
**/
|
|
1645
1806
|
FrameSystemError: {
|
|
1646
1807
|
_enum: [
|
|
@@ -1656,7 +1817,7 @@ export default {
|
|
|
1656
1817
|
],
|
|
1657
1818
|
},
|
|
1658
1819
|
/**
|
|
1659
|
-
*
|
|
1820
|
+
* Lookup164: argon_primitives::digests::Digestset<argon_notary_audit::error::VerifyError, sp_core::crypto::AccountId32>
|
|
1660
1821
|
**/
|
|
1661
1822
|
ArgonPrimitivesDigestsDigestset: {
|
|
1662
1823
|
author: 'AccountId32',
|
|
@@ -1668,20 +1829,20 @@ export default {
|
|
|
1668
1829
|
notebooks: 'ArgonPrimitivesDigestsNotebookDigest',
|
|
1669
1830
|
},
|
|
1670
1831
|
/**
|
|
1671
|
-
*
|
|
1832
|
+
* Lookup165: argon_primitives::digests::BlockVoteDigest
|
|
1672
1833
|
**/
|
|
1673
1834
|
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
1674
1835
|
votingPower: 'Compact<u128>',
|
|
1675
1836
|
votesCount: 'Compact<u32>',
|
|
1676
1837
|
},
|
|
1677
1838
|
/**
|
|
1678
|
-
*
|
|
1839
|
+
* Lookup167: argon_primitives::digests::ParentVotingKeyDigest
|
|
1679
1840
|
**/
|
|
1680
1841
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
1681
1842
|
parentVotingKey: 'Option<H256>',
|
|
1682
1843
|
},
|
|
1683
1844
|
/**
|
|
1684
|
-
*
|
|
1845
|
+
* Lookup170: argon_primitives::fork_power::ForkPower
|
|
1685
1846
|
**/
|
|
1686
1847
|
ArgonPrimitivesForkPower: {
|
|
1687
1848
|
isLatestVote: 'bool',
|
|
@@ -1693,7 +1854,7 @@ export default {
|
|
|
1693
1854
|
minerNonceScore: 'Option<U256>',
|
|
1694
1855
|
},
|
|
1695
1856
|
/**
|
|
1696
|
-
*
|
|
1857
|
+
* Lookup175: argon_primitives::digests::FrameInfo
|
|
1697
1858
|
**/
|
|
1698
1859
|
ArgonPrimitivesDigestsFrameInfo: {
|
|
1699
1860
|
frameId: 'Compact<u64>',
|
|
@@ -1701,13 +1862,13 @@ export default {
|
|
|
1701
1862
|
isNewFrame: 'bool',
|
|
1702
1863
|
},
|
|
1703
1864
|
/**
|
|
1704
|
-
*
|
|
1865
|
+
* Lookup177: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
1705
1866
|
**/
|
|
1706
1867
|
ArgonPrimitivesDigestsNotebookDigest: {
|
|
1707
1868
|
notebooks: 'Vec<ArgonPrimitivesNotebookNotebookAuditResult>',
|
|
1708
1869
|
},
|
|
1709
1870
|
/**
|
|
1710
|
-
*
|
|
1871
|
+
* Lookup179: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
|
|
1711
1872
|
**/
|
|
1712
1873
|
ArgonPrimitivesNotebookNotebookAuditResult: {
|
|
1713
1874
|
notaryId: 'Compact<u32>',
|
|
@@ -1716,7 +1877,7 @@ export default {
|
|
|
1716
1877
|
auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>',
|
|
1717
1878
|
},
|
|
1718
1879
|
/**
|
|
1719
|
-
*
|
|
1880
|
+
* Lookup182: pallet_digests::pallet::Error<T>
|
|
1720
1881
|
**/
|
|
1721
1882
|
PalletDigestsError: {
|
|
1722
1883
|
_enum: [
|
|
@@ -1736,7 +1897,7 @@ export default {
|
|
|
1736
1897
|
],
|
|
1737
1898
|
},
|
|
1738
1899
|
/**
|
|
1739
|
-
*
|
|
1900
|
+
* Lookup183: pallet_timestamp::pallet::Call<T>
|
|
1740
1901
|
**/
|
|
1741
1902
|
PalletTimestampCall: {
|
|
1742
1903
|
_enum: {
|
|
@@ -1746,7 +1907,7 @@ export default {
|
|
|
1746
1907
|
},
|
|
1747
1908
|
},
|
|
1748
1909
|
/**
|
|
1749
|
-
*
|
|
1910
|
+
* Lookup185: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
1750
1911
|
**/
|
|
1751
1912
|
PalletMultisigMultisig: {
|
|
1752
1913
|
when: 'PalletMultisigTimepoint',
|
|
@@ -1755,7 +1916,7 @@ export default {
|
|
|
1755
1916
|
approvals: 'Vec<AccountId32>',
|
|
1756
1917
|
},
|
|
1757
1918
|
/**
|
|
1758
|
-
*
|
|
1919
|
+
* Lookup188: pallet_multisig::pallet::Call<T>
|
|
1759
1920
|
**/
|
|
1760
1921
|
PalletMultisigCall: {
|
|
1761
1922
|
_enum: {
|
|
@@ -1791,7 +1952,7 @@ export default {
|
|
|
1791
1952
|
},
|
|
1792
1953
|
},
|
|
1793
1954
|
/**
|
|
1794
|
-
*
|
|
1955
|
+
* Lookup190: pallet_proxy::pallet::Call<T>
|
|
1795
1956
|
**/
|
|
1796
1957
|
PalletProxyCall: {
|
|
1797
1958
|
_enum: {
|
|
@@ -1845,11 +2006,11 @@ export default {
|
|
|
1845
2006
|
},
|
|
1846
2007
|
},
|
|
1847
2008
|
/**
|
|
1848
|
-
*
|
|
2009
|
+
* Lookup194: pallet_ticks::pallet::Call<T>
|
|
1849
2010
|
**/
|
|
1850
2011
|
PalletTicksCall: 'Null',
|
|
1851
2012
|
/**
|
|
1852
|
-
*
|
|
2013
|
+
* Lookup195: pallet_mining_slot::pallet::Call<T>
|
|
1853
2014
|
**/
|
|
1854
2015
|
PalletMiningSlotCall: {
|
|
1855
2016
|
_enum: {
|
|
@@ -1868,7 +2029,7 @@ export default {
|
|
|
1868
2029
|
},
|
|
1869
2030
|
},
|
|
1870
2031
|
/**
|
|
1871
|
-
*
|
|
2032
|
+
* Lookup196: pallet_bitcoin_utxos::pallet::Call<T>
|
|
1872
2033
|
**/
|
|
1873
2034
|
PalletBitcoinUtxosCall: {
|
|
1874
2035
|
_enum: {
|
|
@@ -1893,7 +2054,7 @@ export default {
|
|
|
1893
2054
|
},
|
|
1894
2055
|
},
|
|
1895
2056
|
/**
|
|
1896
|
-
*
|
|
2057
|
+
* Lookup197: argon_primitives::inherents::BitcoinUtxoSync
|
|
1897
2058
|
**/
|
|
1898
2059
|
ArgonPrimitivesInherentsBitcoinUtxoSync: {
|
|
1899
2060
|
spent: 'Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>',
|
|
@@ -1901,7 +2062,7 @@ export default {
|
|
|
1901
2062
|
syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock',
|
|
1902
2063
|
},
|
|
1903
2064
|
/**
|
|
1904
|
-
*
|
|
2065
|
+
* Lookup199: argon_primitives::inherents::BitcoinUtxoSpend
|
|
1905
2066
|
**/
|
|
1906
2067
|
ArgonPrimitivesInherentsBitcoinUtxoSpend: {
|
|
1907
2068
|
utxoId: 'Compact<u64>',
|
|
@@ -1909,7 +2070,7 @@ export default {
|
|
|
1909
2070
|
bitcoinHeight: 'Compact<u64>',
|
|
1910
2071
|
},
|
|
1911
2072
|
/**
|
|
1912
|
-
*
|
|
2073
|
+
* Lookup202: argon_primitives::inherents::BitcoinUtxoFunding
|
|
1913
2074
|
**/
|
|
1914
2075
|
ArgonPrimitivesInherentsBitcoinUtxoFunding: {
|
|
1915
2076
|
utxoId: 'Compact<u64>',
|
|
@@ -1919,14 +2080,14 @@ export default {
|
|
|
1919
2080
|
bitcoinHeight: 'Compact<u64>',
|
|
1920
2081
|
},
|
|
1921
2082
|
/**
|
|
1922
|
-
*
|
|
2083
|
+
* Lookup203: argon_primitives::bitcoin::BitcoinBlock
|
|
1923
2084
|
**/
|
|
1924
2085
|
ArgonPrimitivesBitcoinBitcoinBlock: {
|
|
1925
2086
|
blockHeight: 'Compact<u64>',
|
|
1926
2087
|
blockHash: 'ArgonPrimitivesBitcoinH256Le',
|
|
1927
2088
|
},
|
|
1928
2089
|
/**
|
|
1929
|
-
*
|
|
2090
|
+
* Lookup204: pallet_vaults::pallet::Call<T>
|
|
1930
2091
|
**/
|
|
1931
2092
|
PalletVaultsCall: {
|
|
1932
2093
|
_enum: {
|
|
@@ -1958,10 +2119,13 @@ export default {
|
|
|
1958
2119
|
set_name: {
|
|
1959
2120
|
name: 'Option<Bytes>',
|
|
1960
2121
|
},
|
|
2122
|
+
set_committed_argonots: {
|
|
2123
|
+
amount: 'Compact<u128>',
|
|
2124
|
+
},
|
|
1961
2125
|
},
|
|
1962
2126
|
},
|
|
1963
2127
|
/**
|
|
1964
|
-
*
|
|
2128
|
+
* Lookup205: pallet_vaults::pallet::VaultConfig<Balance>
|
|
1965
2129
|
**/
|
|
1966
2130
|
PalletVaultsVaultConfig: {
|
|
1967
2131
|
terms: 'ArgonPrimitivesVaultVaultTerms',
|
|
@@ -1971,7 +2135,7 @@ export default {
|
|
|
1971
2135
|
securitizationRatio: 'Compact<u128>',
|
|
1972
2136
|
},
|
|
1973
2137
|
/**
|
|
1974
|
-
*
|
|
2138
|
+
* Lookup206: argon_primitives::vault::VaultTerms<Balance>
|
|
1975
2139
|
**/
|
|
1976
2140
|
ArgonPrimitivesVaultVaultTerms: {
|
|
1977
2141
|
bitcoinAnnualPercentRate: 'Compact<u128>',
|
|
@@ -1979,11 +2143,11 @@ export default {
|
|
|
1979
2143
|
treasuryProfitSharing: 'Compact<Permill>',
|
|
1980
2144
|
},
|
|
1981
2145
|
/**
|
|
1982
|
-
*
|
|
2146
|
+
* Lookup212: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
1983
2147
|
**/
|
|
1984
2148
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
|
|
1985
2149
|
/**
|
|
1986
|
-
*
|
|
2150
|
+
* Lookup214: pallet_bitcoin_locks::pallet::Call<T>
|
|
1987
2151
|
**/
|
|
1988
2152
|
PalletBitcoinLocksCall: {
|
|
1989
2153
|
_enum: {
|
|
@@ -2034,21 +2198,21 @@ export default {
|
|
|
2034
2198
|
},
|
|
2035
2199
|
},
|
|
2036
2200
|
/**
|
|
2037
|
-
*
|
|
2201
|
+
* Lookup215: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
2038
2202
|
**/
|
|
2039
2203
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
|
|
2040
2204
|
/**
|
|
2041
|
-
*
|
|
2205
|
+
* Lookup218: pallet_bitcoin_locks::pallet::LockOptions<T>
|
|
2042
2206
|
**/
|
|
2043
2207
|
PalletBitcoinLocksLockOptions: {
|
|
2044
2208
|
_enum: {
|
|
2045
2209
|
V1: {
|
|
2046
|
-
|
|
2210
|
+
microgonsAtTargetPerBtc: 'Option<u128>',
|
|
2047
2211
|
},
|
|
2048
2212
|
},
|
|
2049
2213
|
},
|
|
2050
2214
|
/**
|
|
2051
|
-
*
|
|
2215
|
+
* Lookup221: pallet_notaries::pallet::Call<T>
|
|
2052
2216
|
**/
|
|
2053
2217
|
PalletNotariesCall: {
|
|
2054
2218
|
_enum: {
|
|
@@ -2066,7 +2230,7 @@ export default {
|
|
|
2066
2230
|
},
|
|
2067
2231
|
},
|
|
2068
2232
|
/**
|
|
2069
|
-
*
|
|
2233
|
+
* Lookup222: pallet_notebook::pallet::Call<T>
|
|
2070
2234
|
**/
|
|
2071
2235
|
PalletNotebookCall: {
|
|
2072
2236
|
_enum: {
|
|
@@ -2079,14 +2243,14 @@ export default {
|
|
|
2079
2243
|
},
|
|
2080
2244
|
},
|
|
2081
2245
|
/**
|
|
2082
|
-
*
|
|
2246
|
+
* Lookup224: argon_primitives::notebook::SignedNotebookHeader
|
|
2083
2247
|
**/
|
|
2084
2248
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
2085
2249
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
2086
2250
|
signature: '[u8;64]',
|
|
2087
2251
|
},
|
|
2088
2252
|
/**
|
|
2089
|
-
*
|
|
2253
|
+
* Lookup225: argon_primitives::notebook::NotebookHeader
|
|
2090
2254
|
**/
|
|
2091
2255
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
2092
2256
|
version: 'Compact<u16>',
|
|
@@ -2106,7 +2270,7 @@ export default {
|
|
|
2106
2270
|
domains: 'Vec<(H256,AccountId32)>',
|
|
2107
2271
|
},
|
|
2108
2272
|
/**
|
|
2109
|
-
*
|
|
2273
|
+
* Lookup228: argon_primitives::notebook::ChainTransfer
|
|
2110
2274
|
**/
|
|
2111
2275
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
2112
2276
|
_enum: {
|
|
@@ -2120,14 +2284,14 @@ export default {
|
|
|
2120
2284
|
},
|
|
2121
2285
|
},
|
|
2122
2286
|
/**
|
|
2123
|
-
*
|
|
2287
|
+
* Lookup231: argon_primitives::balance_change::AccountOrigin
|
|
2124
2288
|
**/
|
|
2125
2289
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
2126
2290
|
notebookNumber: 'Compact<u32>',
|
|
2127
2291
|
accountUid: 'Compact<u32>',
|
|
2128
2292
|
},
|
|
2129
2293
|
/**
|
|
2130
|
-
*
|
|
2294
|
+
* Lookup238: pallet_localchain_transfer::pallet::Call<T>
|
|
2131
2295
|
**/
|
|
2132
2296
|
PalletLocalchainTransferCall: {
|
|
2133
2297
|
_enum: {
|
|
@@ -2138,7 +2302,7 @@ export default {
|
|
|
2138
2302
|
},
|
|
2139
2303
|
},
|
|
2140
2304
|
/**
|
|
2141
|
-
*
|
|
2305
|
+
* Lookup239: pallet_block_seal_spec::pallet::Call<T>
|
|
2142
2306
|
**/
|
|
2143
2307
|
PalletBlockSealSpecCall: {
|
|
2144
2308
|
_enum: {
|
|
@@ -2149,7 +2313,7 @@ export default {
|
|
|
2149
2313
|
},
|
|
2150
2314
|
},
|
|
2151
2315
|
/**
|
|
2152
|
-
*
|
|
2316
|
+
* Lookup240: pallet_domains::pallet::Call<T>
|
|
2153
2317
|
**/
|
|
2154
2318
|
PalletDomainsCall: {
|
|
2155
2319
|
_enum: {
|
|
@@ -2160,7 +2324,7 @@ export default {
|
|
|
2160
2324
|
},
|
|
2161
2325
|
},
|
|
2162
2326
|
/**
|
|
2163
|
-
*
|
|
2327
|
+
* Lookup241: pallet_price_index::pallet::Call<T>
|
|
2164
2328
|
**/
|
|
2165
2329
|
PalletPriceIndexCall: {
|
|
2166
2330
|
_enum: {
|
|
@@ -2173,7 +2337,7 @@ export default {
|
|
|
2173
2337
|
},
|
|
2174
2338
|
},
|
|
2175
2339
|
/**
|
|
2176
|
-
*
|
|
2340
|
+
* Lookup242: pallet_price_index::PriceIndex
|
|
2177
2341
|
**/
|
|
2178
2342
|
PalletPriceIndexPriceIndex: {
|
|
2179
2343
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2184,7 +2348,7 @@ export default {
|
|
|
2184
2348
|
tick: 'Compact<u64>',
|
|
2185
2349
|
},
|
|
2186
2350
|
/**
|
|
2187
|
-
*
|
|
2351
|
+
* Lookup243: pallet_grandpa::pallet::Call<T>
|
|
2188
2352
|
**/
|
|
2189
2353
|
PalletGrandpaCall: {
|
|
2190
2354
|
_enum: {
|
|
@@ -2203,14 +2367,14 @@ export default {
|
|
|
2203
2367
|
},
|
|
2204
2368
|
},
|
|
2205
2369
|
/**
|
|
2206
|
-
*
|
|
2370
|
+
* Lookup244: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2207
2371
|
**/
|
|
2208
2372
|
SpConsensusGrandpaEquivocationProof: {
|
|
2209
2373
|
setId: 'u64',
|
|
2210
2374
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2211
2375
|
},
|
|
2212
2376
|
/**
|
|
2213
|
-
*
|
|
2377
|
+
* Lookup245: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2214
2378
|
**/
|
|
2215
2379
|
SpConsensusGrandpaEquivocation: {
|
|
2216
2380
|
_enum: {
|
|
@@ -2219,7 +2383,7 @@ export default {
|
|
|
2219
2383
|
},
|
|
2220
2384
|
},
|
|
2221
2385
|
/**
|
|
2222
|
-
*
|
|
2386
|
+
* Lookup246: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2223
2387
|
**/
|
|
2224
2388
|
FinalityGrandpaEquivocationPrevote: {
|
|
2225
2389
|
roundNumber: 'u64',
|
|
@@ -2228,18 +2392,18 @@ export default {
|
|
|
2228
2392
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2229
2393
|
},
|
|
2230
2394
|
/**
|
|
2231
|
-
*
|
|
2395
|
+
* Lookup247: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2232
2396
|
**/
|
|
2233
2397
|
FinalityGrandpaPrevote: {
|
|
2234
2398
|
targetHash: 'H256',
|
|
2235
2399
|
targetNumber: 'u32',
|
|
2236
2400
|
},
|
|
2237
2401
|
/**
|
|
2238
|
-
*
|
|
2402
|
+
* Lookup248: sp_consensus_grandpa::app::Signature
|
|
2239
2403
|
**/
|
|
2240
2404
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2241
2405
|
/**
|
|
2242
|
-
*
|
|
2406
|
+
* Lookup250: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2243
2407
|
**/
|
|
2244
2408
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2245
2409
|
roundNumber: 'u64',
|
|
@@ -2248,18 +2412,18 @@ export default {
|
|
|
2248
2412
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2249
2413
|
},
|
|
2250
2414
|
/**
|
|
2251
|
-
*
|
|
2415
|
+
* Lookup251: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2252
2416
|
**/
|
|
2253
2417
|
FinalityGrandpaPrecommit: {
|
|
2254
2418
|
targetHash: 'H256',
|
|
2255
2419
|
targetNumber: 'u32',
|
|
2256
2420
|
},
|
|
2257
2421
|
/**
|
|
2258
|
-
*
|
|
2422
|
+
* Lookup253: sp_core::Void
|
|
2259
2423
|
**/
|
|
2260
2424
|
SpCoreVoid: 'Null',
|
|
2261
2425
|
/**
|
|
2262
|
-
*
|
|
2426
|
+
* Lookup254: pallet_block_seal::pallet::Call<T>
|
|
2263
2427
|
**/
|
|
2264
2428
|
PalletBlockSealCall: {
|
|
2265
2429
|
_enum: {
|
|
@@ -2269,7 +2433,7 @@ export default {
|
|
|
2269
2433
|
},
|
|
2270
2434
|
},
|
|
2271
2435
|
/**
|
|
2272
|
-
*
|
|
2436
|
+
* Lookup255: argon_primitives::inherents::BlockSealInherent
|
|
2273
2437
|
**/
|
|
2274
2438
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2275
2439
|
_enum: {
|
|
@@ -2285,7 +2449,7 @@ export default {
|
|
|
2285
2449
|
},
|
|
2286
2450
|
},
|
|
2287
2451
|
/**
|
|
2288
|
-
*
|
|
2452
|
+
* Lookup256: argon_primitives::balance_change::MerkleProof
|
|
2289
2453
|
**/
|
|
2290
2454
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2291
2455
|
proof: 'Vec<H256>',
|
|
@@ -2293,7 +2457,7 @@ export default {
|
|
|
2293
2457
|
leafIndex: 'Compact<u32>',
|
|
2294
2458
|
},
|
|
2295
2459
|
/**
|
|
2296
|
-
*
|
|
2460
|
+
* Lookup258: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2297
2461
|
**/
|
|
2298
2462
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2299
2463
|
accountId: 'AccountId32',
|
|
@@ -2305,7 +2469,7 @@ export default {
|
|
|
2305
2469
|
tick: 'Compact<u64>',
|
|
2306
2470
|
},
|
|
2307
2471
|
/**
|
|
2308
|
-
*
|
|
2472
|
+
* Lookup259: sp_runtime::MultiSignature
|
|
2309
2473
|
**/
|
|
2310
2474
|
SpRuntimeMultiSignature: {
|
|
2311
2475
|
_enum: {
|
|
@@ -2316,7 +2480,7 @@ export default {
|
|
|
2316
2480
|
},
|
|
2317
2481
|
},
|
|
2318
2482
|
/**
|
|
2319
|
-
*
|
|
2483
|
+
* Lookup261: pallet_block_rewards::pallet::Call<T>
|
|
2320
2484
|
**/
|
|
2321
2485
|
PalletBlockRewardsCall: {
|
|
2322
2486
|
_enum: {
|
|
@@ -2326,11 +2490,11 @@ export default {
|
|
|
2326
2490
|
},
|
|
2327
2491
|
},
|
|
2328
2492
|
/**
|
|
2329
|
-
*
|
|
2493
|
+
* Lookup262: pallet_mint::pallet::Call<T>
|
|
2330
2494
|
**/
|
|
2331
2495
|
PalletMintCall: 'Null',
|
|
2332
2496
|
/**
|
|
2333
|
-
*
|
|
2497
|
+
* Lookup263: pallet_balances::pallet::Call<T, I>
|
|
2334
2498
|
**/
|
|
2335
2499
|
PalletBalancesCall: {
|
|
2336
2500
|
_enum: {
|
|
@@ -2375,13 +2539,13 @@ export default {
|
|
|
2375
2539
|
},
|
|
2376
2540
|
},
|
|
2377
2541
|
/**
|
|
2378
|
-
*
|
|
2542
|
+
* Lookup264: pallet_balances::types::AdjustmentDirection
|
|
2379
2543
|
**/
|
|
2380
2544
|
PalletBalancesAdjustmentDirection: {
|
|
2381
2545
|
_enum: ['Increase', 'Decrease'],
|
|
2382
2546
|
},
|
|
2383
2547
|
/**
|
|
2384
|
-
*
|
|
2548
|
+
* Lookup266: pallet_tx_pause::pallet::Call<T>
|
|
2385
2549
|
**/
|
|
2386
2550
|
PalletTxPauseCall: {
|
|
2387
2551
|
_enum: {
|
|
@@ -2394,7 +2558,7 @@ export default {
|
|
|
2394
2558
|
},
|
|
2395
2559
|
},
|
|
2396
2560
|
/**
|
|
2397
|
-
*
|
|
2561
|
+
* Lookup267: pallet_utility::pallet::Call<T>
|
|
2398
2562
|
**/
|
|
2399
2563
|
PalletUtilityCall: {
|
|
2400
2564
|
_enum: {
|
|
@@ -2430,7 +2594,7 @@ export default {
|
|
|
2430
2594
|
},
|
|
2431
2595
|
},
|
|
2432
2596
|
/**
|
|
2433
|
-
*
|
|
2597
|
+
* Lookup269: pallet_sudo::pallet::Call<T>
|
|
2434
2598
|
**/
|
|
2435
2599
|
PalletSudoCall: {
|
|
2436
2600
|
_enum: {
|
|
@@ -2455,7 +2619,7 @@ export default {
|
|
|
2455
2619
|
},
|
|
2456
2620
|
},
|
|
2457
2621
|
/**
|
|
2458
|
-
*
|
|
2622
|
+
* Lookup270: pallet_treasury::pallet::Call<T>
|
|
2459
2623
|
**/
|
|
2460
2624
|
PalletTreasuryCall: {
|
|
2461
2625
|
_enum: {
|
|
@@ -2473,7 +2637,7 @@ export default {
|
|
|
2473
2637
|
},
|
|
2474
2638
|
},
|
|
2475
2639
|
/**
|
|
2476
|
-
*
|
|
2640
|
+
* Lookup271: pallet_operational_accounts::pallet::Call<T>
|
|
2477
2641
|
**/
|
|
2478
2642
|
PalletOperationalAccountsCall: {
|
|
2479
2643
|
_enum: {
|
|
@@ -2501,7 +2665,7 @@ export default {
|
|
|
2501
2665
|
},
|
|
2502
2666
|
},
|
|
2503
2667
|
/**
|
|
2504
|
-
*
|
|
2668
|
+
* Lookup272: pallet_operational_accounts::pallet::Registration<T>
|
|
2505
2669
|
**/
|
|
2506
2670
|
PalletOperationalAccountsRegistration: {
|
|
2507
2671
|
_enum: {
|
|
@@ -2509,7 +2673,7 @@ export default {
|
|
|
2509
2673
|
},
|
|
2510
2674
|
},
|
|
2511
2675
|
/**
|
|
2512
|
-
*
|
|
2676
|
+
* Lookup273: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2513
2677
|
**/
|
|
2514
2678
|
PalletOperationalAccountsRegistrationV1: {
|
|
2515
2679
|
operationalAccount: 'AccountId32',
|
|
@@ -2524,17 +2688,17 @@ export default {
|
|
|
2524
2688
|
referralProof: 'Option<PalletOperationalAccountsReferralProof>',
|
|
2525
2689
|
},
|
|
2526
2690
|
/**
|
|
2527
|
-
*
|
|
2691
|
+
* Lookup274: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2528
2692
|
**/
|
|
2529
2693
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2530
2694
|
/**
|
|
2531
|
-
*
|
|
2695
|
+
* Lookup275: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2532
2696
|
**/
|
|
2533
2697
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2534
2698
|
signature: 'SpRuntimeMultiSignature',
|
|
2535
2699
|
},
|
|
2536
2700
|
/**
|
|
2537
|
-
*
|
|
2701
|
+
* Lookup277: pallet_operational_accounts::pallet::ReferralProof<sp_core::crypto::AccountId32>
|
|
2538
2702
|
**/
|
|
2539
2703
|
PalletOperationalAccountsReferralProof: {
|
|
2540
2704
|
referralCode: '[u8;32]',
|
|
@@ -2544,7 +2708,7 @@ export default {
|
|
|
2544
2708
|
sponsorSignature: 'SpRuntimeMultiSignature',
|
|
2545
2709
|
},
|
|
2546
2710
|
/**
|
|
2547
|
-
*
|
|
2711
|
+
* Lookup278: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2548
2712
|
**/
|
|
2549
2713
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2550
2714
|
hasUniswapTransfer: 'Option<bool>',
|
|
@@ -2554,7 +2718,7 @@ export default {
|
|
|
2554
2718
|
observedMiningSeatTotal: 'Option<u32>',
|
|
2555
2719
|
},
|
|
2556
2720
|
/**
|
|
2557
|
-
*
|
|
2721
|
+
* Lookup280: pallet_ethereum_verifier::pallet::Call<T>
|
|
2558
2722
|
**/
|
|
2559
2723
|
PalletEthereumVerifierCall: {
|
|
2560
2724
|
_enum: {
|
|
@@ -2565,25 +2729,24 @@ export default {
|
|
|
2565
2729
|
submit: {
|
|
2566
2730
|
update: 'PalletEthereumVerifierUpdate',
|
|
2567
2731
|
},
|
|
2568
|
-
|
|
2569
|
-
executionProof: 'PalletEthereumVerifierExecutionProof',
|
|
2570
|
-
},
|
|
2732
|
+
__Unused2: 'Null',
|
|
2571
2733
|
set_operating_mode: {
|
|
2572
2734
|
mode: 'PalletEthereumVerifierBasicOperatingMode',
|
|
2573
2735
|
},
|
|
2574
2736
|
},
|
|
2575
2737
|
},
|
|
2576
2738
|
/**
|
|
2577
|
-
*
|
|
2739
|
+
* Lookup281: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2578
2740
|
**/
|
|
2579
2741
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2580
2742
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2581
|
-
currentSyncCommittee: '
|
|
2743
|
+
currentSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2582
2744
|
currentSyncCommitteeBranch: 'Vec<H256>',
|
|
2583
2745
|
validatorsRoot: 'H256',
|
|
2746
|
+
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2584
2747
|
},
|
|
2585
2748
|
/**
|
|
2586
|
-
*
|
|
2749
|
+
* Lookup282: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2587
2750
|
**/
|
|
2588
2751
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2589
2752
|
slot: 'u64',
|
|
@@ -2593,74 +2756,25 @@ export default {
|
|
|
2593
2756
|
bodyRoot: 'H256',
|
|
2594
2757
|
},
|
|
2595
2758
|
/**
|
|
2596
|
-
*
|
|
2759
|
+
* Lookup283: pallet_ethereum_verifier::types::SyncCommittee
|
|
2597
2760
|
**/
|
|
2598
|
-
|
|
2599
|
-
pubkeys: '
|
|
2761
|
+
PalletEthereumVerifierSyncCommittee: {
|
|
2762
|
+
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2600
2763
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2601
2764
|
},
|
|
2602
2765
|
/**
|
|
2603
|
-
*
|
|
2766
|
+
* Lookup285: snowbridge_beacon_primitives::types::PublicKey
|
|
2604
2767
|
**/
|
|
2605
2768
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2606
2769
|
/**
|
|
2607
|
-
*
|
|
2608
|
-
**/
|
|
2609
|
-
PalletEthereumVerifierForkVersions: {
|
|
2610
|
-
genesis: 'PalletEthereumVerifierFork',
|
|
2611
|
-
altair: 'PalletEthereumVerifierFork',
|
|
2612
|
-
bellatrix: 'PalletEthereumVerifierFork',
|
|
2613
|
-
capella: 'PalletEthereumVerifierFork',
|
|
2614
|
-
deneb: 'PalletEthereumVerifierFork',
|
|
2615
|
-
electra: 'PalletEthereumVerifierFork',
|
|
2616
|
-
fulu: 'PalletEthereumVerifierFork',
|
|
2617
|
-
},
|
|
2618
|
-
/**
|
|
2619
|
-
* Lookup283: pallet_ethereum_verifier::types::Fork
|
|
2620
|
-
**/
|
|
2621
|
-
PalletEthereumVerifierFork: {
|
|
2622
|
-
version: '[u8;4]',
|
|
2623
|
-
epoch: 'Compact<u64>',
|
|
2624
|
-
},
|
|
2625
|
-
/**
|
|
2626
|
-
* Lookup284: pallet_ethereum_verifier::types::Update
|
|
2627
|
-
**/
|
|
2628
|
-
PalletEthereumVerifierUpdate: {
|
|
2629
|
-
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2630
|
-
syncAggregate: 'SnowbridgeBeaconPrimitivesSyncAggregate',
|
|
2631
|
-
signatureSlot: 'Compact<u64>',
|
|
2632
|
-
nextSyncCommitteeUpdate: 'Option<PalletEthereumVerifierNextSyncCommitteeUpdate>',
|
|
2633
|
-
finalizedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2634
|
-
finalityBranch: 'Vec<H256>',
|
|
2635
|
-
},
|
|
2636
|
-
/**
|
|
2637
|
-
* Lookup285: snowbridge_beacon_primitives::types::SyncAggregate
|
|
2770
|
+
* Lookup289: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2638
2771
|
**/
|
|
2639
|
-
|
|
2640
|
-
syncCommitteeBits: '[u8;64]',
|
|
2641
|
-
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2642
|
-
},
|
|
2643
|
-
/**
|
|
2644
|
-
* Lookup286: snowbridge_beacon_primitives::types::Signature
|
|
2645
|
-
**/
|
|
2646
|
-
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2647
|
-
/**
|
|
2648
|
-
* Lookup289: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2649
|
-
**/
|
|
2650
|
-
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2651
|
-
nextSyncCommittee: 'SnowbridgeBeaconPrimitivesSyncCommittee',
|
|
2652
|
-
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2653
|
-
},
|
|
2654
|
-
/**
|
|
2655
|
-
* Lookup290: pallet_ethereum_verifier::types::ExecutionProof
|
|
2656
|
-
**/
|
|
2657
|
-
PalletEthereumVerifierExecutionProof: {
|
|
2658
|
-
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2772
|
+
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2659
2773
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2660
2774
|
executionBranch: 'Vec<H256>',
|
|
2661
2775
|
},
|
|
2662
2776
|
/**
|
|
2663
|
-
*
|
|
2777
|
+
* Lookup290: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2664
2778
|
**/
|
|
2665
2779
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2666
2780
|
_enum: {
|
|
@@ -2669,7 +2783,7 @@ export default {
|
|
|
2669
2783
|
},
|
|
2670
2784
|
},
|
|
2671
2785
|
/**
|
|
2672
|
-
*
|
|
2786
|
+
* Lookup291: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2673
2787
|
**/
|
|
2674
2788
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2675
2789
|
parentHash: 'H256',
|
|
@@ -2689,7 +2803,7 @@ export default {
|
|
|
2689
2803
|
withdrawalsRoot: 'H256',
|
|
2690
2804
|
},
|
|
2691
2805
|
/**
|
|
2692
|
-
*
|
|
2806
|
+
* Lookup292: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2693
2807
|
**/
|
|
2694
2808
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2695
2809
|
parentHash: 'H256',
|
|
@@ -2711,81 +2825,202 @@ export default {
|
|
|
2711
2825
|
excessBlobGas: 'u64',
|
|
2712
2826
|
},
|
|
2713
2827
|
/**
|
|
2714
|
-
*
|
|
2828
|
+
* Lookup293: pallet_ethereum_verifier::types::ForkVersions
|
|
2829
|
+
**/
|
|
2830
|
+
PalletEthereumVerifierForkVersions: {
|
|
2831
|
+
genesis: 'PalletEthereumVerifierFork',
|
|
2832
|
+
altair: 'PalletEthereumVerifierFork',
|
|
2833
|
+
bellatrix: 'PalletEthereumVerifierFork',
|
|
2834
|
+
capella: 'PalletEthereumVerifierFork',
|
|
2835
|
+
deneb: 'PalletEthereumVerifierFork',
|
|
2836
|
+
electra: 'PalletEthereumVerifierFork',
|
|
2837
|
+
fulu: 'PalletEthereumVerifierFork',
|
|
2838
|
+
},
|
|
2839
|
+
/**
|
|
2840
|
+
* Lookup294: pallet_ethereum_verifier::types::Fork
|
|
2841
|
+
**/
|
|
2842
|
+
PalletEthereumVerifierFork: {
|
|
2843
|
+
version: '[u8;4]',
|
|
2844
|
+
epoch: 'Compact<u64>',
|
|
2845
|
+
},
|
|
2846
|
+
/**
|
|
2847
|
+
* Lookup295: pallet_ethereum_verifier::types::Update
|
|
2848
|
+
**/
|
|
2849
|
+
PalletEthereumVerifierUpdate: {
|
|
2850
|
+
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2851
|
+
syncAggregate: 'PalletEthereumVerifierSyncAggregate',
|
|
2852
|
+
signatureSlot: 'Compact<u64>',
|
|
2853
|
+
nextSyncCommitteeUpdate: 'Option<PalletEthereumVerifierNextSyncCommitteeUpdate>',
|
|
2854
|
+
finalizedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
2855
|
+
finalityBranch: 'Vec<H256>',
|
|
2856
|
+
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2857
|
+
},
|
|
2858
|
+
/**
|
|
2859
|
+
* Lookup296: pallet_ethereum_verifier::types::SyncAggregate
|
|
2860
|
+
**/
|
|
2861
|
+
PalletEthereumVerifierSyncAggregate: {
|
|
2862
|
+
syncCommitteeBits: 'Bytes',
|
|
2863
|
+
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2864
|
+
},
|
|
2865
|
+
/**
|
|
2866
|
+
* Lookup298: snowbridge_beacon_primitives::types::Signature
|
|
2867
|
+
**/
|
|
2868
|
+
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2869
|
+
/**
|
|
2870
|
+
* Lookup301: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2871
|
+
**/
|
|
2872
|
+
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2873
|
+
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2874
|
+
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2875
|
+
},
|
|
2876
|
+
/**
|
|
2877
|
+
* Lookup302: pallet_crosschain_transfer::pallet::Call<T>
|
|
2715
2878
|
**/
|
|
2716
2879
|
PalletCrosschainTransferCall: {
|
|
2717
2880
|
_enum: {
|
|
2718
2881
|
set_chain_config: {
|
|
2882
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
2719
2883
|
config: 'PalletCrosschainTransferChainConfig',
|
|
2720
2884
|
},
|
|
2721
|
-
|
|
2722
|
-
|
|
2885
|
+
force_set_global_issuance_council: {
|
|
2886
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2887
|
+
afterNonce: 'Compact<u64>',
|
|
2888
|
+
memberAccountIds: 'Vec<AccountId32>',
|
|
2889
|
+
},
|
|
2890
|
+
pause_gateway: {
|
|
2891
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
2892
|
+
},
|
|
2893
|
+
unpause_gateway: {
|
|
2894
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
2895
|
+
},
|
|
2896
|
+
set_minimum_minting_authority_value: {
|
|
2897
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2898
|
+
minimumValue: 'Compact<u128>',
|
|
2899
|
+
},
|
|
2900
|
+
set_minting_authority_activation_repayment_pricing: {
|
|
2901
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2902
|
+
pricing: 'PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing',
|
|
2903
|
+
},
|
|
2904
|
+
register_council_signer: {
|
|
2905
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2906
|
+
signingKey: 'H160',
|
|
2907
|
+
signature: '[u8;65]',
|
|
2908
|
+
},
|
|
2909
|
+
approve_queue_entries: {
|
|
2910
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2911
|
+
signatures: 'Vec<[u8;65]>',
|
|
2912
|
+
},
|
|
2913
|
+
prove_gateway_activity: {
|
|
2914
|
+
sourceChain: 'PalletCrosschainTransferSourceChain',
|
|
2915
|
+
previousGatewayActivityNonce: 'Compact<u64>',
|
|
2916
|
+
proofBatch: 'ArgonPrimitivesEthereumEthereumReceiptLogProofBatch',
|
|
2917
|
+
},
|
|
2918
|
+
register_minting_authority: {
|
|
2919
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2920
|
+
destinationSigningKey: 'H160',
|
|
2921
|
+
signature: '[u8;65]',
|
|
2922
|
+
microgonCollateral: 'Compact<u128>',
|
|
2923
|
+
micronotCollateral: 'Compact<u128>',
|
|
2924
|
+
},
|
|
2925
|
+
deactivate_minting_authority: {
|
|
2926
|
+
destinationSigningKey: 'H160',
|
|
2927
|
+
signature: '[u8;65]',
|
|
2928
|
+
},
|
|
2929
|
+
transfer_out: {
|
|
2930
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
2931
|
+
asset: 'PalletCrosschainTransferAssetKind',
|
|
2932
|
+
destinationAccount: 'H160',
|
|
2933
|
+
amount: 'Compact<u128>',
|
|
2934
|
+
},
|
|
2935
|
+
collateralize_transfer: {
|
|
2936
|
+
transferId: 'H256',
|
|
2937
|
+
signature: '[u8;65]',
|
|
2938
|
+
microgonCollateral: 'Compact<u128>',
|
|
2939
|
+
micronotCollateral: 'Compact<u128>',
|
|
2723
2940
|
},
|
|
2724
2941
|
},
|
|
2725
2942
|
},
|
|
2726
2943
|
/**
|
|
2727
|
-
*
|
|
2944
|
+
* Lookup303: pallet_crosschain_transfer::pallet::ChainConfig
|
|
2728
2945
|
**/
|
|
2729
2946
|
PalletCrosschainTransferChainConfig: {
|
|
2730
2947
|
_enum: {
|
|
2731
|
-
|
|
2948
|
+
Evm: {
|
|
2949
|
+
chainId: 'Compact<u64>',
|
|
2732
2950
|
gateway: 'H160',
|
|
2733
2951
|
argonToken: 'H160',
|
|
2734
2952
|
argonotToken: 'H160',
|
|
2735
|
-
previousGateway: 'Option<H160>',
|
|
2736
|
-
previousReleaseExpiration: 'Option<u64>',
|
|
2737
2953
|
},
|
|
2738
2954
|
},
|
|
2739
2955
|
},
|
|
2740
2956
|
/**
|
|
2741
|
-
*
|
|
2957
|
+
* Lookup305: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
2742
2958
|
**/
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
proof: 'ArgonPrimitivesEthereumEthereumProof',
|
|
2749
|
-
},
|
|
2750
|
-
},
|
|
2751
|
-
},
|
|
2752
|
-
/**
|
|
2753
|
-
* Lookup298: argon_primitives::ethereum::EthereumLog
|
|
2754
|
-
**/
|
|
2755
|
-
ArgonPrimitivesEthereumEthereumLog: {
|
|
2756
|
-
address: 'H160',
|
|
2757
|
-
topics: 'Vec<H256>',
|
|
2758
|
-
data: 'Bytes',
|
|
2959
|
+
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
2960
|
+
activationGasCost: 'Compact<u128>',
|
|
2961
|
+
signatureGasCost: 'Compact<u128>',
|
|
2962
|
+
estimatedWeiPerGas: 'Compact<u128>',
|
|
2963
|
+
estimatedMicrogonsPerEth: 'u128',
|
|
2759
2964
|
},
|
|
2760
2965
|
/**
|
|
2761
|
-
*
|
|
2966
|
+
* Lookup308: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
2762
2967
|
**/
|
|
2763
|
-
|
|
2968
|
+
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
2764
2969
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
2765
|
-
|
|
2970
|
+
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
2766
2971
|
},
|
|
2767
2972
|
/**
|
|
2768
|
-
*
|
|
2973
|
+
* Lookup309: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
2769
2974
|
**/
|
|
2770
2975
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
2771
2976
|
anchorBlockHash: 'H256',
|
|
2772
2977
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
2773
2978
|
},
|
|
2774
2979
|
/**
|
|
2775
|
-
*
|
|
2980
|
+
* Lookup311: argon_primitives::ethereum::EthereumExecutionHeader
|
|
2776
2981
|
**/
|
|
2777
2982
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
2778
2983
|
rlp: 'Bytes',
|
|
2779
2984
|
},
|
|
2780
2985
|
/**
|
|
2781
|
-
*
|
|
2986
|
+
* Lookup315: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
2782
2987
|
**/
|
|
2783
|
-
|
|
2784
|
-
|
|
2988
|
+
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
2989
|
+
targetBlockNumber: 'Compact<u64>',
|
|
2990
|
+
receiptProof: 'ArgonPrimitivesEthereumEthereumCombinedReceiptProof',
|
|
2991
|
+
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
2992
|
+
},
|
|
2993
|
+
/**
|
|
2994
|
+
* Lookup316: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
2995
|
+
**/
|
|
2996
|
+
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
2785
2997
|
nodes: 'Vec<Bytes>',
|
|
2998
|
+
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
2999
|
+
},
|
|
3000
|
+
/**
|
|
3001
|
+
* Lookup320: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3002
|
+
**/
|
|
3003
|
+
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3004
|
+
transactionIndex: 'Compact<u64>',
|
|
3005
|
+
nodeIndexes: 'Vec<u16>',
|
|
3006
|
+
},
|
|
3007
|
+
/**
|
|
3008
|
+
* Lookup325: argon_primitives::ethereum::EthereumReceiptLog
|
|
3009
|
+
**/
|
|
3010
|
+
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3011
|
+
transactionIndex: 'Compact<u64>',
|
|
3012
|
+
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
2786
3013
|
},
|
|
2787
3014
|
/**
|
|
2788
|
-
*
|
|
3015
|
+
* Lookup326: argon_primitives::ethereum::EthereumLog
|
|
3016
|
+
**/
|
|
3017
|
+
ArgonPrimitivesEthereumEthereumLog: {
|
|
3018
|
+
address: 'H160',
|
|
3019
|
+
topics: 'Vec<H256>',
|
|
3020
|
+
data: 'Bytes',
|
|
3021
|
+
},
|
|
3022
|
+
/**
|
|
3023
|
+
* Lookup332: pallet_multisig::pallet::Error<T>
|
|
2789
3024
|
**/
|
|
2790
3025
|
PalletMultisigError: {
|
|
2791
3026
|
_enum: [
|
|
@@ -2806,7 +3041,7 @@ export default {
|
|
|
2806
3041
|
],
|
|
2807
3042
|
},
|
|
2808
3043
|
/**
|
|
2809
|
-
*
|
|
3044
|
+
* Lookup335: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
2810
3045
|
**/
|
|
2811
3046
|
PalletProxyProxyDefinition: {
|
|
2812
3047
|
delegate: 'AccountId32',
|
|
@@ -2814,7 +3049,7 @@ export default {
|
|
|
2814
3049
|
delay: 'u32',
|
|
2815
3050
|
},
|
|
2816
3051
|
/**
|
|
2817
|
-
*
|
|
3052
|
+
* Lookup339: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
2818
3053
|
**/
|
|
2819
3054
|
PalletProxyAnnouncement: {
|
|
2820
3055
|
real: 'AccountId32',
|
|
@@ -2822,7 +3057,7 @@ export default {
|
|
|
2822
3057
|
height: 'u32',
|
|
2823
3058
|
},
|
|
2824
3059
|
/**
|
|
2825
|
-
*
|
|
3060
|
+
* Lookup341: pallet_proxy::pallet::Error<T>
|
|
2826
3061
|
**/
|
|
2827
3062
|
PalletProxyError: {
|
|
2828
3063
|
_enum: [
|
|
@@ -2837,18 +3072,18 @@ export default {
|
|
|
2837
3072
|
],
|
|
2838
3073
|
},
|
|
2839
3074
|
/**
|
|
2840
|
-
*
|
|
3075
|
+
* Lookup342: argon_primitives::tick::Ticker
|
|
2841
3076
|
**/
|
|
2842
3077
|
ArgonPrimitivesTickTicker: {
|
|
2843
3078
|
tickDurationMillis: 'Compact<u64>',
|
|
2844
3079
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
2845
3080
|
},
|
|
2846
3081
|
/**
|
|
2847
|
-
*
|
|
3082
|
+
* Lookup344: pallet_ticks::pallet::Error<T>
|
|
2848
3083
|
**/
|
|
2849
3084
|
PalletTicksError: 'Null',
|
|
2850
3085
|
/**
|
|
2851
|
-
*
|
|
3086
|
+
* Lookup347: pallet_mining_slot::MinerNonceScoring<T>
|
|
2852
3087
|
**/
|
|
2853
3088
|
PalletMiningSlotMinerNonceScoring: {
|
|
2854
3089
|
nonce: 'U256',
|
|
@@ -2857,7 +3092,7 @@ export default {
|
|
|
2857
3092
|
frameStartBlocksWonSurplus: 'i16',
|
|
2858
3093
|
},
|
|
2859
3094
|
/**
|
|
2860
|
-
*
|
|
3095
|
+
* Lookup359: argon_primitives::block_seal::MiningBidStats
|
|
2861
3096
|
**/
|
|
2862
3097
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
2863
3098
|
bidsCount: 'u32',
|
|
@@ -2866,7 +3101,7 @@ export default {
|
|
|
2866
3101
|
bidAmountSum: 'u128',
|
|
2867
3102
|
},
|
|
2868
3103
|
/**
|
|
2869
|
-
*
|
|
3104
|
+
* Lookup363: argon_primitives::block_seal::MiningSlotConfig
|
|
2870
3105
|
**/
|
|
2871
3106
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
2872
3107
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -2874,7 +3109,7 @@ export default {
|
|
|
2874
3109
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
2875
3110
|
},
|
|
2876
3111
|
/**
|
|
2877
|
-
*
|
|
3112
|
+
* Lookup374: pallet_mining_slot::pallet::Error<T>
|
|
2878
3113
|
**/
|
|
2879
3114
|
PalletMiningSlotError: {
|
|
2880
3115
|
_enum: [
|
|
@@ -2891,7 +3126,7 @@ export default {
|
|
|
2891
3126
|
],
|
|
2892
3127
|
},
|
|
2893
3128
|
/**
|
|
2894
|
-
*
|
|
3129
|
+
* Lookup375: argon_primitives::bitcoin::UtxoValue
|
|
2895
3130
|
**/
|
|
2896
3131
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
2897
3132
|
utxoId: 'u64',
|
|
@@ -2901,7 +3136,7 @@ export default {
|
|
|
2901
3136
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
2902
3137
|
},
|
|
2903
3138
|
/**
|
|
2904
|
-
*
|
|
3139
|
+
* Lookup376: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
2905
3140
|
**/
|
|
2906
3141
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
2907
3142
|
_enum: {
|
|
@@ -2911,13 +3146,13 @@ export default {
|
|
|
2911
3146
|
},
|
|
2912
3147
|
},
|
|
2913
3148
|
/**
|
|
2914
|
-
*
|
|
3149
|
+
* Lookup385: argon_primitives::bitcoin::BitcoinNetwork
|
|
2915
3150
|
**/
|
|
2916
3151
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
2917
3152
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
2918
3153
|
},
|
|
2919
3154
|
/**
|
|
2920
|
-
*
|
|
3155
|
+
* Lookup386: pallet_bitcoin_utxos::pallet::Error<T>
|
|
2921
3156
|
**/
|
|
2922
3157
|
PalletBitcoinUtxosError: {
|
|
2923
3158
|
_enum: [
|
|
@@ -2939,7 +3174,7 @@ export default {
|
|
|
2939
3174
|
],
|
|
2940
3175
|
},
|
|
2941
3176
|
/**
|
|
2942
|
-
*
|
|
3177
|
+
* Lookup387: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
2943
3178
|
**/
|
|
2944
3179
|
ArgonPrimitivesVault: {
|
|
2945
3180
|
operatorAccountId: 'AccountId32',
|
|
@@ -2961,7 +3196,14 @@ export default {
|
|
|
2961
3196
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
2962
3197
|
},
|
|
2963
3198
|
/**
|
|
2964
|
-
*
|
|
3199
|
+
* Lookup394: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3200
|
+
**/
|
|
3201
|
+
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3202
|
+
committedMicronots: 'Compact<u128>',
|
|
3203
|
+
encumberedMicronots: 'Compact<u128>',
|
|
3204
|
+
},
|
|
3205
|
+
/**
|
|
3206
|
+
* Lookup396: argon_primitives::bitcoin::BitcoinXPub
|
|
2965
3207
|
**/
|
|
2966
3208
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
2967
3209
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -2972,13 +3214,13 @@ export default {
|
|
|
2972
3214
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
2973
3215
|
},
|
|
2974
3216
|
/**
|
|
2975
|
-
*
|
|
3217
|
+
* Lookup398: argon_primitives::bitcoin::NetworkKind
|
|
2976
3218
|
**/
|
|
2977
3219
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
2978
3220
|
_enum: ['Main', 'Test'],
|
|
2979
3221
|
},
|
|
2980
3222
|
/**
|
|
2981
|
-
*
|
|
3223
|
+
* Lookup407: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
2982
3224
|
**/
|
|
2983
3225
|
PalletVaultsVaultFrameRevenue: {
|
|
2984
3226
|
frameId: 'Compact<u64>',
|
|
@@ -2999,7 +3241,7 @@ export default {
|
|
|
2999
3241
|
uncollectedRevenue: 'Compact<u128>',
|
|
3000
3242
|
},
|
|
3001
3243
|
/**
|
|
3002
|
-
*
|
|
3244
|
+
* Lookup410: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
|
|
3003
3245
|
**/
|
|
3004
3246
|
PalletVaultsRecentCapacityDrop: {
|
|
3005
3247
|
blockNumber: 'Compact<u32>',
|
|
@@ -3008,7 +3250,7 @@ export default {
|
|
|
3008
3250
|
noFeeFailuresUsed: 'Compact<u32>',
|
|
3009
3251
|
},
|
|
3010
3252
|
/**
|
|
3011
|
-
*
|
|
3253
|
+
* Lookup412: pallet_vaults::pallet::Error<T>
|
|
3012
3254
|
**/
|
|
3013
3255
|
PalletVaultsError: {
|
|
3014
3256
|
_enum: [
|
|
@@ -3041,16 +3283,18 @@ export default {
|
|
|
3041
3283
|
'InvalidVaultName',
|
|
3042
3284
|
'PendingCosignsBeforeCollect',
|
|
3043
3285
|
'PendingOrphanedUtxoCosignsBeforeCollect',
|
|
3286
|
+
'OverdueCollectBlockersBeforeCollect',
|
|
3044
3287
|
'AccountAlreadyHasVault',
|
|
3288
|
+
'CommittedArgonotsBelowEncumberedBacking',
|
|
3045
3289
|
],
|
|
3046
3290
|
},
|
|
3047
3291
|
/**
|
|
3048
|
-
*
|
|
3292
|
+
* Lookup413: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3049
3293
|
**/
|
|
3050
3294
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3051
3295
|
vaultId: 'Compact<u32>',
|
|
3052
3296
|
liquidityPromised: 'Compact<u128>',
|
|
3053
|
-
|
|
3297
|
+
lockedTargetPrice: 'Compact<u128>',
|
|
3054
3298
|
ownerAccount: 'AccountId32',
|
|
3055
3299
|
securitizationRatio: 'u128',
|
|
3056
3300
|
securityFees: 'Compact<u128>',
|
|
@@ -3070,7 +3314,7 @@ export default {
|
|
|
3070
3314
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3071
3315
|
},
|
|
3072
3316
|
/**
|
|
3073
|
-
*
|
|
3317
|
+
* Lookup416: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3074
3318
|
**/
|
|
3075
3319
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3076
3320
|
utxoId: 'Compact<u64>',
|
|
@@ -3078,10 +3322,10 @@ export default {
|
|
|
3078
3322
|
bitcoinNetworkFee: 'Compact<u64>',
|
|
3079
3323
|
cosignDueFrame: 'Compact<u64>',
|
|
3080
3324
|
toScriptPubkey: 'Bytes',
|
|
3081
|
-
|
|
3325
|
+
redemptionAmount: 'Compact<u128>',
|
|
3082
3326
|
},
|
|
3083
3327
|
/**
|
|
3084
|
-
*
|
|
3328
|
+
* Lookup418: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3085
3329
|
**/
|
|
3086
3330
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3087
3331
|
utxoId: 'Compact<u64>',
|
|
@@ -3091,7 +3335,7 @@ export default {
|
|
|
3091
3335
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3092
3336
|
},
|
|
3093
3337
|
/**
|
|
3094
|
-
*
|
|
3338
|
+
* Lookup420: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3095
3339
|
**/
|
|
3096
3340
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3097
3341
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3099,7 +3343,7 @@ export default {
|
|
|
3099
3343
|
createdAtArgonBlockNumber: 'u32',
|
|
3100
3344
|
},
|
|
3101
3345
|
/**
|
|
3102
|
-
*
|
|
3346
|
+
* Lookup427: pallet_bitcoin_locks::pallet::Error<T>
|
|
3103
3347
|
**/
|
|
3104
3348
|
PalletBitcoinLocksError: {
|
|
3105
3349
|
_enum: {
|
|
@@ -3141,7 +3385,7 @@ export default {
|
|
|
3141
3385
|
},
|
|
3142
3386
|
},
|
|
3143
3387
|
/**
|
|
3144
|
-
*
|
|
3388
|
+
* Lookup428: argon_primitives::vault::VaultError
|
|
3145
3389
|
**/
|
|
3146
3390
|
ArgonPrimitivesVaultVaultError: {
|
|
3147
3391
|
_enum: [
|
|
@@ -3157,10 +3401,11 @@ export default {
|
|
|
3157
3401
|
'InvalidBitcoinScript',
|
|
3158
3402
|
'InternalError',
|
|
3159
3403
|
'VaultNotYetActive',
|
|
3404
|
+
'CommittedArgonotsBelowEncumberedBacking',
|
|
3160
3405
|
],
|
|
3161
3406
|
},
|
|
3162
3407
|
/**
|
|
3163
|
-
*
|
|
3408
|
+
* Lookup440: pallet_notaries::pallet::Error<T>
|
|
3164
3409
|
**/
|
|
3165
3410
|
PalletNotariesError: {
|
|
3166
3411
|
_enum: [
|
|
@@ -3176,7 +3421,7 @@ export default {
|
|
|
3176
3421
|
],
|
|
3177
3422
|
},
|
|
3178
3423
|
/**
|
|
3179
|
-
*
|
|
3424
|
+
* Lookup444: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3180
3425
|
**/
|
|
3181
3426
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3182
3427
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3186,7 +3431,7 @@ export default {
|
|
|
3186
3431
|
parentSecret: 'Option<H256>',
|
|
3187
3432
|
},
|
|
3188
3433
|
/**
|
|
3189
|
-
*
|
|
3434
|
+
* Lookup447: pallet_notebook::pallet::Error<T>
|
|
3190
3435
|
**/
|
|
3191
3436
|
PalletNotebookError: {
|
|
3192
3437
|
_enum: [
|
|
@@ -3208,7 +3453,7 @@ export default {
|
|
|
3208
3453
|
],
|
|
3209
3454
|
},
|
|
3210
3455
|
/**
|
|
3211
|
-
*
|
|
3456
|
+
* Lookup448: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3212
3457
|
**/
|
|
3213
3458
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3214
3459
|
accountId: 'AccountId32',
|
|
@@ -3217,11 +3462,11 @@ export default {
|
|
|
3217
3462
|
notaryId: 'u32',
|
|
3218
3463
|
},
|
|
3219
3464
|
/**
|
|
3220
|
-
*
|
|
3465
|
+
* Lookup450: frame_support::PalletId
|
|
3221
3466
|
**/
|
|
3222
3467
|
FrameSupportPalletId: '[u8;8]',
|
|
3223
3468
|
/**
|
|
3224
|
-
*
|
|
3469
|
+
* Lookup451: pallet_localchain_transfer::pallet::Error<T>
|
|
3225
3470
|
**/
|
|
3226
3471
|
PalletLocalchainTransferError: {
|
|
3227
3472
|
_enum: [
|
|
@@ -3236,7 +3481,7 @@ export default {
|
|
|
3236
3481
|
],
|
|
3237
3482
|
},
|
|
3238
3483
|
/**
|
|
3239
|
-
*
|
|
3484
|
+
* Lookup455: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3240
3485
|
**/
|
|
3241
3486
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3242
3487
|
notaryId: 'Compact<u32>',
|
|
@@ -3246,13 +3491,13 @@ export default {
|
|
|
3246
3491
|
blockVotingPower: 'Compact<u128>',
|
|
3247
3492
|
},
|
|
3248
3493
|
/**
|
|
3249
|
-
*
|
|
3494
|
+
* Lookup460: pallet_block_seal_spec::pallet::Error<T>
|
|
3250
3495
|
**/
|
|
3251
3496
|
PalletBlockSealSpecError: {
|
|
3252
3497
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3253
3498
|
},
|
|
3254
3499
|
/**
|
|
3255
|
-
*
|
|
3500
|
+
* Lookup462: pallet_domains::pallet::Error<T>
|
|
3256
3501
|
**/
|
|
3257
3502
|
PalletDomainsError: {
|
|
3258
3503
|
_enum: [
|
|
@@ -3264,7 +3509,7 @@ export default {
|
|
|
3264
3509
|
],
|
|
3265
3510
|
},
|
|
3266
3511
|
/**
|
|
3267
|
-
*
|
|
3512
|
+
* Lookup464: pallet_price_index::CpiMeasurementBucket
|
|
3268
3513
|
**/
|
|
3269
3514
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3270
3515
|
tickRange: '(u64,u64)',
|
|
@@ -3272,7 +3517,7 @@ export default {
|
|
|
3272
3517
|
measurementsCount: 'u32',
|
|
3273
3518
|
},
|
|
3274
3519
|
/**
|
|
3275
|
-
*
|
|
3520
|
+
* Lookup467: pallet_price_index::pallet::Error<T>
|
|
3276
3521
|
**/
|
|
3277
3522
|
PalletPriceIndexError: {
|
|
3278
3523
|
_enum: [
|
|
@@ -3283,7 +3528,7 @@ export default {
|
|
|
3283
3528
|
],
|
|
3284
3529
|
},
|
|
3285
3530
|
/**
|
|
3286
|
-
*
|
|
3531
|
+
* Lookup468: pallet_grandpa::StoredState<N>
|
|
3287
3532
|
**/
|
|
3288
3533
|
PalletGrandpaStoredState: {
|
|
3289
3534
|
_enum: {
|
|
@@ -3300,7 +3545,7 @@ export default {
|
|
|
3300
3545
|
},
|
|
3301
3546
|
},
|
|
3302
3547
|
/**
|
|
3303
|
-
*
|
|
3548
|
+
* Lookup469: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3304
3549
|
**/
|
|
3305
3550
|
PalletGrandpaStoredPendingChange: {
|
|
3306
3551
|
scheduledAt: 'u32',
|
|
@@ -3309,7 +3554,7 @@ export default {
|
|
|
3309
3554
|
forced: 'Option<u32>',
|
|
3310
3555
|
},
|
|
3311
3556
|
/**
|
|
3312
|
-
*
|
|
3557
|
+
* Lookup471: pallet_grandpa::pallet::Error<T>
|
|
3313
3558
|
**/
|
|
3314
3559
|
PalletGrandpaError: {
|
|
3315
3560
|
_enum: [
|
|
@@ -3323,7 +3568,7 @@ export default {
|
|
|
3323
3568
|
],
|
|
3324
3569
|
},
|
|
3325
3570
|
/**
|
|
3326
|
-
*
|
|
3571
|
+
* Lookup472: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3327
3572
|
**/
|
|
3328
3573
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3329
3574
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3331,7 +3576,7 @@ export default {
|
|
|
3331
3576
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3332
3577
|
},
|
|
3333
3578
|
/**
|
|
3334
|
-
*
|
|
3579
|
+
* Lookup474: pallet_block_seal::pallet::Error<T>
|
|
3335
3580
|
**/
|
|
3336
3581
|
PalletBlockSealError: {
|
|
3337
3582
|
_enum: [
|
|
@@ -3359,11 +3604,11 @@ export default {
|
|
|
3359
3604
|
],
|
|
3360
3605
|
},
|
|
3361
3606
|
/**
|
|
3362
|
-
*
|
|
3607
|
+
* Lookup478: pallet_block_rewards::pallet::Error<T>
|
|
3363
3608
|
**/
|
|
3364
3609
|
PalletBlockRewardsError: 'Null',
|
|
3365
3610
|
/**
|
|
3366
|
-
*
|
|
3611
|
+
* Lookup484: pallet_mint::pallet::MintAction<B>
|
|
3367
3612
|
**/
|
|
3368
3613
|
PalletMintMintAction: {
|
|
3369
3614
|
argonBurned: 'u128',
|
|
@@ -3371,13 +3616,13 @@ export default {
|
|
|
3371
3616
|
bitcoinMinted: 'u128',
|
|
3372
3617
|
},
|
|
3373
3618
|
/**
|
|
3374
|
-
*
|
|
3619
|
+
* Lookup485: pallet_mint::pallet::Error<T>
|
|
3375
3620
|
**/
|
|
3376
3621
|
PalletMintError: {
|
|
3377
3622
|
_enum: ['TooManyPendingMints'],
|
|
3378
3623
|
},
|
|
3379
3624
|
/**
|
|
3380
|
-
*
|
|
3625
|
+
* Lookup487: pallet_balances::types::BalanceLock<Balance>
|
|
3381
3626
|
**/
|
|
3382
3627
|
PalletBalancesBalanceLock: {
|
|
3383
3628
|
id: '[u8;8]',
|
|
@@ -3385,34 +3630,34 @@ export default {
|
|
|
3385
3630
|
reasons: 'PalletBalancesReasons',
|
|
3386
3631
|
},
|
|
3387
3632
|
/**
|
|
3388
|
-
*
|
|
3633
|
+
* Lookup488: pallet_balances::types::Reasons
|
|
3389
3634
|
**/
|
|
3390
3635
|
PalletBalancesReasons: {
|
|
3391
3636
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3392
3637
|
},
|
|
3393
3638
|
/**
|
|
3394
|
-
*
|
|
3639
|
+
* Lookup491: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3395
3640
|
**/
|
|
3396
3641
|
PalletBalancesReserveData: {
|
|
3397
3642
|
id: '[u8;8]',
|
|
3398
3643
|
amount: 'u128',
|
|
3399
3644
|
},
|
|
3400
3645
|
/**
|
|
3401
|
-
*
|
|
3646
|
+
* Lookup494: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3402
3647
|
**/
|
|
3403
3648
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3404
3649
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3405
3650
|
amount: 'u128',
|
|
3406
3651
|
},
|
|
3407
3652
|
/**
|
|
3408
|
-
*
|
|
3653
|
+
* Lookup497: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3409
3654
|
**/
|
|
3410
3655
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3411
3656
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3412
3657
|
amount: 'u128',
|
|
3413
3658
|
},
|
|
3414
3659
|
/**
|
|
3415
|
-
*
|
|
3660
|
+
* Lookup498: argon_runtime::RuntimeFreezeReason
|
|
3416
3661
|
**/
|
|
3417
3662
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3418
3663
|
_enum: {
|
|
@@ -3439,13 +3684,13 @@ export default {
|
|
|
3439
3684
|
},
|
|
3440
3685
|
},
|
|
3441
3686
|
/**
|
|
3442
|
-
*
|
|
3687
|
+
* Lookup499: pallet_block_rewards::pallet::FreezeReason
|
|
3443
3688
|
**/
|
|
3444
3689
|
PalletBlockRewardsFreezeReason: {
|
|
3445
3690
|
_enum: ['MaturationPeriod'],
|
|
3446
3691
|
},
|
|
3447
3692
|
/**
|
|
3448
|
-
*
|
|
3693
|
+
* Lookup501: pallet_balances::pallet::Error<T, I>
|
|
3449
3694
|
**/
|
|
3450
3695
|
PalletBalancesError: {
|
|
3451
3696
|
_enum: [
|
|
@@ -3464,48 +3709,48 @@ export default {
|
|
|
3464
3709
|
],
|
|
3465
3710
|
},
|
|
3466
3711
|
/**
|
|
3467
|
-
*
|
|
3712
|
+
* Lookup503: pallet_tx_pause::pallet::Error<T>
|
|
3468
3713
|
**/
|
|
3469
3714
|
PalletTxPauseError: {
|
|
3470
3715
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3471
3716
|
},
|
|
3472
3717
|
/**
|
|
3473
|
-
*
|
|
3718
|
+
* Lookup504: pallet_transaction_payment::Releases
|
|
3474
3719
|
**/
|
|
3475
3720
|
PalletTransactionPaymentReleases: {
|
|
3476
3721
|
_enum: ['V1Ancient', 'V2'],
|
|
3477
3722
|
},
|
|
3478
3723
|
/**
|
|
3479
|
-
*
|
|
3724
|
+
* Lookup505: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3480
3725
|
**/
|
|
3481
3726
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3482
3727
|
/**
|
|
3483
|
-
*
|
|
3728
|
+
* Lookup506: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3484
3729
|
**/
|
|
3485
3730
|
FrameSupportTokensFungibleImbalance: {
|
|
3486
3731
|
amount: 'u128',
|
|
3487
3732
|
},
|
|
3488
3733
|
/**
|
|
3489
|
-
*
|
|
3734
|
+
* Lookup507: pallet_utility::pallet::Error<T>
|
|
3490
3735
|
**/
|
|
3491
3736
|
PalletUtilityError: {
|
|
3492
3737
|
_enum: ['TooManyCalls'],
|
|
3493
3738
|
},
|
|
3494
3739
|
/**
|
|
3495
|
-
*
|
|
3740
|
+
* Lookup508: pallet_sudo::pallet::Error<T>
|
|
3496
3741
|
**/
|
|
3497
3742
|
PalletSudoError: {
|
|
3498
3743
|
_enum: ['RequireSudo'],
|
|
3499
3744
|
},
|
|
3500
3745
|
/**
|
|
3501
|
-
*
|
|
3746
|
+
* Lookup509: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3502
3747
|
**/
|
|
3503
3748
|
PalletTreasuryFrameVaultCapital: {
|
|
3504
3749
|
frameId: 'Compact<u64>',
|
|
3505
3750
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3506
3751
|
},
|
|
3507
3752
|
/**
|
|
3508
|
-
*
|
|
3753
|
+
* Lookup511: pallet_treasury::pallet::VaultCapital<T>
|
|
3509
3754
|
**/
|
|
3510
3755
|
PalletTreasuryVaultCapital: {
|
|
3511
3756
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
@@ -3513,14 +3758,14 @@ export default {
|
|
|
3513
3758
|
vaultSharingPercent: 'Compact<Permill>',
|
|
3514
3759
|
},
|
|
3515
3760
|
/**
|
|
3516
|
-
*
|
|
3761
|
+
* Lookup513: pallet_treasury::pallet::BondLotAllocation
|
|
3517
3762
|
**/
|
|
3518
3763
|
PalletTreasuryBondLotAllocation: {
|
|
3519
3764
|
bondLotId: 'Compact<u64>',
|
|
3520
3765
|
prorata: 'u128',
|
|
3521
3766
|
},
|
|
3522
3767
|
/**
|
|
3523
|
-
*
|
|
3768
|
+
* Lookup518: pallet_treasury::pallet::BondLot<T>
|
|
3524
3769
|
**/
|
|
3525
3770
|
PalletTreasuryBondLot: {
|
|
3526
3771
|
owner: 'AccountId32',
|
|
@@ -3535,14 +3780,14 @@ export default {
|
|
|
3535
3780
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3536
3781
|
},
|
|
3537
3782
|
/**
|
|
3538
|
-
*
|
|
3783
|
+
* Lookup523: pallet_treasury::pallet::BondLotSummary
|
|
3539
3784
|
**/
|
|
3540
3785
|
PalletTreasuryBondLotSummary: {
|
|
3541
3786
|
bondLotId: 'Compact<u64>',
|
|
3542
3787
|
bonds: 'Compact<u32>',
|
|
3543
3788
|
},
|
|
3544
3789
|
/**
|
|
3545
|
-
*
|
|
3790
|
+
* Lookup525: pallet_treasury::pallet::Error<T>
|
|
3546
3791
|
**/
|
|
3547
3792
|
PalletTreasuryError: {
|
|
3548
3793
|
_enum: [
|
|
@@ -3556,16 +3801,17 @@ export default {
|
|
|
3556
3801
|
'NotBondLotOwner',
|
|
3557
3802
|
'BondLotAlreadyReleasing',
|
|
3558
3803
|
'BondPurchaseAboveSecurity',
|
|
3804
|
+
'ActiveBondAmountBelowEncumberedBacking',
|
|
3559
3805
|
],
|
|
3560
3806
|
},
|
|
3561
3807
|
/**
|
|
3562
|
-
*
|
|
3808
|
+
* Lookup526: pallet_fee_control::pallet::Error<T>
|
|
3563
3809
|
**/
|
|
3564
3810
|
PalletFeeControlError: {
|
|
3565
3811
|
_enum: ['SponsoredFeeTooHigh'],
|
|
3566
3812
|
},
|
|
3567
3813
|
/**
|
|
3568
|
-
*
|
|
3814
|
+
* Lookup527: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
3569
3815
|
**/
|
|
3570
3816
|
PalletOperationalAccountsOperationalAccount: {
|
|
3571
3817
|
vaultAccount: 'AccountId32',
|
|
@@ -3589,14 +3835,14 @@ export default {
|
|
|
3589
3835
|
isOperational: 'bool',
|
|
3590
3836
|
},
|
|
3591
3837
|
/**
|
|
3592
|
-
*
|
|
3838
|
+
* Lookup529: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
3593
3839
|
**/
|
|
3594
3840
|
PalletOperationalAccountsRewardsConfig: {
|
|
3595
3841
|
operationalReferralReward: 'Compact<u128>',
|
|
3596
3842
|
referralBonusReward: 'Compact<u128>',
|
|
3597
3843
|
},
|
|
3598
3844
|
/**
|
|
3599
|
-
*
|
|
3845
|
+
* Lookup531: pallet_operational_accounts::pallet::Error<T>
|
|
3600
3846
|
**/
|
|
3601
3847
|
PalletOperationalAccountsError: {
|
|
3602
3848
|
_enum: [
|
|
@@ -3620,36 +3866,37 @@ export default {
|
|
|
3620
3866
|
],
|
|
3621
3867
|
},
|
|
3622
3868
|
/**
|
|
3623
|
-
*
|
|
3869
|
+
* Lookup532: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
3624
3870
|
**/
|
|
3625
3871
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
3626
3872
|
slot: 'Compact<u64>',
|
|
3627
3873
|
},
|
|
3628
3874
|
/**
|
|
3629
|
-
*
|
|
3875
|
+
* Lookup533: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
3630
3876
|
**/
|
|
3631
3877
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
3632
3878
|
blockNumber: 'Compact<u64>',
|
|
3879
|
+
timestampMillis: 'Compact<u64>',
|
|
3633
3880
|
blockHash: 'H256',
|
|
3634
3881
|
parentHash: 'H256',
|
|
3635
3882
|
receiptsRoot: 'H256',
|
|
3636
3883
|
},
|
|
3637
3884
|
/**
|
|
3638
|
-
*
|
|
3885
|
+
* Lookup534: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
3639
3886
|
**/
|
|
3640
|
-
|
|
3887
|
+
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
3641
3888
|
root: 'H256',
|
|
3642
|
-
pubkeys: '
|
|
3889
|
+
pubkeys: 'Vec<SnowbridgeMilagroBlsKeysPublicKey>',
|
|
3643
3890
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
3644
3891
|
},
|
|
3645
3892
|
/**
|
|
3646
|
-
*
|
|
3893
|
+
* Lookup536: snowbridge_milagro_bls::keys::PublicKey
|
|
3647
3894
|
**/
|
|
3648
3895
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
3649
3896
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
3650
3897
|
},
|
|
3651
3898
|
/**
|
|
3652
|
-
*
|
|
3899
|
+
* Lookup537: snowbridge_amcl::bls381::ecp::ECP
|
|
3653
3900
|
**/
|
|
3654
3901
|
SnowbridgeAmclBls381Ecp: {
|
|
3655
3902
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -3657,20 +3904,26 @@ export default {
|
|
|
3657
3904
|
z: 'SnowbridgeAmclBls381Fp',
|
|
3658
3905
|
},
|
|
3659
3906
|
/**
|
|
3660
|
-
*
|
|
3907
|
+
* Lookup538: snowbridge_amcl::bls381::fp::FP
|
|
3661
3908
|
**/
|
|
3662
3909
|
SnowbridgeAmclBls381Fp: {
|
|
3663
3910
|
x: 'SnowbridgeAmclBls381Big',
|
|
3664
3911
|
xes: 'i32',
|
|
3665
3912
|
},
|
|
3666
3913
|
/**
|
|
3667
|
-
*
|
|
3914
|
+
* Lookup539: snowbridge_amcl::bls381::big::Big
|
|
3668
3915
|
**/
|
|
3669
3916
|
SnowbridgeAmclBls381Big: {
|
|
3670
3917
|
w: '[i32;14]',
|
|
3671
3918
|
},
|
|
3672
3919
|
/**
|
|
3673
|
-
*
|
|
3920
|
+
* Lookup543: argon_primitives::ethereum::EthereumBeaconPreset
|
|
3921
|
+
**/
|
|
3922
|
+
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
3923
|
+
_enum: ['Mainnet', 'Minimal'],
|
|
3924
|
+
},
|
|
3925
|
+
/**
|
|
3926
|
+
* Lookup544: pallet_ethereum_verifier::pallet::Error<T>
|
|
3674
3927
|
**/
|
|
3675
3928
|
PalletEthereumVerifierError: {
|
|
3676
3929
|
_enum: [
|
|
@@ -3691,78 +3944,224 @@ export default {
|
|
|
3691
3944
|
'ExpectedFinalizedHeaderNotStored',
|
|
3692
3945
|
'BLSPreparePublicKeysFailed',
|
|
3693
3946
|
'BLSVerificationFailed',
|
|
3947
|
+
'UnexpectedBeaconPreset',
|
|
3694
3948
|
'InvalidUpdateSlot',
|
|
3695
3949
|
'InvalidSyncCommitteeUpdate',
|
|
3696
3950
|
'Halted',
|
|
3697
3951
|
],
|
|
3698
3952
|
},
|
|
3699
3953
|
/**
|
|
3700
|
-
*
|
|
3954
|
+
* Lookup546: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
3955
|
+
**/
|
|
3956
|
+
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
3957
|
+
epochMicrogonsPerArgonot: 'u128',
|
|
3958
|
+
members: 'BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>',
|
|
3959
|
+
totalWeight: 'u128',
|
|
3960
|
+
},
|
|
3961
|
+
/**
|
|
3962
|
+
* Lookup548: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
3963
|
+
**/
|
|
3964
|
+
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
3965
|
+
accountId: 'AccountId32',
|
|
3966
|
+
signer: 'H160',
|
|
3967
|
+
weight: 'u128',
|
|
3968
|
+
},
|
|
3969
|
+
/**
|
|
3970
|
+
* Lookup553: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
3971
|
+
**/
|
|
3972
|
+
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
3973
|
+
approvingCouncilHash: 'H256',
|
|
3974
|
+
target: 'PalletCrosschainTransferCouncilApprovalTargetId',
|
|
3975
|
+
targetPayloadHash: 'H256',
|
|
3976
|
+
dueFrameId: 'Compact<u64>',
|
|
3977
|
+
previousApprovalHash: 'H256',
|
|
3978
|
+
approvalHash: 'H256',
|
|
3979
|
+
approvedTotalWeight: 'u128',
|
|
3980
|
+
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
3981
|
+
},
|
|
3982
|
+
/**
|
|
3983
|
+
* Lookup558: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
3984
|
+
**/
|
|
3985
|
+
PalletCrosschainTransferMintingAuthority: {
|
|
3986
|
+
accountId: 'AccountId32',
|
|
3987
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
3988
|
+
destinationSigningKey: 'H160',
|
|
3989
|
+
state: 'PalletCrosschainTransferMintingAuthorityState',
|
|
3990
|
+
gatewayRemainingMicrogonCollateral: 'u128',
|
|
3991
|
+
gatewayRemainingMicronotCollateral: 'u128',
|
|
3992
|
+
pendingReservedMicrogonCollateral: 'u128',
|
|
3993
|
+
pendingReservedMicronotCollateral: 'u128',
|
|
3994
|
+
activePendingTransferIds: 'Vec<H256>',
|
|
3995
|
+
activationApprovalQueueNonce: 'u64',
|
|
3996
|
+
activationBaseRepaymentQuote: 'Compact<u128>',
|
|
3997
|
+
activationSignatureRepaymentQuote: 'Compact<u128>',
|
|
3998
|
+
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
3999
|
+
},
|
|
4000
|
+
/**
|
|
4001
|
+
* Lookup559: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4002
|
+
**/
|
|
4003
|
+
PalletCrosschainTransferMintingAuthorityState: {
|
|
4004
|
+
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4005
|
+
},
|
|
4006
|
+
/**
|
|
4007
|
+
* Lookup561: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4008
|
+
**/
|
|
4009
|
+
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4010
|
+
argonAccountId: 'AccountId32',
|
|
4011
|
+
argonTransferNonce: 'Compact<u64>',
|
|
4012
|
+
destinationChain: 'PalletCrosschainTransferSourceChain',
|
|
4013
|
+
microgonsPerArgonot: 'Compact<u128>',
|
|
4014
|
+
destinationAccount: 'H160',
|
|
4015
|
+
validUntilEthereumBlock: 'Compact<u64>',
|
|
4016
|
+
asset: 'PalletCrosschainTransferAssetKind',
|
|
4017
|
+
amount: 'u128',
|
|
4018
|
+
mintingAuthorityTip: 'u128',
|
|
4019
|
+
totalAttachedCollateral: 'u128',
|
|
4020
|
+
mintingAuthorityCollateralBySigner:
|
|
4021
|
+
'BTreeMap<H160, PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation>',
|
|
4022
|
+
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4023
|
+
},
|
|
4024
|
+
/**
|
|
4025
|
+
* Lookup563: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4026
|
+
**/
|
|
4027
|
+
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4028
|
+
microgonCollateral: 'u128',
|
|
4029
|
+
micronotCollateral: 'u128',
|
|
4030
|
+
collateralShare: 'u128',
|
|
4031
|
+
signature: '[u8;65]',
|
|
4032
|
+
},
|
|
4033
|
+
/**
|
|
4034
|
+
* Lookup567: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4035
|
+
**/
|
|
4036
|
+
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4037
|
+
_enum: ['Started', 'Ready'],
|
|
4038
|
+
},
|
|
4039
|
+
/**
|
|
4040
|
+
* Lookup569: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4041
|
+
**/
|
|
4042
|
+
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4043
|
+
transferId: 'H256',
|
|
4044
|
+
remainingCollateral: 'u128',
|
|
4045
|
+
remainingMintingAuthorityTip: 'u128',
|
|
4046
|
+
},
|
|
4047
|
+
/**
|
|
4048
|
+
* Lookup571: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4049
|
+
**/
|
|
4050
|
+
PalletCrosschainTransferSourceChainCirculation: {
|
|
4051
|
+
argonCirculation: 'u128',
|
|
4052
|
+
argonotCirculation: 'u128',
|
|
4053
|
+
},
|
|
4054
|
+
/**
|
|
4055
|
+
* Lookup572: pallet_crosschain_transfer::pallet::Error<T>
|
|
3701
4056
|
**/
|
|
3702
4057
|
PalletCrosschainTransferError: {
|
|
3703
4058
|
_enum: [
|
|
3704
|
-
'
|
|
4059
|
+
'InvalidTransferToArgonActivity',
|
|
4060
|
+
'NoGatewayProofBlocksProvided',
|
|
4061
|
+
'NoGatewayActivitiesProvided',
|
|
3705
4062
|
'InvalidProof',
|
|
3706
|
-
'InvalidRecipient',
|
|
3707
|
-
'InvalidAmount',
|
|
3708
4063
|
'UnsupportedSource',
|
|
3709
4064
|
'UnsupportedGateway',
|
|
3710
4065
|
'UnsupportedToken',
|
|
3711
|
-
'
|
|
4066
|
+
'UnexpectedPreviousGatewayActivityNonce',
|
|
4067
|
+
'UnexpectedGatewayActivityNonce',
|
|
3712
4068
|
'InvalidChainConfig',
|
|
3713
4069
|
'InsufficientLiquidity',
|
|
4070
|
+
'MintingAuthorityNotFound',
|
|
4071
|
+
'MintingAuthorityMismatch',
|
|
4072
|
+
'UnexpectedMintingAuthorityState',
|
|
4073
|
+
'UnknownOwnerVault',
|
|
4074
|
+
'InvalidMintingAuthoritySigningKey',
|
|
4075
|
+
'MintingAuthorityAlreadyRegistered',
|
|
4076
|
+
'InvalidMintingAuthoritySigningKeyProof',
|
|
4077
|
+
'InvalidMintingAuthorityCollateral',
|
|
4078
|
+
'GlobalIssuanceCouncilNotFound',
|
|
4079
|
+
'InvalidGlobalIssuanceCouncil',
|
|
4080
|
+
'DuplicateGlobalIssuanceCouncilSigner',
|
|
4081
|
+
'DuplicateGlobalIssuanceCouncilAccount',
|
|
4082
|
+
'InvalidCouncilSignerProof',
|
|
4083
|
+
'GlobalIssuanceCouncilMemberNotFound',
|
|
4084
|
+
'CouncilSignerNotRegistered',
|
|
4085
|
+
'CouncilApprovalQueueEntryNotFound',
|
|
4086
|
+
'CouncilApprovalAlreadyRecorded',
|
|
4087
|
+
'InvalidForceSetAfterNonce',
|
|
4088
|
+
'CannotForceSetQuorumApprovedQueueEntry',
|
|
4089
|
+
'InvalidCouncilApprovalSignature',
|
|
4090
|
+
'NoCouncilApprovalSignaturesProvided',
|
|
4091
|
+
'InsufficientCommittedMicrogonCollateral',
|
|
4092
|
+
'InsufficientCommittedArgonotCollateral',
|
|
4093
|
+
'InvalidMintingAuthorityDeactivationSignature',
|
|
4094
|
+
'InvalidMicrogonsPerArgonot',
|
|
4095
|
+
'MintingAuthorityCollateralBelowMinimum',
|
|
4096
|
+
'InvalidMintingAuthorityActivationRepaymentPricing',
|
|
4097
|
+
'MissingMintingAuthorityActivationRepaymentPricing',
|
|
4098
|
+
'InvalidGatewayActivity',
|
|
4099
|
+
'GatewaySyncPaused',
|
|
4100
|
+
'InvalidTransferOutAmount',
|
|
4101
|
+
'InvalidTransferOutRecipient',
|
|
4102
|
+
'MissingVerifiedExecutionBlock',
|
|
4103
|
+
'StaleVerifiedExecutionBlock',
|
|
4104
|
+
'TransferOutNotFound',
|
|
4105
|
+
'TransferOutAlreadyReady',
|
|
4106
|
+
'TransferOutExpired',
|
|
4107
|
+
'InvalidTransferCollateral',
|
|
4108
|
+
'InvalidTransferCollateralUpdate',
|
|
4109
|
+
'InvalidTransferCollateralSignature',
|
|
4110
|
+
'InsufficientMintingAuthorityCollateral',
|
|
4111
|
+
'TransferCollateralIncrementTooSmall',
|
|
4112
|
+
'TooManyPendingTransferOuts',
|
|
3714
4113
|
],
|
|
3715
4114
|
},
|
|
3716
4115
|
/**
|
|
3717
|
-
*
|
|
4116
|
+
* Lookup575: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
3718
4117
|
**/
|
|
3719
4118
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
3720
4119
|
/**
|
|
3721
|
-
*
|
|
4120
|
+
* Lookup576: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
3722
4121
|
**/
|
|
3723
4122
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
3724
4123
|
/**
|
|
3725
|
-
*
|
|
4124
|
+
* Lookup577: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
3726
4125
|
**/
|
|
3727
4126
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
3728
4127
|
/**
|
|
3729
|
-
*
|
|
4128
|
+
* Lookup578: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
3730
4129
|
**/
|
|
3731
4130
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
3732
4131
|
/**
|
|
3733
|
-
*
|
|
4132
|
+
* Lookup579: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
3734
4133
|
**/
|
|
3735
4134
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
3736
4135
|
/**
|
|
3737
|
-
*
|
|
4136
|
+
* Lookup582: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
3738
4137
|
**/
|
|
3739
4138
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
3740
4139
|
/**
|
|
3741
|
-
*
|
|
4140
|
+
* Lookup583: frame_system::extensions::check_weight::CheckWeight<T>
|
|
3742
4141
|
**/
|
|
3743
4142
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
3744
4143
|
/**
|
|
3745
|
-
*
|
|
4144
|
+
* Lookup584: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
3746
4145
|
**/
|
|
3747
4146
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
3748
4147
|
/**
|
|
3749
|
-
*
|
|
4148
|
+
* Lookup585: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
3750
4149
|
**/
|
|
3751
4150
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
3752
4151
|
mode: 'FrameMetadataHashExtensionMode',
|
|
3753
4152
|
},
|
|
3754
4153
|
/**
|
|
3755
|
-
*
|
|
4154
|
+
* Lookup586: frame_metadata_hash_extension::Mode
|
|
3756
4155
|
**/
|
|
3757
4156
|
FrameMetadataHashExtensionMode: {
|
|
3758
4157
|
_enum: ['Disabled', 'Enabled'],
|
|
3759
4158
|
},
|
|
3760
4159
|
/**
|
|
3761
|
-
*
|
|
4160
|
+
* Lookup587: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
3762
4161
|
**/
|
|
3763
4162
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
3764
4163
|
/**
|
|
3765
|
-
*
|
|
4164
|
+
* Lookup589: argon_runtime::Runtime
|
|
3766
4165
|
**/
|
|
3767
4166
|
ArgonRuntimeRuntime: 'Null',
|
|
3768
4167
|
};
|