@aztec/ethereum 0.82.3 → 0.83.0
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/dest/account.d.ts +2 -0
- package/dest/account.d.ts.map +1 -0
- package/dest/account.js +4 -0
- package/dest/cli/forwarder_address.d.ts +2 -0
- package/dest/cli/forwarder_address.d.ts.map +1 -0
- package/dest/cli/forwarder_address.js +10 -0
- package/dest/config.d.ts +8 -0
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +17 -2
- package/dest/contracts/forwarder.d.ts +1 -0
- package/dest/contracts/forwarder.d.ts.map +1 -1
- package/dest/contracts/forwarder.js +7 -1
- package/dest/contracts/registry.d.ts +2 -0
- package/dest/contracts/registry.d.ts.map +1 -1
- package/dest/contracts/registry.js +19 -12
- package/dest/contracts/rollup.d.ts +3 -1
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +12 -3
- package/dest/deploy_l1_contracts.d.ts +2356 -564
- package/dest/deploy_l1_contracts.d.ts.map +1 -1
- package/dest/deploy_l1_contracts.js +248 -195
- package/dest/index.d.ts +1 -0
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -0
- package/dest/l1_contract_addresses.d.ts +4 -0
- package/dest/l1_contract_addresses.d.ts.map +1 -1
- package/dest/l1_contract_addresses.js +7 -1
- package/dest/queries.d.ts +1 -0
- package/dest/queries.d.ts.map +1 -1
- package/dest/queries.js +5 -3
- package/dest/test/start_anvil.d.ts +1 -0
- package/dest/test/start_anvil.d.ts.map +1 -1
- package/dest/test/start_anvil.js +3 -5
- package/dest/test/upgrade_utils.d.ts +1 -0
- package/dest/test/upgrade_utils.d.ts.map +1 -1
- package/dest/test/upgrade_utils.js +9 -2
- package/package.json +6 -5
- package/src/account.ts +5 -0
- package/src/cli/forwarder_address.ts +12 -0
- package/src/config.ts +26 -1
- package/src/contracts/forwarder.ts +6 -1
- package/src/contracts/registry.ts +19 -10
- package/src/contracts/rollup.ts +13 -4
- package/src/deploy_l1_contracts.ts +298 -214
- package/src/index.ts +1 -0
- package/src/l1_contract_addresses.ts +11 -1
- package/src/queries.ts +10 -1
- package/src/test/start_anvil.ts +4 -2
- package/src/test/upgrade_utils.ts +12 -3
|
@@ -64,6 +64,10 @@ export declare const l1Artifacts: {
|
|
|
64
64
|
readonly name: "_owner";
|
|
65
65
|
readonly type: "address";
|
|
66
66
|
readonly internalType: "address";
|
|
67
|
+
}, {
|
|
68
|
+
readonly name: "_rewardAsset";
|
|
69
|
+
readonly type: "address";
|
|
70
|
+
readonly internalType: "contract IERC20";
|
|
67
71
|
}];
|
|
68
72
|
readonly stateMutability: "nonpayable";
|
|
69
73
|
}, {
|
|
@@ -124,15 +128,13 @@ export declare const l1Artifacts: {
|
|
|
124
128
|
}];
|
|
125
129
|
}, {
|
|
126
130
|
readonly type: "error";
|
|
127
|
-
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
128
|
-
* Wallet Client Type.
|
|
129
|
-
*/
|
|
131
|
+
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
130
132
|
readonly inputs: readonly [{
|
|
131
|
-
readonly name: "instance";
|
|
132
|
-
readonly type: "address";
|
|
133
|
-
readonly internalType: "address"; /**
|
|
133
|
+
readonly name: "instance"; /**
|
|
134
134
|
* The currently deployed l1 contract addresses
|
|
135
135
|
*/
|
|
136
|
+
readonly type: "address";
|
|
137
|
+
readonly internalType: "address";
|
|
136
138
|
}];
|
|
137
139
|
}, {
|
|
138
140
|
readonly type: "error";
|
|
@@ -145,7 +147,9 @@ export declare const l1Artifacts: {
|
|
|
145
147
|
readonly name: "votesNeeded";
|
|
146
148
|
readonly type: "uint256";
|
|
147
149
|
readonly internalType: "uint256";
|
|
148
|
-
}];
|
|
150
|
+
}]; /**
|
|
151
|
+
* The contract abi.
|
|
152
|
+
*/
|
|
149
153
|
}, {
|
|
150
154
|
readonly type: "error";
|
|
151
155
|
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
@@ -222,6 +226,17 @@ export declare const l1Artifacts: {
|
|
|
222
226
|
readonly type: "uint256";
|
|
223
227
|
readonly internalType: "Slot";
|
|
224
228
|
}];
|
|
229
|
+
}, {
|
|
230
|
+
readonly type: "event";
|
|
231
|
+
readonly name: "GovernanceUpdated";
|
|
232
|
+
readonly inputs: readonly [{
|
|
233
|
+
readonly name: "governance";
|
|
234
|
+
readonly type: "address";
|
|
235
|
+
readonly indexed: true;
|
|
236
|
+
/** The hash of the genesis block header. */
|
|
237
|
+
readonly internalType: "address";
|
|
238
|
+
}];
|
|
239
|
+
readonly anonymous: false;
|
|
225
240
|
}, {
|
|
226
241
|
readonly type: "error";
|
|
227
242
|
readonly name: "Governance__CallFailed";
|
|
@@ -238,7 +253,14 @@ export declare const l1Artifacts: {
|
|
|
238
253
|
readonly type: "address";
|
|
239
254
|
readonly internalType: "address";
|
|
240
255
|
}, {
|
|
241
|
-
readonly name: "governanceProposer";
|
|
256
|
+
readonly name: "governanceProposer"; /**
|
|
257
|
+
* Creates a wallet and a public viem client for interacting with L1.
|
|
258
|
+
* @param rpcUrls - List of RPC URLs to connect to L1.
|
|
259
|
+
* @param mnemonicOrPrivateKeyOrHdAccount - Mnemonic or account for the wallet client.
|
|
260
|
+
* @param chain - Optional chain spec (defaults to local foundry).
|
|
261
|
+
* @param addressIndex - Optional index of the address to use from the mnemonic.
|
|
262
|
+
* @returns - A wallet and a public client.
|
|
263
|
+
*/
|
|
242
264
|
readonly type: "address";
|
|
243
265
|
readonly internalType: "address";
|
|
244
266
|
}];
|
|
@@ -442,6 +464,18 @@ export declare const l1Artifacts: {
|
|
|
442
464
|
readonly type: "error";
|
|
443
465
|
readonly name: "Inbox__Unauthorized";
|
|
444
466
|
readonly inputs: readonly [];
|
|
467
|
+
}, {
|
|
468
|
+
readonly type: "error";
|
|
469
|
+
readonly name: "Inbox__VersionMismatch";
|
|
470
|
+
readonly inputs: readonly [{
|
|
471
|
+
readonly name: "expected";
|
|
472
|
+
readonly type: "uint256";
|
|
473
|
+
readonly internalType: "uint256";
|
|
474
|
+
}, {
|
|
475
|
+
readonly name: "actual";
|
|
476
|
+
readonly type: "uint256";
|
|
477
|
+
readonly internalType: "uint256";
|
|
478
|
+
}];
|
|
445
479
|
}, {
|
|
446
480
|
readonly type: "event";
|
|
447
481
|
readonly name: "InstanceAdded";
|
|
@@ -557,18 +591,6 @@ export declare const l1Artifacts: {
|
|
|
557
591
|
readonly type: "address";
|
|
558
592
|
readonly internalType: "address";
|
|
559
593
|
}];
|
|
560
|
-
}, {
|
|
561
|
-
readonly type: "error";
|
|
562
|
-
readonly name: "Outbox__InvalidVersion";
|
|
563
|
-
readonly inputs: readonly [{
|
|
564
|
-
readonly name: "entry";
|
|
565
|
-
readonly type: "uint256";
|
|
566
|
-
readonly internalType: "uint256";
|
|
567
|
-
}, {
|
|
568
|
-
readonly name: "message";
|
|
569
|
-
readonly type: "uint256";
|
|
570
|
-
readonly internalType: "uint256";
|
|
571
|
-
}];
|
|
572
594
|
}, {
|
|
573
595
|
readonly type: "error";
|
|
574
596
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -597,6 +619,18 @@ export declare const l1Artifacts: {
|
|
|
597
619
|
readonly type: "error";
|
|
598
620
|
readonly name: "Outbox__Unauthorized";
|
|
599
621
|
readonly inputs: readonly [];
|
|
622
|
+
}, {
|
|
623
|
+
readonly type: "error";
|
|
624
|
+
readonly name: "Outbox__VersionMismatch";
|
|
625
|
+
readonly inputs: readonly [{
|
|
626
|
+
readonly name: "expected";
|
|
627
|
+
readonly type: "uint256";
|
|
628
|
+
readonly internalType: "uint256";
|
|
629
|
+
}, {
|
|
630
|
+
readonly name: "actual";
|
|
631
|
+
readonly type: "uint256";
|
|
632
|
+
readonly internalType: "uint256";
|
|
633
|
+
}];
|
|
600
634
|
}, {
|
|
601
635
|
readonly type: "error";
|
|
602
636
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -660,6 +694,10 @@ export declare const l1Artifacts: {
|
|
|
660
694
|
readonly type: "uint256";
|
|
661
695
|
readonly internalType: "Timestamp";
|
|
662
696
|
}];
|
|
697
|
+
}, {
|
|
698
|
+
readonly type: "error";
|
|
699
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
700
|
+
readonly inputs: readonly [];
|
|
663
701
|
}, {
|
|
664
702
|
readonly type: "error";
|
|
665
703
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -672,9 +710,9 @@ export declare const l1Artifacts: {
|
|
|
672
710
|
readonly type: "error";
|
|
673
711
|
readonly name: "Registry__RollupNotRegistered";
|
|
674
712
|
readonly inputs: readonly [{
|
|
675
|
-
readonly name: "
|
|
676
|
-
readonly type: "
|
|
677
|
-
readonly internalType: "
|
|
713
|
+
readonly name: "version";
|
|
714
|
+
readonly type: "uint256";
|
|
715
|
+
readonly internalType: "uint256";
|
|
678
716
|
}];
|
|
679
717
|
}, {
|
|
680
718
|
readonly type: "error";
|
|
@@ -850,6 +888,15 @@ export declare const l1Artifacts: {
|
|
|
850
888
|
readonly inputs: readonly [{
|
|
851
889
|
readonly name: "expected";
|
|
852
890
|
readonly type: "bytes32";
|
|
891
|
+
/**
|
|
892
|
+
* Initialize the fee asset handler and make it a minter on the fee asset.
|
|
893
|
+
* @note This function will only be used for testing purposes.
|
|
894
|
+
*
|
|
895
|
+
* @param clients - The L1 clients.
|
|
896
|
+
* @param deployer - The L1 deployer.
|
|
897
|
+
* @param feeAssetAddress - The address of the fee asset.
|
|
898
|
+
* @param logger - The logger.
|
|
899
|
+
*/
|
|
853
900
|
readonly internalType: "bytes32";
|
|
854
901
|
}, {
|
|
855
902
|
readonly name: "actual";
|
|
@@ -893,6 +940,15 @@ export declare const l1Artifacts: {
|
|
|
893
940
|
readonly internalType: "uint256";
|
|
894
941
|
}, {
|
|
895
942
|
readonly name: "actual";
|
|
943
|
+
/**
|
|
944
|
+
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
945
|
+
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
946
|
+
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
947
|
+
* @param chain - The chain instance to deploy to.
|
|
948
|
+
* @param logger - A logger object.
|
|
949
|
+
* @param args - Arguments for initialization of L1 contracts
|
|
950
|
+
* @returns A list of ETH addresses of the deployed contracts.
|
|
951
|
+
*/
|
|
896
952
|
readonly type: "uint256";
|
|
897
953
|
readonly internalType: "uint256";
|
|
898
954
|
}];
|
|
@@ -1222,21 +1278,22 @@ export declare const l1Artifacts: {
|
|
|
1222
1278
|
}];
|
|
1223
1279
|
}, {
|
|
1224
1280
|
readonly type: "function";
|
|
1225
|
-
readonly name: "
|
|
1281
|
+
readonly name: "addRollup";
|
|
1282
|
+
readonly inputs: readonly [{
|
|
1283
|
+
readonly name: "_rollup";
|
|
1284
|
+
readonly type: "address";
|
|
1285
|
+
readonly internalType: "contract IRollup";
|
|
1286
|
+
}];
|
|
1287
|
+
readonly outputs: readonly [];
|
|
1288
|
+
readonly stateMutability: "nonpayable";
|
|
1289
|
+
}, {
|
|
1290
|
+
readonly type: "function";
|
|
1291
|
+
readonly name: "getCanonicalRollup";
|
|
1226
1292
|
readonly inputs: readonly [];
|
|
1227
1293
|
readonly outputs: readonly [{
|
|
1228
1294
|
readonly name: "";
|
|
1229
|
-
readonly type: "
|
|
1230
|
-
readonly internalType: "
|
|
1231
|
-
readonly components: readonly [{
|
|
1232
|
-
readonly name: "rollup";
|
|
1233
|
-
readonly type: "address";
|
|
1234
|
-
readonly internalType: "address";
|
|
1235
|
-
}, {
|
|
1236
|
-
readonly name: "blockNumber";
|
|
1237
|
-
readonly type: "uint256";
|
|
1238
|
-
readonly internalType: "uint256";
|
|
1239
|
-
}];
|
|
1295
|
+
readonly type: "address";
|
|
1296
|
+
readonly internalType: "contract IRollup";
|
|
1240
1297
|
}];
|
|
1241
1298
|
readonly stateMutability: "view";
|
|
1242
1299
|
}, {
|
|
@@ -1251,17 +1308,17 @@ export declare const l1Artifacts: {
|
|
|
1251
1308
|
readonly stateMutability: "view";
|
|
1252
1309
|
}, {
|
|
1253
1310
|
readonly type: "function";
|
|
1254
|
-
readonly name: "
|
|
1311
|
+
readonly name: "getRewardDistributor";
|
|
1255
1312
|
readonly inputs: readonly [];
|
|
1256
1313
|
readonly outputs: readonly [{
|
|
1257
1314
|
readonly name: "";
|
|
1258
1315
|
readonly type: "address";
|
|
1259
|
-
readonly internalType: "
|
|
1316
|
+
readonly internalType: "contract IRewardDistributor";
|
|
1260
1317
|
}];
|
|
1261
1318
|
readonly stateMutability: "view";
|
|
1262
1319
|
}, {
|
|
1263
1320
|
readonly type: "function";
|
|
1264
|
-
readonly name: "
|
|
1321
|
+
readonly name: "getRollup";
|
|
1265
1322
|
readonly inputs: readonly [{
|
|
1266
1323
|
readonly name: "_version";
|
|
1267
1324
|
readonly type: "uint256";
|
|
@@ -1269,45 +1326,22 @@ export declare const l1Artifacts: {
|
|
|
1269
1326
|
}];
|
|
1270
1327
|
readonly outputs: readonly [{
|
|
1271
1328
|
readonly name: "";
|
|
1272
|
-
readonly type: "
|
|
1273
|
-
readonly internalType: "
|
|
1274
|
-
readonly components: readonly [{
|
|
1275
|
-
readonly name: "rollup";
|
|
1276
|
-
readonly type: "address";
|
|
1277
|
-
readonly internalType: "address";
|
|
1278
|
-
}, {
|
|
1279
|
-
readonly name: "blockNumber";
|
|
1280
|
-
readonly type: "uint256";
|
|
1281
|
-
readonly internalType: "uint256";
|
|
1282
|
-
}];
|
|
1329
|
+
readonly type: "address";
|
|
1330
|
+
readonly internalType: "contract IRollup";
|
|
1283
1331
|
}];
|
|
1284
1332
|
readonly stateMutability: "view";
|
|
1285
1333
|
}, {
|
|
1286
1334
|
readonly type: "function";
|
|
1287
|
-
readonly name: "
|
|
1335
|
+
readonly name: "getVersion";
|
|
1288
1336
|
readonly inputs: readonly [{
|
|
1289
|
-
readonly name: "
|
|
1290
|
-
readonly type: "address";
|
|
1291
|
-
readonly internalType: "address";
|
|
1292
|
-
}];
|
|
1293
|
-
readonly outputs: readonly [{
|
|
1294
|
-
readonly name: "";
|
|
1337
|
+
readonly name: "_index";
|
|
1295
1338
|
readonly type: "uint256";
|
|
1296
1339
|
readonly internalType: "uint256";
|
|
1297
1340
|
}];
|
|
1298
|
-
readonly stateMutability: "view";
|
|
1299
|
-
}, {
|
|
1300
|
-
readonly type: "function";
|
|
1301
|
-
readonly name: "isRollupRegistered";
|
|
1302
|
-
readonly inputs: readonly [{
|
|
1303
|
-
readonly name: "_rollup";
|
|
1304
|
-
readonly type: "address";
|
|
1305
|
-
readonly internalType: "address";
|
|
1306
|
-
}];
|
|
1307
1341
|
readonly outputs: readonly [{
|
|
1308
1342
|
readonly name: "";
|
|
1309
|
-
readonly type: "
|
|
1310
|
-
readonly internalType: "
|
|
1343
|
+
readonly type: "uint256";
|
|
1344
|
+
readonly internalType: "uint256";
|
|
1311
1345
|
}];
|
|
1312
1346
|
readonly stateMutability: "view";
|
|
1313
1347
|
}, {
|
|
@@ -1348,17 +1382,13 @@ export declare const l1Artifacts: {
|
|
|
1348
1382
|
readonly stateMutability: "nonpayable";
|
|
1349
1383
|
}, {
|
|
1350
1384
|
readonly type: "function";
|
|
1351
|
-
readonly name: "
|
|
1385
|
+
readonly name: "updateGovernance";
|
|
1352
1386
|
readonly inputs: readonly [{
|
|
1353
|
-
readonly name: "
|
|
1387
|
+
readonly name: "_governance";
|
|
1354
1388
|
readonly type: "address";
|
|
1355
1389
|
readonly internalType: "address";
|
|
1356
1390
|
}];
|
|
1357
|
-
readonly outputs: readonly [
|
|
1358
|
-
readonly name: "";
|
|
1359
|
-
readonly type: "uint256";
|
|
1360
|
-
readonly internalType: "uint256";
|
|
1361
|
-
}];
|
|
1391
|
+
readonly outputs: readonly [];
|
|
1362
1392
|
readonly stateMutability: "nonpayable";
|
|
1363
1393
|
}];
|
|
1364
1394
|
contractBytecode: `0x${string}`;
|
|
@@ -1370,6 +1400,14 @@ export declare const l1Artifacts: {
|
|
|
1370
1400
|
readonly name: "_rollup";
|
|
1371
1401
|
readonly type: "address";
|
|
1372
1402
|
readonly internalType: "address";
|
|
1403
|
+
}, {
|
|
1404
|
+
readonly name: "_feeAsset";
|
|
1405
|
+
readonly type: "address";
|
|
1406
|
+
readonly internalType: "contract IERC20";
|
|
1407
|
+
}, {
|
|
1408
|
+
readonly name: "_version";
|
|
1409
|
+
readonly type: "uint256";
|
|
1410
|
+
readonly internalType: "uint256";
|
|
1373
1411
|
}, {
|
|
1374
1412
|
readonly name: "_height";
|
|
1375
1413
|
readonly type: "uint256";
|
|
@@ -1404,6 +1442,16 @@ export declare const l1Artifacts: {
|
|
|
1404
1442
|
readonly type: "error";
|
|
1405
1443
|
readonly name: "DevNet__NoPruningAllowed";
|
|
1406
1444
|
readonly inputs: readonly [];
|
|
1445
|
+
}, {
|
|
1446
|
+
readonly type: "function";
|
|
1447
|
+
readonly name: "FEE_ASSET_PORTAL";
|
|
1448
|
+
readonly inputs: readonly [];
|
|
1449
|
+
readonly outputs: readonly [{
|
|
1450
|
+
readonly name: "";
|
|
1451
|
+
readonly type: "address";
|
|
1452
|
+
readonly internalType: "address";
|
|
1453
|
+
}];
|
|
1454
|
+
readonly stateMutability: "view";
|
|
1407
1455
|
}, {
|
|
1408
1456
|
readonly type: "error";
|
|
1409
1457
|
readonly name: "FeeJuicePortal__AlreadyInitialized";
|
|
@@ -1434,7 +1482,9 @@ export declare const l1Artifacts: {
|
|
|
1434
1482
|
}];
|
|
1435
1483
|
}, {
|
|
1436
1484
|
readonly type: "error";
|
|
1437
|
-
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
1485
|
+
readonly name: "GovernanceProposer__InstanceHaveNoCode"; /**
|
|
1486
|
+
* The contract abi.
|
|
1487
|
+
*/
|
|
1438
1488
|
readonly inputs: readonly [{
|
|
1439
1489
|
readonly name: "instance";
|
|
1440
1490
|
readonly type: "address";
|
|
@@ -1748,6 +1798,18 @@ export declare const l1Artifacts: {
|
|
|
1748
1798
|
readonly type: "error";
|
|
1749
1799
|
readonly name: "Inbox__Unauthorized";
|
|
1750
1800
|
readonly inputs: readonly [];
|
|
1801
|
+
}, {
|
|
1802
|
+
readonly type: "error";
|
|
1803
|
+
readonly name: "Inbox__VersionMismatch";
|
|
1804
|
+
readonly inputs: readonly [{
|
|
1805
|
+
readonly name: "expected";
|
|
1806
|
+
readonly type: "uint256";
|
|
1807
|
+
readonly internalType: "uint256";
|
|
1808
|
+
}, {
|
|
1809
|
+
readonly name: "actual";
|
|
1810
|
+
readonly type: "uint256";
|
|
1811
|
+
readonly internalType: "uint256";
|
|
1812
|
+
}];
|
|
1751
1813
|
}, {
|
|
1752
1814
|
readonly type: "error";
|
|
1753
1815
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -1868,18 +1930,6 @@ export declare const l1Artifacts: {
|
|
|
1868
1930
|
readonly type: "address";
|
|
1869
1931
|
readonly internalType: "address";
|
|
1870
1932
|
}];
|
|
1871
|
-
}, {
|
|
1872
|
-
readonly type: "error";
|
|
1873
|
-
readonly name: "Outbox__InvalidVersion";
|
|
1874
|
-
readonly inputs: readonly [{
|
|
1875
|
-
readonly name: "entry";
|
|
1876
|
-
readonly type: "uint256";
|
|
1877
|
-
readonly internalType: "uint256";
|
|
1878
|
-
}, {
|
|
1879
|
-
readonly name: "message";
|
|
1880
|
-
readonly type: "uint256";
|
|
1881
|
-
readonly internalType: "uint256";
|
|
1882
|
-
}];
|
|
1883
1933
|
}, {
|
|
1884
1934
|
readonly type: "error";
|
|
1885
1935
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -1908,6 +1958,18 @@ export declare const l1Artifacts: {
|
|
|
1908
1958
|
readonly type: "error";
|
|
1909
1959
|
readonly name: "Outbox__Unauthorized";
|
|
1910
1960
|
readonly inputs: readonly [];
|
|
1961
|
+
}, {
|
|
1962
|
+
readonly type: "error";
|
|
1963
|
+
readonly name: "Outbox__VersionMismatch";
|
|
1964
|
+
readonly inputs: readonly [{
|
|
1965
|
+
readonly name: "expected";
|
|
1966
|
+
readonly type: "uint256";
|
|
1967
|
+
readonly internalType: "uint256";
|
|
1968
|
+
}, {
|
|
1969
|
+
readonly name: "actual";
|
|
1970
|
+
readonly type: "uint256";
|
|
1971
|
+
readonly internalType: "uint256";
|
|
1972
|
+
}];
|
|
1911
1973
|
}, {
|
|
1912
1974
|
readonly type: "error";
|
|
1913
1975
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -1950,6 +2012,10 @@ export declare const l1Artifacts: {
|
|
|
1950
2012
|
readonly internalType: "address";
|
|
1951
2013
|
}];
|
|
1952
2014
|
readonly stateMutability: "view";
|
|
2015
|
+
}, {
|
|
2016
|
+
readonly type: "error";
|
|
2017
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
2018
|
+
readonly inputs: readonly [];
|
|
1953
2019
|
}, {
|
|
1954
2020
|
readonly type: "error";
|
|
1955
2021
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -1962,9 +2028,9 @@ export declare const l1Artifacts: {
|
|
|
1962
2028
|
readonly type: "error";
|
|
1963
2029
|
readonly name: "Registry__RollupNotRegistered";
|
|
1964
2030
|
readonly inputs: readonly [{
|
|
1965
|
-
readonly name: "
|
|
1966
|
-
readonly type: "
|
|
1967
|
-
readonly internalType: "
|
|
2031
|
+
readonly name: "version";
|
|
2032
|
+
readonly type: "uint256";
|
|
2033
|
+
readonly internalType: "uint256";
|
|
1968
2034
|
}];
|
|
1969
2035
|
}, {
|
|
1970
2036
|
readonly type: "error";
|
|
@@ -2458,6 +2524,16 @@ export declare const l1Artifacts: {
|
|
|
2458
2524
|
readonly type: "uint256";
|
|
2459
2525
|
readonly internalType: "Timestamp";
|
|
2460
2526
|
}];
|
|
2527
|
+
}, {
|
|
2528
|
+
readonly type: "function";
|
|
2529
|
+
readonly name: "VERSION";
|
|
2530
|
+
readonly inputs: readonly [];
|
|
2531
|
+
readonly outputs: readonly [{
|
|
2532
|
+
readonly name: "";
|
|
2533
|
+
readonly type: "uint256";
|
|
2534
|
+
readonly internalType: "uint256";
|
|
2535
|
+
}];
|
|
2536
|
+
readonly stateMutability: "view";
|
|
2461
2537
|
}, {
|
|
2462
2538
|
readonly type: "error";
|
|
2463
2539
|
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
@@ -2524,6 +2600,16 @@ export declare const l1Artifacts: {
|
|
|
2524
2600
|
readonly internalType: "bytes32";
|
|
2525
2601
|
}];
|
|
2526
2602
|
readonly stateMutability: "nonpayable";
|
|
2603
|
+
}, {
|
|
2604
|
+
readonly type: "function";
|
|
2605
|
+
readonly name: "getFeeAssetPortal";
|
|
2606
|
+
readonly inputs: readonly [];
|
|
2607
|
+
readonly outputs: readonly [{
|
|
2608
|
+
readonly name: "";
|
|
2609
|
+
readonly type: "address";
|
|
2610
|
+
readonly internalType: "address";
|
|
2611
|
+
}];
|
|
2612
|
+
readonly stateMutability: "view";
|
|
2527
2613
|
}, {
|
|
2528
2614
|
readonly type: "function";
|
|
2529
2615
|
readonly name: "getRoot";
|
|
@@ -2617,6 +2703,10 @@ export declare const l1Artifacts: {
|
|
|
2617
2703
|
readonly name: "_rollup";
|
|
2618
2704
|
readonly type: "address";
|
|
2619
2705
|
readonly internalType: "address";
|
|
2706
|
+
}, {
|
|
2707
|
+
readonly name: "_version";
|
|
2708
|
+
readonly type: "uint256";
|
|
2709
|
+
readonly internalType: "uint256";
|
|
2620
2710
|
}];
|
|
2621
2711
|
readonly stateMutability: "nonpayable";
|
|
2622
2712
|
}, {
|
|
@@ -2677,6 +2767,9 @@ export declare const l1Artifacts: {
|
|
|
2677
2767
|
}];
|
|
2678
2768
|
}, {
|
|
2679
2769
|
readonly type: "error";
|
|
2770
|
+
/**
|
|
2771
|
+
* Wallet Client Type.
|
|
2772
|
+
*/
|
|
2680
2773
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
2681
2774
|
readonly inputs: readonly [{
|
|
2682
2775
|
readonly name: "instance";
|
|
@@ -2772,8 +2865,8 @@ export declare const l1Artifacts: {
|
|
|
2772
2865
|
readonly internalType: "Slot";
|
|
2773
2866
|
}];
|
|
2774
2867
|
}, {
|
|
2775
|
-
readonly type: "error";
|
|
2776
|
-
readonly name: "Governance__CallFailed";
|
|
2868
|
+
readonly type: "error"; /** The vk tree root. */
|
|
2869
|
+
readonly name: "Governance__CallFailed"; /** The protocol contract tree root. */
|
|
2777
2870
|
readonly inputs: readonly [{
|
|
2778
2871
|
readonly name: "target";
|
|
2779
2872
|
readonly type: "address";
|
|
@@ -2783,18 +2876,17 @@ export declare const l1Artifacts: {
|
|
|
2783
2876
|
readonly type: "error";
|
|
2784
2877
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
2785
2878
|
readonly inputs: readonly [{
|
|
2786
|
-
/** The hash of the genesis block header. */
|
|
2787
2879
|
readonly name: "caller";
|
|
2788
2880
|
readonly type: "address";
|
|
2789
2881
|
readonly internalType: "address";
|
|
2790
2882
|
}, {
|
|
2791
2883
|
readonly name: "governanceProposer";
|
|
2792
|
-
readonly type: "address";
|
|
2884
|
+
readonly type: "address"; /** Enable fast mode for deployments (fire and forget transactions) */
|
|
2793
2885
|
readonly internalType: "address";
|
|
2794
2886
|
}];
|
|
2795
2887
|
}, {
|
|
2796
2888
|
readonly type: "error";
|
|
2797
|
-
readonly name: "Governance__CallerNotSelf";
|
|
2889
|
+
readonly name: "Governance__CallerNotSelf";
|
|
2798
2890
|
readonly inputs: readonly [{
|
|
2799
2891
|
readonly name: "caller";
|
|
2800
2892
|
readonly type: "address";
|
|
@@ -2992,6 +3084,18 @@ export declare const l1Artifacts: {
|
|
|
2992
3084
|
readonly type: "error";
|
|
2993
3085
|
readonly name: "Inbox__Unauthorized";
|
|
2994
3086
|
readonly inputs: readonly [];
|
|
3087
|
+
}, {
|
|
3088
|
+
readonly type: "error";
|
|
3089
|
+
readonly name: "Inbox__VersionMismatch";
|
|
3090
|
+
readonly inputs: readonly [{
|
|
3091
|
+
readonly name: "expected";
|
|
3092
|
+
readonly type: "uint256";
|
|
3093
|
+
readonly internalType: "uint256";
|
|
3094
|
+
}, {
|
|
3095
|
+
readonly name: "actual";
|
|
3096
|
+
readonly type: "uint256";
|
|
3097
|
+
readonly internalType: "uint256";
|
|
3098
|
+
}];
|
|
2995
3099
|
}, {
|
|
2996
3100
|
readonly type: "error";
|
|
2997
3101
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -3117,18 +3221,6 @@ export declare const l1Artifacts: {
|
|
|
3117
3221
|
readonly type: "address";
|
|
3118
3222
|
readonly internalType: "address";
|
|
3119
3223
|
}];
|
|
3120
|
-
}, {
|
|
3121
|
-
readonly type: "error";
|
|
3122
|
-
readonly name: "Outbox__InvalidVersion";
|
|
3123
|
-
readonly inputs: readonly [{
|
|
3124
|
-
readonly name: "entry";
|
|
3125
|
-
readonly type: "uint256";
|
|
3126
|
-
readonly internalType: "uint256";
|
|
3127
|
-
}, {
|
|
3128
|
-
readonly name: "message";
|
|
3129
|
-
readonly type: "uint256";
|
|
3130
|
-
readonly internalType: "uint256";
|
|
3131
|
-
}];
|
|
3132
3224
|
}, {
|
|
3133
3225
|
readonly type: "error";
|
|
3134
3226
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -3159,22 +3251,34 @@ export declare const l1Artifacts: {
|
|
|
3159
3251
|
readonly inputs: readonly [];
|
|
3160
3252
|
}, {
|
|
3161
3253
|
readonly type: "error";
|
|
3162
|
-
readonly name: "
|
|
3254
|
+
readonly name: "Outbox__VersionMismatch";
|
|
3163
3255
|
readonly inputs: readonly [{
|
|
3164
|
-
readonly name: "
|
|
3256
|
+
readonly name: "expected";
|
|
3165
3257
|
readonly type: "uint256";
|
|
3166
3258
|
readonly internalType: "uint256";
|
|
3167
3259
|
}, {
|
|
3168
|
-
readonly name: "
|
|
3260
|
+
readonly name: "actual";
|
|
3169
3261
|
readonly type: "uint256";
|
|
3170
3262
|
readonly internalType: "uint256";
|
|
3171
3263
|
}];
|
|
3172
3264
|
}, {
|
|
3173
3265
|
readonly type: "error";
|
|
3174
|
-
readonly name: "
|
|
3266
|
+
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
3175
3267
|
readonly inputs: readonly [{
|
|
3176
|
-
readonly name: "
|
|
3177
|
-
readonly type: "
|
|
3268
|
+
readonly name: "balance";
|
|
3269
|
+
readonly type: "uint256";
|
|
3270
|
+
readonly internalType: "uint256";
|
|
3271
|
+
}, {
|
|
3272
|
+
readonly name: "requested";
|
|
3273
|
+
readonly type: "uint256";
|
|
3274
|
+
readonly internalType: "uint256";
|
|
3275
|
+
}];
|
|
3276
|
+
}, {
|
|
3277
|
+
readonly type: "error";
|
|
3278
|
+
readonly name: "ProofCommitmentEscrow__NotOwner";
|
|
3279
|
+
readonly inputs: readonly [{
|
|
3280
|
+
readonly name: "caller";
|
|
3281
|
+
readonly type: "address";
|
|
3178
3282
|
readonly internalType: "address";
|
|
3179
3283
|
}];
|
|
3180
3284
|
}, {
|
|
@@ -3196,9 +3300,13 @@ export declare const l1Artifacts: {
|
|
|
3196
3300
|
readonly outputs: readonly [{
|
|
3197
3301
|
readonly name: "";
|
|
3198
3302
|
readonly type: "address";
|
|
3199
|
-
readonly internalType: "contract
|
|
3303
|
+
readonly internalType: "contract IRollup";
|
|
3200
3304
|
}];
|
|
3201
3305
|
readonly stateMutability: "view";
|
|
3306
|
+
}, {
|
|
3307
|
+
readonly type: "error";
|
|
3308
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
3309
|
+
readonly inputs: readonly [];
|
|
3202
3310
|
}, {
|
|
3203
3311
|
readonly type: "error";
|
|
3204
3312
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -3211,9 +3319,9 @@ export declare const l1Artifacts: {
|
|
|
3211
3319
|
readonly type: "error";
|
|
3212
3320
|
readonly name: "Registry__RollupNotRegistered";
|
|
3213
3321
|
readonly inputs: readonly [{
|
|
3214
|
-
readonly name: "
|
|
3215
|
-
readonly type: "
|
|
3216
|
-
readonly internalType: "
|
|
3322
|
+
readonly name: "version";
|
|
3323
|
+
readonly type: "uint256";
|
|
3324
|
+
readonly internalType: "uint256";
|
|
3217
3325
|
}];
|
|
3218
3326
|
}, {
|
|
3219
3327
|
readonly type: "error";
|
|
@@ -3645,7 +3753,16 @@ export declare const l1Artifacts: {
|
|
|
3645
3753
|
}];
|
|
3646
3754
|
}, {
|
|
3647
3755
|
readonly type: "error";
|
|
3648
|
-
readonly name: "Staking__InsufficientStake";
|
|
3756
|
+
readonly name: "Staking__InsufficientStake"; /**
|
|
3757
|
+
* Helper function to deploy ETH contracts.
|
|
3758
|
+
* @param walletClient - A viem WalletClient.
|
|
3759
|
+
* @param publicClient - A viem PublicClient.
|
|
3760
|
+
* @param abi - The ETH contract's ABI (as abitype's Abi).
|
|
3761
|
+
* @param bytecode - The ETH contract's bytecode.
|
|
3762
|
+
* @param args - Constructor arguments for the contract.
|
|
3763
|
+
* @param maybeSalt - Optional salt for CREATE2 deployment (does not wait for deployment tx to be mined if set, does not send tx if contract already exists).
|
|
3764
|
+
* @returns The ETH address the contract was deployed to.
|
|
3765
|
+
*/
|
|
3649
3766
|
readonly inputs: readonly [{
|
|
3650
3767
|
readonly name: "";
|
|
3651
3768
|
readonly type: "uint256";
|
|
@@ -3727,6 +3844,16 @@ export declare const l1Artifacts: {
|
|
|
3727
3844
|
readonly type: "uint256";
|
|
3728
3845
|
readonly internalType: "Timestamp";
|
|
3729
3846
|
}];
|
|
3847
|
+
}, {
|
|
3848
|
+
readonly type: "function";
|
|
3849
|
+
readonly name: "VERSION";
|
|
3850
|
+
readonly inputs: readonly [];
|
|
3851
|
+
readonly outputs: readonly [{
|
|
3852
|
+
readonly name: "";
|
|
3853
|
+
readonly type: "uint256";
|
|
3854
|
+
readonly internalType: "uint256";
|
|
3855
|
+
}];
|
|
3856
|
+
readonly stateMutability: "view";
|
|
3730
3857
|
}, {
|
|
3731
3858
|
readonly type: "error";
|
|
3732
3859
|
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
@@ -3893,9 +4020,9 @@ export declare const l1Artifacts: {
|
|
|
3893
4020
|
contractAbi: readonly [{
|
|
3894
4021
|
readonly type: "constructor";
|
|
3895
4022
|
readonly inputs: readonly [{
|
|
3896
|
-
readonly name: "
|
|
4023
|
+
readonly name: "_feeAsset";
|
|
3897
4024
|
readonly type: "address";
|
|
3898
|
-
readonly internalType: "contract
|
|
4025
|
+
readonly internalType: "contract IERC20";
|
|
3899
4026
|
}, {
|
|
3900
4027
|
readonly name: "_rewardDistributor";
|
|
3901
4028
|
readonly type: "address";
|
|
@@ -3963,16 +4090,11 @@ export declare const l1Artifacts: {
|
|
|
3963
4090
|
readonly internalType: "uint256";
|
|
3964
4091
|
}, {
|
|
3965
4092
|
readonly name: "manaTarget";
|
|
3966
|
-
readonly type: "uint256";
|
|
3967
|
-
* The contract abi.
|
|
3968
|
-
*/
|
|
4093
|
+
readonly type: "uint256";
|
|
3969
4094
|
readonly internalType: "uint256";
|
|
3970
4095
|
}, {
|
|
3971
4096
|
readonly name: "provingCostPerMana";
|
|
3972
4097
|
readonly type: "uint256";
|
|
3973
|
-
/**
|
|
3974
|
-
* The contract libraries
|
|
3975
|
-
*/
|
|
3976
4098
|
readonly internalType: "EthValue";
|
|
3977
4099
|
}];
|
|
3978
4100
|
}];
|
|
@@ -4064,9 +4186,9 @@ export declare const l1Artifacts: {
|
|
|
4064
4186
|
readonly internalType: "contract IPayload";
|
|
4065
4187
|
}];
|
|
4066
4188
|
}, {
|
|
4189
|
+
/** Configuration for the L1 tx utils module. */
|
|
4067
4190
|
readonly type: "error";
|
|
4068
4191
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
4069
|
-
/** Enable fast mode for deployments (fire and forget transactions) */
|
|
4070
4192
|
readonly inputs: readonly [{
|
|
4071
4193
|
readonly name: "instance";
|
|
4072
4194
|
readonly type: "address";
|
|
@@ -4380,6 +4502,18 @@ export declare const l1Artifacts: {
|
|
|
4380
4502
|
readonly type: "error";
|
|
4381
4503
|
readonly name: "Inbox__Unauthorized";
|
|
4382
4504
|
readonly inputs: readonly [];
|
|
4505
|
+
}, {
|
|
4506
|
+
readonly type: "error";
|
|
4507
|
+
readonly name: "Inbox__VersionMismatch";
|
|
4508
|
+
readonly inputs: readonly [{
|
|
4509
|
+
readonly name: "expected";
|
|
4510
|
+
readonly type: "uint256";
|
|
4511
|
+
readonly internalType: "uint256";
|
|
4512
|
+
}, {
|
|
4513
|
+
readonly name: "actual";
|
|
4514
|
+
readonly type: "uint256";
|
|
4515
|
+
readonly internalType: "uint256";
|
|
4516
|
+
}];
|
|
4383
4517
|
}, {
|
|
4384
4518
|
readonly type: "error";
|
|
4385
4519
|
readonly name: "InvalidShortString";
|
|
@@ -4539,18 +4673,6 @@ export declare const l1Artifacts: {
|
|
|
4539
4673
|
readonly type: "address";
|
|
4540
4674
|
readonly internalType: "address";
|
|
4541
4675
|
}];
|
|
4542
|
-
}, {
|
|
4543
|
-
readonly type: "error";
|
|
4544
|
-
readonly name: "Outbox__InvalidVersion";
|
|
4545
|
-
readonly inputs: readonly [{
|
|
4546
|
-
readonly name: "entry";
|
|
4547
|
-
readonly type: "uint256";
|
|
4548
|
-
readonly internalType: "uint256";
|
|
4549
|
-
}, {
|
|
4550
|
-
readonly name: "message";
|
|
4551
|
-
readonly type: "uint256";
|
|
4552
|
-
readonly internalType: "uint256";
|
|
4553
|
-
}];
|
|
4554
4676
|
}, {
|
|
4555
4677
|
readonly type: "error";
|
|
4556
4678
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -4579,6 +4701,18 @@ export declare const l1Artifacts: {
|
|
|
4579
4701
|
readonly type: "error";
|
|
4580
4702
|
readonly name: "Outbox__Unauthorized";
|
|
4581
4703
|
readonly inputs: readonly [];
|
|
4704
|
+
}, {
|
|
4705
|
+
readonly type: "error";
|
|
4706
|
+
readonly name: "Outbox__VersionMismatch";
|
|
4707
|
+
readonly inputs: readonly [{
|
|
4708
|
+
readonly name: "expected";
|
|
4709
|
+
readonly type: "uint256";
|
|
4710
|
+
readonly internalType: "uint256";
|
|
4711
|
+
}, {
|
|
4712
|
+
readonly name: "actual";
|
|
4713
|
+
readonly type: "uint256";
|
|
4714
|
+
readonly internalType: "uint256";
|
|
4715
|
+
}];
|
|
4582
4716
|
}, {
|
|
4583
4717
|
readonly type: "error";
|
|
4584
4718
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -4657,6 +4791,10 @@ export declare const l1Artifacts: {
|
|
|
4657
4791
|
readonly internalType: "uint256";
|
|
4658
4792
|
}];
|
|
4659
4793
|
readonly anonymous: false;
|
|
4794
|
+
}, {
|
|
4795
|
+
readonly type: "error";
|
|
4796
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
4797
|
+
readonly inputs: readonly [];
|
|
4660
4798
|
}, {
|
|
4661
4799
|
readonly type: "error";
|
|
4662
4800
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -4669,9 +4807,9 @@ export declare const l1Artifacts: {
|
|
|
4669
4807
|
readonly type: "error";
|
|
4670
4808
|
readonly name: "Registry__RollupNotRegistered";
|
|
4671
4809
|
readonly inputs: readonly [{
|
|
4672
|
-
readonly name: "
|
|
4673
|
-
readonly type: "
|
|
4674
|
-
readonly internalType: "
|
|
4810
|
+
readonly name: "version";
|
|
4811
|
+
readonly type: "uint256";
|
|
4812
|
+
readonly internalType: "uint256";
|
|
4675
4813
|
}];
|
|
4676
4814
|
}, {
|
|
4677
4815
|
readonly type: "error";
|
|
@@ -6722,19 +6860,19 @@ export declare const l1Artifacts: {
|
|
|
6722
6860
|
readonly start: 605;
|
|
6723
6861
|
readonly length: 20;
|
|
6724
6862
|
}, {
|
|
6725
|
-
readonly start:
|
|
6863
|
+
readonly start: 8112;
|
|
6726
6864
|
readonly length: 20;
|
|
6727
6865
|
}, {
|
|
6728
|
-
readonly start:
|
|
6866
|
+
readonly start: 8538;
|
|
6729
6867
|
readonly length: 20;
|
|
6730
6868
|
}, {
|
|
6731
|
-
readonly start:
|
|
6869
|
+
readonly start: 9614;
|
|
6732
6870
|
readonly length: 20;
|
|
6733
6871
|
}, {
|
|
6734
|
-
readonly start:
|
|
6872
|
+
readonly start: 10243;
|
|
6735
6873
|
readonly length: 20;
|
|
6736
6874
|
}, {
|
|
6737
|
-
readonly start:
|
|
6875
|
+
readonly start: 10380;
|
|
6738
6876
|
readonly length: 20;
|
|
6739
6877
|
}];
|
|
6740
6878
|
};
|
|
@@ -6811,9 +6949,6 @@ export declare const l1Artifacts: {
|
|
|
6811
6949
|
readonly inputs: readonly [{
|
|
6812
6950
|
readonly name: "votesCast";
|
|
6813
6951
|
readonly type: "uint256";
|
|
6814
|
-
/**
|
|
6815
|
-
* The currently deployed l1 contract addresses
|
|
6816
|
-
*/
|
|
6817
6952
|
readonly internalType: "uint256";
|
|
6818
6953
|
}, {
|
|
6819
6954
|
readonly name: "votesNeeded";
|
|
@@ -6908,6 +7043,7 @@ export declare const l1Artifacts: {
|
|
|
6908
7043
|
readonly type: "error";
|
|
6909
7044
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
6910
7045
|
readonly inputs: readonly [{
|
|
7046
|
+
/** The vk tree root. */
|
|
6911
7047
|
readonly name: "caller";
|
|
6912
7048
|
readonly type: "address";
|
|
6913
7049
|
readonly internalType: "address";
|
|
@@ -6921,7 +7057,7 @@ export declare const l1Artifacts: {
|
|
|
6921
7057
|
readonly name: "Governance__CallerNotSelf";
|
|
6922
7058
|
readonly inputs: readonly [{
|
|
6923
7059
|
readonly name: "caller";
|
|
6924
|
-
readonly type: "address";
|
|
7060
|
+
readonly type: "address"; /** Configuration for the L1 tx utils module. */
|
|
6925
7061
|
readonly internalType: "address";
|
|
6926
7062
|
}, {
|
|
6927
7063
|
readonly name: "self";
|
|
@@ -7116,6 +7252,18 @@ export declare const l1Artifacts: {
|
|
|
7116
7252
|
readonly type: "error";
|
|
7117
7253
|
readonly name: "Inbox__Unauthorized";
|
|
7118
7254
|
readonly inputs: readonly [];
|
|
7255
|
+
}, {
|
|
7256
|
+
readonly type: "error";
|
|
7257
|
+
readonly name: "Inbox__VersionMismatch";
|
|
7258
|
+
readonly inputs: readonly [{
|
|
7259
|
+
readonly name: "expected";
|
|
7260
|
+
readonly type: "uint256";
|
|
7261
|
+
readonly internalType: "uint256";
|
|
7262
|
+
}, {
|
|
7263
|
+
readonly name: "actual";
|
|
7264
|
+
readonly type: "uint256";
|
|
7265
|
+
readonly internalType: "uint256";
|
|
7266
|
+
}];
|
|
7119
7267
|
}, {
|
|
7120
7268
|
readonly type: "error";
|
|
7121
7269
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -7216,18 +7364,6 @@ export declare const l1Artifacts: {
|
|
|
7216
7364
|
readonly type: "address";
|
|
7217
7365
|
readonly internalType: "address";
|
|
7218
7366
|
}];
|
|
7219
|
-
}, {
|
|
7220
|
-
readonly type: "error";
|
|
7221
|
-
readonly name: "Outbox__InvalidVersion";
|
|
7222
|
-
readonly inputs: readonly [{
|
|
7223
|
-
readonly name: "entry";
|
|
7224
|
-
readonly type: "uint256";
|
|
7225
|
-
readonly internalType: "uint256";
|
|
7226
|
-
}, {
|
|
7227
|
-
readonly name: "message";
|
|
7228
|
-
readonly type: "uint256";
|
|
7229
|
-
readonly internalType: "uint256";
|
|
7230
|
-
}];
|
|
7231
7367
|
}, {
|
|
7232
7368
|
readonly type: "error";
|
|
7233
7369
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -7256,6 +7392,18 @@ export declare const l1Artifacts: {
|
|
|
7256
7392
|
readonly type: "error";
|
|
7257
7393
|
readonly name: "Outbox__Unauthorized";
|
|
7258
7394
|
readonly inputs: readonly [];
|
|
7395
|
+
}, {
|
|
7396
|
+
readonly type: "error";
|
|
7397
|
+
readonly name: "Outbox__VersionMismatch";
|
|
7398
|
+
readonly inputs: readonly [{
|
|
7399
|
+
readonly name: "expected";
|
|
7400
|
+
readonly type: "uint256";
|
|
7401
|
+
readonly internalType: "uint256";
|
|
7402
|
+
}, {
|
|
7403
|
+
readonly name: "actual";
|
|
7404
|
+
readonly type: "uint256";
|
|
7405
|
+
readonly internalType: "uint256";
|
|
7406
|
+
}];
|
|
7259
7407
|
}, {
|
|
7260
7408
|
readonly type: "error";
|
|
7261
7409
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -7288,6 +7436,10 @@ export declare const l1Artifacts: {
|
|
|
7288
7436
|
readonly type: "uint256";
|
|
7289
7437
|
readonly internalType: "Timestamp";
|
|
7290
7438
|
}];
|
|
7439
|
+
}, {
|
|
7440
|
+
readonly type: "error";
|
|
7441
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
7442
|
+
readonly inputs: readonly [];
|
|
7291
7443
|
}, {
|
|
7292
7444
|
readonly type: "error";
|
|
7293
7445
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -7300,9 +7452,9 @@ export declare const l1Artifacts: {
|
|
|
7300
7452
|
readonly type: "error";
|
|
7301
7453
|
readonly name: "Registry__RollupNotRegistered";
|
|
7302
7454
|
readonly inputs: readonly [{
|
|
7303
|
-
readonly name: "
|
|
7304
|
-
readonly type: "
|
|
7305
|
-
readonly internalType: "
|
|
7455
|
+
readonly name: "version";
|
|
7456
|
+
readonly type: "uint256";
|
|
7457
|
+
readonly internalType: "uint256";
|
|
7306
7458
|
}];
|
|
7307
7459
|
}, {
|
|
7308
7460
|
readonly type: "error";
|
|
@@ -7588,7 +7740,15 @@ export declare const l1Artifacts: {
|
|
|
7588
7740
|
readonly type: "uint256";
|
|
7589
7741
|
readonly internalType: "Slot";
|
|
7590
7742
|
}, {
|
|
7591
|
-
readonly name: "proposedSlot";
|
|
7743
|
+
readonly name: "proposedSlot"; /**
|
|
7744
|
+
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
7745
|
+
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
7746
|
+
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
7747
|
+
* @param chain - The chain instance to deploy to.
|
|
7748
|
+
* @param logger - A logger object.
|
|
7749
|
+
* @param args - Arguments for initialization of L1 contracts
|
|
7750
|
+
* @returns A list of ETH addresses of the deployed contracts.
|
|
7751
|
+
*/
|
|
7592
7752
|
readonly type: "uint256";
|
|
7593
7753
|
readonly internalType: "Slot";
|
|
7594
7754
|
}];
|
|
@@ -7937,18 +8097,12 @@ export declare const l1Artifacts: {
|
|
|
7937
8097
|
readonly internalType: "uint256";
|
|
7938
8098
|
}, {
|
|
7939
8099
|
readonly name: "m";
|
|
7940
|
-
readonly type: "uint256";
|
|
7941
|
-
* The contract abi.
|
|
7942
|
-
*/
|
|
8100
|
+
readonly type: "uint256";
|
|
7943
8101
|
readonly internalType: "uint256";
|
|
7944
8102
|
}];
|
|
7945
8103
|
}, {
|
|
7946
|
-
readonly type: "error";
|
|
7947
|
-
|
|
7948
|
-
*/
|
|
7949
|
-
readonly name: "GovernanceProposer__NCannotBeLargerTHanM"; /**
|
|
7950
|
-
* The contract libraries
|
|
7951
|
-
*/
|
|
8104
|
+
readonly type: "error";
|
|
8105
|
+
readonly name: "GovernanceProposer__NCannotBeLargerTHanM";
|
|
7952
8106
|
readonly inputs: readonly [{
|
|
7953
8107
|
readonly name: "n";
|
|
7954
8108
|
readonly type: "uint256";
|
|
@@ -8022,7 +8176,7 @@ export declare const l1Artifacts: {
|
|
|
8022
8176
|
readonly type: "error";
|
|
8023
8177
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
8024
8178
|
readonly inputs: readonly [{
|
|
8025
|
-
readonly name: "caller";
|
|
8179
|
+
readonly name: "caller";
|
|
8026
8180
|
readonly type: "address";
|
|
8027
8181
|
readonly internalType: "address";
|
|
8028
8182
|
}, {
|
|
@@ -8230,6 +8384,18 @@ export declare const l1Artifacts: {
|
|
|
8230
8384
|
readonly type: "error";
|
|
8231
8385
|
readonly name: "Inbox__Unauthorized";
|
|
8232
8386
|
readonly inputs: readonly [];
|
|
8387
|
+
}, {
|
|
8388
|
+
readonly type: "error";
|
|
8389
|
+
readonly name: "Inbox__VersionMismatch";
|
|
8390
|
+
readonly inputs: readonly [{
|
|
8391
|
+
readonly name: "expected";
|
|
8392
|
+
readonly type: "uint256";
|
|
8393
|
+
readonly internalType: "uint256";
|
|
8394
|
+
}, {
|
|
8395
|
+
readonly name: "actual";
|
|
8396
|
+
readonly type: "uint256";
|
|
8397
|
+
readonly internalType: "uint256";
|
|
8398
|
+
}];
|
|
8233
8399
|
}, {
|
|
8234
8400
|
readonly type: "event";
|
|
8235
8401
|
readonly name: "L2BlockProposed";
|
|
@@ -8365,18 +8531,6 @@ export declare const l1Artifacts: {
|
|
|
8365
8531
|
readonly type: "address";
|
|
8366
8532
|
readonly internalType: "address";
|
|
8367
8533
|
}];
|
|
8368
|
-
}, {
|
|
8369
|
-
readonly type: "error";
|
|
8370
|
-
readonly name: "Outbox__InvalidVersion";
|
|
8371
|
-
readonly inputs: readonly [{
|
|
8372
|
-
readonly name: "entry";
|
|
8373
|
-
readonly type: "uint256";
|
|
8374
|
-
readonly internalType: "uint256";
|
|
8375
|
-
}, {
|
|
8376
|
-
readonly name: "message";
|
|
8377
|
-
readonly type: "uint256";
|
|
8378
|
-
readonly internalType: "uint256";
|
|
8379
|
-
}];
|
|
8380
8534
|
}, {
|
|
8381
8535
|
readonly type: "error";
|
|
8382
8536
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -8405,6 +8559,18 @@ export declare const l1Artifacts: {
|
|
|
8405
8559
|
readonly type: "error";
|
|
8406
8560
|
readonly name: "Outbox__Unauthorized";
|
|
8407
8561
|
readonly inputs: readonly [];
|
|
8562
|
+
}, {
|
|
8563
|
+
readonly type: "error";
|
|
8564
|
+
readonly name: "Outbox__VersionMismatch";
|
|
8565
|
+
readonly inputs: readonly [{
|
|
8566
|
+
readonly name: "expected";
|
|
8567
|
+
readonly type: "uint256";
|
|
8568
|
+
readonly internalType: "uint256";
|
|
8569
|
+
}, {
|
|
8570
|
+
readonly name: "actual";
|
|
8571
|
+
readonly type: "uint256";
|
|
8572
|
+
readonly internalType: "uint256";
|
|
8573
|
+
}];
|
|
8408
8574
|
}, {
|
|
8409
8575
|
readonly type: "error";
|
|
8410
8576
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -8452,6 +8618,10 @@ export declare const l1Artifacts: {
|
|
|
8452
8618
|
readonly internalType: "uint256";
|
|
8453
8619
|
}];
|
|
8454
8620
|
readonly anonymous: false;
|
|
8621
|
+
}, {
|
|
8622
|
+
readonly type: "error";
|
|
8623
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
8624
|
+
readonly inputs: readonly [];
|
|
8455
8625
|
}, {
|
|
8456
8626
|
readonly type: "error";
|
|
8457
8627
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -8464,9 +8634,9 @@ export declare const l1Artifacts: {
|
|
|
8464
8634
|
readonly type: "error";
|
|
8465
8635
|
readonly name: "Registry__RollupNotRegistered";
|
|
8466
8636
|
readonly inputs: readonly [{
|
|
8467
|
-
readonly name: "
|
|
8468
|
-
readonly type: "
|
|
8469
|
-
readonly internalType: "
|
|
8637
|
+
readonly name: "version";
|
|
8638
|
+
readonly type: "uint256";
|
|
8639
|
+
readonly internalType: "uint256";
|
|
8470
8640
|
}];
|
|
8471
8641
|
}, {
|
|
8472
8642
|
readonly type: "error";
|
|
@@ -9235,7 +9405,9 @@ export declare const l1Artifacts: {
|
|
|
9235
9405
|
readonly internalType: "uint256";
|
|
9236
9406
|
}];
|
|
9237
9407
|
}, {
|
|
9238
|
-
readonly type: "error";
|
|
9408
|
+
readonly type: "error"; /**
|
|
9409
|
+
* The contract libraries
|
|
9410
|
+
*/
|
|
9239
9411
|
readonly name: "ERC20InvalidApprover";
|
|
9240
9412
|
readonly inputs: readonly [{
|
|
9241
9413
|
readonly name: "approver";
|
|
@@ -9311,19 +9483,18 @@ export declare const l1Artifacts: {
|
|
|
9311
9483
|
readonly internalType: "uint256";
|
|
9312
9484
|
}, {
|
|
9313
9485
|
readonly name: "votesNeeded";
|
|
9314
|
-
readonly type: "uint256";
|
|
9486
|
+
readonly type: "uint256"; /** The genesis root of the archive tree. */
|
|
9315
9487
|
readonly internalType: "uint256";
|
|
9316
9488
|
}];
|
|
9317
9489
|
}, {
|
|
9318
9490
|
readonly type: "error";
|
|
9319
|
-
/** The
|
|
9320
|
-
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
9491
|
+
readonly name: "GovernanceProposer__InvalidNAndMValues"; /** The salt for CREATE2 deployment. */
|
|
9321
9492
|
readonly inputs: readonly [{
|
|
9322
9493
|
readonly name: "n";
|
|
9323
9494
|
readonly type: "uint256";
|
|
9324
9495
|
readonly internalType: "uint256";
|
|
9325
9496
|
}, {
|
|
9326
|
-
readonly name: "m";
|
|
9497
|
+
readonly name: "m";
|
|
9327
9498
|
readonly type: "uint256";
|
|
9328
9499
|
readonly internalType: "uint256";
|
|
9329
9500
|
}];
|
|
@@ -9611,6 +9782,18 @@ export declare const l1Artifacts: {
|
|
|
9611
9782
|
readonly type: "error";
|
|
9612
9783
|
readonly name: "Inbox__Unauthorized";
|
|
9613
9784
|
readonly inputs: readonly [];
|
|
9785
|
+
}, {
|
|
9786
|
+
readonly type: "error";
|
|
9787
|
+
readonly name: "Inbox__VersionMismatch";
|
|
9788
|
+
readonly inputs: readonly [{
|
|
9789
|
+
readonly name: "expected";
|
|
9790
|
+
readonly type: "uint256";
|
|
9791
|
+
readonly internalType: "uint256";
|
|
9792
|
+
}, {
|
|
9793
|
+
readonly name: "actual";
|
|
9794
|
+
readonly type: "uint256";
|
|
9795
|
+
readonly internalType: "uint256";
|
|
9796
|
+
}];
|
|
9614
9797
|
}, {
|
|
9615
9798
|
readonly type: "error";
|
|
9616
9799
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -9668,15 +9851,6 @@ export declare const l1Artifacts: {
|
|
|
9668
9851
|
readonly internalType: "uint256";
|
|
9669
9852
|
}, {
|
|
9670
9853
|
readonly name: "leafIndex";
|
|
9671
|
-
/**
|
|
9672
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
9673
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
9674
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
9675
|
-
* @param chain - The chain instance to deploy to.
|
|
9676
|
-
* @param logger - A logger object.
|
|
9677
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
9678
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
9679
|
-
*/
|
|
9680
9854
|
readonly type: "uint256";
|
|
9681
9855
|
readonly internalType: "uint256";
|
|
9682
9856
|
}];
|
|
@@ -9748,18 +9922,6 @@ export declare const l1Artifacts: {
|
|
|
9748
9922
|
readonly type: "address";
|
|
9749
9923
|
readonly internalType: "address";
|
|
9750
9924
|
}];
|
|
9751
|
-
}, {
|
|
9752
|
-
readonly type: "error";
|
|
9753
|
-
readonly name: "Outbox__InvalidVersion";
|
|
9754
|
-
readonly inputs: readonly [{
|
|
9755
|
-
readonly name: "entry";
|
|
9756
|
-
readonly type: "uint256";
|
|
9757
|
-
readonly internalType: "uint256";
|
|
9758
|
-
}, {
|
|
9759
|
-
readonly name: "message";
|
|
9760
|
-
readonly type: "uint256";
|
|
9761
|
-
readonly internalType: "uint256";
|
|
9762
|
-
}];
|
|
9763
9925
|
}, {
|
|
9764
9926
|
readonly type: "error";
|
|
9765
9927
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -9788,6 +9950,18 @@ export declare const l1Artifacts: {
|
|
|
9788
9950
|
readonly type: "error";
|
|
9789
9951
|
readonly name: "Outbox__Unauthorized";
|
|
9790
9952
|
readonly inputs: readonly [];
|
|
9953
|
+
}, {
|
|
9954
|
+
readonly type: "error";
|
|
9955
|
+
readonly name: "Outbox__VersionMismatch";
|
|
9956
|
+
readonly inputs: readonly [{
|
|
9957
|
+
readonly name: "expected";
|
|
9958
|
+
readonly type: "uint256";
|
|
9959
|
+
readonly internalType: "uint256";
|
|
9960
|
+
}, {
|
|
9961
|
+
readonly name: "actual";
|
|
9962
|
+
readonly type: "uint256";
|
|
9963
|
+
readonly internalType: "uint256";
|
|
9964
|
+
}];
|
|
9791
9965
|
}, {
|
|
9792
9966
|
readonly type: "error";
|
|
9793
9967
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -9851,6 +10025,10 @@ export declare const l1Artifacts: {
|
|
|
9851
10025
|
readonly type: "uint256";
|
|
9852
10026
|
readonly internalType: "Timestamp";
|
|
9853
10027
|
}];
|
|
10028
|
+
}, {
|
|
10029
|
+
readonly type: "error";
|
|
10030
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
10031
|
+
readonly inputs: readonly [];
|
|
9854
10032
|
}, {
|
|
9855
10033
|
readonly type: "error";
|
|
9856
10034
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -9863,9 +10041,9 @@ export declare const l1Artifacts: {
|
|
|
9863
10041
|
readonly type: "error";
|
|
9864
10042
|
readonly name: "Registry__RollupNotRegistered";
|
|
9865
10043
|
readonly inputs: readonly [{
|
|
9866
|
-
readonly name: "
|
|
9867
|
-
readonly type: "
|
|
9868
|
-
readonly internalType: "
|
|
10044
|
+
readonly name: "version";
|
|
10045
|
+
readonly type: "uint256";
|
|
10046
|
+
readonly internalType: "uint256";
|
|
9869
10047
|
}];
|
|
9870
10048
|
}, {
|
|
9871
10049
|
readonly type: "error";
|
|
@@ -10736,7 +10914,9 @@ export declare const l1Artifacts: {
|
|
|
10736
10914
|
readonly internalType: "uint256";
|
|
10737
10915
|
}];
|
|
10738
10916
|
}, {
|
|
10739
|
-
readonly type: "error";
|
|
10917
|
+
readonly type: "error"; /**
|
|
10918
|
+
* The contract libraries
|
|
10919
|
+
*/
|
|
10740
10920
|
readonly name: "ERC20InvalidApprover";
|
|
10741
10921
|
readonly inputs: readonly [{
|
|
10742
10922
|
readonly name: "approver";
|
|
@@ -10812,19 +10992,18 @@ export declare const l1Artifacts: {
|
|
|
10812
10992
|
readonly internalType: "uint256";
|
|
10813
10993
|
}, {
|
|
10814
10994
|
readonly name: "votesNeeded";
|
|
10815
|
-
readonly type: "uint256";
|
|
10995
|
+
readonly type: "uint256"; /** The genesis root of the archive tree. */
|
|
10816
10996
|
readonly internalType: "uint256";
|
|
10817
10997
|
}];
|
|
10818
10998
|
}, {
|
|
10819
10999
|
readonly type: "error";
|
|
10820
|
-
/** The
|
|
10821
|
-
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
11000
|
+
readonly name: "GovernanceProposer__InvalidNAndMValues"; /** The salt for CREATE2 deployment. */
|
|
10822
11001
|
readonly inputs: readonly [{
|
|
10823
11002
|
readonly name: "n";
|
|
10824
11003
|
readonly type: "uint256";
|
|
10825
11004
|
readonly internalType: "uint256";
|
|
10826
11005
|
}, {
|
|
10827
|
-
readonly name: "m";
|
|
11006
|
+
readonly name: "m";
|
|
10828
11007
|
readonly type: "uint256";
|
|
10829
11008
|
readonly internalType: "uint256";
|
|
10830
11009
|
}];
|
|
@@ -11112,6 +11291,18 @@ export declare const l1Artifacts: {
|
|
|
11112
11291
|
readonly type: "error";
|
|
11113
11292
|
readonly name: "Inbox__Unauthorized";
|
|
11114
11293
|
readonly inputs: readonly [];
|
|
11294
|
+
}, {
|
|
11295
|
+
readonly type: "error";
|
|
11296
|
+
readonly name: "Inbox__VersionMismatch";
|
|
11297
|
+
readonly inputs: readonly [{
|
|
11298
|
+
readonly name: "expected";
|
|
11299
|
+
readonly type: "uint256";
|
|
11300
|
+
readonly internalType: "uint256";
|
|
11301
|
+
}, {
|
|
11302
|
+
readonly name: "actual";
|
|
11303
|
+
readonly type: "uint256";
|
|
11304
|
+
readonly internalType: "uint256";
|
|
11305
|
+
}];
|
|
11115
11306
|
}, {
|
|
11116
11307
|
readonly type: "error";
|
|
11117
11308
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -11169,15 +11360,6 @@ export declare const l1Artifacts: {
|
|
|
11169
11360
|
readonly internalType: "uint256";
|
|
11170
11361
|
}, {
|
|
11171
11362
|
readonly name: "leafIndex";
|
|
11172
|
-
/**
|
|
11173
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
11174
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
11175
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
11176
|
-
* @param chain - The chain instance to deploy to.
|
|
11177
|
-
* @param logger - A logger object.
|
|
11178
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
11179
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
11180
|
-
*/
|
|
11181
11363
|
readonly type: "uint256";
|
|
11182
11364
|
readonly internalType: "uint256";
|
|
11183
11365
|
}];
|
|
@@ -11249,18 +11431,6 @@ export declare const l1Artifacts: {
|
|
|
11249
11431
|
readonly type: "address";
|
|
11250
11432
|
readonly internalType: "address";
|
|
11251
11433
|
}];
|
|
11252
|
-
}, {
|
|
11253
|
-
readonly type: "error";
|
|
11254
|
-
readonly name: "Outbox__InvalidVersion";
|
|
11255
|
-
readonly inputs: readonly [{
|
|
11256
|
-
readonly name: "entry";
|
|
11257
|
-
readonly type: "uint256";
|
|
11258
|
-
readonly internalType: "uint256";
|
|
11259
|
-
}, {
|
|
11260
|
-
readonly name: "message";
|
|
11261
|
-
readonly type: "uint256";
|
|
11262
|
-
readonly internalType: "uint256";
|
|
11263
|
-
}];
|
|
11264
11434
|
}, {
|
|
11265
11435
|
readonly type: "error";
|
|
11266
11436
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -11289,6 +11459,18 @@ export declare const l1Artifacts: {
|
|
|
11289
11459
|
readonly type: "error";
|
|
11290
11460
|
readonly name: "Outbox__Unauthorized";
|
|
11291
11461
|
readonly inputs: readonly [];
|
|
11462
|
+
}, {
|
|
11463
|
+
readonly type: "error";
|
|
11464
|
+
readonly name: "Outbox__VersionMismatch";
|
|
11465
|
+
readonly inputs: readonly [{
|
|
11466
|
+
readonly name: "expected";
|
|
11467
|
+
readonly type: "uint256";
|
|
11468
|
+
readonly internalType: "uint256";
|
|
11469
|
+
}, {
|
|
11470
|
+
readonly name: "actual";
|
|
11471
|
+
readonly type: "uint256";
|
|
11472
|
+
readonly internalType: "uint256";
|
|
11473
|
+
}];
|
|
11292
11474
|
}, {
|
|
11293
11475
|
readonly type: "error";
|
|
11294
11476
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -11352,6 +11534,10 @@ export declare const l1Artifacts: {
|
|
|
11352
11534
|
readonly type: "uint256";
|
|
11353
11535
|
readonly internalType: "Timestamp";
|
|
11354
11536
|
}];
|
|
11537
|
+
}, {
|
|
11538
|
+
readonly type: "error";
|
|
11539
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
11540
|
+
readonly inputs: readonly [];
|
|
11355
11541
|
}, {
|
|
11356
11542
|
readonly type: "error";
|
|
11357
11543
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -11364,9 +11550,9 @@ export declare const l1Artifacts: {
|
|
|
11364
11550
|
readonly type: "error";
|
|
11365
11551
|
readonly name: "Registry__RollupNotRegistered";
|
|
11366
11552
|
readonly inputs: readonly [{
|
|
11367
|
-
readonly name: "
|
|
11368
|
-
readonly type: "
|
|
11369
|
-
readonly internalType: "
|
|
11553
|
+
readonly name: "version";
|
|
11554
|
+
readonly type: "uint256";
|
|
11555
|
+
readonly internalType: "uint256";
|
|
11370
11556
|
}];
|
|
11371
11557
|
}, {
|
|
11372
11558
|
readonly type: "error";
|
|
@@ -12143,17 +12329,21 @@ export declare const l1Artifacts: {
|
|
|
12143
12329
|
contractAbi: readonly [{
|
|
12144
12330
|
readonly type: "constructor";
|
|
12145
12331
|
readonly inputs: readonly [{
|
|
12146
|
-
readonly name: "
|
|
12332
|
+
readonly name: "_rollup";
|
|
12147
12333
|
readonly type: "address";
|
|
12148
|
-
readonly internalType: "
|
|
12334
|
+
readonly internalType: "contract IRollup";
|
|
12149
12335
|
}, {
|
|
12150
12336
|
readonly name: "_underlying";
|
|
12151
12337
|
readonly type: "address";
|
|
12152
|
-
readonly internalType: "
|
|
12338
|
+
readonly internalType: "contract IERC20";
|
|
12153
12339
|
}, {
|
|
12154
|
-
readonly name: "
|
|
12155
|
-
readonly type: "
|
|
12156
|
-
readonly internalType: "
|
|
12340
|
+
readonly name: "_inbox";
|
|
12341
|
+
readonly type: "address";
|
|
12342
|
+
readonly internalType: "contract IInbox";
|
|
12343
|
+
}, {
|
|
12344
|
+
readonly name: "_version";
|
|
12345
|
+
readonly type: "uint256";
|
|
12346
|
+
readonly internalType: "uint256";
|
|
12157
12347
|
}];
|
|
12158
12348
|
readonly stateMutability: "nonpayable";
|
|
12159
12349
|
}, {
|
|
@@ -12229,7 +12419,9 @@ export declare const l1Artifacts: {
|
|
|
12229
12419
|
}, {
|
|
12230
12420
|
readonly type: "error";
|
|
12231
12421
|
readonly name: "FeeLib__InvalidFeeAssetPriceModifier";
|
|
12232
|
-
readonly inputs: readonly [];
|
|
12422
|
+
readonly inputs: readonly []; /**
|
|
12423
|
+
* The contract libraries
|
|
12424
|
+
*/
|
|
12233
12425
|
}, {
|
|
12234
12426
|
readonly type: "event";
|
|
12235
12427
|
readonly name: "FeesDistributed";
|
|
@@ -12315,7 +12507,6 @@ export declare const l1Artifacts: {
|
|
|
12315
12507
|
}];
|
|
12316
12508
|
}, {
|
|
12317
12509
|
readonly type: "error";
|
|
12318
|
-
/** The hash of the genesis block header. */
|
|
12319
12510
|
readonly name: "GovernanceProposer__ProposalAlreadyExecuted";
|
|
12320
12511
|
readonly inputs: readonly [{
|
|
12321
12512
|
readonly name: "roundNumber";
|
|
@@ -12329,6 +12520,14 @@ export declare const l1Artifacts: {
|
|
|
12329
12520
|
}, {
|
|
12330
12521
|
readonly type: "error";
|
|
12331
12522
|
readonly name: "GovernanceProposer__ProposalHaveNoCode";
|
|
12523
|
+
/**
|
|
12524
|
+
* Creates a wallet and a public viem client for interacting with L1.
|
|
12525
|
+
* @param rpcUrls - List of RPC URLs to connect to L1.
|
|
12526
|
+
* @param mnemonicOrPrivateKeyOrHdAccount - Mnemonic or account for the wallet client.
|
|
12527
|
+
* @param chain - Optional chain spec (defaults to local foundry).
|
|
12528
|
+
* @param addressIndex - Optional index of the address to use from the mnemonic.
|
|
12529
|
+
* @returns - A wallet and a public client.
|
|
12530
|
+
*/
|
|
12332
12531
|
readonly inputs: readonly [{
|
|
12333
12532
|
readonly name: "proposal";
|
|
12334
12533
|
readonly type: "address";
|
|
@@ -12542,6 +12741,16 @@ export declare const l1Artifacts: {
|
|
|
12542
12741
|
readonly type: "uint256";
|
|
12543
12742
|
readonly internalType: "Slot";
|
|
12544
12743
|
}];
|
|
12744
|
+
}, {
|
|
12745
|
+
readonly type: "function";
|
|
12746
|
+
readonly name: "INBOX";
|
|
12747
|
+
readonly inputs: readonly [];
|
|
12748
|
+
readonly outputs: readonly [{
|
|
12749
|
+
readonly name: "";
|
|
12750
|
+
readonly type: "address";
|
|
12751
|
+
readonly internalType: "contract IInbox";
|
|
12752
|
+
}];
|
|
12753
|
+
readonly stateMutability: "view";
|
|
12545
12754
|
}, {
|
|
12546
12755
|
readonly type: "error";
|
|
12547
12756
|
readonly name: "Inbox__ActorTooLarge";
|
|
@@ -12563,6 +12772,14 @@ export declare const l1Artifacts: {
|
|
|
12563
12772
|
readonly name: "Inbox__MustBuildBeforeConsume";
|
|
12564
12773
|
readonly inputs: readonly [];
|
|
12565
12774
|
}, {
|
|
12775
|
+
/**
|
|
12776
|
+
* Deploys a new rollup, using the existing canonical version to derive certain values (addresses of assets etc).
|
|
12777
|
+
* @param clients - The L1 clients.
|
|
12778
|
+
* @param args - The deployment arguments.
|
|
12779
|
+
* @param registryAddress - The address of the registry.
|
|
12780
|
+
* @param logger - The logger.
|
|
12781
|
+
* @param txUtilsConfig - The L1 tx utils config.
|
|
12782
|
+
*/
|
|
12566
12783
|
readonly type: "error";
|
|
12567
12784
|
readonly name: "Inbox__SecretHashTooLarge";
|
|
12568
12785
|
readonly inputs: readonly [{
|
|
@@ -12574,6 +12791,18 @@ export declare const l1Artifacts: {
|
|
|
12574
12791
|
readonly type: "error";
|
|
12575
12792
|
readonly name: "Inbox__Unauthorized";
|
|
12576
12793
|
readonly inputs: readonly [];
|
|
12794
|
+
}, {
|
|
12795
|
+
readonly type: "error";
|
|
12796
|
+
readonly name: "Inbox__VersionMismatch";
|
|
12797
|
+
readonly inputs: readonly [{
|
|
12798
|
+
readonly name: "expected";
|
|
12799
|
+
readonly type: "uint256";
|
|
12800
|
+
readonly internalType: "uint256";
|
|
12801
|
+
}, {
|
|
12802
|
+
readonly name: "actual";
|
|
12803
|
+
readonly type: "uint256";
|
|
12804
|
+
readonly internalType: "uint256";
|
|
12805
|
+
}];
|
|
12577
12806
|
}, {
|
|
12578
12807
|
readonly type: "function";
|
|
12579
12808
|
readonly name: "L2_TOKEN_ADDRESS";
|
|
@@ -12608,6 +12837,9 @@ export declare const l1Artifacts: {
|
|
|
12608
12837
|
readonly type: "error";
|
|
12609
12838
|
readonly name: "Outbox__AlreadyNullified";
|
|
12610
12839
|
readonly inputs: readonly [{
|
|
12840
|
+
/**
|
|
12841
|
+
* Deploys a new rollup contract, funds and initializes the fee juice portal, and initializes the validator set.
|
|
12842
|
+
*/
|
|
12611
12843
|
readonly name: "l2BlockNumber";
|
|
12612
12844
|
readonly type: "uint256";
|
|
12613
12845
|
readonly internalType: "uint256";
|
|
@@ -12664,15 +12896,7 @@ export declare const l1Artifacts: {
|
|
|
12664
12896
|
readonly type: "error";
|
|
12665
12897
|
readonly name: "Outbox__InvalidPathLength";
|
|
12666
12898
|
readonly inputs: readonly [{
|
|
12667
|
-
readonly name: "expected";
|
|
12668
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
12669
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
12670
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
12671
|
-
* @param chain - The chain instance to deploy to.
|
|
12672
|
-
* @param logger - A logger object.
|
|
12673
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
12674
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
12675
|
-
*/
|
|
12899
|
+
readonly name: "expected";
|
|
12676
12900
|
readonly type: "uint256";
|
|
12677
12901
|
readonly internalType: "uint256";
|
|
12678
12902
|
}, {
|
|
@@ -12692,18 +12916,6 @@ export declare const l1Artifacts: {
|
|
|
12692
12916
|
readonly type: "address";
|
|
12693
12917
|
readonly internalType: "address";
|
|
12694
12918
|
}];
|
|
12695
|
-
}, {
|
|
12696
|
-
readonly type: "error";
|
|
12697
|
-
readonly name: "Outbox__InvalidVersion";
|
|
12698
|
-
readonly inputs: readonly [{
|
|
12699
|
-
readonly name: "entry";
|
|
12700
|
-
readonly type: "uint256";
|
|
12701
|
-
readonly internalType: "uint256";
|
|
12702
|
-
}, {
|
|
12703
|
-
readonly name: "message";
|
|
12704
|
-
readonly type: "uint256";
|
|
12705
|
-
readonly internalType: "uint256";
|
|
12706
|
-
}];
|
|
12707
12919
|
}, {
|
|
12708
12920
|
readonly type: "error";
|
|
12709
12921
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -12732,6 +12944,18 @@ export declare const l1Artifacts: {
|
|
|
12732
12944
|
readonly type: "error";
|
|
12733
12945
|
readonly name: "Outbox__Unauthorized";
|
|
12734
12946
|
readonly inputs: readonly [];
|
|
12947
|
+
}, {
|
|
12948
|
+
readonly type: "error";
|
|
12949
|
+
readonly name: "Outbox__VersionMismatch";
|
|
12950
|
+
readonly inputs: readonly [{
|
|
12951
|
+
readonly name: "expected";
|
|
12952
|
+
readonly type: "uint256";
|
|
12953
|
+
readonly internalType: "uint256";
|
|
12954
|
+
}, {
|
|
12955
|
+
readonly name: "actual";
|
|
12956
|
+
readonly type: "uint256";
|
|
12957
|
+
readonly internalType: "uint256";
|
|
12958
|
+
}];
|
|
12735
12959
|
}, {
|
|
12736
12960
|
readonly type: "error";
|
|
12737
12961
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -12766,14 +12990,18 @@ export declare const l1Artifacts: {
|
|
|
12766
12990
|
}];
|
|
12767
12991
|
}, {
|
|
12768
12992
|
readonly type: "function";
|
|
12769
|
-
readonly name: "
|
|
12993
|
+
readonly name: "ROLLUP";
|
|
12770
12994
|
readonly inputs: readonly [];
|
|
12771
12995
|
readonly outputs: readonly [{
|
|
12772
12996
|
readonly name: "";
|
|
12773
12997
|
readonly type: "address";
|
|
12774
|
-
readonly internalType: "contract
|
|
12998
|
+
readonly internalType: "contract IRollup";
|
|
12775
12999
|
}];
|
|
12776
13000
|
readonly stateMutability: "view";
|
|
13001
|
+
}, {
|
|
13002
|
+
readonly type: "error";
|
|
13003
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
13004
|
+
readonly inputs: readonly [];
|
|
12777
13005
|
}, {
|
|
12778
13006
|
readonly type: "error";
|
|
12779
13007
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -12786,9 +13014,9 @@ export declare const l1Artifacts: {
|
|
|
12786
13014
|
readonly type: "error";
|
|
12787
13015
|
readonly name: "Registry__RollupNotRegistered";
|
|
12788
13016
|
readonly inputs: readonly [{
|
|
12789
|
-
readonly name: "
|
|
12790
|
-
readonly type: "
|
|
12791
|
-
readonly internalType: "
|
|
13017
|
+
readonly name: "version";
|
|
13018
|
+
readonly type: "uint256";
|
|
13019
|
+
readonly internalType: "uint256";
|
|
12792
13020
|
}];
|
|
12793
13021
|
}, {
|
|
12794
13022
|
readonly type: "error";
|
|
@@ -13300,6 +13528,16 @@ export declare const l1Artifacts: {
|
|
|
13300
13528
|
readonly internalType: "contract IERC20";
|
|
13301
13529
|
}];
|
|
13302
13530
|
readonly stateMutability: "view";
|
|
13531
|
+
}, {
|
|
13532
|
+
readonly type: "function";
|
|
13533
|
+
readonly name: "VERSION";
|
|
13534
|
+
readonly inputs: readonly [];
|
|
13535
|
+
readonly outputs: readonly [{
|
|
13536
|
+
readonly name: "";
|
|
13537
|
+
readonly type: "uint256";
|
|
13538
|
+
readonly internalType: "uint256";
|
|
13539
|
+
}];
|
|
13540
|
+
readonly stateMutability: "view";
|
|
13303
13541
|
}, {
|
|
13304
13542
|
readonly type: "error";
|
|
13305
13543
|
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
@@ -13352,16 +13590,6 @@ export declare const l1Artifacts: {
|
|
|
13352
13590
|
readonly type: "address";
|
|
13353
13591
|
readonly internalType: "address";
|
|
13354
13592
|
}];
|
|
13355
|
-
}, {
|
|
13356
|
-
readonly type: "function";
|
|
13357
|
-
readonly name: "canonicalRollup";
|
|
13358
|
-
readonly inputs: readonly [];
|
|
13359
|
-
readonly outputs: readonly [{
|
|
13360
|
-
readonly name: "";
|
|
13361
|
-
readonly type: "address";
|
|
13362
|
-
readonly internalType: "address";
|
|
13363
|
-
}];
|
|
13364
|
-
readonly stateMutability: "view";
|
|
13365
13593
|
}, {
|
|
13366
13594
|
readonly type: "function";
|
|
13367
13595
|
readonly name: "depositToAztecPublic";
|
|
@@ -13402,22 +13630,6 @@ export declare const l1Artifacts: {
|
|
|
13402
13630
|
}];
|
|
13403
13631
|
readonly outputs: readonly [];
|
|
13404
13632
|
readonly stateMutability: "nonpayable";
|
|
13405
|
-
}, {
|
|
13406
|
-
readonly type: "function";
|
|
13407
|
-
readonly name: "initialize";
|
|
13408
|
-
readonly inputs: readonly [];
|
|
13409
|
-
readonly outputs: readonly [];
|
|
13410
|
-
readonly stateMutability: "nonpayable";
|
|
13411
|
-
}, {
|
|
13412
|
-
readonly type: "function";
|
|
13413
|
-
readonly name: "initialized";
|
|
13414
|
-
readonly inputs: readonly [];
|
|
13415
|
-
readonly outputs: readonly [{
|
|
13416
|
-
readonly name: "";
|
|
13417
|
-
readonly type: "bool";
|
|
13418
|
-
readonly internalType: "bool";
|
|
13419
|
-
}];
|
|
13420
|
-
readonly stateMutability: "view";
|
|
13421
13633
|
}];
|
|
13422
13634
|
contractBytecode: `0x${string}`;
|
|
13423
13635
|
};
|
|
@@ -13508,9 +13720,7 @@ export declare const l1Artifacts: {
|
|
|
13508
13720
|
readonly inputs: readonly [];
|
|
13509
13721
|
}, {
|
|
13510
13722
|
readonly type: "error";
|
|
13511
|
-
readonly name: "GovernanceProposer__FailedToPropose";
|
|
13512
|
-
* The contract abi.
|
|
13513
|
-
*/
|
|
13723
|
+
readonly name: "GovernanceProposer__FailedToPropose";
|
|
13514
13724
|
readonly inputs: readonly [{
|
|
13515
13725
|
readonly name: "proposal";
|
|
13516
13726
|
readonly type: "address";
|
|
@@ -13594,6 +13804,7 @@ export declare const l1Artifacts: {
|
|
|
13594
13804
|
}];
|
|
13595
13805
|
}, {
|
|
13596
13806
|
readonly type: "error";
|
|
13807
|
+
/** The genesis root of the archive tree. */
|
|
13597
13808
|
readonly name: "GovernanceProposer__ProposalTooOld";
|
|
13598
13809
|
readonly inputs: readonly [{
|
|
13599
13810
|
readonly name: "roundNumber";
|
|
@@ -13665,14 +13876,6 @@ export declare const l1Artifacts: {
|
|
|
13665
13876
|
readonly name: "Governance__ConfigurationLib__LockAmountTooSmall";
|
|
13666
13877
|
readonly inputs: readonly [];
|
|
13667
13878
|
}, {
|
|
13668
|
-
/**
|
|
13669
|
-
* Deploys the rollup, slash factory, and the payload which can be used to make the rollup the canonical version.
|
|
13670
|
-
* @param clients - The L1 clients.
|
|
13671
|
-
* @param args - The deployment arguments.
|
|
13672
|
-
* @param registryAddress - The address of the registry.
|
|
13673
|
-
* @param logger - The logger.
|
|
13674
|
-
* @param txUtilsConfig - The L1 tx utils config.
|
|
13675
|
-
*/
|
|
13676
13879
|
readonly type: "error";
|
|
13677
13880
|
readonly name: "Governance__ConfigurationLib__QuorumTooBig";
|
|
13678
13881
|
readonly inputs: readonly [];
|
|
@@ -13840,6 +14043,18 @@ export declare const l1Artifacts: {
|
|
|
13840
14043
|
readonly type: "error";
|
|
13841
14044
|
readonly name: "Inbox__Unauthorized";
|
|
13842
14045
|
readonly inputs: readonly [];
|
|
14046
|
+
}, {
|
|
14047
|
+
readonly type: "error";
|
|
14048
|
+
readonly name: "Inbox__VersionMismatch";
|
|
14049
|
+
readonly inputs: readonly [{
|
|
14050
|
+
readonly name: "expected";
|
|
14051
|
+
readonly type: "uint256";
|
|
14052
|
+
readonly internalType: "uint256";
|
|
14053
|
+
}, {
|
|
14054
|
+
readonly name: "actual";
|
|
14055
|
+
readonly type: "uint256";
|
|
14056
|
+
readonly internalType: "uint256";
|
|
14057
|
+
}];
|
|
13843
14058
|
}, {
|
|
13844
14059
|
readonly type: "error";
|
|
13845
14060
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -13910,18 +14125,12 @@ export declare const l1Artifacts: {
|
|
|
13910
14125
|
}, {
|
|
13911
14126
|
readonly name: "deadlinePassed";
|
|
13912
14127
|
readonly type: "uint32";
|
|
13913
|
-
readonly internalType: "uint32";
|
|
14128
|
+
readonly internalType: "uint32"; /**
|
|
14129
|
+
* Deploys a new rollup contract, funds and initializes the fee juice portal, and initializes the validator set.
|
|
14130
|
+
*/
|
|
13914
14131
|
}];
|
|
13915
14132
|
}, {
|
|
13916
|
-
readonly type: "error";
|
|
13917
|
-
* Initialize the fee asset handler and make it a minter on the fee asset.
|
|
13918
|
-
* @note This function will only be used for testing purposes.
|
|
13919
|
-
*
|
|
13920
|
-
* @param clients - The L1 clients.
|
|
13921
|
-
* @param deployer - The L1 deployer.
|
|
13922
|
-
* @param feeAssetAddress - The address of the fee asset.
|
|
13923
|
-
* @param logger - The logger.
|
|
13924
|
-
*/
|
|
14133
|
+
readonly type: "error";
|
|
13925
14134
|
readonly name: "Outbox__InvalidChainId";
|
|
13926
14135
|
readonly inputs: readonly [];
|
|
13927
14136
|
}, {
|
|
@@ -13948,18 +14157,6 @@ export declare const l1Artifacts: {
|
|
|
13948
14157
|
readonly type: "address";
|
|
13949
14158
|
readonly internalType: "address";
|
|
13950
14159
|
}];
|
|
13951
|
-
}, {
|
|
13952
|
-
readonly type: "error";
|
|
13953
|
-
readonly name: "Outbox__InvalidVersion";
|
|
13954
|
-
readonly inputs: readonly [{
|
|
13955
|
-
readonly name: "entry";
|
|
13956
|
-
readonly type: "uint256";
|
|
13957
|
-
readonly internalType: "uint256";
|
|
13958
|
-
}, {
|
|
13959
|
-
readonly name: "message";
|
|
13960
|
-
readonly type: "uint256";
|
|
13961
|
-
readonly internalType: "uint256";
|
|
13962
|
-
}];
|
|
13963
14160
|
}, {
|
|
13964
14161
|
readonly type: "error";
|
|
13965
14162
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -13988,6 +14185,18 @@ export declare const l1Artifacts: {
|
|
|
13988
14185
|
readonly type: "error";
|
|
13989
14186
|
readonly name: "Outbox__Unauthorized";
|
|
13990
14187
|
readonly inputs: readonly [];
|
|
14188
|
+
}, {
|
|
14189
|
+
readonly type: "error";
|
|
14190
|
+
readonly name: "Outbox__VersionMismatch";
|
|
14191
|
+
readonly inputs: readonly [{
|
|
14192
|
+
readonly name: "expected";
|
|
14193
|
+
readonly type: "uint256";
|
|
14194
|
+
readonly internalType: "uint256";
|
|
14195
|
+
}, {
|
|
14196
|
+
readonly name: "actual";
|
|
14197
|
+
readonly type: "uint256";
|
|
14198
|
+
readonly internalType: "uint256";
|
|
14199
|
+
}];
|
|
13991
14200
|
}, {
|
|
13992
14201
|
readonly type: "error";
|
|
13993
14202
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -14052,15 +14261,19 @@ export declare const l1Artifacts: {
|
|
|
14052
14261
|
readonly internalType: "Timestamp";
|
|
14053
14262
|
}];
|
|
14054
14263
|
}, {
|
|
14055
|
-
readonly type: "
|
|
14056
|
-
readonly name: "
|
|
14057
|
-
readonly inputs: readonly [
|
|
14058
|
-
|
|
14264
|
+
readonly type: "function";
|
|
14265
|
+
readonly name: "REGISTRY";
|
|
14266
|
+
readonly inputs: readonly [];
|
|
14267
|
+
readonly outputs: readonly [{
|
|
14268
|
+
readonly name: "";
|
|
14059
14269
|
readonly type: "address";
|
|
14060
|
-
readonly indexed: true;
|
|
14061
14270
|
readonly internalType: "contract IRegistry";
|
|
14062
14271
|
}];
|
|
14063
|
-
readonly
|
|
14272
|
+
readonly stateMutability: "view";
|
|
14273
|
+
}, {
|
|
14274
|
+
readonly type: "error";
|
|
14275
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
14276
|
+
readonly inputs: readonly [];
|
|
14064
14277
|
}, {
|
|
14065
14278
|
readonly type: "error";
|
|
14066
14279
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -14073,9 +14286,9 @@ export declare const l1Artifacts: {
|
|
|
14073
14286
|
readonly type: "error";
|
|
14074
14287
|
readonly name: "Registry__RollupNotRegistered";
|
|
14075
14288
|
readonly inputs: readonly [{
|
|
14076
|
-
readonly name: "
|
|
14077
|
-
readonly type: "
|
|
14078
|
-
readonly internalType: "
|
|
14289
|
+
readonly name: "version";
|
|
14290
|
+
readonly type: "uint256";
|
|
14291
|
+
readonly internalType: "uint256";
|
|
14079
14292
|
}];
|
|
14080
14293
|
}, {
|
|
14081
14294
|
readonly type: "error";
|
|
@@ -14681,16 +14894,6 @@ export declare const l1Artifacts: {
|
|
|
14681
14894
|
readonly internalType: "address";
|
|
14682
14895
|
}];
|
|
14683
14896
|
readonly stateMutability: "view";
|
|
14684
|
-
}, {
|
|
14685
|
-
readonly type: "function";
|
|
14686
|
-
readonly name: "registry";
|
|
14687
|
-
readonly inputs: readonly [];
|
|
14688
|
-
readonly outputs: readonly [{
|
|
14689
|
-
readonly name: "";
|
|
14690
|
-
readonly type: "address";
|
|
14691
|
-
readonly internalType: "contract IRegistry";
|
|
14692
|
-
}];
|
|
14693
|
-
readonly stateMutability: "view";
|
|
14694
14897
|
}, {
|
|
14695
14898
|
readonly type: "function";
|
|
14696
14899
|
readonly name: "renounceOwnership";
|
|
@@ -14707,16 +14910,6 @@ export declare const l1Artifacts: {
|
|
|
14707
14910
|
}];
|
|
14708
14911
|
readonly outputs: readonly [];
|
|
14709
14912
|
readonly stateMutability: "nonpayable";
|
|
14710
|
-
}, {
|
|
14711
|
-
readonly type: "function";
|
|
14712
|
-
readonly name: "updateRegistry";
|
|
14713
|
-
readonly inputs: readonly [{
|
|
14714
|
-
readonly name: "_registry";
|
|
14715
|
-
readonly type: "address";
|
|
14716
|
-
readonly internalType: "contract IRegistry";
|
|
14717
|
-
}];
|
|
14718
|
-
readonly outputs: readonly [];
|
|
14719
|
-
readonly stateMutability: "nonpayable";
|
|
14720
14913
|
}];
|
|
14721
14914
|
contractBytecode: `0x${string}`;
|
|
14722
14915
|
};
|
|
@@ -14807,12 +15000,19 @@ export declare const l1Artifacts: {
|
|
|
14807
15000
|
readonly type: "error";
|
|
14808
15001
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
14809
15002
|
readonly inputs: readonly [{
|
|
15003
|
+
/**
|
|
15004
|
+
* Contract artifacts
|
|
15005
|
+
*/
|
|
14810
15006
|
readonly name: "instance";
|
|
14811
|
-
readonly type: "address";
|
|
15007
|
+
readonly type: "address"; /**
|
|
15008
|
+
* The contract abi.
|
|
15009
|
+
*/
|
|
14812
15010
|
readonly internalType: "address";
|
|
14813
15011
|
}];
|
|
14814
15012
|
}, {
|
|
14815
|
-
readonly type: "error";
|
|
15013
|
+
readonly type: "error"; /**
|
|
15014
|
+
* The contract bytecode
|
|
15015
|
+
*/
|
|
14816
15016
|
readonly name: "GovernanceProposer__InsufficientVotes";
|
|
14817
15017
|
readonly inputs: readonly [{
|
|
14818
15018
|
readonly name: "votesCast";
|
|
@@ -14892,7 +15092,7 @@ export declare const l1Artifacts: {
|
|
|
14892
15092
|
readonly internalType: "uint256";
|
|
14893
15093
|
}];
|
|
14894
15094
|
}, {
|
|
14895
|
-
readonly type: "error";
|
|
15095
|
+
readonly type: "error"; /** The hash of the genesis block header. */
|
|
14896
15096
|
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot";
|
|
14897
15097
|
readonly inputs: readonly [{
|
|
14898
15098
|
readonly name: "slot";
|
|
@@ -14911,7 +15111,14 @@ export declare const l1Artifacts: {
|
|
|
14911
15111
|
readonly type: "error";
|
|
14912
15112
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
14913
15113
|
readonly inputs: readonly [{
|
|
14914
|
-
readonly name: "caller";
|
|
15114
|
+
readonly name: "caller"; /**
|
|
15115
|
+
* Creates a wallet and a public viem client for interacting with L1.
|
|
15116
|
+
* @param rpcUrls - List of RPC URLs to connect to L1.
|
|
15117
|
+
* @param mnemonicOrPrivateKeyOrHdAccount - Mnemonic or account for the wallet client.
|
|
15118
|
+
* @param chain - Optional chain spec (defaults to local foundry).
|
|
15119
|
+
* @param addressIndex - Optional index of the address to use from the mnemonic.
|
|
15120
|
+
* @returns - A wallet and a public client.
|
|
15121
|
+
*/
|
|
14915
15122
|
readonly type: "address";
|
|
14916
15123
|
readonly internalType: "address";
|
|
14917
15124
|
}, {
|
|
@@ -15121,17 +15328,29 @@ export declare const l1Artifacts: {
|
|
|
15121
15328
|
readonly inputs: readonly [];
|
|
15122
15329
|
}, {
|
|
15123
15330
|
readonly type: "error";
|
|
15124
|
-
readonly name: "
|
|
15331
|
+
readonly name: "Inbox__VersionMismatch";
|
|
15125
15332
|
readonly inputs: readonly [{
|
|
15126
15333
|
readonly name: "expected";
|
|
15127
|
-
readonly type: "
|
|
15128
|
-
readonly internalType: "
|
|
15334
|
+
readonly type: "uint256";
|
|
15335
|
+
readonly internalType: "uint256";
|
|
15129
15336
|
}, {
|
|
15130
15337
|
readonly name: "actual";
|
|
15131
|
-
readonly type: "
|
|
15132
|
-
readonly internalType: "
|
|
15133
|
-
}
|
|
15134
|
-
|
|
15338
|
+
readonly type: "uint256";
|
|
15339
|
+
readonly internalType: "uint256";
|
|
15340
|
+
}];
|
|
15341
|
+
}, {
|
|
15342
|
+
readonly type: "error";
|
|
15343
|
+
readonly name: "MerkleLib__InvalidRoot";
|
|
15344
|
+
readonly inputs: readonly [{
|
|
15345
|
+
readonly name: "expected";
|
|
15346
|
+
readonly type: "bytes32";
|
|
15347
|
+
readonly internalType: "bytes32";
|
|
15348
|
+
}, {
|
|
15349
|
+
readonly name: "actual";
|
|
15350
|
+
readonly type: "bytes32";
|
|
15351
|
+
readonly internalType: "bytes32";
|
|
15352
|
+
}, {
|
|
15353
|
+
readonly name: "leaf";
|
|
15135
15354
|
readonly type: "bytes32";
|
|
15136
15355
|
readonly internalType: "bytes32";
|
|
15137
15356
|
}, {
|
|
@@ -15219,18 +15438,6 @@ export declare const l1Artifacts: {
|
|
|
15219
15438
|
readonly type: "address";
|
|
15220
15439
|
readonly internalType: "address";
|
|
15221
15440
|
}];
|
|
15222
|
-
}, {
|
|
15223
|
-
readonly type: "error";
|
|
15224
|
-
readonly name: "Outbox__InvalidVersion";
|
|
15225
|
-
readonly inputs: readonly [{
|
|
15226
|
-
readonly name: "entry";
|
|
15227
|
-
readonly type: "uint256";
|
|
15228
|
-
readonly internalType: "uint256";
|
|
15229
|
-
}, {
|
|
15230
|
-
readonly name: "message";
|
|
15231
|
-
readonly type: "uint256";
|
|
15232
|
-
readonly internalType: "uint256";
|
|
15233
|
-
}];
|
|
15234
15441
|
}, {
|
|
15235
15442
|
readonly type: "error";
|
|
15236
15443
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -15259,6 +15466,18 @@ export declare const l1Artifacts: {
|
|
|
15259
15466
|
readonly type: "error";
|
|
15260
15467
|
readonly name: "Outbox__Unauthorized";
|
|
15261
15468
|
readonly inputs: readonly [];
|
|
15469
|
+
}, {
|
|
15470
|
+
readonly type: "error";
|
|
15471
|
+
readonly name: "Outbox__VersionMismatch";
|
|
15472
|
+
readonly inputs: readonly [{
|
|
15473
|
+
readonly name: "expected";
|
|
15474
|
+
readonly type: "uint256";
|
|
15475
|
+
readonly internalType: "uint256";
|
|
15476
|
+
}, {
|
|
15477
|
+
readonly name: "actual";
|
|
15478
|
+
readonly type: "uint256";
|
|
15479
|
+
readonly internalType: "uint256";
|
|
15480
|
+
}];
|
|
15262
15481
|
}, {
|
|
15263
15482
|
readonly type: "error";
|
|
15264
15483
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -15332,6 +15551,10 @@ export declare const l1Artifacts: {
|
|
|
15332
15551
|
readonly internalType: "uint256";
|
|
15333
15552
|
}];
|
|
15334
15553
|
readonly stateMutability: "view";
|
|
15554
|
+
}, {
|
|
15555
|
+
readonly type: "error";
|
|
15556
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
15557
|
+
readonly inputs: readonly [];
|
|
15335
15558
|
}, {
|
|
15336
15559
|
readonly type: "error";
|
|
15337
15560
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -15344,9 +15567,9 @@ export declare const l1Artifacts: {
|
|
|
15344
15567
|
readonly type: "error";
|
|
15345
15568
|
readonly name: "Registry__RollupNotRegistered";
|
|
15346
15569
|
readonly inputs: readonly [{
|
|
15347
|
-
readonly name: "
|
|
15348
|
-
readonly type: "
|
|
15349
|
-
readonly internalType: "
|
|
15570
|
+
readonly name: "version";
|
|
15571
|
+
readonly type: "uint256";
|
|
15572
|
+
readonly internalType: "uint256";
|
|
15350
15573
|
}];
|
|
15351
15574
|
}, {
|
|
15352
15575
|
readonly type: "error";
|
|
@@ -15686,16 +15909,6 @@ export declare const l1Artifacts: {
|
|
|
15686
15909
|
}];
|
|
15687
15910
|
}, {
|
|
15688
15911
|
readonly type: "error";
|
|
15689
|
-
/**
|
|
15690
|
-
* Helper function to deploy ETH contracts.
|
|
15691
|
-
* @param walletClient - A viem WalletClient.
|
|
15692
|
-
* @param publicClient - A viem PublicClient.
|
|
15693
|
-
* @param abi - The ETH contract's ABI (as abitype's Abi).
|
|
15694
|
-
* @param bytecode - The ETH contract's bytecode.
|
|
15695
|
-
* @param args - Constructor arguments for the contract.
|
|
15696
|
-
* @param maybeSalt - Optional salt for CREATE2 deployment (does not wait for deployment tx to be mined if set, does not send tx if contract already exists).
|
|
15697
|
-
* @returns The ETH address the contract was deployed to.
|
|
15698
|
-
*/
|
|
15699
15912
|
readonly name: "SampleLib__IndexOutOfBounds";
|
|
15700
15913
|
readonly inputs: readonly [{
|
|
15701
15914
|
readonly name: "requested";
|
|
@@ -16039,7 +16252,9 @@ export declare const l1Artifacts: {
|
|
|
16039
16252
|
readonly internalType: "contract IPayload";
|
|
16040
16253
|
}];
|
|
16041
16254
|
}, {
|
|
16042
|
-
readonly type: "error";
|
|
16255
|
+
readonly type: "error"; /**
|
|
16256
|
+
* The currently deployed l1 contract addresses
|
|
16257
|
+
*/
|
|
16043
16258
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
16044
16259
|
readonly inputs: readonly [{
|
|
16045
16260
|
readonly name: "instance";
|
|
@@ -16150,7 +16365,7 @@ export declare const l1Artifacts: {
|
|
|
16150
16365
|
readonly type: "address";
|
|
16151
16366
|
readonly internalType: "address";
|
|
16152
16367
|
}, {
|
|
16153
|
-
readonly name: "governanceProposer";
|
|
16368
|
+
readonly name: "governanceProposer"; /** The initial balance of the fee juice portal. This is the amount of fee juice that is prefunded to accounts */
|
|
16154
16369
|
readonly type: "address";
|
|
16155
16370
|
readonly internalType: "address";
|
|
16156
16371
|
}];
|
|
@@ -16333,18 +16548,6 @@ export declare const l1Artifacts: {
|
|
|
16333
16548
|
}, {
|
|
16334
16549
|
readonly type: "error";
|
|
16335
16550
|
readonly name: "Inbox__ContentTooLarge";
|
|
16336
|
-
/**
|
|
16337
|
-
* Initialize the validator set for the rollup using a cheat function.
|
|
16338
|
-
* @note This function will only be used when the chain is local anvil node soon (#12050)
|
|
16339
|
-
*
|
|
16340
|
-
* @param clients - The L1 clients.
|
|
16341
|
-
* @param deployer - The L1 deployer.
|
|
16342
|
-
* @param rollupAddress - The address of the rollup.
|
|
16343
|
-
* @param stakingAssetAddress - The address of the staking asset.
|
|
16344
|
-
* @param validators - The validators to initialize.
|
|
16345
|
-
* @param acceleratedTestDeployments - Whether to use accelerated test deployments.
|
|
16346
|
-
* @param logger - The logger.
|
|
16347
|
-
*/
|
|
16348
16551
|
readonly inputs: readonly [{
|
|
16349
16552
|
readonly name: "content";
|
|
16350
16553
|
readonly type: "bytes32";
|
|
@@ -16366,6 +16569,18 @@ export declare const l1Artifacts: {
|
|
|
16366
16569
|
readonly type: "error";
|
|
16367
16570
|
readonly name: "Inbox__Unauthorized";
|
|
16368
16571
|
readonly inputs: readonly [];
|
|
16572
|
+
}, {
|
|
16573
|
+
readonly type: "error";
|
|
16574
|
+
readonly name: "Inbox__VersionMismatch";
|
|
16575
|
+
readonly inputs: readonly [{
|
|
16576
|
+
readonly name: "expected";
|
|
16577
|
+
readonly type: "uint256";
|
|
16578
|
+
readonly internalType: "uint256";
|
|
16579
|
+
}, {
|
|
16580
|
+
readonly name: "actual";
|
|
16581
|
+
readonly type: "uint256";
|
|
16582
|
+
readonly internalType: "uint256";
|
|
16583
|
+
}];
|
|
16369
16584
|
}, {
|
|
16370
16585
|
readonly type: "function";
|
|
16371
16586
|
readonly name: "LIFETIME_IN_ROUNDS";
|
|
@@ -16496,18 +16711,6 @@ export declare const l1Artifacts: {
|
|
|
16496
16711
|
readonly type: "address";
|
|
16497
16712
|
readonly internalType: "address";
|
|
16498
16713
|
}];
|
|
16499
|
-
}, {
|
|
16500
|
-
readonly type: "error";
|
|
16501
|
-
readonly name: "Outbox__InvalidVersion";
|
|
16502
|
-
readonly inputs: readonly [{
|
|
16503
|
-
readonly name: "entry";
|
|
16504
|
-
readonly type: "uint256";
|
|
16505
|
-
readonly internalType: "uint256";
|
|
16506
|
-
}, {
|
|
16507
|
-
readonly name: "message";
|
|
16508
|
-
readonly type: "uint256";
|
|
16509
|
-
readonly internalType: "uint256";
|
|
16510
|
-
}];
|
|
16511
16714
|
}, {
|
|
16512
16715
|
readonly type: "error";
|
|
16513
16716
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -16536,6 +16739,18 @@ export declare const l1Artifacts: {
|
|
|
16536
16739
|
readonly type: "error";
|
|
16537
16740
|
readonly name: "Outbox__Unauthorized";
|
|
16538
16741
|
readonly inputs: readonly [];
|
|
16742
|
+
}, {
|
|
16743
|
+
readonly type: "error";
|
|
16744
|
+
readonly name: "Outbox__VersionMismatch";
|
|
16745
|
+
readonly inputs: readonly [{
|
|
16746
|
+
readonly name: "expected";
|
|
16747
|
+
readonly type: "uint256";
|
|
16748
|
+
readonly internalType: "uint256";
|
|
16749
|
+
}, {
|
|
16750
|
+
readonly name: "actual";
|
|
16751
|
+
readonly type: "uint256";
|
|
16752
|
+
readonly internalType: "uint256";
|
|
16753
|
+
}];
|
|
16539
16754
|
}, {
|
|
16540
16755
|
readonly type: "error";
|
|
16541
16756
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -16593,6 +16808,10 @@ export declare const l1Artifacts: {
|
|
|
16593
16808
|
readonly internalType: "contract IRegistry";
|
|
16594
16809
|
}];
|
|
16595
16810
|
readonly stateMutability: "view";
|
|
16811
|
+
}, {
|
|
16812
|
+
readonly type: "error";
|
|
16813
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
16814
|
+
readonly inputs: readonly [];
|
|
16596
16815
|
}, {
|
|
16597
16816
|
readonly type: "error";
|
|
16598
16817
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -16605,9 +16824,9 @@ export declare const l1Artifacts: {
|
|
|
16605
16824
|
readonly type: "error";
|
|
16606
16825
|
readonly name: "Registry__RollupNotRegistered";
|
|
16607
16826
|
readonly inputs: readonly [{
|
|
16608
|
-
readonly name: "
|
|
16609
|
-
readonly type: "
|
|
16610
|
-
readonly internalType: "
|
|
16827
|
+
readonly name: "version";
|
|
16828
|
+
readonly type: "uint256";
|
|
16829
|
+
readonly internalType: "uint256";
|
|
16611
16830
|
}];
|
|
16612
16831
|
}, {
|
|
16613
16832
|
readonly type: "error";
|
|
@@ -16942,16 +17161,7 @@ export declare const l1Artifacts: {
|
|
|
16942
17161
|
readonly name: "Rollup__UnavailableTxs";
|
|
16943
17162
|
readonly inputs: readonly [{
|
|
16944
17163
|
readonly name: "txsHash";
|
|
16945
|
-
readonly type: "bytes32";
|
|
16946
|
-
* Helper function to deploy ETH contracts.
|
|
16947
|
-
* @param walletClient - A viem WalletClient.
|
|
16948
|
-
* @param publicClient - A viem PublicClient.
|
|
16949
|
-
* @param abi - The ETH contract's ABI (as abitype's Abi).
|
|
16950
|
-
* @param bytecode - The ETH contract's bytecode.
|
|
16951
|
-
* @param args - Constructor arguments for the contract.
|
|
16952
|
-
* @param maybeSalt - Optional salt for CREATE2 deployment (does not wait for deployment tx to be mined if set, does not send tx if contract already exists).
|
|
16953
|
-
* @returns The ETH address the contract was deployed to.
|
|
16954
|
-
*/
|
|
17164
|
+
readonly type: "bytes32";
|
|
16955
17165
|
readonly internalType: "bytes32";
|
|
16956
17166
|
}];
|
|
16957
17167
|
}, {
|
|
@@ -17369,6 +17579,9 @@ export declare const l1Artifacts: {
|
|
|
17369
17579
|
readonly internalType: "address";
|
|
17370
17580
|
}, {
|
|
17371
17581
|
readonly name: "actual";
|
|
17582
|
+
/**
|
|
17583
|
+
* Public Client Type.
|
|
17584
|
+
*/
|
|
17372
17585
|
readonly type: "address";
|
|
17373
17586
|
readonly internalType: "address";
|
|
17374
17587
|
}];
|
|
@@ -17730,6 +17943,18 @@ export declare const l1Artifacts: {
|
|
|
17730
17943
|
readonly type: "error";
|
|
17731
17944
|
readonly name: "Inbox__Unauthorized";
|
|
17732
17945
|
readonly inputs: readonly [];
|
|
17946
|
+
}, {
|
|
17947
|
+
readonly type: "error";
|
|
17948
|
+
readonly name: "Inbox__VersionMismatch";
|
|
17949
|
+
readonly inputs: readonly [{
|
|
17950
|
+
readonly name: "expected";
|
|
17951
|
+
readonly type: "uint256";
|
|
17952
|
+
readonly internalType: "uint256";
|
|
17953
|
+
}, {
|
|
17954
|
+
readonly name: "actual";
|
|
17955
|
+
readonly type: "uint256";
|
|
17956
|
+
readonly internalType: "uint256";
|
|
17957
|
+
}];
|
|
17733
17958
|
}, {
|
|
17734
17959
|
readonly type: "error";
|
|
17735
17960
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -17830,18 +18055,6 @@ export declare const l1Artifacts: {
|
|
|
17830
18055
|
readonly type: "address";
|
|
17831
18056
|
readonly internalType: "address";
|
|
17832
18057
|
}];
|
|
17833
|
-
}, {
|
|
17834
|
-
readonly type: "error";
|
|
17835
|
-
readonly name: "Outbox__InvalidVersion";
|
|
17836
|
-
readonly inputs: readonly [{
|
|
17837
|
-
readonly name: "entry";
|
|
17838
|
-
readonly type: "uint256";
|
|
17839
|
-
readonly internalType: "uint256";
|
|
17840
|
-
}, {
|
|
17841
|
-
readonly name: "message";
|
|
17842
|
-
readonly type: "uint256";
|
|
17843
|
-
readonly internalType: "uint256";
|
|
17844
|
-
}];
|
|
17845
18058
|
}, {
|
|
17846
18059
|
readonly type: "error";
|
|
17847
18060
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -17870,6 +18083,18 @@ export declare const l1Artifacts: {
|
|
|
17870
18083
|
readonly type: "error";
|
|
17871
18084
|
readonly name: "Outbox__Unauthorized";
|
|
17872
18085
|
readonly inputs: readonly [];
|
|
18086
|
+
}, {
|
|
18087
|
+
readonly type: "error";
|
|
18088
|
+
readonly name: "Outbox__VersionMismatch";
|
|
18089
|
+
readonly inputs: readonly [{
|
|
18090
|
+
readonly name: "expected";
|
|
18091
|
+
readonly type: "uint256";
|
|
18092
|
+
readonly internalType: "uint256";
|
|
18093
|
+
}, {
|
|
18094
|
+
readonly name: "actual";
|
|
18095
|
+
readonly type: "uint256";
|
|
18096
|
+
readonly internalType: "uint256";
|
|
18097
|
+
}];
|
|
17873
18098
|
}, {
|
|
17874
18099
|
readonly type: "error";
|
|
17875
18100
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -17927,6 +18152,10 @@ export declare const l1Artifacts: {
|
|
|
17927
18152
|
readonly internalType: "address";
|
|
17928
18153
|
}];
|
|
17929
18154
|
readonly anonymous: false;
|
|
18155
|
+
}, {
|
|
18156
|
+
readonly type: "error";
|
|
18157
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
18158
|
+
readonly inputs: readonly [];
|
|
17930
18159
|
}, {
|
|
17931
18160
|
readonly type: "error";
|
|
17932
18161
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -17939,9 +18168,9 @@ export declare const l1Artifacts: {
|
|
|
17939
18168
|
readonly type: "error";
|
|
17940
18169
|
readonly name: "Registry__RollupNotRegistered";
|
|
17941
18170
|
readonly inputs: readonly [{
|
|
17942
|
-
readonly name: "
|
|
17943
|
-
readonly type: "
|
|
17944
|
-
readonly internalType: "
|
|
18171
|
+
readonly name: "version";
|
|
18172
|
+
readonly type: "uint256";
|
|
18173
|
+
readonly internalType: "uint256";
|
|
17945
18174
|
}];
|
|
17946
18175
|
}, {
|
|
17947
18176
|
readonly type: "error";
|
|
@@ -19080,9 +19309,7 @@ export declare const l1Artifacts: {
|
|
|
19080
19309
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
19081
19310
|
readonly inputs: readonly [{
|
|
19082
19311
|
readonly name: "instance";
|
|
19083
|
-
readonly type: "address";
|
|
19084
|
-
* The currently deployed l1 contract addresses
|
|
19085
|
-
*/
|
|
19312
|
+
readonly type: "address";
|
|
19086
19313
|
readonly internalType: "address";
|
|
19087
19314
|
}];
|
|
19088
19315
|
}, {
|
|
@@ -19098,9 +19325,7 @@ export declare const l1Artifacts: {
|
|
|
19098
19325
|
readonly internalType: "uint256";
|
|
19099
19326
|
}];
|
|
19100
19327
|
}, {
|
|
19101
|
-
readonly type: "error";
|
|
19102
|
-
* The contract abi.
|
|
19103
|
-
*/
|
|
19328
|
+
readonly type: "error";
|
|
19104
19329
|
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
19105
19330
|
readonly inputs: readonly [{
|
|
19106
19331
|
readonly name: "n";
|
|
@@ -19182,7 +19407,7 @@ export declare const l1Artifacts: {
|
|
|
19182
19407
|
readonly name: "target";
|
|
19183
19408
|
readonly type: "address";
|
|
19184
19409
|
readonly internalType: "address";
|
|
19185
|
-
}];
|
|
19410
|
+
}]; /** The genesis root of the archive tree. */
|
|
19186
19411
|
}, {
|
|
19187
19412
|
readonly type: "error";
|
|
19188
19413
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
@@ -19395,6 +19620,18 @@ export declare const l1Artifacts: {
|
|
|
19395
19620
|
readonly type: "error";
|
|
19396
19621
|
readonly name: "Inbox__Unauthorized";
|
|
19397
19622
|
readonly inputs: readonly [];
|
|
19623
|
+
}, {
|
|
19624
|
+
readonly type: "error";
|
|
19625
|
+
readonly name: "Inbox__VersionMismatch";
|
|
19626
|
+
readonly inputs: readonly [{
|
|
19627
|
+
readonly name: "expected";
|
|
19628
|
+
readonly type: "uint256";
|
|
19629
|
+
readonly internalType: "uint256";
|
|
19630
|
+
}, {
|
|
19631
|
+
readonly name: "actual";
|
|
19632
|
+
readonly type: "uint256";
|
|
19633
|
+
readonly internalType: "uint256";
|
|
19634
|
+
}];
|
|
19398
19635
|
}, {
|
|
19399
19636
|
readonly type: "error";
|
|
19400
19637
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -19495,18 +19732,6 @@ export declare const l1Artifacts: {
|
|
|
19495
19732
|
readonly type: "address";
|
|
19496
19733
|
readonly internalType: "address";
|
|
19497
19734
|
}];
|
|
19498
|
-
}, {
|
|
19499
|
-
readonly type: "error";
|
|
19500
|
-
readonly name: "Outbox__InvalidVersion";
|
|
19501
|
-
readonly inputs: readonly [{
|
|
19502
|
-
readonly name: "entry";
|
|
19503
|
-
readonly type: "uint256";
|
|
19504
|
-
readonly internalType: "uint256";
|
|
19505
|
-
}, {
|
|
19506
|
-
readonly name: "message";
|
|
19507
|
-
readonly type: "uint256";
|
|
19508
|
-
readonly internalType: "uint256";
|
|
19509
|
-
}];
|
|
19510
19735
|
}, {
|
|
19511
19736
|
readonly type: "error";
|
|
19512
19737
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -19535,6 +19760,18 @@ export declare const l1Artifacts: {
|
|
|
19535
19760
|
readonly type: "error";
|
|
19536
19761
|
readonly name: "Outbox__Unauthorized";
|
|
19537
19762
|
readonly inputs: readonly [];
|
|
19763
|
+
}, {
|
|
19764
|
+
readonly type: "error";
|
|
19765
|
+
readonly name: "Outbox__VersionMismatch";
|
|
19766
|
+
readonly inputs: readonly [{
|
|
19767
|
+
readonly name: "expected";
|
|
19768
|
+
readonly type: "uint256";
|
|
19769
|
+
readonly internalType: "uint256";
|
|
19770
|
+
}, {
|
|
19771
|
+
readonly name: "actual";
|
|
19772
|
+
readonly type: "uint256";
|
|
19773
|
+
readonly internalType: "uint256";
|
|
19774
|
+
}];
|
|
19538
19775
|
}, {
|
|
19539
19776
|
readonly type: "error";
|
|
19540
19777
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -19567,6 +19804,10 @@ export declare const l1Artifacts: {
|
|
|
19567
19804
|
readonly type: "uint256";
|
|
19568
19805
|
readonly internalType: "Timestamp";
|
|
19569
19806
|
}];
|
|
19807
|
+
}, {
|
|
19808
|
+
readonly type: "error";
|
|
19809
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
19810
|
+
readonly inputs: readonly [];
|
|
19570
19811
|
}, {
|
|
19571
19812
|
readonly type: "error";
|
|
19572
19813
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -19579,9 +19820,9 @@ export declare const l1Artifacts: {
|
|
|
19579
19820
|
readonly type: "error";
|
|
19580
19821
|
readonly name: "Registry__RollupNotRegistered";
|
|
19581
19822
|
readonly inputs: readonly [{
|
|
19582
|
-
readonly name: "
|
|
19583
|
-
readonly type: "
|
|
19584
|
-
readonly internalType: "
|
|
19823
|
+
readonly name: "version";
|
|
19824
|
+
readonly type: "uint256";
|
|
19825
|
+
readonly internalType: "uint256";
|
|
19585
19826
|
}];
|
|
19586
19827
|
}, {
|
|
19587
19828
|
readonly type: "error";
|
|
@@ -20283,9 +20524,6 @@ export declare const l1Artifacts: {
|
|
|
20283
20524
|
readonly inputs: readonly [{
|
|
20284
20525
|
readonly name: "votesCast";
|
|
20285
20526
|
readonly type: "uint256";
|
|
20286
|
-
/**
|
|
20287
|
-
* Contract artifacts
|
|
20288
|
-
*/
|
|
20289
20527
|
readonly internalType: "uint256";
|
|
20290
20528
|
}, {
|
|
20291
20529
|
readonly name: "votesNeeded";
|
|
@@ -20377,6 +20615,7 @@ export declare const l1Artifacts: {
|
|
|
20377
20615
|
readonly internalType: "address";
|
|
20378
20616
|
}];
|
|
20379
20617
|
}, {
|
|
20618
|
+
/** The salt for CREATE2 deployment. */
|
|
20380
20619
|
readonly type: "error";
|
|
20381
20620
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
20382
20621
|
readonly inputs: readonly [{
|
|
@@ -20387,7 +20626,7 @@ export declare const l1Artifacts: {
|
|
|
20387
20626
|
readonly name: "governanceProposer";
|
|
20388
20627
|
readonly type: "address";
|
|
20389
20628
|
readonly internalType: "address";
|
|
20390
|
-
}];
|
|
20629
|
+
}]; /** The initial balance of the fee juice portal. This is the amount of fee juice that is prefunded to accounts */
|
|
20391
20630
|
}, {
|
|
20392
20631
|
readonly type: "error";
|
|
20393
20632
|
readonly name: "Governance__CallerNotSelf";
|
|
@@ -20588,6 +20827,18 @@ export declare const l1Artifacts: {
|
|
|
20588
20827
|
readonly type: "error";
|
|
20589
20828
|
readonly name: "Inbox__Unauthorized";
|
|
20590
20829
|
readonly inputs: readonly [];
|
|
20830
|
+
}, {
|
|
20831
|
+
readonly type: "error";
|
|
20832
|
+
readonly name: "Inbox__VersionMismatch";
|
|
20833
|
+
readonly inputs: readonly [{
|
|
20834
|
+
readonly name: "expected";
|
|
20835
|
+
readonly type: "uint256";
|
|
20836
|
+
readonly internalType: "uint256";
|
|
20837
|
+
}, {
|
|
20838
|
+
readonly name: "actual";
|
|
20839
|
+
readonly type: "uint256";
|
|
20840
|
+
readonly internalType: "uint256";
|
|
20841
|
+
}];
|
|
20591
20842
|
}, {
|
|
20592
20843
|
readonly type: "error";
|
|
20593
20844
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -20688,18 +20939,6 @@ export declare const l1Artifacts: {
|
|
|
20688
20939
|
readonly type: "address";
|
|
20689
20940
|
readonly internalType: "address";
|
|
20690
20941
|
}];
|
|
20691
|
-
}, {
|
|
20692
|
-
readonly type: "error";
|
|
20693
|
-
readonly name: "Outbox__InvalidVersion";
|
|
20694
|
-
readonly inputs: readonly [{
|
|
20695
|
-
readonly name: "entry";
|
|
20696
|
-
readonly type: "uint256";
|
|
20697
|
-
readonly internalType: "uint256";
|
|
20698
|
-
}, {
|
|
20699
|
-
readonly name: "message";
|
|
20700
|
-
readonly type: "uint256";
|
|
20701
|
-
readonly internalType: "uint256";
|
|
20702
|
-
}];
|
|
20703
20942
|
}, {
|
|
20704
20943
|
readonly type: "error";
|
|
20705
20944
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -20728,6 +20967,18 @@ export declare const l1Artifacts: {
|
|
|
20728
20967
|
readonly type: "error";
|
|
20729
20968
|
readonly name: "Outbox__Unauthorized";
|
|
20730
20969
|
readonly inputs: readonly [];
|
|
20970
|
+
}, {
|
|
20971
|
+
readonly type: "error";
|
|
20972
|
+
readonly name: "Outbox__VersionMismatch";
|
|
20973
|
+
readonly inputs: readonly [{
|
|
20974
|
+
readonly name: "expected";
|
|
20975
|
+
readonly type: "uint256";
|
|
20976
|
+
readonly internalType: "uint256";
|
|
20977
|
+
}, {
|
|
20978
|
+
readonly name: "actual";
|
|
20979
|
+
readonly type: "uint256";
|
|
20980
|
+
readonly internalType: "uint256";
|
|
20981
|
+
}];
|
|
20731
20982
|
}, {
|
|
20732
20983
|
readonly type: "error";
|
|
20733
20984
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -20780,6 +21031,10 @@ export declare const l1Artifacts: {
|
|
|
20780
21031
|
readonly internalType: "address";
|
|
20781
21032
|
}];
|
|
20782
21033
|
readonly stateMutability: "view";
|
|
21034
|
+
}, {
|
|
21035
|
+
readonly type: "error";
|
|
21036
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
21037
|
+
readonly inputs: readonly [];
|
|
20783
21038
|
}, {
|
|
20784
21039
|
readonly type: "error";
|
|
20785
21040
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -20792,9 +21047,9 @@ export declare const l1Artifacts: {
|
|
|
20792
21047
|
readonly type: "error";
|
|
20793
21048
|
readonly name: "Registry__RollupNotRegistered";
|
|
20794
21049
|
readonly inputs: readonly [{
|
|
20795
|
-
readonly name: "
|
|
20796
|
-
readonly type: "
|
|
20797
|
-
readonly internalType: "
|
|
21050
|
+
readonly name: "version";
|
|
21051
|
+
readonly type: "uint256";
|
|
21052
|
+
readonly internalType: "uint256";
|
|
20798
21053
|
}];
|
|
20799
21054
|
}, {
|
|
20800
21055
|
readonly type: "error";
|
|
@@ -21454,9 +21709,7 @@ export declare const l1Artifacts: {
|
|
|
21454
21709
|
readonly internalType: "address";
|
|
21455
21710
|
}];
|
|
21456
21711
|
}, {
|
|
21457
|
-
readonly type: "error";
|
|
21458
|
-
* The contract libraries
|
|
21459
|
-
*/
|
|
21712
|
+
readonly type: "error";
|
|
21460
21713
|
readonly name: "GovernanceProposer__InsufficientVotes";
|
|
21461
21714
|
readonly inputs: readonly [{
|
|
21462
21715
|
readonly name: "votesCast";
|
|
@@ -21537,7 +21790,7 @@ export declare const l1Artifacts: {
|
|
|
21537
21790
|
}];
|
|
21538
21791
|
}, {
|
|
21539
21792
|
readonly type: "error";
|
|
21540
|
-
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot";
|
|
21793
|
+
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot"; /** The salt for CREATE2 deployment. */
|
|
21541
21794
|
readonly inputs: readonly [{
|
|
21542
21795
|
readonly name: "slot";
|
|
21543
21796
|
readonly type: "uint256";
|
|
@@ -21605,14 +21858,6 @@ export declare const l1Artifacts: {
|
|
|
21605
21858
|
readonly inputs: readonly [];
|
|
21606
21859
|
}, {
|
|
21607
21860
|
readonly type: "error";
|
|
21608
|
-
/**
|
|
21609
|
-
* Deploys the rollup, slash factory, and the payload which can be used to make the rollup the canonical version.
|
|
21610
|
-
* @param clients - The L1 clients.
|
|
21611
|
-
* @param args - The deployment arguments.
|
|
21612
|
-
* @param registryAddress - The address of the registry.
|
|
21613
|
-
* @param logger - The logger.
|
|
21614
|
-
* @param txUtilsConfig - The L1 tx utils config.
|
|
21615
|
-
*/
|
|
21616
21861
|
readonly name: "Governance__ConfigurationLib__TimeTooBig";
|
|
21617
21862
|
readonly inputs: readonly [{
|
|
21618
21863
|
readonly name: "name";
|
|
@@ -21773,12 +22018,1357 @@ export declare const l1Artifacts: {
|
|
|
21773
22018
|
readonly inputs: readonly [];
|
|
21774
22019
|
}, {
|
|
21775
22020
|
readonly type: "error";
|
|
21776
|
-
readonly name: "
|
|
22021
|
+
readonly name: "Inbox__VersionMismatch";
|
|
21777
22022
|
readonly inputs: readonly [{
|
|
21778
22023
|
readonly name: "expected";
|
|
21779
|
-
readonly type: "
|
|
21780
|
-
readonly internalType: "
|
|
21781
|
-
}, {
|
|
22024
|
+
readonly type: "uint256";
|
|
22025
|
+
readonly internalType: "uint256";
|
|
22026
|
+
}, {
|
|
22027
|
+
readonly name: "actual";
|
|
22028
|
+
readonly type: "uint256";
|
|
22029
|
+
readonly internalType: "uint256";
|
|
22030
|
+
}];
|
|
22031
|
+
}, {
|
|
22032
|
+
readonly type: "error";
|
|
22033
|
+
readonly name: "MerkleLib__InvalidRoot";
|
|
22034
|
+
readonly inputs: readonly [{
|
|
22035
|
+
readonly name: "expected";
|
|
22036
|
+
readonly type: "bytes32";
|
|
22037
|
+
readonly internalType: "bytes32";
|
|
22038
|
+
}, {
|
|
22039
|
+
readonly name: "actual";
|
|
22040
|
+
readonly type: "bytes32";
|
|
22041
|
+
readonly internalType: "bytes32";
|
|
22042
|
+
}, {
|
|
22043
|
+
readonly name: "leaf";
|
|
22044
|
+
readonly type: "bytes32";
|
|
22045
|
+
readonly internalType: "bytes32";
|
|
22046
|
+
}, {
|
|
22047
|
+
readonly name: "leafIndex";
|
|
22048
|
+
readonly type: "uint256";
|
|
22049
|
+
readonly internalType: "uint256";
|
|
22050
|
+
}];
|
|
22051
|
+
}, {
|
|
22052
|
+
readonly type: "event";
|
|
22053
|
+
readonly name: "MintAmountSet";
|
|
22054
|
+
readonly inputs: readonly [{
|
|
22055
|
+
readonly name: "amount";
|
|
22056
|
+
readonly type: "uint256";
|
|
22057
|
+
readonly indexed: false;
|
|
22058
|
+
readonly internalType: "uint256";
|
|
22059
|
+
}];
|
|
22060
|
+
readonly anonymous: false;
|
|
22061
|
+
}, {
|
|
22062
|
+
readonly type: "error";
|
|
22063
|
+
readonly name: "Outbox__AlreadyNullified";
|
|
22064
|
+
readonly inputs: readonly [{
|
|
22065
|
+
readonly name: "l2BlockNumber";
|
|
22066
|
+
readonly type: "uint256";
|
|
22067
|
+
readonly internalType: "uint256";
|
|
22068
|
+
}, {
|
|
22069
|
+
readonly name: "leafIndex";
|
|
22070
|
+
readonly type: "uint256";
|
|
22071
|
+
readonly internalType: "uint256";
|
|
22072
|
+
}];
|
|
22073
|
+
}, {
|
|
22074
|
+
readonly type: "error";
|
|
22075
|
+
readonly name: "Outbox__BlockNotProven";
|
|
22076
|
+
readonly inputs: readonly [{
|
|
22077
|
+
readonly name: "l2BlockNumber";
|
|
22078
|
+
readonly type: "uint256";
|
|
22079
|
+
readonly internalType: "uint256";
|
|
22080
|
+
}];
|
|
22081
|
+
}, {
|
|
22082
|
+
readonly type: "error";
|
|
22083
|
+
readonly name: "Outbox__IncompatibleEntryArguments";
|
|
22084
|
+
readonly inputs: readonly [{
|
|
22085
|
+
readonly name: "messageHash";
|
|
22086
|
+
readonly type: "bytes32";
|
|
22087
|
+
readonly internalType: "bytes32";
|
|
22088
|
+
}, {
|
|
22089
|
+
readonly name: "storedFee";
|
|
22090
|
+
readonly type: "uint64";
|
|
22091
|
+
readonly internalType: "uint64";
|
|
22092
|
+
}, {
|
|
22093
|
+
readonly name: "feePassed";
|
|
22094
|
+
readonly type: "uint64";
|
|
22095
|
+
readonly internalType: "uint64";
|
|
22096
|
+
}, {
|
|
22097
|
+
readonly name: "storedVersion";
|
|
22098
|
+
readonly type: "uint32";
|
|
22099
|
+
readonly internalType: "uint32";
|
|
22100
|
+
}, {
|
|
22101
|
+
readonly name: "versionPassed";
|
|
22102
|
+
readonly type: "uint32";
|
|
22103
|
+
readonly internalType: "uint32";
|
|
22104
|
+
}, {
|
|
22105
|
+
readonly name: "storedDeadline";
|
|
22106
|
+
readonly type: "uint32";
|
|
22107
|
+
readonly internalType: "uint32";
|
|
22108
|
+
}, {
|
|
22109
|
+
readonly name: "deadlinePassed";
|
|
22110
|
+
readonly type: "uint32";
|
|
22111
|
+
readonly internalType: "uint32";
|
|
22112
|
+
}];
|
|
22113
|
+
}, {
|
|
22114
|
+
readonly type: "error";
|
|
22115
|
+
readonly name: "Outbox__InvalidChainId";
|
|
22116
|
+
readonly inputs: readonly [];
|
|
22117
|
+
}, {
|
|
22118
|
+
readonly type: "error";
|
|
22119
|
+
readonly name: "Outbox__InvalidPathLength";
|
|
22120
|
+
readonly inputs: readonly [{
|
|
22121
|
+
readonly name: "expected";
|
|
22122
|
+
readonly type: "uint256";
|
|
22123
|
+
readonly internalType: "uint256";
|
|
22124
|
+
}, {
|
|
22125
|
+
readonly name: "actual";
|
|
22126
|
+
readonly type: "uint256";
|
|
22127
|
+
readonly internalType: "uint256";
|
|
22128
|
+
}];
|
|
22129
|
+
}, {
|
|
22130
|
+
readonly type: "error";
|
|
22131
|
+
readonly name: "Outbox__InvalidRecipient";
|
|
22132
|
+
readonly inputs: readonly [{
|
|
22133
|
+
readonly name: "expected";
|
|
22134
|
+
readonly type: "address";
|
|
22135
|
+
readonly internalType: "address";
|
|
22136
|
+
}, {
|
|
22137
|
+
readonly name: "actual";
|
|
22138
|
+
readonly type: "address";
|
|
22139
|
+
readonly internalType: "address";
|
|
22140
|
+
}];
|
|
22141
|
+
}, {
|
|
22142
|
+
readonly type: "error";
|
|
22143
|
+
readonly name: "Outbox__NothingToConsume";
|
|
22144
|
+
readonly inputs: readonly [{
|
|
22145
|
+
readonly name: "messageHash";
|
|
22146
|
+
readonly type: "bytes32";
|
|
22147
|
+
readonly internalType: "bytes32";
|
|
22148
|
+
}];
|
|
22149
|
+
}, {
|
|
22150
|
+
readonly type: "error";
|
|
22151
|
+
readonly name: "Outbox__NothingToConsumeAtBlock";
|
|
22152
|
+
readonly inputs: readonly [{
|
|
22153
|
+
readonly name: "l2BlockNumber";
|
|
22154
|
+
readonly type: "uint256";
|
|
22155
|
+
readonly internalType: "uint256";
|
|
22156
|
+
}];
|
|
22157
|
+
}, {
|
|
22158
|
+
readonly type: "error";
|
|
22159
|
+
readonly name: "Outbox__RootAlreadySetAtBlock";
|
|
22160
|
+
readonly inputs: readonly [{
|
|
22161
|
+
readonly name: "l2BlockNumber";
|
|
22162
|
+
readonly type: "uint256";
|
|
22163
|
+
readonly internalType: "uint256";
|
|
22164
|
+
}];
|
|
22165
|
+
}, {
|
|
22166
|
+
readonly type: "error";
|
|
22167
|
+
readonly name: "Outbox__Unauthorized";
|
|
22168
|
+
readonly inputs: readonly [];
|
|
22169
|
+
}, {
|
|
22170
|
+
readonly type: "error";
|
|
22171
|
+
readonly name: "Outbox__VersionMismatch";
|
|
22172
|
+
readonly inputs: readonly [{
|
|
22173
|
+
readonly name: "expected";
|
|
22174
|
+
readonly type: "uint256";
|
|
22175
|
+
readonly internalType: "uint256";
|
|
22176
|
+
}, {
|
|
22177
|
+
readonly name: "actual";
|
|
22178
|
+
readonly type: "uint256";
|
|
22179
|
+
readonly internalType: "uint256";
|
|
22180
|
+
}];
|
|
22181
|
+
}, {
|
|
22182
|
+
readonly type: "error";
|
|
22183
|
+
readonly name: "OwnableInvalidOwner";
|
|
22184
|
+
readonly inputs: readonly [{
|
|
22185
|
+
readonly name: "owner";
|
|
22186
|
+
readonly type: "address";
|
|
22187
|
+
readonly internalType: "address";
|
|
22188
|
+
}];
|
|
22189
|
+
}, {
|
|
22190
|
+
readonly type: "error";
|
|
22191
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
22192
|
+
readonly inputs: readonly [{
|
|
22193
|
+
readonly name: "account";
|
|
22194
|
+
readonly type: "address";
|
|
22195
|
+
readonly internalType: "address";
|
|
22196
|
+
}];
|
|
22197
|
+
}, {
|
|
22198
|
+
readonly type: "event";
|
|
22199
|
+
readonly name: "OwnershipTransferred";
|
|
22200
|
+
readonly inputs: readonly [{
|
|
22201
|
+
readonly name: "previousOwner";
|
|
22202
|
+
readonly type: "address";
|
|
22203
|
+
readonly indexed: true;
|
|
22204
|
+
readonly internalType: "address";
|
|
22205
|
+
}, {
|
|
22206
|
+
readonly name: "newOwner";
|
|
22207
|
+
readonly type: "address";
|
|
22208
|
+
readonly indexed: true;
|
|
22209
|
+
readonly internalType: "address";
|
|
22210
|
+
}];
|
|
22211
|
+
readonly anonymous: false;
|
|
22212
|
+
}, {
|
|
22213
|
+
readonly type: "error";
|
|
22214
|
+
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
22215
|
+
readonly inputs: readonly [{
|
|
22216
|
+
readonly name: "balance";
|
|
22217
|
+
readonly type: "uint256";
|
|
22218
|
+
readonly internalType: "uint256";
|
|
22219
|
+
}, {
|
|
22220
|
+
readonly name: "requested";
|
|
22221
|
+
readonly type: "uint256";
|
|
22222
|
+
readonly internalType: "uint256";
|
|
22223
|
+
}];
|
|
22224
|
+
}, {
|
|
22225
|
+
readonly type: "error";
|
|
22226
|
+
readonly name: "ProofCommitmentEscrow__NotOwner";
|
|
22227
|
+
readonly inputs: readonly [{
|
|
22228
|
+
readonly name: "caller";
|
|
22229
|
+
readonly type: "address";
|
|
22230
|
+
readonly internalType: "address";
|
|
22231
|
+
}];
|
|
22232
|
+
}, {
|
|
22233
|
+
readonly type: "error";
|
|
22234
|
+
readonly name: "ProofCommitmentEscrow__WithdrawRequestNotReady";
|
|
22235
|
+
readonly inputs: readonly [{
|
|
22236
|
+
readonly name: "current";
|
|
22237
|
+
readonly type: "uint256";
|
|
22238
|
+
readonly internalType: "uint256";
|
|
22239
|
+
}, {
|
|
22240
|
+
readonly name: "readyAt";
|
|
22241
|
+
readonly type: "uint256";
|
|
22242
|
+
readonly internalType: "Timestamp";
|
|
22243
|
+
}];
|
|
22244
|
+
}, {
|
|
22245
|
+
readonly type: "error";
|
|
22246
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
22247
|
+
readonly inputs: readonly [];
|
|
22248
|
+
}, {
|
|
22249
|
+
readonly type: "error";
|
|
22250
|
+
readonly name: "Registry__RollupAlreadyRegistered";
|
|
22251
|
+
readonly inputs: readonly [{
|
|
22252
|
+
readonly name: "rollup";
|
|
22253
|
+
readonly type: "address";
|
|
22254
|
+
readonly internalType: "address";
|
|
22255
|
+
}];
|
|
22256
|
+
}, {
|
|
22257
|
+
readonly type: "error";
|
|
22258
|
+
readonly name: "Registry__RollupNotRegistered";
|
|
22259
|
+
readonly inputs: readonly [{
|
|
22260
|
+
readonly name: "version";
|
|
22261
|
+
readonly type: "uint256";
|
|
22262
|
+
readonly internalType: "uint256";
|
|
22263
|
+
}];
|
|
22264
|
+
}, {
|
|
22265
|
+
readonly type: "error";
|
|
22266
|
+
readonly name: "RewardDistributor__InvalidCaller";
|
|
22267
|
+
readonly inputs: readonly [{
|
|
22268
|
+
readonly name: "caller";
|
|
22269
|
+
readonly type: "address";
|
|
22270
|
+
readonly internalType: "address";
|
|
22271
|
+
}, {
|
|
22272
|
+
readonly name: "canonical";
|
|
22273
|
+
readonly type: "address";
|
|
22274
|
+
readonly internalType: "address";
|
|
22275
|
+
}];
|
|
22276
|
+
}, {
|
|
22277
|
+
readonly type: "error";
|
|
22278
|
+
readonly name: "Rollup__AlreadyClaimed";
|
|
22279
|
+
readonly inputs: readonly [{
|
|
22280
|
+
readonly name: "prover";
|
|
22281
|
+
readonly type: "address";
|
|
22282
|
+
readonly internalType: "address";
|
|
22283
|
+
}, {
|
|
22284
|
+
readonly name: "epoch";
|
|
22285
|
+
readonly type: "uint256";
|
|
22286
|
+
readonly internalType: "Epoch";
|
|
22287
|
+
}];
|
|
22288
|
+
}, {
|
|
22289
|
+
readonly type: "error";
|
|
22290
|
+
readonly name: "Rollup__InsufficientBondAmount";
|
|
22291
|
+
readonly inputs: readonly [{
|
|
22292
|
+
readonly name: "minimum";
|
|
22293
|
+
readonly type: "uint256";
|
|
22294
|
+
readonly internalType: "uint256";
|
|
22295
|
+
}, {
|
|
22296
|
+
readonly name: "provided";
|
|
22297
|
+
readonly type: "uint256";
|
|
22298
|
+
readonly internalType: "uint256";
|
|
22299
|
+
}];
|
|
22300
|
+
}, {
|
|
22301
|
+
readonly type: "error";
|
|
22302
|
+
readonly name: "Rollup__InsufficientFundsInEscrow";
|
|
22303
|
+
readonly inputs: readonly [{
|
|
22304
|
+
readonly name: "required";
|
|
22305
|
+
readonly type: "uint256";
|
|
22306
|
+
readonly internalType: "uint256";
|
|
22307
|
+
}, {
|
|
22308
|
+
readonly name: "available";
|
|
22309
|
+
readonly type: "uint256";
|
|
22310
|
+
readonly internalType: "uint256";
|
|
22311
|
+
}];
|
|
22312
|
+
}, {
|
|
22313
|
+
readonly type: "error";
|
|
22314
|
+
readonly name: "Rollup__InvalidArchive";
|
|
22315
|
+
readonly inputs: readonly [{
|
|
22316
|
+
readonly name: "expected";
|
|
22317
|
+
readonly type: "bytes32";
|
|
22318
|
+
readonly internalType: "bytes32";
|
|
22319
|
+
}, {
|
|
22320
|
+
readonly name: "actual";
|
|
22321
|
+
readonly type: "bytes32";
|
|
22322
|
+
readonly internalType: "bytes32";
|
|
22323
|
+
}];
|
|
22324
|
+
}, {
|
|
22325
|
+
readonly type: "error";
|
|
22326
|
+
readonly name: "Rollup__InvalidBasisPointFee";
|
|
22327
|
+
readonly inputs: readonly [{
|
|
22328
|
+
readonly name: "basisPointFee";
|
|
22329
|
+
readonly type: "uint256";
|
|
22330
|
+
readonly internalType: "uint256";
|
|
22331
|
+
}];
|
|
22332
|
+
}, {
|
|
22333
|
+
readonly type: "error";
|
|
22334
|
+
readonly name: "Rollup__InvalidBlobHash";
|
|
22335
|
+
readonly inputs: readonly [{
|
|
22336
|
+
readonly name: "blobHash";
|
|
22337
|
+
readonly type: "bytes32";
|
|
22338
|
+
readonly internalType: "bytes32";
|
|
22339
|
+
}];
|
|
22340
|
+
}, {
|
|
22341
|
+
readonly type: "error";
|
|
22342
|
+
readonly name: "Rollup__InvalidBlobProof";
|
|
22343
|
+
readonly inputs: readonly [{
|
|
22344
|
+
readonly name: "blobHash";
|
|
22345
|
+
readonly type: "bytes32";
|
|
22346
|
+
readonly internalType: "bytes32";
|
|
22347
|
+
}];
|
|
22348
|
+
}, {
|
|
22349
|
+
readonly type: "error";
|
|
22350
|
+
readonly name: "Rollup__InvalidBlobPublicInputsHash";
|
|
22351
|
+
readonly inputs: readonly [{
|
|
22352
|
+
readonly name: "expected";
|
|
22353
|
+
readonly type: "bytes32";
|
|
22354
|
+
readonly internalType: "bytes32";
|
|
22355
|
+
}, {
|
|
22356
|
+
readonly name: "actual";
|
|
22357
|
+
readonly type: "bytes32";
|
|
22358
|
+
readonly internalType: "bytes32";
|
|
22359
|
+
}];
|
|
22360
|
+
}, {
|
|
22361
|
+
readonly type: "error";
|
|
22362
|
+
readonly name: "Rollup__InvalidBlockHash";
|
|
22363
|
+
readonly inputs: readonly [{
|
|
22364
|
+
readonly name: "expected";
|
|
22365
|
+
readonly type: "bytes32";
|
|
22366
|
+
readonly internalType: "bytes32";
|
|
22367
|
+
}, {
|
|
22368
|
+
readonly name: "actual";
|
|
22369
|
+
readonly type: "bytes32";
|
|
22370
|
+
readonly internalType: "bytes32";
|
|
22371
|
+
}];
|
|
22372
|
+
}, {
|
|
22373
|
+
readonly type: "error";
|
|
22374
|
+
readonly name: "Rollup__InvalidBlockNumber";
|
|
22375
|
+
readonly inputs: readonly [{
|
|
22376
|
+
readonly name: "expected";
|
|
22377
|
+
readonly type: "uint256";
|
|
22378
|
+
readonly internalType: "uint256";
|
|
22379
|
+
}, {
|
|
22380
|
+
readonly name: "actual";
|
|
22381
|
+
readonly type: "uint256";
|
|
22382
|
+
readonly internalType: "uint256";
|
|
22383
|
+
}];
|
|
22384
|
+
}, {
|
|
22385
|
+
readonly type: "error";
|
|
22386
|
+
readonly name: "Rollup__InvalidChainId";
|
|
22387
|
+
readonly inputs: readonly [{
|
|
22388
|
+
readonly name: "expected";
|
|
22389
|
+
readonly type: "uint256";
|
|
22390
|
+
readonly internalType: "uint256";
|
|
22391
|
+
}, {
|
|
22392
|
+
readonly name: "actual";
|
|
22393
|
+
readonly type: "uint256";
|
|
22394
|
+
readonly internalType: "uint256";
|
|
22395
|
+
}];
|
|
22396
|
+
}, {
|
|
22397
|
+
readonly type: "error";
|
|
22398
|
+
readonly name: "Rollup__InvalidInHash";
|
|
22399
|
+
readonly inputs: readonly [{
|
|
22400
|
+
readonly name: "expected";
|
|
22401
|
+
readonly type: "bytes32";
|
|
22402
|
+
readonly internalType: "bytes32";
|
|
22403
|
+
}, {
|
|
22404
|
+
readonly name: "actual";
|
|
22405
|
+
readonly type: "bytes32";
|
|
22406
|
+
readonly internalType: "bytes32";
|
|
22407
|
+
}];
|
|
22408
|
+
}, {
|
|
22409
|
+
readonly type: "error";
|
|
22410
|
+
readonly name: "Rollup__InvalidManaBaseFee";
|
|
22411
|
+
readonly inputs: readonly [{
|
|
22412
|
+
readonly name: "expected";
|
|
22413
|
+
readonly type: "uint256";
|
|
22414
|
+
readonly internalType: "uint256";
|
|
22415
|
+
}, {
|
|
22416
|
+
readonly name: "actual";
|
|
22417
|
+
readonly type: "uint256";
|
|
22418
|
+
readonly internalType: "uint256";
|
|
22419
|
+
}];
|
|
22420
|
+
}, {
|
|
22421
|
+
readonly type: "error";
|
|
22422
|
+
readonly name: "Rollup__InvalidPreviousArchive";
|
|
22423
|
+
readonly inputs: readonly [{
|
|
22424
|
+
readonly name: "expected";
|
|
22425
|
+
readonly type: "bytes32";
|
|
22426
|
+
readonly internalType: "bytes32";
|
|
22427
|
+
}, {
|
|
22428
|
+
readonly name: "actual";
|
|
22429
|
+
readonly type: "bytes32";
|
|
22430
|
+
readonly internalType: "bytes32";
|
|
22431
|
+
}];
|
|
22432
|
+
}, {
|
|
22433
|
+
readonly type: "error";
|
|
22434
|
+
readonly name: "Rollup__InvalidPreviousBlockHash";
|
|
22435
|
+
readonly inputs: readonly [{
|
|
22436
|
+
readonly name: "expected";
|
|
22437
|
+
readonly type: "bytes32";
|
|
22438
|
+
readonly internalType: "bytes32";
|
|
22439
|
+
}, {
|
|
22440
|
+
readonly name: "actual";
|
|
22441
|
+
readonly type: "bytes32";
|
|
22442
|
+
readonly internalType: "bytes32";
|
|
22443
|
+
}];
|
|
22444
|
+
}, {
|
|
22445
|
+
readonly type: "error";
|
|
22446
|
+
readonly name: "Rollup__InvalidProof";
|
|
22447
|
+
readonly inputs: readonly [];
|
|
22448
|
+
}, {
|
|
22449
|
+
readonly type: "error";
|
|
22450
|
+
readonly name: "Rollup__InvalidProposedArchive";
|
|
22451
|
+
readonly inputs: readonly [{
|
|
22452
|
+
readonly name: "expected";
|
|
22453
|
+
readonly type: "bytes32";
|
|
22454
|
+
readonly internalType: "bytes32";
|
|
22455
|
+
}, {
|
|
22456
|
+
readonly name: "actual";
|
|
22457
|
+
readonly type: "bytes32";
|
|
22458
|
+
readonly internalType: "bytes32";
|
|
22459
|
+
}];
|
|
22460
|
+
}, {
|
|
22461
|
+
readonly type: "error";
|
|
22462
|
+
readonly name: "Rollup__InvalidTimestamp";
|
|
22463
|
+
readonly inputs: readonly [{
|
|
22464
|
+
readonly name: "expected";
|
|
22465
|
+
readonly type: "uint256";
|
|
22466
|
+
readonly internalType: "Timestamp";
|
|
22467
|
+
}, {
|
|
22468
|
+
readonly name: "actual";
|
|
22469
|
+
readonly type: "uint256";
|
|
22470
|
+
readonly internalType: "Timestamp";
|
|
22471
|
+
}];
|
|
22472
|
+
}, {
|
|
22473
|
+
readonly type: "error";
|
|
22474
|
+
readonly name: "Rollup__InvalidVersion";
|
|
22475
|
+
readonly inputs: readonly [{
|
|
22476
|
+
readonly name: "expected";
|
|
22477
|
+
readonly type: "uint256";
|
|
22478
|
+
readonly internalType: "uint256";
|
|
22479
|
+
}, {
|
|
22480
|
+
readonly name: "actual";
|
|
22481
|
+
readonly type: "uint256";
|
|
22482
|
+
readonly internalType: "uint256";
|
|
22483
|
+
}];
|
|
22484
|
+
}, {
|
|
22485
|
+
readonly type: "error";
|
|
22486
|
+
readonly name: "Rollup__ManaLimitExceeded";
|
|
22487
|
+
readonly inputs: readonly [];
|
|
22488
|
+
}, {
|
|
22489
|
+
readonly type: "error";
|
|
22490
|
+
readonly name: "Rollup__NoEpochToProve";
|
|
22491
|
+
readonly inputs: readonly [];
|
|
22492
|
+
}, {
|
|
22493
|
+
readonly type: "error";
|
|
22494
|
+
readonly name: "Rollup__NonSequentialProving";
|
|
22495
|
+
readonly inputs: readonly [];
|
|
22496
|
+
}, {
|
|
22497
|
+
readonly type: "error";
|
|
22498
|
+
readonly name: "Rollup__NonZeroDaFee";
|
|
22499
|
+
readonly inputs: readonly [];
|
|
22500
|
+
}, {
|
|
22501
|
+
readonly type: "error";
|
|
22502
|
+
readonly name: "Rollup__NotPastDeadline";
|
|
22503
|
+
readonly inputs: readonly [{
|
|
22504
|
+
readonly name: "deadline";
|
|
22505
|
+
readonly type: "uint256";
|
|
22506
|
+
readonly internalType: "Slot";
|
|
22507
|
+
}, {
|
|
22508
|
+
readonly name: "currentSlot";
|
|
22509
|
+
readonly type: "uint256";
|
|
22510
|
+
readonly internalType: "Slot";
|
|
22511
|
+
}];
|
|
22512
|
+
}, {
|
|
22513
|
+
readonly type: "error";
|
|
22514
|
+
readonly name: "Rollup__NothingToPrune";
|
|
22515
|
+
readonly inputs: readonly [];
|
|
22516
|
+
}, {
|
|
22517
|
+
readonly type: "error";
|
|
22518
|
+
readonly name: "Rollup__PastDeadline";
|
|
22519
|
+
readonly inputs: readonly [{
|
|
22520
|
+
readonly name: "deadline";
|
|
22521
|
+
readonly type: "uint256";
|
|
22522
|
+
readonly internalType: "Slot";
|
|
22523
|
+
}, {
|
|
22524
|
+
readonly name: "currentSlot";
|
|
22525
|
+
readonly type: "uint256";
|
|
22526
|
+
readonly internalType: "Slot";
|
|
22527
|
+
}];
|
|
22528
|
+
}, {
|
|
22529
|
+
readonly type: "error";
|
|
22530
|
+
readonly name: "Rollup__ProverHaveAlreadySubmitted";
|
|
22531
|
+
readonly inputs: readonly [{
|
|
22532
|
+
readonly name: "prover";
|
|
22533
|
+
readonly type: "address";
|
|
22534
|
+
readonly internalType: "address";
|
|
22535
|
+
}, {
|
|
22536
|
+
readonly name: "epoch";
|
|
22537
|
+
readonly type: "uint256";
|
|
22538
|
+
readonly internalType: "Epoch";
|
|
22539
|
+
}];
|
|
22540
|
+
}, {
|
|
22541
|
+
readonly type: "error";
|
|
22542
|
+
readonly name: "Rollup__SlotAlreadyInChain";
|
|
22543
|
+
readonly inputs: readonly [{
|
|
22544
|
+
readonly name: "lastSlot";
|
|
22545
|
+
readonly type: "uint256";
|
|
22546
|
+
readonly internalType: "Slot";
|
|
22547
|
+
}, {
|
|
22548
|
+
readonly name: "proposedSlot";
|
|
22549
|
+
readonly type: "uint256";
|
|
22550
|
+
readonly internalType: "Slot";
|
|
22551
|
+
}];
|
|
22552
|
+
}, {
|
|
22553
|
+
readonly type: "error";
|
|
22554
|
+
readonly name: "Rollup__StartAndEndNotSameEpoch";
|
|
22555
|
+
readonly inputs: readonly [{
|
|
22556
|
+
readonly name: "start";
|
|
22557
|
+
readonly type: "uint256";
|
|
22558
|
+
readonly internalType: "Epoch";
|
|
22559
|
+
}, {
|
|
22560
|
+
readonly name: "end";
|
|
22561
|
+
readonly type: "uint256";
|
|
22562
|
+
readonly internalType: "Epoch";
|
|
22563
|
+
}];
|
|
22564
|
+
}, {
|
|
22565
|
+
readonly type: "error";
|
|
22566
|
+
readonly name: "Rollup__StartIsNotBuildingOnProven";
|
|
22567
|
+
readonly inputs: readonly [];
|
|
22568
|
+
}, {
|
|
22569
|
+
readonly type: "error";
|
|
22570
|
+
readonly name: "Rollup__StartIsNotFirstBlockOfEpoch";
|
|
22571
|
+
readonly inputs: readonly [];
|
|
22572
|
+
}, {
|
|
22573
|
+
readonly type: "error";
|
|
22574
|
+
readonly name: "Rollup__TimestampInFuture";
|
|
22575
|
+
readonly inputs: readonly [{
|
|
22576
|
+
readonly name: "max";
|
|
22577
|
+
readonly type: "uint256";
|
|
22578
|
+
readonly internalType: "Timestamp";
|
|
22579
|
+
}, {
|
|
22580
|
+
readonly name: "actual";
|
|
22581
|
+
readonly type: "uint256";
|
|
22582
|
+
readonly internalType: "Timestamp";
|
|
22583
|
+
}];
|
|
22584
|
+
}, {
|
|
22585
|
+
readonly type: "error";
|
|
22586
|
+
readonly name: "Rollup__TimestampTooOld";
|
|
22587
|
+
readonly inputs: readonly [];
|
|
22588
|
+
}, {
|
|
22589
|
+
readonly type: "error";
|
|
22590
|
+
readonly name: "Rollup__TryingToProveNonExistingBlock";
|
|
22591
|
+
readonly inputs: readonly [];
|
|
22592
|
+
}, {
|
|
22593
|
+
readonly type: "error";
|
|
22594
|
+
readonly name: "Rollup__UnavailableTxs";
|
|
22595
|
+
readonly inputs: readonly [{
|
|
22596
|
+
readonly name: "txsHash";
|
|
22597
|
+
readonly type: "bytes32";
|
|
22598
|
+
readonly internalType: "bytes32";
|
|
22599
|
+
}];
|
|
22600
|
+
}, {
|
|
22601
|
+
readonly type: "error";
|
|
22602
|
+
readonly name: "SampleLib__IndexOutOfBounds";
|
|
22603
|
+
readonly inputs: readonly [{
|
|
22604
|
+
readonly name: "requested";
|
|
22605
|
+
readonly type: "uint256";
|
|
22606
|
+
readonly internalType: "uint256";
|
|
22607
|
+
}, {
|
|
22608
|
+
readonly name: "bound";
|
|
22609
|
+
readonly type: "uint256";
|
|
22610
|
+
readonly internalType: "uint256";
|
|
22611
|
+
}];
|
|
22612
|
+
}, {
|
|
22613
|
+
readonly type: "error";
|
|
22614
|
+
readonly name: "SampleLib__SampleLargerThanIndex";
|
|
22615
|
+
readonly inputs: readonly [{
|
|
22616
|
+
readonly name: "sample";
|
|
22617
|
+
readonly type: "uint256";
|
|
22618
|
+
readonly internalType: "uint256";
|
|
22619
|
+
}, {
|
|
22620
|
+
readonly name: "index";
|
|
22621
|
+
readonly type: "uint256";
|
|
22622
|
+
readonly internalType: "uint256";
|
|
22623
|
+
}];
|
|
22624
|
+
}, {
|
|
22625
|
+
readonly type: "error";
|
|
22626
|
+
readonly name: "SignatureLib__CannotVerifyEmpty";
|
|
22627
|
+
readonly inputs: readonly [];
|
|
22628
|
+
}, {
|
|
22629
|
+
readonly type: "error";
|
|
22630
|
+
readonly name: "SignatureLib__InvalidSignature";
|
|
22631
|
+
readonly inputs: readonly [{
|
|
22632
|
+
readonly name: "expected";
|
|
22633
|
+
readonly type: "address";
|
|
22634
|
+
readonly internalType: "address";
|
|
22635
|
+
}, {
|
|
22636
|
+
readonly name: "recovered";
|
|
22637
|
+
readonly type: "address";
|
|
22638
|
+
readonly internalType: "address";
|
|
22639
|
+
}];
|
|
22640
|
+
}, {
|
|
22641
|
+
readonly type: "error";
|
|
22642
|
+
readonly name: "Staking__AlreadyActive";
|
|
22643
|
+
readonly inputs: readonly [{
|
|
22644
|
+
readonly name: "attester";
|
|
22645
|
+
readonly type: "address";
|
|
22646
|
+
readonly internalType: "address";
|
|
22647
|
+
}];
|
|
22648
|
+
}, {
|
|
22649
|
+
readonly type: "error";
|
|
22650
|
+
readonly name: "Staking__AlreadyRegistered";
|
|
22651
|
+
readonly inputs: readonly [{
|
|
22652
|
+
readonly name: "";
|
|
22653
|
+
readonly type: "address";
|
|
22654
|
+
readonly internalType: "address";
|
|
22655
|
+
}];
|
|
22656
|
+
}, {
|
|
22657
|
+
readonly type: "error";
|
|
22658
|
+
readonly name: "Staking__CannotSlashExitedStake";
|
|
22659
|
+
readonly inputs: readonly [{
|
|
22660
|
+
readonly name: "";
|
|
22661
|
+
readonly type: "address";
|
|
22662
|
+
readonly internalType: "address";
|
|
22663
|
+
}];
|
|
22664
|
+
}, {
|
|
22665
|
+
readonly type: "error";
|
|
22666
|
+
readonly name: "Staking__FailedToRemove";
|
|
22667
|
+
readonly inputs: readonly [{
|
|
22668
|
+
readonly name: "";
|
|
22669
|
+
readonly type: "address";
|
|
22670
|
+
readonly internalType: "address";
|
|
22671
|
+
}];
|
|
22672
|
+
}, {
|
|
22673
|
+
readonly type: "error";
|
|
22674
|
+
readonly name: "Staking__InsufficientStake";
|
|
22675
|
+
readonly inputs: readonly [{
|
|
22676
|
+
readonly name: "";
|
|
22677
|
+
readonly type: "uint256";
|
|
22678
|
+
readonly internalType: "uint256";
|
|
22679
|
+
}, {
|
|
22680
|
+
readonly name: "";
|
|
22681
|
+
readonly type: "uint256";
|
|
22682
|
+
readonly internalType: "uint256";
|
|
22683
|
+
}];
|
|
22684
|
+
}, {
|
|
22685
|
+
readonly type: "error";
|
|
22686
|
+
readonly name: "Staking__InvalidDeposit";
|
|
22687
|
+
readonly inputs: readonly [{
|
|
22688
|
+
readonly name: "attester";
|
|
22689
|
+
readonly type: "address";
|
|
22690
|
+
readonly internalType: "address";
|
|
22691
|
+
}, {
|
|
22692
|
+
readonly name: "proposer";
|
|
22693
|
+
readonly type: "address";
|
|
22694
|
+
readonly internalType: "address";
|
|
22695
|
+
}];
|
|
22696
|
+
}, {
|
|
22697
|
+
readonly type: "error";
|
|
22698
|
+
readonly name: "Staking__NoOneToSlash";
|
|
22699
|
+
readonly inputs: readonly [{
|
|
22700
|
+
readonly name: "";
|
|
22701
|
+
readonly type: "address";
|
|
22702
|
+
readonly internalType: "address";
|
|
22703
|
+
}];
|
|
22704
|
+
}, {
|
|
22705
|
+
readonly type: "error";
|
|
22706
|
+
readonly name: "Staking__NotExiting";
|
|
22707
|
+
readonly inputs: readonly [{
|
|
22708
|
+
readonly name: "";
|
|
22709
|
+
readonly type: "address";
|
|
22710
|
+
readonly internalType: "address";
|
|
22711
|
+
}];
|
|
22712
|
+
}, {
|
|
22713
|
+
readonly type: "error";
|
|
22714
|
+
readonly name: "Staking__NotSlasher";
|
|
22715
|
+
readonly inputs: readonly [{
|
|
22716
|
+
readonly name: "";
|
|
22717
|
+
readonly type: "address";
|
|
22718
|
+
readonly internalType: "address";
|
|
22719
|
+
}, {
|
|
22720
|
+
readonly name: "";
|
|
22721
|
+
readonly type: "address";
|
|
22722
|
+
readonly internalType: "address";
|
|
22723
|
+
}];
|
|
22724
|
+
}, {
|
|
22725
|
+
readonly type: "error";
|
|
22726
|
+
readonly name: "Staking__NotWithdrawer";
|
|
22727
|
+
readonly inputs: readonly [{
|
|
22728
|
+
readonly name: "";
|
|
22729
|
+
readonly type: "address";
|
|
22730
|
+
readonly internalType: "address";
|
|
22731
|
+
}, {
|
|
22732
|
+
readonly name: "";
|
|
22733
|
+
readonly type: "address";
|
|
22734
|
+
readonly internalType: "address";
|
|
22735
|
+
}];
|
|
22736
|
+
}, {
|
|
22737
|
+
readonly type: "error";
|
|
22738
|
+
readonly name: "Staking__NothingToExit";
|
|
22739
|
+
readonly inputs: readonly [{
|
|
22740
|
+
readonly name: "";
|
|
22741
|
+
readonly type: "address";
|
|
22742
|
+
readonly internalType: "address";
|
|
22743
|
+
}];
|
|
22744
|
+
}, {
|
|
22745
|
+
readonly type: "error";
|
|
22746
|
+
readonly name: "Staking__WithdrawalNotUnlockedYet";
|
|
22747
|
+
readonly inputs: readonly [{
|
|
22748
|
+
readonly name: "";
|
|
22749
|
+
readonly type: "uint256";
|
|
22750
|
+
readonly internalType: "Timestamp";
|
|
22751
|
+
}, {
|
|
22752
|
+
readonly name: "";
|
|
22753
|
+
readonly type: "uint256";
|
|
22754
|
+
readonly internalType: "Timestamp";
|
|
22755
|
+
}];
|
|
22756
|
+
}, {
|
|
22757
|
+
readonly type: "error";
|
|
22758
|
+
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
22759
|
+
readonly inputs: readonly [];
|
|
22760
|
+
}, {
|
|
22761
|
+
readonly type: "error";
|
|
22762
|
+
readonly name: "ValidatorSelection__InsufficientAttestations";
|
|
22763
|
+
readonly inputs: readonly [{
|
|
22764
|
+
readonly name: "minimumNeeded";
|
|
22765
|
+
readonly type: "uint256";
|
|
22766
|
+
readonly internalType: "uint256";
|
|
22767
|
+
}, {
|
|
22768
|
+
readonly name: "provided";
|
|
22769
|
+
readonly type: "uint256";
|
|
22770
|
+
readonly internalType: "uint256";
|
|
22771
|
+
}];
|
|
22772
|
+
}, {
|
|
22773
|
+
readonly type: "error";
|
|
22774
|
+
readonly name: "ValidatorSelection__InsufficientAttestationsProvided";
|
|
22775
|
+
readonly inputs: readonly [{
|
|
22776
|
+
readonly name: "minimumNeeded";
|
|
22777
|
+
readonly type: "uint256";
|
|
22778
|
+
readonly internalType: "uint256";
|
|
22779
|
+
}, {
|
|
22780
|
+
readonly name: "provided";
|
|
22781
|
+
readonly type: "uint256";
|
|
22782
|
+
readonly internalType: "uint256";
|
|
22783
|
+
}];
|
|
22784
|
+
}, {
|
|
22785
|
+
readonly type: "error";
|
|
22786
|
+
readonly name: "ValidatorSelection__InvalidDeposit";
|
|
22787
|
+
readonly inputs: readonly [{
|
|
22788
|
+
readonly name: "attester";
|
|
22789
|
+
readonly type: "address";
|
|
22790
|
+
readonly internalType: "address";
|
|
22791
|
+
}, {
|
|
22792
|
+
readonly name: "proposer";
|
|
22793
|
+
readonly type: "address";
|
|
22794
|
+
readonly internalType: "address";
|
|
22795
|
+
}];
|
|
22796
|
+
}, {
|
|
22797
|
+
readonly type: "error";
|
|
22798
|
+
readonly name: "ValidatorSelection__InvalidProposer";
|
|
22799
|
+
readonly inputs: readonly [{
|
|
22800
|
+
readonly name: "expected";
|
|
22801
|
+
readonly type: "address";
|
|
22802
|
+
readonly internalType: "address";
|
|
22803
|
+
}, {
|
|
22804
|
+
readonly name: "actual";
|
|
22805
|
+
readonly type: "address";
|
|
22806
|
+
readonly internalType: "address";
|
|
22807
|
+
}];
|
|
22808
|
+
}, {
|
|
22809
|
+
readonly type: "function";
|
|
22810
|
+
readonly name: "mint";
|
|
22811
|
+
readonly inputs: readonly [{
|
|
22812
|
+
readonly name: "_recipient";
|
|
22813
|
+
readonly type: "address";
|
|
22814
|
+
readonly internalType: "address";
|
|
22815
|
+
}];
|
|
22816
|
+
readonly outputs: readonly [];
|
|
22817
|
+
readonly stateMutability: "nonpayable";
|
|
22818
|
+
}, {
|
|
22819
|
+
readonly type: "function";
|
|
22820
|
+
readonly name: "mintAmount";
|
|
22821
|
+
readonly inputs: readonly [];
|
|
22822
|
+
readonly outputs: readonly [{
|
|
22823
|
+
readonly name: "";
|
|
22824
|
+
readonly type: "uint256";
|
|
22825
|
+
readonly internalType: "uint256";
|
|
22826
|
+
}];
|
|
22827
|
+
readonly stateMutability: "view";
|
|
22828
|
+
}, {
|
|
22829
|
+
readonly type: "function";
|
|
22830
|
+
readonly name: "owner";
|
|
22831
|
+
readonly inputs: readonly [];
|
|
22832
|
+
readonly outputs: readonly [{
|
|
22833
|
+
readonly name: "";
|
|
22834
|
+
readonly type: "address";
|
|
22835
|
+
readonly internalType: "address";
|
|
22836
|
+
}];
|
|
22837
|
+
readonly stateMutability: "view";
|
|
22838
|
+
}, {
|
|
22839
|
+
readonly type: "function";
|
|
22840
|
+
readonly name: "renounceOwnership";
|
|
22841
|
+
readonly inputs: readonly [];
|
|
22842
|
+
readonly outputs: readonly [];
|
|
22843
|
+
readonly stateMutability: "nonpayable";
|
|
22844
|
+
}, {
|
|
22845
|
+
readonly type: "function";
|
|
22846
|
+
readonly name: "setMintAmount";
|
|
22847
|
+
readonly inputs: readonly [{
|
|
22848
|
+
readonly name: "_amount";
|
|
22849
|
+
readonly type: "uint256";
|
|
22850
|
+
readonly internalType: "uint256";
|
|
22851
|
+
}];
|
|
22852
|
+
readonly outputs: readonly [];
|
|
22853
|
+
readonly stateMutability: "nonpayable";
|
|
22854
|
+
}, {
|
|
22855
|
+
readonly type: "function";
|
|
22856
|
+
readonly name: "transferOwnership";
|
|
22857
|
+
readonly inputs: readonly [{
|
|
22858
|
+
readonly name: "newOwner";
|
|
22859
|
+
readonly type: "address";
|
|
22860
|
+
readonly internalType: "address";
|
|
22861
|
+
}];
|
|
22862
|
+
readonly outputs: readonly [];
|
|
22863
|
+
readonly stateMutability: "nonpayable";
|
|
22864
|
+
}];
|
|
22865
|
+
contractBytecode: `0x${string}`;
|
|
22866
|
+
};
|
|
22867
|
+
stakingAssetHandler: {
|
|
22868
|
+
contractAbi: readonly [{
|
|
22869
|
+
readonly type: "constructor";
|
|
22870
|
+
readonly inputs: readonly [{
|
|
22871
|
+
readonly name: "_owner";
|
|
22872
|
+
readonly type: "address";
|
|
22873
|
+
readonly internalType: "address";
|
|
22874
|
+
}, {
|
|
22875
|
+
readonly name: "_stakingAsset";
|
|
22876
|
+
readonly type: "address";
|
|
22877
|
+
readonly internalType: "address";
|
|
22878
|
+
}, {
|
|
22879
|
+
readonly name: "_rollup";
|
|
22880
|
+
readonly type: "address";
|
|
22881
|
+
readonly internalType: "address";
|
|
22882
|
+
}, {
|
|
22883
|
+
readonly name: "_withdrawer";
|
|
22884
|
+
readonly type: "address";
|
|
22885
|
+
readonly internalType: "address";
|
|
22886
|
+
}, {
|
|
22887
|
+
readonly name: "_depositAmount";
|
|
22888
|
+
readonly type: "uint256";
|
|
22889
|
+
readonly internalType: "uint256";
|
|
22890
|
+
}, {
|
|
22891
|
+
readonly name: "_mintInterval";
|
|
22892
|
+
readonly type: "uint256";
|
|
22893
|
+
readonly internalType: "uint256";
|
|
22894
|
+
}, {
|
|
22895
|
+
readonly name: "_depositsPerMint";
|
|
22896
|
+
readonly type: "uint256";
|
|
22897
|
+
readonly internalType: "uint256";
|
|
22898
|
+
}, {
|
|
22899
|
+
readonly name: "_canAddValidator";
|
|
22900
|
+
readonly type: "address[]";
|
|
22901
|
+
readonly internalType: "address[]";
|
|
22902
|
+
}];
|
|
22903
|
+
readonly stateMutability: "nonpayable";
|
|
22904
|
+
}, {
|
|
22905
|
+
readonly type: "event";
|
|
22906
|
+
readonly name: "AddValidatorPermissionGranted";
|
|
22907
|
+
readonly inputs: readonly [{
|
|
22908
|
+
readonly name: "_address";
|
|
22909
|
+
readonly type: "address";
|
|
22910
|
+
readonly indexed: true;
|
|
22911
|
+
readonly internalType: "address";
|
|
22912
|
+
}];
|
|
22913
|
+
readonly anonymous: false;
|
|
22914
|
+
}, {
|
|
22915
|
+
readonly type: "event";
|
|
22916
|
+
readonly name: "AddValidatorPermissionRevoked";
|
|
22917
|
+
readonly inputs: readonly [{
|
|
22918
|
+
readonly name: "_address";
|
|
22919
|
+
readonly type: "address";
|
|
22920
|
+
readonly indexed: true;
|
|
22921
|
+
readonly internalType: "address";
|
|
22922
|
+
}];
|
|
22923
|
+
readonly anonymous: false;
|
|
22924
|
+
}, {
|
|
22925
|
+
readonly type: "error";
|
|
22926
|
+
readonly name: "CannotMintZeroAmount";
|
|
22927
|
+
readonly inputs: readonly [];
|
|
22928
|
+
}, {
|
|
22929
|
+
readonly type: "error";
|
|
22930
|
+
readonly name: "CoinIssuer__InsufficientMintAvailable";
|
|
22931
|
+
readonly inputs: readonly [{
|
|
22932
|
+
readonly name: "available";
|
|
22933
|
+
readonly type: "uint256";
|
|
22934
|
+
readonly internalType: "uint256";
|
|
22935
|
+
}, {
|
|
22936
|
+
readonly name: "needed";
|
|
22937
|
+
readonly type: "uint256";
|
|
22938
|
+
readonly internalType: "uint256";
|
|
22939
|
+
}];
|
|
22940
|
+
}, {
|
|
22941
|
+
readonly type: "event"; /**
|
|
22942
|
+
* The currently deployed l1 contract addresses
|
|
22943
|
+
*/
|
|
22944
|
+
readonly name: "DepositAmountUpdated";
|
|
22945
|
+
readonly inputs: readonly [{
|
|
22946
|
+
readonly name: "_depositAmount";
|
|
22947
|
+
readonly type: "uint256";
|
|
22948
|
+
readonly indexed: false;
|
|
22949
|
+
readonly internalType: "uint256";
|
|
22950
|
+
}];
|
|
22951
|
+
readonly anonymous: false;
|
|
22952
|
+
}, {
|
|
22953
|
+
readonly type: "event";
|
|
22954
|
+
readonly name: "DepositsPerMintUpdated";
|
|
22955
|
+
readonly inputs: readonly [{
|
|
22956
|
+
readonly name: "_depositsPerMint";
|
|
22957
|
+
readonly type: "uint256"; /**
|
|
22958
|
+
* The contract abi.
|
|
22959
|
+
*/
|
|
22960
|
+
readonly indexed: false;
|
|
22961
|
+
readonly internalType: "uint256";
|
|
22962
|
+
}];
|
|
22963
|
+
/**
|
|
22964
|
+
* The contract bytecode
|
|
22965
|
+
*/
|
|
22966
|
+
readonly anonymous: false;
|
|
22967
|
+
}, {
|
|
22968
|
+
readonly type: "error";
|
|
22969
|
+
/**
|
|
22970
|
+
* The contract libraries
|
|
22971
|
+
*/
|
|
22972
|
+
readonly name: "DevNet__InvalidProposer";
|
|
22973
|
+
readonly inputs: readonly [{
|
|
22974
|
+
readonly name: "expected";
|
|
22975
|
+
readonly type: "address";
|
|
22976
|
+
readonly internalType: "address";
|
|
22977
|
+
}, {
|
|
22978
|
+
readonly name: "actual";
|
|
22979
|
+
readonly type: "address";
|
|
22980
|
+
readonly internalType: "address";
|
|
22981
|
+
}];
|
|
22982
|
+
}, {
|
|
22983
|
+
readonly type: "error";
|
|
22984
|
+
readonly name: "DevNet__NoPruningAllowed";
|
|
22985
|
+
readonly inputs: readonly [];
|
|
22986
|
+
}, {
|
|
22987
|
+
readonly type: "error";
|
|
22988
|
+
readonly name: "FeeJuicePortal__AlreadyInitialized";
|
|
22989
|
+
readonly inputs: readonly [];
|
|
22990
|
+
}, {
|
|
22991
|
+
readonly type: "error";
|
|
22992
|
+
readonly name: "FeeJuicePortal__InvalidInitialization";
|
|
22993
|
+
readonly inputs: readonly [];
|
|
22994
|
+
}, {
|
|
22995
|
+
readonly type: "error";
|
|
22996
|
+
readonly name: "FeeJuicePortal__Unauthorized";
|
|
22997
|
+
readonly inputs: readonly [];
|
|
22998
|
+
}, {
|
|
22999
|
+
readonly type: "error";
|
|
23000
|
+
readonly name: "FeeLib__InvalidFeeAssetPriceModifier";
|
|
23001
|
+
readonly inputs: readonly [];
|
|
23002
|
+
}, {
|
|
23003
|
+
readonly type: "error";
|
|
23004
|
+
readonly name: "GovernanceProposer__CanOnlyExecuteProposalInPast";
|
|
23005
|
+
readonly inputs: readonly [];
|
|
23006
|
+
}, {
|
|
23007
|
+
readonly type: "error";
|
|
23008
|
+
readonly name: "GovernanceProposer__FailedToPropose";
|
|
23009
|
+
readonly inputs: readonly [{
|
|
23010
|
+
readonly name: "proposal";
|
|
23011
|
+
readonly type: "address";
|
|
23012
|
+
readonly internalType: "contract IPayload";
|
|
23013
|
+
}];
|
|
23014
|
+
}, {
|
|
23015
|
+
readonly type: "error";
|
|
23016
|
+
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
23017
|
+
readonly inputs: readonly [{
|
|
23018
|
+
readonly name: "instance";
|
|
23019
|
+
readonly type: "address";
|
|
23020
|
+
readonly internalType: "address";
|
|
23021
|
+
}];
|
|
23022
|
+
}, {
|
|
23023
|
+
readonly type: "error";
|
|
23024
|
+
readonly name: "GovernanceProposer__InsufficientVotes";
|
|
23025
|
+
readonly inputs: readonly [{
|
|
23026
|
+
readonly name: "votesCast";
|
|
23027
|
+
readonly type: "uint256";
|
|
23028
|
+
readonly internalType: "uint256";
|
|
23029
|
+
}, {
|
|
23030
|
+
readonly name: "votesNeeded";
|
|
23031
|
+
readonly type: "uint256";
|
|
23032
|
+
readonly internalType: "uint256";
|
|
23033
|
+
}];
|
|
23034
|
+
}, {
|
|
23035
|
+
readonly type: "error";
|
|
23036
|
+
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
23037
|
+
readonly inputs: readonly [{
|
|
23038
|
+
readonly name: "n";
|
|
23039
|
+
readonly type: "uint256";
|
|
23040
|
+
readonly internalType: "uint256";
|
|
23041
|
+
}, {
|
|
23042
|
+
readonly name: "m";
|
|
23043
|
+
readonly type: "uint256";
|
|
23044
|
+
readonly internalType: "uint256";
|
|
23045
|
+
}];
|
|
23046
|
+
}, {
|
|
23047
|
+
readonly type: "error";
|
|
23048
|
+
readonly name: "GovernanceProposer__NCannotBeLargerTHanM";
|
|
23049
|
+
readonly inputs: readonly [{
|
|
23050
|
+
readonly name: "n";
|
|
23051
|
+
readonly type: "uint256";
|
|
23052
|
+
readonly internalType: "uint256";
|
|
23053
|
+
}, {
|
|
23054
|
+
readonly name: "m";
|
|
23055
|
+
readonly type: "uint256";
|
|
23056
|
+
readonly internalType: "uint256";
|
|
23057
|
+
}];
|
|
23058
|
+
}, {
|
|
23059
|
+
readonly type: "error";
|
|
23060
|
+
readonly name: "GovernanceProposer__OnlyProposerCanVote";
|
|
23061
|
+
readonly inputs: readonly [{
|
|
23062
|
+
readonly name: "caller";
|
|
23063
|
+
readonly type: "address";
|
|
23064
|
+
readonly internalType: "address";
|
|
23065
|
+
}, {
|
|
23066
|
+
readonly name: "proposer";
|
|
23067
|
+
readonly type: "address";
|
|
23068
|
+
readonly internalType: "address";
|
|
23069
|
+
}];
|
|
23070
|
+
}, {
|
|
23071
|
+
readonly type: "error";
|
|
23072
|
+
readonly name: "GovernanceProposer__ProposalAlreadyExecuted";
|
|
23073
|
+
readonly inputs: readonly [{
|
|
23074
|
+
readonly name: "roundNumber";
|
|
23075
|
+
readonly type: "uint256";
|
|
23076
|
+
readonly internalType: "uint256";
|
|
23077
|
+
}];
|
|
23078
|
+
}, {
|
|
23079
|
+
readonly type: "error";
|
|
23080
|
+
readonly name: "GovernanceProposer__ProposalCannotBeAddressZero";
|
|
23081
|
+
readonly inputs: readonly [];
|
|
23082
|
+
}, {
|
|
23083
|
+
readonly type: "error";
|
|
23084
|
+
readonly name: "GovernanceProposer__ProposalHaveNoCode";
|
|
23085
|
+
readonly inputs: readonly [{
|
|
23086
|
+
readonly name: "proposal";
|
|
23087
|
+
readonly type: "address";
|
|
23088
|
+
readonly internalType: "contract IPayload";
|
|
23089
|
+
}];
|
|
23090
|
+
}, {
|
|
23091
|
+
readonly type: "error";
|
|
23092
|
+
readonly name: "GovernanceProposer__ProposalTooOld";
|
|
23093
|
+
readonly inputs: readonly [{
|
|
23094
|
+
readonly name: "roundNumber";
|
|
23095
|
+
readonly type: "uint256";
|
|
23096
|
+
readonly internalType: "uint256";
|
|
23097
|
+
}, {
|
|
23098
|
+
readonly name: "currentRoundNumber";
|
|
23099
|
+
readonly type: "uint256";
|
|
23100
|
+
readonly internalType: "uint256";
|
|
23101
|
+
}];
|
|
23102
|
+
}, {
|
|
23103
|
+
readonly type: "error";
|
|
23104
|
+
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot";
|
|
23105
|
+
readonly inputs: readonly [{
|
|
23106
|
+
readonly name: "slot";
|
|
23107
|
+
readonly type: "uint256";
|
|
23108
|
+
readonly internalType: "Slot";
|
|
23109
|
+
}];
|
|
23110
|
+
}, {
|
|
23111
|
+
readonly type: "error";
|
|
23112
|
+
readonly name: "Governance__CallFailed";
|
|
23113
|
+
readonly inputs: readonly [{
|
|
23114
|
+
readonly name: "target";
|
|
23115
|
+
readonly type: "address";
|
|
23116
|
+
readonly internalType: "address";
|
|
23117
|
+
}];
|
|
23118
|
+
}, {
|
|
23119
|
+
readonly type: "error";
|
|
23120
|
+
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
23121
|
+
readonly inputs: readonly [{
|
|
23122
|
+
readonly name: "caller";
|
|
23123
|
+
readonly type: "address";
|
|
23124
|
+
readonly internalType: "address";
|
|
23125
|
+
}, {
|
|
23126
|
+
readonly name: "governanceProposer";
|
|
23127
|
+
readonly type: "address";
|
|
23128
|
+
readonly internalType: "address";
|
|
23129
|
+
}];
|
|
23130
|
+
}, {
|
|
23131
|
+
readonly type: "error";
|
|
23132
|
+
readonly name: "Governance__CallerNotSelf";
|
|
23133
|
+
readonly inputs: readonly [{
|
|
23134
|
+
readonly name: "caller";
|
|
23135
|
+
readonly type: "address";
|
|
23136
|
+
readonly internalType: "address";
|
|
23137
|
+
}, {
|
|
23138
|
+
readonly name: "self";
|
|
23139
|
+
readonly type: "address";
|
|
23140
|
+
readonly internalType: "address";
|
|
23141
|
+
}];
|
|
23142
|
+
}, {
|
|
23143
|
+
readonly type: "error";
|
|
23144
|
+
readonly name: "Governance__CannotCallAsset";
|
|
23145
|
+
readonly inputs: readonly [];
|
|
23146
|
+
}, {
|
|
23147
|
+
readonly type: "error";
|
|
23148
|
+
readonly name: "Governance__ConfigurationLib__DifferentialTooBig";
|
|
23149
|
+
readonly inputs: readonly [];
|
|
23150
|
+
}, {
|
|
23151
|
+
readonly type: "error";
|
|
23152
|
+
readonly name: "Governance__ConfigurationLib__DifferentialTooSmall";
|
|
23153
|
+
readonly inputs: readonly [];
|
|
23154
|
+
}, {
|
|
23155
|
+
readonly type: "error";
|
|
23156
|
+
readonly name: "Governance__ConfigurationLib__InvalidMinimumVotes";
|
|
23157
|
+
readonly inputs: readonly [];
|
|
23158
|
+
}, {
|
|
23159
|
+
readonly type: "error";
|
|
23160
|
+
readonly name: "Governance__ConfigurationLib__LockAmountTooSmall";
|
|
23161
|
+
readonly inputs: readonly [];
|
|
23162
|
+
}, {
|
|
23163
|
+
readonly type: "error";
|
|
23164
|
+
readonly name: "Governance__ConfigurationLib__QuorumTooBig";
|
|
23165
|
+
readonly inputs: readonly [];
|
|
23166
|
+
}, {
|
|
23167
|
+
readonly type: "error";
|
|
23168
|
+
readonly name: "Governance__ConfigurationLib__QuorumTooSmall";
|
|
23169
|
+
readonly inputs: readonly [];
|
|
23170
|
+
}, {
|
|
23171
|
+
readonly type: "error";
|
|
23172
|
+
readonly name: "Governance__ConfigurationLib__TimeTooBig";
|
|
23173
|
+
readonly inputs: readonly [{
|
|
23174
|
+
readonly name: "name";
|
|
23175
|
+
readonly type: "string";
|
|
23176
|
+
readonly internalType: "string";
|
|
23177
|
+
}];
|
|
23178
|
+
}, {
|
|
23179
|
+
readonly type: "error";
|
|
23180
|
+
readonly name: "Governance__ConfigurationLib__TimeTooSmall";
|
|
23181
|
+
readonly inputs: readonly [{
|
|
23182
|
+
readonly name: "name";
|
|
23183
|
+
readonly type: "string";
|
|
23184
|
+
readonly internalType: "string";
|
|
23185
|
+
}];
|
|
23186
|
+
}, {
|
|
23187
|
+
readonly type: "error";
|
|
23188
|
+
readonly name: "Governance__InsufficientPower";
|
|
23189
|
+
readonly inputs: readonly [{
|
|
23190
|
+
readonly name: "voter";
|
|
23191
|
+
readonly type: "address";
|
|
23192
|
+
readonly internalType: "address";
|
|
23193
|
+
}, {
|
|
23194
|
+
readonly name: "have";
|
|
23195
|
+
readonly type: "uint256";
|
|
23196
|
+
readonly internalType: "uint256";
|
|
23197
|
+
}, {
|
|
23198
|
+
readonly name: "required";
|
|
23199
|
+
readonly type: "uint256";
|
|
23200
|
+
readonly internalType: "uint256";
|
|
23201
|
+
}];
|
|
23202
|
+
}, {
|
|
23203
|
+
readonly type: "error";
|
|
23204
|
+
readonly name: "Governance__InvalidConfiguration";
|
|
23205
|
+
readonly inputs: readonly [];
|
|
23206
|
+
}, {
|
|
23207
|
+
readonly type: "error";
|
|
23208
|
+
readonly name: "Governance__NoCheckpointsFound";
|
|
23209
|
+
readonly inputs: readonly [];
|
|
23210
|
+
}, {
|
|
23211
|
+
readonly type: "error";
|
|
23212
|
+
readonly name: "Governance__ProposalAlreadyDropped";
|
|
23213
|
+
readonly inputs: readonly [];
|
|
23214
|
+
}, {
|
|
23215
|
+
readonly type: "error";
|
|
23216
|
+
readonly name: "Governance__ProposalCannotBeDropped";
|
|
23217
|
+
readonly inputs: readonly [];
|
|
23218
|
+
}, {
|
|
23219
|
+
readonly type: "error";
|
|
23220
|
+
readonly name: "Governance__ProposalDoesNotExists";
|
|
23221
|
+
readonly inputs: readonly [{
|
|
23222
|
+
readonly name: "proposalId";
|
|
23223
|
+
readonly type: "uint256";
|
|
23224
|
+
readonly internalType: "uint256";
|
|
23225
|
+
}];
|
|
23226
|
+
}, {
|
|
23227
|
+
readonly type: "error";
|
|
23228
|
+
readonly name: "Governance__ProposalLib__MoreVoteThanExistNeeded";
|
|
23229
|
+
readonly inputs: readonly [];
|
|
23230
|
+
}, {
|
|
23231
|
+
readonly type: "error";
|
|
23232
|
+
readonly name: "Governance__ProposalLib__MoreYeaVoteThanExistNeeded";
|
|
23233
|
+
readonly inputs: readonly [];
|
|
23234
|
+
}, {
|
|
23235
|
+
readonly type: "error";
|
|
23236
|
+
readonly name: "Governance__ProposalLib__ZeroMinimum";
|
|
23237
|
+
readonly inputs: readonly [];
|
|
23238
|
+
}, {
|
|
23239
|
+
readonly type: "error";
|
|
23240
|
+
readonly name: "Governance__ProposalLib__ZeroVotesNeeded";
|
|
23241
|
+
readonly inputs: readonly [];
|
|
23242
|
+
}, {
|
|
23243
|
+
readonly type: "error";
|
|
23244
|
+
readonly name: "Governance__ProposalLib__ZeroYeaVotesNeeded";
|
|
23245
|
+
readonly inputs: readonly [];
|
|
23246
|
+
}, {
|
|
23247
|
+
readonly type: "error";
|
|
23248
|
+
readonly name: "Governance__ProposalNotActive";
|
|
23249
|
+
readonly inputs: readonly [];
|
|
23250
|
+
}, {
|
|
23251
|
+
readonly type: "error";
|
|
23252
|
+
readonly name: "Governance__ProposalNotExecutable";
|
|
23253
|
+
readonly inputs: readonly [];
|
|
23254
|
+
}, {
|
|
23255
|
+
readonly type: "error";
|
|
23256
|
+
readonly name: "Governance__UserLib__NotInPast";
|
|
23257
|
+
readonly inputs: readonly [];
|
|
23258
|
+
}, {
|
|
23259
|
+
readonly type: "error";
|
|
23260
|
+
readonly name: "Governance__WithdrawalAlreadyclaimed";
|
|
23261
|
+
readonly inputs: readonly [];
|
|
23262
|
+
}, {
|
|
23263
|
+
readonly type: "error";
|
|
23264
|
+
readonly name: "Governance__WithdrawalNotUnlockedYet";
|
|
23265
|
+
readonly inputs: readonly [{
|
|
23266
|
+
readonly name: "currentTime";
|
|
23267
|
+
readonly type: "uint256";
|
|
23268
|
+
readonly internalType: "Timestamp";
|
|
23269
|
+
}, {
|
|
23270
|
+
readonly name: "unlocksAt";
|
|
23271
|
+
readonly type: "uint256";
|
|
23272
|
+
readonly internalType: "Timestamp";
|
|
23273
|
+
}];
|
|
23274
|
+
}, {
|
|
23275
|
+
readonly type: "error";
|
|
23276
|
+
readonly name: "HeaderLib__InvalidHeaderSize";
|
|
23277
|
+
readonly inputs: readonly [{
|
|
23278
|
+
readonly name: "expected";
|
|
23279
|
+
readonly type: "uint256";
|
|
23280
|
+
readonly internalType: "uint256";
|
|
23281
|
+
}, {
|
|
23282
|
+
readonly name: "actual";
|
|
23283
|
+
readonly type: "uint256";
|
|
23284
|
+
readonly internalType: "uint256";
|
|
23285
|
+
}];
|
|
23286
|
+
}, {
|
|
23287
|
+
readonly type: "error";
|
|
23288
|
+
readonly name: "HeaderLib__InvalidSlotNumber";
|
|
23289
|
+
readonly inputs: readonly [{
|
|
23290
|
+
readonly name: "expected";
|
|
23291
|
+
readonly type: "uint256";
|
|
23292
|
+
readonly internalType: "Slot";
|
|
23293
|
+
}, {
|
|
23294
|
+
readonly name: "actual";
|
|
23295
|
+
readonly type: "uint256";
|
|
23296
|
+
readonly internalType: "Slot";
|
|
23297
|
+
}];
|
|
23298
|
+
}, {
|
|
23299
|
+
readonly type: "error";
|
|
23300
|
+
readonly name: "Inbox__ActorTooLarge";
|
|
23301
|
+
readonly inputs: readonly [{
|
|
23302
|
+
readonly name: "actor";
|
|
23303
|
+
readonly type: "bytes32";
|
|
23304
|
+
readonly internalType: "bytes32";
|
|
23305
|
+
}];
|
|
23306
|
+
}, {
|
|
23307
|
+
readonly type: "error";
|
|
23308
|
+
readonly name: "Inbox__ContentTooLarge";
|
|
23309
|
+
readonly inputs: readonly [{
|
|
23310
|
+
readonly name: "content";
|
|
23311
|
+
readonly type: "bytes32";
|
|
23312
|
+
readonly internalType: "bytes32";
|
|
23313
|
+
}];
|
|
23314
|
+
}, {
|
|
23315
|
+
readonly type: "error";
|
|
23316
|
+
readonly name: "Inbox__MustBuildBeforeConsume";
|
|
23317
|
+
readonly inputs: readonly [];
|
|
23318
|
+
}, {
|
|
23319
|
+
readonly type: "error";
|
|
23320
|
+
readonly name: "Inbox__SecretHashTooLarge";
|
|
23321
|
+
readonly inputs: readonly [{
|
|
23322
|
+
readonly name: "secretHash";
|
|
23323
|
+
readonly type: "bytes32";
|
|
23324
|
+
readonly internalType: "bytes32";
|
|
23325
|
+
}];
|
|
23326
|
+
}, {
|
|
23327
|
+
readonly type: "error";
|
|
23328
|
+
readonly name: "Inbox__Unauthorized";
|
|
23329
|
+
readonly inputs: readonly [];
|
|
23330
|
+
}, {
|
|
23331
|
+
readonly type: "error";
|
|
23332
|
+
readonly name: "Inbox__VersionMismatch";
|
|
23333
|
+
readonly inputs: readonly [{
|
|
23334
|
+
readonly name: "expected";
|
|
23335
|
+
readonly type: "uint256";
|
|
23336
|
+
readonly internalType: "uint256";
|
|
23337
|
+
}, {
|
|
23338
|
+
readonly name: "actual";
|
|
23339
|
+
readonly type: "uint256";
|
|
23340
|
+
readonly internalType: "uint256";
|
|
23341
|
+
}];
|
|
23342
|
+
}, {
|
|
23343
|
+
readonly type: "event";
|
|
23344
|
+
readonly name: "IntervalUpdated";
|
|
23345
|
+
readonly inputs: readonly [{
|
|
23346
|
+
readonly name: "_interval";
|
|
23347
|
+
readonly type: "uint256";
|
|
23348
|
+
readonly indexed: false;
|
|
23349
|
+
readonly internalType: "uint256";
|
|
23350
|
+
}];
|
|
23351
|
+
readonly anonymous: false;
|
|
23352
|
+
}, {
|
|
23353
|
+
readonly type: "error";
|
|
23354
|
+
readonly name: "MaxDepositsTooLarge";
|
|
23355
|
+
readonly inputs: readonly [{
|
|
23356
|
+
readonly name: "_depositAmount";
|
|
23357
|
+
readonly type: "uint256";
|
|
23358
|
+
readonly internalType: "uint256";
|
|
23359
|
+
}, {
|
|
23360
|
+
readonly name: "_maxDepositsPerMint";
|
|
23361
|
+
readonly type: "uint256";
|
|
23362
|
+
readonly internalType: "uint256";
|
|
23363
|
+
}];
|
|
23364
|
+
}, {
|
|
23365
|
+
readonly type: "error";
|
|
23366
|
+
readonly name: "MerkleLib__InvalidRoot";
|
|
23367
|
+
readonly inputs: readonly [{
|
|
23368
|
+
readonly name: "expected";
|
|
23369
|
+
readonly type: "bytes32";
|
|
23370
|
+
readonly internalType: "bytes32";
|
|
23371
|
+
}, {
|
|
21782
23372
|
readonly name: "actual";
|
|
21783
23373
|
readonly type: "bytes32";
|
|
21784
23374
|
readonly internalType: "bytes32";
|
|
@@ -21792,15 +23382,25 @@ export declare const l1Artifacts: {
|
|
|
21792
23382
|
readonly internalType: "uint256";
|
|
21793
23383
|
}];
|
|
21794
23384
|
}, {
|
|
21795
|
-
readonly type: "
|
|
21796
|
-
readonly name: "
|
|
23385
|
+
readonly type: "error";
|
|
23386
|
+
readonly name: "NotCanAddValidator";
|
|
21797
23387
|
readonly inputs: readonly [{
|
|
21798
|
-
readonly name: "
|
|
23388
|
+
readonly name: "_caller";
|
|
23389
|
+
readonly type: "address";
|
|
23390
|
+
readonly internalType: "address";
|
|
23391
|
+
}];
|
|
23392
|
+
}, {
|
|
23393
|
+
readonly type: "error";
|
|
23394
|
+
readonly name: "NotEnoughTimeSinceLastMint";
|
|
23395
|
+
readonly inputs: readonly [{
|
|
23396
|
+
readonly name: "_lastMintTimestamp";
|
|
23397
|
+
readonly type: "uint256";
|
|
23398
|
+
readonly internalType: "uint256";
|
|
23399
|
+
}, {
|
|
23400
|
+
readonly name: "_minMintInterval";
|
|
21799
23401
|
readonly type: "uint256";
|
|
21800
|
-
readonly indexed: false;
|
|
21801
23402
|
readonly internalType: "uint256";
|
|
21802
23403
|
}];
|
|
21803
|
-
readonly anonymous: false;
|
|
21804
23404
|
}, {
|
|
21805
23405
|
readonly type: "error";
|
|
21806
23406
|
readonly name: "Outbox__AlreadyNullified";
|
|
@@ -21881,18 +23481,6 @@ export declare const l1Artifacts: {
|
|
|
21881
23481
|
readonly type: "address";
|
|
21882
23482
|
readonly internalType: "address";
|
|
21883
23483
|
}];
|
|
21884
|
-
}, {
|
|
21885
|
-
readonly type: "error";
|
|
21886
|
-
readonly name: "Outbox__InvalidVersion";
|
|
21887
|
-
readonly inputs: readonly [{
|
|
21888
|
-
readonly name: "entry";
|
|
21889
|
-
readonly type: "uint256";
|
|
21890
|
-
readonly internalType: "uint256";
|
|
21891
|
-
}, {
|
|
21892
|
-
readonly name: "message";
|
|
21893
|
-
readonly type: "uint256";
|
|
21894
|
-
readonly internalType: "uint256";
|
|
21895
|
-
}];
|
|
21896
23484
|
}, {
|
|
21897
23485
|
readonly type: "error";
|
|
21898
23486
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -21921,6 +23509,18 @@ export declare const l1Artifacts: {
|
|
|
21921
23509
|
readonly type: "error";
|
|
21922
23510
|
readonly name: "Outbox__Unauthorized";
|
|
21923
23511
|
readonly inputs: readonly [];
|
|
23512
|
+
}, {
|
|
23513
|
+
readonly type: "error";
|
|
23514
|
+
readonly name: "Outbox__VersionMismatch";
|
|
23515
|
+
readonly inputs: readonly [{
|
|
23516
|
+
readonly name: "expected";
|
|
23517
|
+
readonly type: "uint256";
|
|
23518
|
+
readonly internalType: "uint256";
|
|
23519
|
+
}, {
|
|
23520
|
+
readonly name: "actual";
|
|
23521
|
+
readonly type: "uint256";
|
|
23522
|
+
readonly internalType: "uint256";
|
|
23523
|
+
}];
|
|
21924
23524
|
}, {
|
|
21925
23525
|
readonly type: "error";
|
|
21926
23526
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -21984,6 +23584,10 @@ export declare const l1Artifacts: {
|
|
|
21984
23584
|
readonly type: "uint256";
|
|
21985
23585
|
readonly internalType: "Timestamp";
|
|
21986
23586
|
}];
|
|
23587
|
+
}, {
|
|
23588
|
+
readonly type: "error";
|
|
23589
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
23590
|
+
readonly inputs: readonly [];
|
|
21987
23591
|
}, {
|
|
21988
23592
|
readonly type: "error";
|
|
21989
23593
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -21996,9 +23600,9 @@ export declare const l1Artifacts: {
|
|
|
21996
23600
|
readonly type: "error";
|
|
21997
23601
|
readonly name: "Registry__RollupNotRegistered";
|
|
21998
23602
|
readonly inputs: readonly [{
|
|
21999
|
-
readonly name: "
|
|
22000
|
-
readonly type: "
|
|
22001
|
-
readonly internalType: "
|
|
23603
|
+
readonly name: "version";
|
|
23604
|
+
readonly type: "uint256";
|
|
23605
|
+
readonly internalType: "uint256";
|
|
22002
23606
|
}];
|
|
22003
23607
|
}, {
|
|
22004
23608
|
readonly type: "error";
|
|
@@ -22012,6 +23616,16 @@ export declare const l1Artifacts: {
|
|
|
22012
23616
|
readonly type: "address";
|
|
22013
23617
|
readonly internalType: "address";
|
|
22014
23618
|
}];
|
|
23619
|
+
}, {
|
|
23620
|
+
readonly type: "event";
|
|
23621
|
+
readonly name: "RollupUpdated";
|
|
23622
|
+
readonly inputs: readonly [{
|
|
23623
|
+
readonly name: "_rollup";
|
|
23624
|
+
readonly type: "address";
|
|
23625
|
+
readonly indexed: true;
|
|
23626
|
+
readonly internalType: "address";
|
|
23627
|
+
}];
|
|
23628
|
+
readonly anonymous: false;
|
|
22015
23629
|
}, {
|
|
22016
23630
|
readonly type: "error";
|
|
22017
23631
|
readonly name: "Rollup__AlreadyClaimed";
|
|
@@ -22336,6 +23950,16 @@ export declare const l1Artifacts: {
|
|
|
22336
23950
|
readonly type: "bytes32";
|
|
22337
23951
|
readonly internalType: "bytes32";
|
|
22338
23952
|
}];
|
|
23953
|
+
}, {
|
|
23954
|
+
readonly type: "function";
|
|
23955
|
+
readonly name: "STAKING_ASSET";
|
|
23956
|
+
readonly inputs: readonly [];
|
|
23957
|
+
readonly outputs: readonly [{
|
|
23958
|
+
readonly name: "";
|
|
23959
|
+
readonly type: "address";
|
|
23960
|
+
readonly internalType: "contract IMintableERC20";
|
|
23961
|
+
}];
|
|
23962
|
+
readonly stateMutability: "view";
|
|
22339
23963
|
}, {
|
|
22340
23964
|
readonly type: "error";
|
|
22341
23965
|
readonly name: "SampleLib__IndexOutOfBounds";
|
|
@@ -22492,6 +24116,36 @@ export declare const l1Artifacts: {
|
|
|
22492
24116
|
readonly type: "uint256";
|
|
22493
24117
|
readonly internalType: "Timestamp";
|
|
22494
24118
|
}];
|
|
24119
|
+
}, {
|
|
24120
|
+
readonly type: "event";
|
|
24121
|
+
readonly name: "ToppedUp";
|
|
24122
|
+
readonly inputs: readonly [{
|
|
24123
|
+
readonly name: "_amount";
|
|
24124
|
+
readonly type: "uint256";
|
|
24125
|
+
readonly indexed: false;
|
|
24126
|
+
readonly internalType: "uint256";
|
|
24127
|
+
}];
|
|
24128
|
+
readonly anonymous: false;
|
|
24129
|
+
}, {
|
|
24130
|
+
readonly type: "event";
|
|
24131
|
+
readonly name: "ValidatorAdded";
|
|
24132
|
+
readonly inputs: readonly [{
|
|
24133
|
+
readonly name: "_attester";
|
|
24134
|
+
readonly type: "address";
|
|
24135
|
+
readonly indexed: true;
|
|
24136
|
+
readonly internalType: "address";
|
|
24137
|
+
}, {
|
|
24138
|
+
readonly name: "_proposer";
|
|
24139
|
+
readonly type: "address";
|
|
24140
|
+
readonly indexed: true;
|
|
24141
|
+
readonly internalType: "address";
|
|
24142
|
+
}, {
|
|
24143
|
+
readonly name: "_withdrawer";
|
|
24144
|
+
readonly type: "address";
|
|
24145
|
+
readonly indexed: true;
|
|
24146
|
+
readonly internalType: "address";
|
|
24147
|
+
}];
|
|
24148
|
+
readonly anonymous: false;
|
|
22495
24149
|
}, {
|
|
22496
24150
|
readonly type: "error";
|
|
22497
24151
|
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
@@ -22544,11 +24198,25 @@ export declare const l1Artifacts: {
|
|
|
22544
24198
|
readonly type: "address";
|
|
22545
24199
|
readonly internalType: "address";
|
|
22546
24200
|
}];
|
|
24201
|
+
}, {
|
|
24202
|
+
readonly type: "event";
|
|
24203
|
+
readonly name: "WithdrawerUpdated";
|
|
24204
|
+
readonly inputs: readonly [{
|
|
24205
|
+
readonly name: "_withdrawer";
|
|
24206
|
+
readonly type: "address";
|
|
24207
|
+
readonly indexed: true;
|
|
24208
|
+
readonly internalType: "address";
|
|
24209
|
+
}];
|
|
24210
|
+
readonly anonymous: false;
|
|
22547
24211
|
}, {
|
|
22548
24212
|
readonly type: "function";
|
|
22549
|
-
readonly name: "
|
|
24213
|
+
readonly name: "addValidator";
|
|
22550
24214
|
readonly inputs: readonly [{
|
|
22551
|
-
readonly name: "
|
|
24215
|
+
readonly name: "_attester";
|
|
24216
|
+
readonly type: "address";
|
|
24217
|
+
readonly internalType: "address";
|
|
24218
|
+
}, {
|
|
24219
|
+
readonly name: "_proposer";
|
|
22552
24220
|
readonly type: "address";
|
|
22553
24221
|
readonly internalType: "address";
|
|
22554
24222
|
}];
|
|
@@ -22556,7 +24224,61 @@ export declare const l1Artifacts: {
|
|
|
22556
24224
|
readonly stateMutability: "nonpayable";
|
|
22557
24225
|
}, {
|
|
22558
24226
|
readonly type: "function";
|
|
22559
|
-
readonly name: "
|
|
24227
|
+
readonly name: "canAddValidator";
|
|
24228
|
+
readonly inputs: readonly [{
|
|
24229
|
+
readonly name: "";
|
|
24230
|
+
readonly type: "address";
|
|
24231
|
+
readonly internalType: "address";
|
|
24232
|
+
}];
|
|
24233
|
+
readonly outputs: readonly [{
|
|
24234
|
+
readonly name: "";
|
|
24235
|
+
readonly type: "bool";
|
|
24236
|
+
readonly internalType: "bool";
|
|
24237
|
+
}];
|
|
24238
|
+
readonly stateMutability: "view";
|
|
24239
|
+
}, {
|
|
24240
|
+
readonly type: "function";
|
|
24241
|
+
readonly name: "depositAmount";
|
|
24242
|
+
readonly inputs: readonly [];
|
|
24243
|
+
readonly outputs: readonly [{
|
|
24244
|
+
readonly name: "";
|
|
24245
|
+
readonly type: "uint256";
|
|
24246
|
+
readonly internalType: "uint256";
|
|
24247
|
+
}];
|
|
24248
|
+
readonly stateMutability: "view";
|
|
24249
|
+
}, {
|
|
24250
|
+
readonly type: "function";
|
|
24251
|
+
readonly name: "depositsPerMint";
|
|
24252
|
+
readonly inputs: readonly [];
|
|
24253
|
+
readonly outputs: readonly [{
|
|
24254
|
+
readonly name: "";
|
|
24255
|
+
readonly type: "uint256";
|
|
24256
|
+
readonly internalType: "uint256";
|
|
24257
|
+
}];
|
|
24258
|
+
readonly stateMutability: "view";
|
|
24259
|
+
}, {
|
|
24260
|
+
readonly type: "function";
|
|
24261
|
+
readonly name: "grantAddValidatorPermission";
|
|
24262
|
+
readonly inputs: readonly [{
|
|
24263
|
+
readonly name: "_address";
|
|
24264
|
+
readonly type: "address";
|
|
24265
|
+
readonly internalType: "address";
|
|
24266
|
+
}];
|
|
24267
|
+
readonly outputs: readonly [];
|
|
24268
|
+
readonly stateMutability: "nonpayable";
|
|
24269
|
+
}, {
|
|
24270
|
+
readonly type: "function";
|
|
24271
|
+
readonly name: "lastMintTimestamp";
|
|
24272
|
+
readonly inputs: readonly [];
|
|
24273
|
+
readonly outputs: readonly [{
|
|
24274
|
+
readonly name: "";
|
|
24275
|
+
readonly type: "uint256";
|
|
24276
|
+
readonly internalType: "uint256";
|
|
24277
|
+
}];
|
|
24278
|
+
readonly stateMutability: "view";
|
|
24279
|
+
}, {
|
|
24280
|
+
readonly type: "function";
|
|
24281
|
+
readonly name: "mintInterval";
|
|
22560
24282
|
readonly inputs: readonly [];
|
|
22561
24283
|
readonly outputs: readonly [{
|
|
22562
24284
|
readonly name: "";
|
|
@@ -22582,7 +24304,27 @@ export declare const l1Artifacts: {
|
|
|
22582
24304
|
readonly stateMutability: "nonpayable";
|
|
22583
24305
|
}, {
|
|
22584
24306
|
readonly type: "function";
|
|
22585
|
-
readonly name: "
|
|
24307
|
+
readonly name: "revokeAddValidatorPermission";
|
|
24308
|
+
readonly inputs: readonly [{
|
|
24309
|
+
readonly name: "_address";
|
|
24310
|
+
readonly type: "address";
|
|
24311
|
+
readonly internalType: "address";
|
|
24312
|
+
}];
|
|
24313
|
+
readonly outputs: readonly [];
|
|
24314
|
+
readonly stateMutability: "nonpayable";
|
|
24315
|
+
}, {
|
|
24316
|
+
readonly type: "function";
|
|
24317
|
+
readonly name: "rollup";
|
|
24318
|
+
readonly inputs: readonly [];
|
|
24319
|
+
readonly outputs: readonly [{
|
|
24320
|
+
readonly name: "";
|
|
24321
|
+
readonly type: "address";
|
|
24322
|
+
readonly internalType: "contract IStaking";
|
|
24323
|
+
}];
|
|
24324
|
+
readonly stateMutability: "view";
|
|
24325
|
+
}, {
|
|
24326
|
+
readonly type: "function";
|
|
24327
|
+
readonly name: "setDepositAmount";
|
|
22586
24328
|
readonly inputs: readonly [{
|
|
22587
24329
|
readonly name: "_amount";
|
|
22588
24330
|
readonly type: "uint256";
|
|
@@ -22590,6 +24332,46 @@ export declare const l1Artifacts: {
|
|
|
22590
24332
|
}];
|
|
22591
24333
|
readonly outputs: readonly [];
|
|
22592
24334
|
readonly stateMutability: "nonpayable";
|
|
24335
|
+
}, {
|
|
24336
|
+
readonly type: "function";
|
|
24337
|
+
readonly name: "setDepositsPerMint";
|
|
24338
|
+
readonly inputs: readonly [{
|
|
24339
|
+
readonly name: "_depositsPerMint";
|
|
24340
|
+
readonly type: "uint256";
|
|
24341
|
+
readonly internalType: "uint256";
|
|
24342
|
+
}];
|
|
24343
|
+
readonly outputs: readonly [];
|
|
24344
|
+
readonly stateMutability: "nonpayable";
|
|
24345
|
+
}, {
|
|
24346
|
+
readonly type: "function";
|
|
24347
|
+
readonly name: "setMintInterval";
|
|
24348
|
+
readonly inputs: readonly [{
|
|
24349
|
+
readonly name: "_interval";
|
|
24350
|
+
readonly type: "uint256";
|
|
24351
|
+
readonly internalType: "uint256";
|
|
24352
|
+
}];
|
|
24353
|
+
readonly outputs: readonly [];
|
|
24354
|
+
readonly stateMutability: "nonpayable";
|
|
24355
|
+
}, {
|
|
24356
|
+
readonly type: "function";
|
|
24357
|
+
readonly name: "setRollup";
|
|
24358
|
+
readonly inputs: readonly [{
|
|
24359
|
+
readonly name: "_rollup";
|
|
24360
|
+
readonly type: "address";
|
|
24361
|
+
readonly internalType: "address";
|
|
24362
|
+
}];
|
|
24363
|
+
readonly outputs: readonly [];
|
|
24364
|
+
readonly stateMutability: "nonpayable";
|
|
24365
|
+
}, {
|
|
24366
|
+
readonly type: "function";
|
|
24367
|
+
readonly name: "setWithdrawer";
|
|
24368
|
+
readonly inputs: readonly [{
|
|
24369
|
+
readonly name: "_withdrawer";
|
|
24370
|
+
readonly type: "address";
|
|
24371
|
+
readonly internalType: "address";
|
|
24372
|
+
}];
|
|
24373
|
+
readonly outputs: readonly [];
|
|
24374
|
+
readonly stateMutability: "nonpayable";
|
|
22593
24375
|
}, {
|
|
22594
24376
|
readonly type: "function";
|
|
22595
24377
|
readonly name: "transferOwnership";
|
|
@@ -22600,17 +24382,21 @@ export declare const l1Artifacts: {
|
|
|
22600
24382
|
}];
|
|
22601
24383
|
readonly outputs: readonly [];
|
|
22602
24384
|
readonly stateMutability: "nonpayable";
|
|
24385
|
+
}, {
|
|
24386
|
+
readonly type: "function";
|
|
24387
|
+
readonly name: "withdrawer";
|
|
24388
|
+
readonly inputs: readonly [];
|
|
24389
|
+
readonly outputs: readonly [{
|
|
24390
|
+
readonly name: "";
|
|
24391
|
+
readonly type: "address";
|
|
24392
|
+
readonly internalType: "address";
|
|
24393
|
+
}];
|
|
24394
|
+
readonly stateMutability: "view";
|
|
22603
24395
|
}];
|
|
22604
24396
|
contractBytecode: `0x${string}`;
|
|
22605
24397
|
};
|
|
22606
24398
|
};
|
|
22607
24399
|
export interface DeployL1ContractsArgs extends L1ContractsConfig {
|
|
22608
|
-
/**
|
|
22609
|
-
* The address of the L2 Fee Juice contract.
|
|
22610
|
-
* It should be an AztecAddress, but the type is defined in stdlib,
|
|
22611
|
-
* which would create a circular import
|
|
22612
|
-
* */
|
|
22613
|
-
l2FeeJuiceAddress: Fr;
|
|
22614
24400
|
/** The vk tree root. */
|
|
22615
24401
|
vkTreeRoot: Fr;
|
|
22616
24402
|
/** The protocol contract tree root. */
|
|
@@ -22627,6 +24413,8 @@ export interface DeployL1ContractsArgs extends L1ContractsConfig {
|
|
|
22627
24413
|
l1TxConfig?: Partial<L1TxUtilsConfig>;
|
|
22628
24414
|
/** Enable fast mode for deployments (fire and forget transactions) */
|
|
22629
24415
|
acceleratedTestDeployments?: boolean;
|
|
24416
|
+
/** The initial balance of the fee juice portal. This is the amount of fee juice that is prefunded to accounts */
|
|
24417
|
+
feeJuicePortalInitialBalance?: bigint;
|
|
22630
24418
|
}
|
|
22631
24419
|
/**
|
|
22632
24420
|
* Creates a wallet and a public viem client for interacting with L1.
|
|
@@ -22637,8 +24425,19 @@ export interface DeployL1ContractsArgs extends L1ContractsConfig {
|
|
|
22637
24425
|
* @returns - A wallet and a public client.
|
|
22638
24426
|
*/
|
|
22639
24427
|
export declare function createL1Clients(rpcUrls: string[], mnemonicOrPrivateKeyOrHdAccount: string | `0x${string}` | HDAccount | PrivateKeyAccount, chain?: Chain, addressIndex?: number): L1Clients;
|
|
24428
|
+
export declare const deploySharedContracts: (clients: L1Clients, deployer: L1Deployer, args: DeployL1ContractsArgs, logger: Logger) => Promise<{
|
|
24429
|
+
feeAssetAddress: EthAddress;
|
|
24430
|
+
feeAssetHandlerAddress: EthAddress;
|
|
24431
|
+
stakingAssetAddress: EthAddress;
|
|
24432
|
+
stakingAssetHandlerAddress: EthAddress;
|
|
24433
|
+
registryAddress: EthAddress;
|
|
24434
|
+
governanceAddress: EthAddress;
|
|
24435
|
+
governanceProposerAddress: EthAddress;
|
|
24436
|
+
coinIssuerAddress: EthAddress;
|
|
24437
|
+
rewardDistributorAddress: EthAddress;
|
|
24438
|
+
}>;
|
|
22640
24439
|
/**
|
|
22641
|
-
* Deploys
|
|
24440
|
+
* Deploys a new rollup, using the existing canonical version to derive certain values (addresses of assets etc).
|
|
22642
24441
|
* @param clients - The L1 clients.
|
|
22643
24442
|
* @param args - The deployment arguments.
|
|
22644
24443
|
* @param registryAddress - The address of the registry.
|
|
@@ -22647,24 +24446,18 @@ export declare function createL1Clients(rpcUrls: string[], mnemonicOrPrivateKeyO
|
|
|
22647
24446
|
*/
|
|
22648
24447
|
export declare const deployRollupForUpgrade: (clients: L1Clients, args: DeployL1ContractsArgs, registryAddress: EthAddress, logger: Logger, txUtilsConfig: L1TxUtilsConfig) => Promise<{
|
|
22649
24448
|
rollup: RollupContract;
|
|
22650
|
-
payloadAddress: EthAddress;
|
|
22651
24449
|
slashFactoryAddress: EthAddress;
|
|
22652
24450
|
}>;
|
|
22653
24451
|
export declare const deploySlashFactory: (deployer: L1Deployer, rollupAddress: Hex, logger: Logger) => Promise<EthAddress>;
|
|
22654
24452
|
export declare const deployUpgradePayload: (deployer: L1Deployer, addresses: Pick<L1ContractAddresses, 'registryAddress' | 'rollupAddress'>) => Promise<EthAddress>;
|
|
22655
|
-
export declare const deployRollup: (clients: L1Clients, deployer: L1Deployer, args: DeployL1ContractsArgs, addresses: Pick<L1ContractAddresses, 'feeJuicePortalAddress' | 'rewardDistributorAddress' | 'stakingAssetAddress'>, logger: Logger) => Promise<RollupContract>;
|
|
22656
24453
|
/**
|
|
22657
|
-
*
|
|
22658
|
-
* @note This function will only be used when the chain is local anvil node soon (#12050)
|
|
22659
|
-
*
|
|
22660
|
-
* @param clients - The L1 clients.
|
|
22661
|
-
* @param deployer - The L1 deployer.
|
|
22662
|
-
* @param rollupAddress - The address of the rollup.
|
|
22663
|
-
* @param stakingAssetAddress - The address of the staking asset.
|
|
22664
|
-
* @param validators - The validators to initialize.
|
|
22665
|
-
* @param acceleratedTestDeployments - Whether to use accelerated test deployments.
|
|
22666
|
-
* @param logger - The logger.
|
|
24454
|
+
* Deploys a new rollup contract, funds and initializes the fee juice portal, and initializes the validator set.
|
|
22667
24455
|
*/
|
|
24456
|
+
export declare const deployRollup: (clients: L1Clients, deployer: L1Deployer, args: DeployL1ContractsArgs, addresses: Pick<L1ContractAddresses, 'feeJuiceAddress' | 'registryAddress' | 'rewardDistributorAddress' | 'stakingAssetAddress'>, logger: Logger) => Promise<{
|
|
24457
|
+
rollup: RollupContract;
|
|
24458
|
+
slashFactoryAddress: EthAddress;
|
|
24459
|
+
}>;
|
|
24460
|
+
export declare const handoverToGovernance: (clients: L1Clients, deployer: L1Deployer, registryAddress: EthAddress, governanceAddress: EthAddress, logger: Logger, acceleratedTestDeployments: boolean | undefined) => Promise<void>;
|
|
22668
24461
|
export declare const cheat_initializeValidatorSet: (clients: L1Clients, deployer: L1Deployer, rollupAddress: Hex, stakingAssetAddress: Hex, validators: Hex[], acceleratedTestDeployments: boolean | undefined, logger: Logger) => Promise<void>;
|
|
22669
24462
|
/**
|
|
22670
24463
|
* Initialize the fee asset handler and make it a minter on the fee asset.
|
|
@@ -22689,7 +24482,7 @@ export declare const cheat_initializeFeeAssetHandler: (clients: L1Clients, deplo
|
|
|
22689
24482
|
* @returns A list of ETH addresses of the deployed contracts.
|
|
22690
24483
|
*/
|
|
22691
24484
|
export declare const deployL1Contracts: (rpcUrls: string[], account: HDAccount | PrivateKeyAccount, chain: Chain, logger: Logger, args: DeployL1ContractsArgs, txUtilsConfig?: L1TxUtilsConfig) => Promise<DeployL1ContractsReturnType>;
|
|
22692
|
-
declare class L1Deployer {
|
|
24485
|
+
export declare class L1Deployer {
|
|
22693
24486
|
readonly walletClient: ViemWalletClient;
|
|
22694
24487
|
private publicClient;
|
|
22695
24488
|
private acceleratedTestDeployments;
|
|
@@ -22726,5 +24519,4 @@ export declare function getExpectedAddress(abi: Narrow<Abi | readonly unknown[]>
|
|
|
22726
24519
|
paddedSalt: `0x${string}`;
|
|
22727
24520
|
calldata: `0x${string}`;
|
|
22728
24521
|
};
|
|
22729
|
-
export {};
|
|
22730
24522
|
//# sourceMappingURL=deploy_l1_contracts.d.ts.map
|