@aztec/ethereum 0.82.2 → 0.82.3-nightly.20250403
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/client.d.ts +1 -1
- package/dest/client.d.ts.map +1 -1
- package/dest/config.d.ts +8 -0
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +17 -2
- package/dest/contracts/fee_juice.d.ts.map +1 -1
- package/dest/contracts/fee_juice.js +10 -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 -2
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +20 -8
- package/dest/deploy_l1_contracts.d.ts +2412 -596
- 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/client.ts +2 -0
- package/src/config.ts +26 -1
- package/src/contracts/fee_juice.ts +12 -2
- package/src/contracts/forwarder.ts +6 -1
- package/src/contracts/registry.ts +19 -10
- package/src/contracts/rollup.ts +20 -8
- 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";
|
|
@@ -5017,6 +5155,18 @@ export declare const l1Artifacts: {
|
|
|
5017
5155
|
readonly type: "int256";
|
|
5018
5156
|
readonly internalType: "int256";
|
|
5019
5157
|
}];
|
|
5158
|
+
}, {
|
|
5159
|
+
readonly type: "error";
|
|
5160
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
5161
|
+
readonly inputs: readonly [{
|
|
5162
|
+
readonly name: "bits";
|
|
5163
|
+
readonly type: "uint8";
|
|
5164
|
+
readonly internalType: "uint8";
|
|
5165
|
+
}, {
|
|
5166
|
+
readonly name: "value";
|
|
5167
|
+
readonly type: "uint256";
|
|
5168
|
+
readonly internalType: "uint256";
|
|
5169
|
+
}];
|
|
5020
5170
|
}, {
|
|
5021
5171
|
readonly type: "error";
|
|
5022
5172
|
readonly name: "SampleLib__IndexOutOfBounds";
|
|
@@ -5687,7 +5837,7 @@ export declare const l1Artifacts: {
|
|
|
5687
5837
|
readonly type: "address[]";
|
|
5688
5838
|
readonly internalType: "address[]";
|
|
5689
5839
|
}];
|
|
5690
|
-
readonly stateMutability: "
|
|
5840
|
+
readonly stateMutability: "nonpayable";
|
|
5691
5841
|
}, {
|
|
5692
5842
|
readonly type: "function";
|
|
5693
5843
|
readonly name: "getEpochDuration";
|
|
@@ -6710,19 +6860,19 @@ export declare const l1Artifacts: {
|
|
|
6710
6860
|
readonly start: 605;
|
|
6711
6861
|
readonly length: 20;
|
|
6712
6862
|
}, {
|
|
6713
|
-
readonly start:
|
|
6863
|
+
readonly start: 8112;
|
|
6714
6864
|
readonly length: 20;
|
|
6715
6865
|
}, {
|
|
6716
|
-
readonly start:
|
|
6866
|
+
readonly start: 8538;
|
|
6717
6867
|
readonly length: 20;
|
|
6718
6868
|
}, {
|
|
6719
|
-
readonly start:
|
|
6869
|
+
readonly start: 9614;
|
|
6720
6870
|
readonly length: 20;
|
|
6721
6871
|
}, {
|
|
6722
|
-
readonly start:
|
|
6872
|
+
readonly start: 10243;
|
|
6723
6873
|
readonly length: 20;
|
|
6724
6874
|
}, {
|
|
6725
|
-
readonly start:
|
|
6875
|
+
readonly start: 10380;
|
|
6726
6876
|
readonly length: 20;
|
|
6727
6877
|
}];
|
|
6728
6878
|
};
|
|
@@ -6799,9 +6949,6 @@ export declare const l1Artifacts: {
|
|
|
6799
6949
|
readonly inputs: readonly [{
|
|
6800
6950
|
readonly name: "votesCast";
|
|
6801
6951
|
readonly type: "uint256";
|
|
6802
|
-
/**
|
|
6803
|
-
* The currently deployed l1 contract addresses
|
|
6804
|
-
*/
|
|
6805
6952
|
readonly internalType: "uint256";
|
|
6806
6953
|
}, {
|
|
6807
6954
|
readonly name: "votesNeeded";
|
|
@@ -6896,6 +7043,7 @@ export declare const l1Artifacts: {
|
|
|
6896
7043
|
readonly type: "error";
|
|
6897
7044
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
6898
7045
|
readonly inputs: readonly [{
|
|
7046
|
+
/** The vk tree root. */
|
|
6899
7047
|
readonly name: "caller";
|
|
6900
7048
|
readonly type: "address";
|
|
6901
7049
|
readonly internalType: "address";
|
|
@@ -6909,7 +7057,7 @@ export declare const l1Artifacts: {
|
|
|
6909
7057
|
readonly name: "Governance__CallerNotSelf";
|
|
6910
7058
|
readonly inputs: readonly [{
|
|
6911
7059
|
readonly name: "caller";
|
|
6912
|
-
readonly type: "address";
|
|
7060
|
+
readonly type: "address"; /** Configuration for the L1 tx utils module. */
|
|
6913
7061
|
readonly internalType: "address";
|
|
6914
7062
|
}, {
|
|
6915
7063
|
readonly name: "self";
|
|
@@ -7104,6 +7252,18 @@ export declare const l1Artifacts: {
|
|
|
7104
7252
|
readonly type: "error";
|
|
7105
7253
|
readonly name: "Inbox__Unauthorized";
|
|
7106
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
|
+
}];
|
|
7107
7267
|
}, {
|
|
7108
7268
|
readonly type: "error";
|
|
7109
7269
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -7204,18 +7364,6 @@ export declare const l1Artifacts: {
|
|
|
7204
7364
|
readonly type: "address";
|
|
7205
7365
|
readonly internalType: "address";
|
|
7206
7366
|
}];
|
|
7207
|
-
}, {
|
|
7208
|
-
readonly type: "error";
|
|
7209
|
-
readonly name: "Outbox__InvalidVersion";
|
|
7210
|
-
readonly inputs: readonly [{
|
|
7211
|
-
readonly name: "entry";
|
|
7212
|
-
readonly type: "uint256";
|
|
7213
|
-
readonly internalType: "uint256";
|
|
7214
|
-
}, {
|
|
7215
|
-
readonly name: "message";
|
|
7216
|
-
readonly type: "uint256";
|
|
7217
|
-
readonly internalType: "uint256";
|
|
7218
|
-
}];
|
|
7219
7367
|
}, {
|
|
7220
7368
|
readonly type: "error";
|
|
7221
7369
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -7244,6 +7392,18 @@ export declare const l1Artifacts: {
|
|
|
7244
7392
|
readonly type: "error";
|
|
7245
7393
|
readonly name: "Outbox__Unauthorized";
|
|
7246
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
|
+
}];
|
|
7247
7407
|
}, {
|
|
7248
7408
|
readonly type: "error";
|
|
7249
7409
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -7276,6 +7436,10 @@ export declare const l1Artifacts: {
|
|
|
7276
7436
|
readonly type: "uint256";
|
|
7277
7437
|
readonly internalType: "Timestamp";
|
|
7278
7438
|
}];
|
|
7439
|
+
}, {
|
|
7440
|
+
readonly type: "error";
|
|
7441
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
7442
|
+
readonly inputs: readonly [];
|
|
7279
7443
|
}, {
|
|
7280
7444
|
readonly type: "error";
|
|
7281
7445
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -7288,9 +7452,9 @@ export declare const l1Artifacts: {
|
|
|
7288
7452
|
readonly type: "error";
|
|
7289
7453
|
readonly name: "Registry__RollupNotRegistered";
|
|
7290
7454
|
readonly inputs: readonly [{
|
|
7291
|
-
readonly name: "
|
|
7292
|
-
readonly type: "
|
|
7293
|
-
readonly internalType: "
|
|
7455
|
+
readonly name: "version";
|
|
7456
|
+
readonly type: "uint256";
|
|
7457
|
+
readonly internalType: "uint256";
|
|
7294
7458
|
}];
|
|
7295
7459
|
}, {
|
|
7296
7460
|
readonly type: "error";
|
|
@@ -7576,7 +7740,15 @@ export declare const l1Artifacts: {
|
|
|
7576
7740
|
readonly type: "uint256";
|
|
7577
7741
|
readonly internalType: "Slot";
|
|
7578
7742
|
}, {
|
|
7579
|
-
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
|
+
*/
|
|
7580
7752
|
readonly type: "uint256";
|
|
7581
7753
|
readonly internalType: "Slot";
|
|
7582
7754
|
}];
|
|
@@ -7925,18 +8097,12 @@ export declare const l1Artifacts: {
|
|
|
7925
8097
|
readonly internalType: "uint256";
|
|
7926
8098
|
}, {
|
|
7927
8099
|
readonly name: "m";
|
|
7928
|
-
readonly type: "uint256";
|
|
7929
|
-
* The contract abi.
|
|
7930
|
-
*/
|
|
8100
|
+
readonly type: "uint256";
|
|
7931
8101
|
readonly internalType: "uint256";
|
|
7932
8102
|
}];
|
|
7933
8103
|
}, {
|
|
7934
|
-
readonly type: "error";
|
|
7935
|
-
|
|
7936
|
-
*/
|
|
7937
|
-
readonly name: "GovernanceProposer__NCannotBeLargerTHanM"; /**
|
|
7938
|
-
* The contract libraries
|
|
7939
|
-
*/
|
|
8104
|
+
readonly type: "error";
|
|
8105
|
+
readonly name: "GovernanceProposer__NCannotBeLargerTHanM";
|
|
7940
8106
|
readonly inputs: readonly [{
|
|
7941
8107
|
readonly name: "n";
|
|
7942
8108
|
readonly type: "uint256";
|
|
@@ -8010,7 +8176,7 @@ export declare const l1Artifacts: {
|
|
|
8010
8176
|
readonly type: "error";
|
|
8011
8177
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
8012
8178
|
readonly inputs: readonly [{
|
|
8013
|
-
readonly name: "caller";
|
|
8179
|
+
readonly name: "caller";
|
|
8014
8180
|
readonly type: "address";
|
|
8015
8181
|
readonly internalType: "address";
|
|
8016
8182
|
}, {
|
|
@@ -8218,6 +8384,18 @@ export declare const l1Artifacts: {
|
|
|
8218
8384
|
readonly type: "error";
|
|
8219
8385
|
readonly name: "Inbox__Unauthorized";
|
|
8220
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
|
+
}];
|
|
8221
8399
|
}, {
|
|
8222
8400
|
readonly type: "event";
|
|
8223
8401
|
readonly name: "L2BlockProposed";
|
|
@@ -8353,18 +8531,6 @@ export declare const l1Artifacts: {
|
|
|
8353
8531
|
readonly type: "address";
|
|
8354
8532
|
readonly internalType: "address";
|
|
8355
8533
|
}];
|
|
8356
|
-
}, {
|
|
8357
|
-
readonly type: "error";
|
|
8358
|
-
readonly name: "Outbox__InvalidVersion";
|
|
8359
|
-
readonly inputs: readonly [{
|
|
8360
|
-
readonly name: "entry";
|
|
8361
|
-
readonly type: "uint256";
|
|
8362
|
-
readonly internalType: "uint256";
|
|
8363
|
-
}, {
|
|
8364
|
-
readonly name: "message";
|
|
8365
|
-
readonly type: "uint256";
|
|
8366
|
-
readonly internalType: "uint256";
|
|
8367
|
-
}];
|
|
8368
8534
|
}, {
|
|
8369
8535
|
readonly type: "error";
|
|
8370
8536
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -8393,6 +8559,18 @@ export declare const l1Artifacts: {
|
|
|
8393
8559
|
readonly type: "error";
|
|
8394
8560
|
readonly name: "Outbox__Unauthorized";
|
|
8395
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
|
+
}];
|
|
8396
8574
|
}, {
|
|
8397
8575
|
readonly type: "error";
|
|
8398
8576
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -8440,6 +8618,10 @@ export declare const l1Artifacts: {
|
|
|
8440
8618
|
readonly internalType: "uint256";
|
|
8441
8619
|
}];
|
|
8442
8620
|
readonly anonymous: false;
|
|
8621
|
+
}, {
|
|
8622
|
+
readonly type: "error";
|
|
8623
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
8624
|
+
readonly inputs: readonly [];
|
|
8443
8625
|
}, {
|
|
8444
8626
|
readonly type: "error";
|
|
8445
8627
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -8452,9 +8634,9 @@ export declare const l1Artifacts: {
|
|
|
8452
8634
|
readonly type: "error";
|
|
8453
8635
|
readonly name: "Registry__RollupNotRegistered";
|
|
8454
8636
|
readonly inputs: readonly [{
|
|
8455
|
-
readonly name: "
|
|
8456
|
-
readonly type: "
|
|
8457
|
-
readonly internalType: "
|
|
8637
|
+
readonly name: "version";
|
|
8638
|
+
readonly type: "uint256";
|
|
8639
|
+
readonly internalType: "uint256";
|
|
8458
8640
|
}];
|
|
8459
8641
|
}, {
|
|
8460
8642
|
readonly type: "error";
|
|
@@ -8800,6 +8982,18 @@ export declare const l1Artifacts: {
|
|
|
8800
8982
|
readonly type: "int256";
|
|
8801
8983
|
readonly internalType: "int256";
|
|
8802
8984
|
}];
|
|
8985
|
+
}, {
|
|
8986
|
+
readonly type: "error";
|
|
8987
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
8988
|
+
readonly inputs: readonly [{
|
|
8989
|
+
readonly name: "bits";
|
|
8990
|
+
readonly type: "uint8";
|
|
8991
|
+
readonly internalType: "uint8";
|
|
8992
|
+
}, {
|
|
8993
|
+
readonly name: "value";
|
|
8994
|
+
readonly type: "uint256";
|
|
8995
|
+
readonly internalType: "uint256";
|
|
8996
|
+
}];
|
|
8803
8997
|
}, {
|
|
8804
8998
|
readonly type: "error";
|
|
8805
8999
|
readonly name: "SampleLib__IndexOutOfBounds";
|
|
@@ -9211,7 +9405,9 @@ export declare const l1Artifacts: {
|
|
|
9211
9405
|
readonly internalType: "uint256";
|
|
9212
9406
|
}];
|
|
9213
9407
|
}, {
|
|
9214
|
-
readonly type: "error";
|
|
9408
|
+
readonly type: "error"; /**
|
|
9409
|
+
* The contract libraries
|
|
9410
|
+
*/
|
|
9215
9411
|
readonly name: "ERC20InvalidApprover";
|
|
9216
9412
|
readonly inputs: readonly [{
|
|
9217
9413
|
readonly name: "approver";
|
|
@@ -9287,19 +9483,18 @@ export declare const l1Artifacts: {
|
|
|
9287
9483
|
readonly internalType: "uint256";
|
|
9288
9484
|
}, {
|
|
9289
9485
|
readonly name: "votesNeeded";
|
|
9290
|
-
readonly type: "uint256";
|
|
9486
|
+
readonly type: "uint256"; /** The genesis root of the archive tree. */
|
|
9291
9487
|
readonly internalType: "uint256";
|
|
9292
9488
|
}];
|
|
9293
9489
|
}, {
|
|
9294
9490
|
readonly type: "error";
|
|
9295
|
-
/** The
|
|
9296
|
-
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
9491
|
+
readonly name: "GovernanceProposer__InvalidNAndMValues"; /** The salt for CREATE2 deployment. */
|
|
9297
9492
|
readonly inputs: readonly [{
|
|
9298
9493
|
readonly name: "n";
|
|
9299
9494
|
readonly type: "uint256";
|
|
9300
9495
|
readonly internalType: "uint256";
|
|
9301
9496
|
}, {
|
|
9302
|
-
readonly name: "m";
|
|
9497
|
+
readonly name: "m";
|
|
9303
9498
|
readonly type: "uint256";
|
|
9304
9499
|
readonly internalType: "uint256";
|
|
9305
9500
|
}];
|
|
@@ -9587,6 +9782,18 @@ export declare const l1Artifacts: {
|
|
|
9587
9782
|
readonly type: "error";
|
|
9588
9783
|
readonly name: "Inbox__Unauthorized";
|
|
9589
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
|
+
}];
|
|
9590
9797
|
}, {
|
|
9591
9798
|
readonly type: "error";
|
|
9592
9799
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -9644,15 +9851,6 @@ export declare const l1Artifacts: {
|
|
|
9644
9851
|
readonly internalType: "uint256";
|
|
9645
9852
|
}, {
|
|
9646
9853
|
readonly name: "leafIndex";
|
|
9647
|
-
/**
|
|
9648
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
9649
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
9650
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
9651
|
-
* @param chain - The chain instance to deploy to.
|
|
9652
|
-
* @param logger - A logger object.
|
|
9653
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
9654
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
9655
|
-
*/
|
|
9656
9854
|
readonly type: "uint256";
|
|
9657
9855
|
readonly internalType: "uint256";
|
|
9658
9856
|
}];
|
|
@@ -9724,18 +9922,6 @@ export declare const l1Artifacts: {
|
|
|
9724
9922
|
readonly type: "address";
|
|
9725
9923
|
readonly internalType: "address";
|
|
9726
9924
|
}];
|
|
9727
|
-
}, {
|
|
9728
|
-
readonly type: "error";
|
|
9729
|
-
readonly name: "Outbox__InvalidVersion";
|
|
9730
|
-
readonly inputs: readonly [{
|
|
9731
|
-
readonly name: "entry";
|
|
9732
|
-
readonly type: "uint256";
|
|
9733
|
-
readonly internalType: "uint256";
|
|
9734
|
-
}, {
|
|
9735
|
-
readonly name: "message";
|
|
9736
|
-
readonly type: "uint256";
|
|
9737
|
-
readonly internalType: "uint256";
|
|
9738
|
-
}];
|
|
9739
9925
|
}, {
|
|
9740
9926
|
readonly type: "error";
|
|
9741
9927
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -9764,6 +9950,18 @@ export declare const l1Artifacts: {
|
|
|
9764
9950
|
readonly type: "error";
|
|
9765
9951
|
readonly name: "Outbox__Unauthorized";
|
|
9766
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
|
+
}];
|
|
9767
9965
|
}, {
|
|
9768
9966
|
readonly type: "error";
|
|
9769
9967
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -9827,6 +10025,10 @@ export declare const l1Artifacts: {
|
|
|
9827
10025
|
readonly type: "uint256";
|
|
9828
10026
|
readonly internalType: "Timestamp";
|
|
9829
10027
|
}];
|
|
10028
|
+
}, {
|
|
10029
|
+
readonly type: "error";
|
|
10030
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
10031
|
+
readonly inputs: readonly [];
|
|
9830
10032
|
}, {
|
|
9831
10033
|
readonly type: "error";
|
|
9832
10034
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -9839,9 +10041,9 @@ export declare const l1Artifacts: {
|
|
|
9839
10041
|
readonly type: "error";
|
|
9840
10042
|
readonly name: "Registry__RollupNotRegistered";
|
|
9841
10043
|
readonly inputs: readonly [{
|
|
9842
|
-
readonly name: "
|
|
9843
|
-
readonly type: "
|
|
9844
|
-
readonly internalType: "
|
|
10044
|
+
readonly name: "version";
|
|
10045
|
+
readonly type: "uint256";
|
|
10046
|
+
readonly internalType: "uint256";
|
|
9845
10047
|
}];
|
|
9846
10048
|
}, {
|
|
9847
10049
|
readonly type: "error";
|
|
@@ -10605,7 +10807,7 @@ export declare const l1Artifacts: {
|
|
|
10605
10807
|
readonly type: "function";
|
|
10606
10808
|
readonly name: "transferOwnership";
|
|
10607
10809
|
readonly inputs: readonly [{
|
|
10608
|
-
readonly name: "
|
|
10810
|
+
readonly name: "_newOwner";
|
|
10609
10811
|
readonly type: "address";
|
|
10610
10812
|
readonly internalType: "address";
|
|
10611
10813
|
}];
|
|
@@ -10712,7 +10914,9 @@ export declare const l1Artifacts: {
|
|
|
10712
10914
|
readonly internalType: "uint256";
|
|
10713
10915
|
}];
|
|
10714
10916
|
}, {
|
|
10715
|
-
readonly type: "error";
|
|
10917
|
+
readonly type: "error"; /**
|
|
10918
|
+
* The contract libraries
|
|
10919
|
+
*/
|
|
10716
10920
|
readonly name: "ERC20InvalidApprover";
|
|
10717
10921
|
readonly inputs: readonly [{
|
|
10718
10922
|
readonly name: "approver";
|
|
@@ -10788,19 +10992,18 @@ export declare const l1Artifacts: {
|
|
|
10788
10992
|
readonly internalType: "uint256";
|
|
10789
10993
|
}, {
|
|
10790
10994
|
readonly name: "votesNeeded";
|
|
10791
|
-
readonly type: "uint256";
|
|
10995
|
+
readonly type: "uint256"; /** The genesis root of the archive tree. */
|
|
10792
10996
|
readonly internalType: "uint256";
|
|
10793
10997
|
}];
|
|
10794
10998
|
}, {
|
|
10795
10999
|
readonly type: "error";
|
|
10796
|
-
/** The
|
|
10797
|
-
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
11000
|
+
readonly name: "GovernanceProposer__InvalidNAndMValues"; /** The salt for CREATE2 deployment. */
|
|
10798
11001
|
readonly inputs: readonly [{
|
|
10799
11002
|
readonly name: "n";
|
|
10800
11003
|
readonly type: "uint256";
|
|
10801
11004
|
readonly internalType: "uint256";
|
|
10802
11005
|
}, {
|
|
10803
|
-
readonly name: "m";
|
|
11006
|
+
readonly name: "m";
|
|
10804
11007
|
readonly type: "uint256";
|
|
10805
11008
|
readonly internalType: "uint256";
|
|
10806
11009
|
}];
|
|
@@ -11088,6 +11291,18 @@ export declare const l1Artifacts: {
|
|
|
11088
11291
|
readonly type: "error";
|
|
11089
11292
|
readonly name: "Inbox__Unauthorized";
|
|
11090
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
|
+
}];
|
|
11091
11306
|
}, {
|
|
11092
11307
|
readonly type: "error";
|
|
11093
11308
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -11145,15 +11360,6 @@ export declare const l1Artifacts: {
|
|
|
11145
11360
|
readonly internalType: "uint256";
|
|
11146
11361
|
}, {
|
|
11147
11362
|
readonly name: "leafIndex";
|
|
11148
|
-
/**
|
|
11149
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
11150
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
11151
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
11152
|
-
* @param chain - The chain instance to deploy to.
|
|
11153
|
-
* @param logger - A logger object.
|
|
11154
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
11155
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
11156
|
-
*/
|
|
11157
11363
|
readonly type: "uint256";
|
|
11158
11364
|
readonly internalType: "uint256";
|
|
11159
11365
|
}];
|
|
@@ -11225,18 +11431,6 @@ export declare const l1Artifacts: {
|
|
|
11225
11431
|
readonly type: "address";
|
|
11226
11432
|
readonly internalType: "address";
|
|
11227
11433
|
}];
|
|
11228
|
-
}, {
|
|
11229
|
-
readonly type: "error";
|
|
11230
|
-
readonly name: "Outbox__InvalidVersion";
|
|
11231
|
-
readonly inputs: readonly [{
|
|
11232
|
-
readonly name: "entry";
|
|
11233
|
-
readonly type: "uint256";
|
|
11234
|
-
readonly internalType: "uint256";
|
|
11235
|
-
}, {
|
|
11236
|
-
readonly name: "message";
|
|
11237
|
-
readonly type: "uint256";
|
|
11238
|
-
readonly internalType: "uint256";
|
|
11239
|
-
}];
|
|
11240
11434
|
}, {
|
|
11241
11435
|
readonly type: "error";
|
|
11242
11436
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -11265,6 +11459,18 @@ export declare const l1Artifacts: {
|
|
|
11265
11459
|
readonly type: "error";
|
|
11266
11460
|
readonly name: "Outbox__Unauthorized";
|
|
11267
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
|
+
}];
|
|
11268
11474
|
}, {
|
|
11269
11475
|
readonly type: "error";
|
|
11270
11476
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -11328,6 +11534,10 @@ export declare const l1Artifacts: {
|
|
|
11328
11534
|
readonly type: "uint256";
|
|
11329
11535
|
readonly internalType: "Timestamp";
|
|
11330
11536
|
}];
|
|
11537
|
+
}, {
|
|
11538
|
+
readonly type: "error";
|
|
11539
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
11540
|
+
readonly inputs: readonly [];
|
|
11331
11541
|
}, {
|
|
11332
11542
|
readonly type: "error";
|
|
11333
11543
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -11340,9 +11550,9 @@ export declare const l1Artifacts: {
|
|
|
11340
11550
|
readonly type: "error";
|
|
11341
11551
|
readonly name: "Registry__RollupNotRegistered";
|
|
11342
11552
|
readonly inputs: readonly [{
|
|
11343
|
-
readonly name: "
|
|
11344
|
-
readonly type: "
|
|
11345
|
-
readonly internalType: "
|
|
11553
|
+
readonly name: "version";
|
|
11554
|
+
readonly type: "uint256";
|
|
11555
|
+
readonly internalType: "uint256";
|
|
11346
11556
|
}];
|
|
11347
11557
|
}, {
|
|
11348
11558
|
readonly type: "error";
|
|
@@ -12106,7 +12316,7 @@ export declare const l1Artifacts: {
|
|
|
12106
12316
|
readonly type: "function";
|
|
12107
12317
|
readonly name: "transferOwnership";
|
|
12108
12318
|
readonly inputs: readonly [{
|
|
12109
|
-
readonly name: "
|
|
12319
|
+
readonly name: "_newOwner";
|
|
12110
12320
|
readonly type: "address";
|
|
12111
12321
|
readonly internalType: "address";
|
|
12112
12322
|
}];
|
|
@@ -12119,17 +12329,21 @@ export declare const l1Artifacts: {
|
|
|
12119
12329
|
contractAbi: readonly [{
|
|
12120
12330
|
readonly type: "constructor";
|
|
12121
12331
|
readonly inputs: readonly [{
|
|
12122
|
-
readonly name: "
|
|
12332
|
+
readonly name: "_rollup";
|
|
12123
12333
|
readonly type: "address";
|
|
12124
|
-
readonly internalType: "
|
|
12334
|
+
readonly internalType: "contract IRollup";
|
|
12125
12335
|
}, {
|
|
12126
12336
|
readonly name: "_underlying";
|
|
12127
12337
|
readonly type: "address";
|
|
12128
|
-
readonly internalType: "
|
|
12338
|
+
readonly internalType: "contract IERC20";
|
|
12129
12339
|
}, {
|
|
12130
|
-
readonly name: "
|
|
12131
|
-
readonly type: "
|
|
12132
|
-
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";
|
|
12133
12347
|
}];
|
|
12134
12348
|
readonly stateMutability: "nonpayable";
|
|
12135
12349
|
}, {
|
|
@@ -12205,7 +12419,9 @@ export declare const l1Artifacts: {
|
|
|
12205
12419
|
}, {
|
|
12206
12420
|
readonly type: "error";
|
|
12207
12421
|
readonly name: "FeeLib__InvalidFeeAssetPriceModifier";
|
|
12208
|
-
readonly inputs: readonly [];
|
|
12422
|
+
readonly inputs: readonly []; /**
|
|
12423
|
+
* The contract libraries
|
|
12424
|
+
*/
|
|
12209
12425
|
}, {
|
|
12210
12426
|
readonly type: "event";
|
|
12211
12427
|
readonly name: "FeesDistributed";
|
|
@@ -12291,7 +12507,6 @@ export declare const l1Artifacts: {
|
|
|
12291
12507
|
}];
|
|
12292
12508
|
}, {
|
|
12293
12509
|
readonly type: "error";
|
|
12294
|
-
/** The hash of the genesis block header. */
|
|
12295
12510
|
readonly name: "GovernanceProposer__ProposalAlreadyExecuted";
|
|
12296
12511
|
readonly inputs: readonly [{
|
|
12297
12512
|
readonly name: "roundNumber";
|
|
@@ -12305,6 +12520,14 @@ export declare const l1Artifacts: {
|
|
|
12305
12520
|
}, {
|
|
12306
12521
|
readonly type: "error";
|
|
12307
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
|
+
*/
|
|
12308
12531
|
readonly inputs: readonly [{
|
|
12309
12532
|
readonly name: "proposal";
|
|
12310
12533
|
readonly type: "address";
|
|
@@ -12518,6 +12741,16 @@ export declare const l1Artifacts: {
|
|
|
12518
12741
|
readonly type: "uint256";
|
|
12519
12742
|
readonly internalType: "Slot";
|
|
12520
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";
|
|
12521
12754
|
}, {
|
|
12522
12755
|
readonly type: "error";
|
|
12523
12756
|
readonly name: "Inbox__ActorTooLarge";
|
|
@@ -12539,6 +12772,14 @@ export declare const l1Artifacts: {
|
|
|
12539
12772
|
readonly name: "Inbox__MustBuildBeforeConsume";
|
|
12540
12773
|
readonly inputs: readonly [];
|
|
12541
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
|
+
*/
|
|
12542
12783
|
readonly type: "error";
|
|
12543
12784
|
readonly name: "Inbox__SecretHashTooLarge";
|
|
12544
12785
|
readonly inputs: readonly [{
|
|
@@ -12550,6 +12791,18 @@ export declare const l1Artifacts: {
|
|
|
12550
12791
|
readonly type: "error";
|
|
12551
12792
|
readonly name: "Inbox__Unauthorized";
|
|
12552
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
|
+
}];
|
|
12553
12806
|
}, {
|
|
12554
12807
|
readonly type: "function";
|
|
12555
12808
|
readonly name: "L2_TOKEN_ADDRESS";
|
|
@@ -12584,6 +12837,9 @@ export declare const l1Artifacts: {
|
|
|
12584
12837
|
readonly type: "error";
|
|
12585
12838
|
readonly name: "Outbox__AlreadyNullified";
|
|
12586
12839
|
readonly inputs: readonly [{
|
|
12840
|
+
/**
|
|
12841
|
+
* Deploys a new rollup contract, funds and initializes the fee juice portal, and initializes the validator set.
|
|
12842
|
+
*/
|
|
12587
12843
|
readonly name: "l2BlockNumber";
|
|
12588
12844
|
readonly type: "uint256";
|
|
12589
12845
|
readonly internalType: "uint256";
|
|
@@ -12640,15 +12896,7 @@ export declare const l1Artifacts: {
|
|
|
12640
12896
|
readonly type: "error";
|
|
12641
12897
|
readonly name: "Outbox__InvalidPathLength";
|
|
12642
12898
|
readonly inputs: readonly [{
|
|
12643
|
-
readonly name: "expected";
|
|
12644
|
-
* Deploys the aztec L1 contracts; Rollup & (optionally) Decoder Helper.
|
|
12645
|
-
* @param rpcUrls - List of URLs of the ETH RPC to use for deployment.
|
|
12646
|
-
* @param account - Private Key or HD Account that will deploy the contracts.
|
|
12647
|
-
* @param chain - The chain instance to deploy to.
|
|
12648
|
-
* @param logger - A logger object.
|
|
12649
|
-
* @param args - Arguments for initialization of L1 contracts
|
|
12650
|
-
* @returns A list of ETH addresses of the deployed contracts.
|
|
12651
|
-
*/
|
|
12899
|
+
readonly name: "expected";
|
|
12652
12900
|
readonly type: "uint256";
|
|
12653
12901
|
readonly internalType: "uint256";
|
|
12654
12902
|
}, {
|
|
@@ -12668,18 +12916,6 @@ export declare const l1Artifacts: {
|
|
|
12668
12916
|
readonly type: "address";
|
|
12669
12917
|
readonly internalType: "address";
|
|
12670
12918
|
}];
|
|
12671
|
-
}, {
|
|
12672
|
-
readonly type: "error";
|
|
12673
|
-
readonly name: "Outbox__InvalidVersion";
|
|
12674
|
-
readonly inputs: readonly [{
|
|
12675
|
-
readonly name: "entry";
|
|
12676
|
-
readonly type: "uint256";
|
|
12677
|
-
readonly internalType: "uint256";
|
|
12678
|
-
}, {
|
|
12679
|
-
readonly name: "message";
|
|
12680
|
-
readonly type: "uint256";
|
|
12681
|
-
readonly internalType: "uint256";
|
|
12682
|
-
}];
|
|
12683
12919
|
}, {
|
|
12684
12920
|
readonly type: "error";
|
|
12685
12921
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -12708,6 +12944,18 @@ export declare const l1Artifacts: {
|
|
|
12708
12944
|
readonly type: "error";
|
|
12709
12945
|
readonly name: "Outbox__Unauthorized";
|
|
12710
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
|
+
}];
|
|
12711
12959
|
}, {
|
|
12712
12960
|
readonly type: "error";
|
|
12713
12961
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -12742,14 +12990,18 @@ export declare const l1Artifacts: {
|
|
|
12742
12990
|
}];
|
|
12743
12991
|
}, {
|
|
12744
12992
|
readonly type: "function";
|
|
12745
|
-
readonly name: "
|
|
12993
|
+
readonly name: "ROLLUP";
|
|
12746
12994
|
readonly inputs: readonly [];
|
|
12747
12995
|
readonly outputs: readonly [{
|
|
12748
12996
|
readonly name: "";
|
|
12749
12997
|
readonly type: "address";
|
|
12750
|
-
readonly internalType: "contract
|
|
12998
|
+
readonly internalType: "contract IRollup";
|
|
12751
12999
|
}];
|
|
12752
13000
|
readonly stateMutability: "view";
|
|
13001
|
+
}, {
|
|
13002
|
+
readonly type: "error";
|
|
13003
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
13004
|
+
readonly inputs: readonly [];
|
|
12753
13005
|
}, {
|
|
12754
13006
|
readonly type: "error";
|
|
12755
13007
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -12762,9 +13014,9 @@ export declare const l1Artifacts: {
|
|
|
12762
13014
|
readonly type: "error";
|
|
12763
13015
|
readonly name: "Registry__RollupNotRegistered";
|
|
12764
13016
|
readonly inputs: readonly [{
|
|
12765
|
-
readonly name: "
|
|
12766
|
-
readonly type: "
|
|
12767
|
-
readonly internalType: "
|
|
13017
|
+
readonly name: "version";
|
|
13018
|
+
readonly type: "uint256";
|
|
13019
|
+
readonly internalType: "uint256";
|
|
12768
13020
|
}];
|
|
12769
13021
|
}, {
|
|
12770
13022
|
readonly type: "error";
|
|
@@ -13276,6 +13528,16 @@ export declare const l1Artifacts: {
|
|
|
13276
13528
|
readonly internalType: "contract IERC20";
|
|
13277
13529
|
}];
|
|
13278
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";
|
|
13279
13541
|
}, {
|
|
13280
13542
|
readonly type: "error";
|
|
13281
13543
|
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
@@ -13328,16 +13590,6 @@ export declare const l1Artifacts: {
|
|
|
13328
13590
|
readonly type: "address";
|
|
13329
13591
|
readonly internalType: "address";
|
|
13330
13592
|
}];
|
|
13331
|
-
}, {
|
|
13332
|
-
readonly type: "function";
|
|
13333
|
-
readonly name: "canonicalRollup";
|
|
13334
|
-
readonly inputs: readonly [];
|
|
13335
|
-
readonly outputs: readonly [{
|
|
13336
|
-
readonly name: "";
|
|
13337
|
-
readonly type: "address";
|
|
13338
|
-
readonly internalType: "address";
|
|
13339
|
-
}];
|
|
13340
|
-
readonly stateMutability: "view";
|
|
13341
13593
|
}, {
|
|
13342
13594
|
readonly type: "function";
|
|
13343
13595
|
readonly name: "depositToAztecPublic";
|
|
@@ -13378,22 +13630,6 @@ export declare const l1Artifacts: {
|
|
|
13378
13630
|
}];
|
|
13379
13631
|
readonly outputs: readonly [];
|
|
13380
13632
|
readonly stateMutability: "nonpayable";
|
|
13381
|
-
}, {
|
|
13382
|
-
readonly type: "function";
|
|
13383
|
-
readonly name: "initialize";
|
|
13384
|
-
readonly inputs: readonly [];
|
|
13385
|
-
readonly outputs: readonly [];
|
|
13386
|
-
readonly stateMutability: "nonpayable";
|
|
13387
|
-
}, {
|
|
13388
|
-
readonly type: "function";
|
|
13389
|
-
readonly name: "initialized";
|
|
13390
|
-
readonly inputs: readonly [];
|
|
13391
|
-
readonly outputs: readonly [{
|
|
13392
|
-
readonly name: "";
|
|
13393
|
-
readonly type: "bool";
|
|
13394
|
-
readonly internalType: "bool";
|
|
13395
|
-
}];
|
|
13396
|
-
readonly stateMutability: "view";
|
|
13397
13633
|
}];
|
|
13398
13634
|
contractBytecode: `0x${string}`;
|
|
13399
13635
|
};
|
|
@@ -13484,9 +13720,7 @@ export declare const l1Artifacts: {
|
|
|
13484
13720
|
readonly inputs: readonly [];
|
|
13485
13721
|
}, {
|
|
13486
13722
|
readonly type: "error";
|
|
13487
|
-
readonly name: "GovernanceProposer__FailedToPropose";
|
|
13488
|
-
* The contract abi.
|
|
13489
|
-
*/
|
|
13723
|
+
readonly name: "GovernanceProposer__FailedToPropose";
|
|
13490
13724
|
readonly inputs: readonly [{
|
|
13491
13725
|
readonly name: "proposal";
|
|
13492
13726
|
readonly type: "address";
|
|
@@ -13570,6 +13804,7 @@ export declare const l1Artifacts: {
|
|
|
13570
13804
|
}];
|
|
13571
13805
|
}, {
|
|
13572
13806
|
readonly type: "error";
|
|
13807
|
+
/** The genesis root of the archive tree. */
|
|
13573
13808
|
readonly name: "GovernanceProposer__ProposalTooOld";
|
|
13574
13809
|
readonly inputs: readonly [{
|
|
13575
13810
|
readonly name: "roundNumber";
|
|
@@ -13641,14 +13876,6 @@ export declare const l1Artifacts: {
|
|
|
13641
13876
|
readonly name: "Governance__ConfigurationLib__LockAmountTooSmall";
|
|
13642
13877
|
readonly inputs: readonly [];
|
|
13643
13878
|
}, {
|
|
13644
|
-
/**
|
|
13645
|
-
* Deploys the rollup, slash factory, and the payload which can be used to make the rollup the canonical version.
|
|
13646
|
-
* @param clients - The L1 clients.
|
|
13647
|
-
* @param args - The deployment arguments.
|
|
13648
|
-
* @param registryAddress - The address of the registry.
|
|
13649
|
-
* @param logger - The logger.
|
|
13650
|
-
* @param txUtilsConfig - The L1 tx utils config.
|
|
13651
|
-
*/
|
|
13652
13879
|
readonly type: "error";
|
|
13653
13880
|
readonly name: "Governance__ConfigurationLib__QuorumTooBig";
|
|
13654
13881
|
readonly inputs: readonly [];
|
|
@@ -13816,6 +14043,18 @@ export declare const l1Artifacts: {
|
|
|
13816
14043
|
readonly type: "error";
|
|
13817
14044
|
readonly name: "Inbox__Unauthorized";
|
|
13818
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
|
+
}];
|
|
13819
14058
|
}, {
|
|
13820
14059
|
readonly type: "error";
|
|
13821
14060
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -13886,18 +14125,12 @@ export declare const l1Artifacts: {
|
|
|
13886
14125
|
}, {
|
|
13887
14126
|
readonly name: "deadlinePassed";
|
|
13888
14127
|
readonly type: "uint32";
|
|
13889
|
-
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
|
+
*/
|
|
13890
14131
|
}];
|
|
13891
14132
|
}, {
|
|
13892
|
-
readonly type: "error";
|
|
13893
|
-
* Initialize the fee asset handler and make it a minter on the fee asset.
|
|
13894
|
-
* @note This function will only be used for testing purposes.
|
|
13895
|
-
*
|
|
13896
|
-
* @param clients - The L1 clients.
|
|
13897
|
-
* @param deployer - The L1 deployer.
|
|
13898
|
-
* @param feeAssetAddress - The address of the fee asset.
|
|
13899
|
-
* @param logger - The logger.
|
|
13900
|
-
*/
|
|
14133
|
+
readonly type: "error";
|
|
13901
14134
|
readonly name: "Outbox__InvalidChainId";
|
|
13902
14135
|
readonly inputs: readonly [];
|
|
13903
14136
|
}, {
|
|
@@ -13924,18 +14157,6 @@ export declare const l1Artifacts: {
|
|
|
13924
14157
|
readonly type: "address";
|
|
13925
14158
|
readonly internalType: "address";
|
|
13926
14159
|
}];
|
|
13927
|
-
}, {
|
|
13928
|
-
readonly type: "error";
|
|
13929
|
-
readonly name: "Outbox__InvalidVersion";
|
|
13930
|
-
readonly inputs: readonly [{
|
|
13931
|
-
readonly name: "entry";
|
|
13932
|
-
readonly type: "uint256";
|
|
13933
|
-
readonly internalType: "uint256";
|
|
13934
|
-
}, {
|
|
13935
|
-
readonly name: "message";
|
|
13936
|
-
readonly type: "uint256";
|
|
13937
|
-
readonly internalType: "uint256";
|
|
13938
|
-
}];
|
|
13939
14160
|
}, {
|
|
13940
14161
|
readonly type: "error";
|
|
13941
14162
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -13964,6 +14185,18 @@ export declare const l1Artifacts: {
|
|
|
13964
14185
|
readonly type: "error";
|
|
13965
14186
|
readonly name: "Outbox__Unauthorized";
|
|
13966
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
|
+
}];
|
|
13967
14200
|
}, {
|
|
13968
14201
|
readonly type: "error";
|
|
13969
14202
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -14028,15 +14261,19 @@ export declare const l1Artifacts: {
|
|
|
14028
14261
|
readonly internalType: "Timestamp";
|
|
14029
14262
|
}];
|
|
14030
14263
|
}, {
|
|
14031
|
-
readonly type: "
|
|
14032
|
-
readonly name: "
|
|
14033
|
-
readonly inputs: readonly [
|
|
14034
|
-
|
|
14264
|
+
readonly type: "function";
|
|
14265
|
+
readonly name: "REGISTRY";
|
|
14266
|
+
readonly inputs: readonly [];
|
|
14267
|
+
readonly outputs: readonly [{
|
|
14268
|
+
readonly name: "";
|
|
14035
14269
|
readonly type: "address";
|
|
14036
|
-
readonly indexed: true;
|
|
14037
14270
|
readonly internalType: "contract IRegistry";
|
|
14038
14271
|
}];
|
|
14039
|
-
readonly
|
|
14272
|
+
readonly stateMutability: "view";
|
|
14273
|
+
}, {
|
|
14274
|
+
readonly type: "error";
|
|
14275
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
14276
|
+
readonly inputs: readonly [];
|
|
14040
14277
|
}, {
|
|
14041
14278
|
readonly type: "error";
|
|
14042
14279
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -14049,9 +14286,9 @@ export declare const l1Artifacts: {
|
|
|
14049
14286
|
readonly type: "error";
|
|
14050
14287
|
readonly name: "Registry__RollupNotRegistered";
|
|
14051
14288
|
readonly inputs: readonly [{
|
|
14052
|
-
readonly name: "
|
|
14053
|
-
readonly type: "
|
|
14054
|
-
readonly internalType: "
|
|
14289
|
+
readonly name: "version";
|
|
14290
|
+
readonly type: "uint256";
|
|
14291
|
+
readonly internalType: "uint256";
|
|
14055
14292
|
}];
|
|
14056
14293
|
}, {
|
|
14057
14294
|
readonly type: "error";
|
|
@@ -14657,16 +14894,6 @@ export declare const l1Artifacts: {
|
|
|
14657
14894
|
readonly internalType: "address";
|
|
14658
14895
|
}];
|
|
14659
14896
|
readonly stateMutability: "view";
|
|
14660
|
-
}, {
|
|
14661
|
-
readonly type: "function";
|
|
14662
|
-
readonly name: "registry";
|
|
14663
|
-
readonly inputs: readonly [];
|
|
14664
|
-
readonly outputs: readonly [{
|
|
14665
|
-
readonly name: "";
|
|
14666
|
-
readonly type: "address";
|
|
14667
|
-
readonly internalType: "contract IRegistry";
|
|
14668
|
-
}];
|
|
14669
|
-
readonly stateMutability: "view";
|
|
14670
14897
|
}, {
|
|
14671
14898
|
readonly type: "function";
|
|
14672
14899
|
readonly name: "renounceOwnership";
|
|
@@ -14683,22 +14910,12 @@ export declare const l1Artifacts: {
|
|
|
14683
14910
|
}];
|
|
14684
14911
|
readonly outputs: readonly [];
|
|
14685
14912
|
readonly stateMutability: "nonpayable";
|
|
14686
|
-
}
|
|
14687
|
-
|
|
14688
|
-
|
|
14689
|
-
|
|
14690
|
-
|
|
14691
|
-
|
|
14692
|
-
readonly internalType: "contract IRegistry";
|
|
14693
|
-
}];
|
|
14694
|
-
readonly outputs: readonly [];
|
|
14695
|
-
readonly stateMutability: "nonpayable";
|
|
14696
|
-
}];
|
|
14697
|
-
contractBytecode: `0x${string}`;
|
|
14698
|
-
};
|
|
14699
|
-
coinIssuer: {
|
|
14700
|
-
contractAbi: readonly [{
|
|
14701
|
-
readonly type: "constructor";
|
|
14913
|
+
}];
|
|
14914
|
+
contractBytecode: `0x${string}`;
|
|
14915
|
+
};
|
|
14916
|
+
coinIssuer: {
|
|
14917
|
+
contractAbi: readonly [{
|
|
14918
|
+
readonly type: "constructor";
|
|
14702
14919
|
readonly inputs: readonly [{
|
|
14703
14920
|
readonly name: "_asset";
|
|
14704
14921
|
readonly type: "address";
|
|
@@ -14783,12 +15000,19 @@ export declare const l1Artifacts: {
|
|
|
14783
15000
|
readonly type: "error";
|
|
14784
15001
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
14785
15002
|
readonly inputs: readonly [{
|
|
15003
|
+
/**
|
|
15004
|
+
* Contract artifacts
|
|
15005
|
+
*/
|
|
14786
15006
|
readonly name: "instance";
|
|
14787
|
-
readonly type: "address";
|
|
15007
|
+
readonly type: "address"; /**
|
|
15008
|
+
* The contract abi.
|
|
15009
|
+
*/
|
|
14788
15010
|
readonly internalType: "address";
|
|
14789
15011
|
}];
|
|
14790
15012
|
}, {
|
|
14791
|
-
readonly type: "error";
|
|
15013
|
+
readonly type: "error"; /**
|
|
15014
|
+
* The contract bytecode
|
|
15015
|
+
*/
|
|
14792
15016
|
readonly name: "GovernanceProposer__InsufficientVotes";
|
|
14793
15017
|
readonly inputs: readonly [{
|
|
14794
15018
|
readonly name: "votesCast";
|
|
@@ -14868,7 +15092,7 @@ export declare const l1Artifacts: {
|
|
|
14868
15092
|
readonly internalType: "uint256";
|
|
14869
15093
|
}];
|
|
14870
15094
|
}, {
|
|
14871
|
-
readonly type: "error";
|
|
15095
|
+
readonly type: "error"; /** The hash of the genesis block header. */
|
|
14872
15096
|
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot";
|
|
14873
15097
|
readonly inputs: readonly [{
|
|
14874
15098
|
readonly name: "slot";
|
|
@@ -14887,7 +15111,14 @@ export declare const l1Artifacts: {
|
|
|
14887
15111
|
readonly type: "error";
|
|
14888
15112
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
14889
15113
|
readonly inputs: readonly [{
|
|
14890
|
-
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
|
+
*/
|
|
14891
15122
|
readonly type: "address";
|
|
14892
15123
|
readonly internalType: "address";
|
|
14893
15124
|
}, {
|
|
@@ -15095,6 +15326,18 @@ export declare const l1Artifacts: {
|
|
|
15095
15326
|
readonly type: "error";
|
|
15096
15327
|
readonly name: "Inbox__Unauthorized";
|
|
15097
15328
|
readonly inputs: readonly [];
|
|
15329
|
+
}, {
|
|
15330
|
+
readonly type: "error";
|
|
15331
|
+
readonly name: "Inbox__VersionMismatch";
|
|
15332
|
+
readonly inputs: readonly [{
|
|
15333
|
+
readonly name: "expected";
|
|
15334
|
+
readonly type: "uint256";
|
|
15335
|
+
readonly internalType: "uint256";
|
|
15336
|
+
}, {
|
|
15337
|
+
readonly name: "actual";
|
|
15338
|
+
readonly type: "uint256";
|
|
15339
|
+
readonly internalType: "uint256";
|
|
15340
|
+
}];
|
|
15098
15341
|
}, {
|
|
15099
15342
|
readonly type: "error";
|
|
15100
15343
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -15195,18 +15438,6 @@ export declare const l1Artifacts: {
|
|
|
15195
15438
|
readonly type: "address";
|
|
15196
15439
|
readonly internalType: "address";
|
|
15197
15440
|
}];
|
|
15198
|
-
}, {
|
|
15199
|
-
readonly type: "error";
|
|
15200
|
-
readonly name: "Outbox__InvalidVersion";
|
|
15201
|
-
readonly inputs: readonly [{
|
|
15202
|
-
readonly name: "entry";
|
|
15203
|
-
readonly type: "uint256";
|
|
15204
|
-
readonly internalType: "uint256";
|
|
15205
|
-
}, {
|
|
15206
|
-
readonly name: "message";
|
|
15207
|
-
readonly type: "uint256";
|
|
15208
|
-
readonly internalType: "uint256";
|
|
15209
|
-
}];
|
|
15210
15441
|
}, {
|
|
15211
15442
|
readonly type: "error";
|
|
15212
15443
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -15235,6 +15466,18 @@ export declare const l1Artifacts: {
|
|
|
15235
15466
|
readonly type: "error";
|
|
15236
15467
|
readonly name: "Outbox__Unauthorized";
|
|
15237
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
|
+
}];
|
|
15238
15481
|
}, {
|
|
15239
15482
|
readonly type: "error";
|
|
15240
15483
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -15308,6 +15551,10 @@ export declare const l1Artifacts: {
|
|
|
15308
15551
|
readonly internalType: "uint256";
|
|
15309
15552
|
}];
|
|
15310
15553
|
readonly stateMutability: "view";
|
|
15554
|
+
}, {
|
|
15555
|
+
readonly type: "error";
|
|
15556
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
15557
|
+
readonly inputs: readonly [];
|
|
15311
15558
|
}, {
|
|
15312
15559
|
readonly type: "error";
|
|
15313
15560
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -15320,9 +15567,9 @@ export declare const l1Artifacts: {
|
|
|
15320
15567
|
readonly type: "error";
|
|
15321
15568
|
readonly name: "Registry__RollupNotRegistered";
|
|
15322
15569
|
readonly inputs: readonly [{
|
|
15323
|
-
readonly name: "
|
|
15324
|
-
readonly type: "
|
|
15325
|
-
readonly internalType: "
|
|
15570
|
+
readonly name: "version";
|
|
15571
|
+
readonly type: "uint256";
|
|
15572
|
+
readonly internalType: "uint256";
|
|
15326
15573
|
}];
|
|
15327
15574
|
}, {
|
|
15328
15575
|
readonly type: "error";
|
|
@@ -15662,16 +15909,6 @@ export declare const l1Artifacts: {
|
|
|
15662
15909
|
}];
|
|
15663
15910
|
}, {
|
|
15664
15911
|
readonly type: "error";
|
|
15665
|
-
/**
|
|
15666
|
-
* Helper function to deploy ETH contracts.
|
|
15667
|
-
* @param walletClient - A viem WalletClient.
|
|
15668
|
-
* @param publicClient - A viem PublicClient.
|
|
15669
|
-
* @param abi - The ETH contract's ABI (as abitype's Abi).
|
|
15670
|
-
* @param bytecode - The ETH contract's bytecode.
|
|
15671
|
-
* @param args - Constructor arguments for the contract.
|
|
15672
|
-
* @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).
|
|
15673
|
-
* @returns The ETH address the contract was deployed to.
|
|
15674
|
-
*/
|
|
15675
15912
|
readonly name: "SampleLib__IndexOutOfBounds";
|
|
15676
15913
|
readonly inputs: readonly [{
|
|
15677
15914
|
readonly name: "requested";
|
|
@@ -16015,7 +16252,9 @@ export declare const l1Artifacts: {
|
|
|
16015
16252
|
readonly internalType: "contract IPayload";
|
|
16016
16253
|
}];
|
|
16017
16254
|
}, {
|
|
16018
|
-
readonly type: "error";
|
|
16255
|
+
readonly type: "error"; /**
|
|
16256
|
+
* The currently deployed l1 contract addresses
|
|
16257
|
+
*/
|
|
16019
16258
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
16020
16259
|
readonly inputs: readonly [{
|
|
16021
16260
|
readonly name: "instance";
|
|
@@ -16126,7 +16365,7 @@ export declare const l1Artifacts: {
|
|
|
16126
16365
|
readonly type: "address";
|
|
16127
16366
|
readonly internalType: "address";
|
|
16128
16367
|
}, {
|
|
16129
|
-
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 */
|
|
16130
16369
|
readonly type: "address";
|
|
16131
16370
|
readonly internalType: "address";
|
|
16132
16371
|
}];
|
|
@@ -16309,18 +16548,6 @@ export declare const l1Artifacts: {
|
|
|
16309
16548
|
}, {
|
|
16310
16549
|
readonly type: "error";
|
|
16311
16550
|
readonly name: "Inbox__ContentTooLarge";
|
|
16312
|
-
/**
|
|
16313
|
-
* Initialize the validator set for the rollup using a cheat function.
|
|
16314
|
-
* @note This function will only be used when the chain is local anvil node soon (#12050)
|
|
16315
|
-
*
|
|
16316
|
-
* @param clients - The L1 clients.
|
|
16317
|
-
* @param deployer - The L1 deployer.
|
|
16318
|
-
* @param rollupAddress - The address of the rollup.
|
|
16319
|
-
* @param stakingAssetAddress - The address of the staking asset.
|
|
16320
|
-
* @param validators - The validators to initialize.
|
|
16321
|
-
* @param acceleratedTestDeployments - Whether to use accelerated test deployments.
|
|
16322
|
-
* @param logger - The logger.
|
|
16323
|
-
*/
|
|
16324
16551
|
readonly inputs: readonly [{
|
|
16325
16552
|
readonly name: "content";
|
|
16326
16553
|
readonly type: "bytes32";
|
|
@@ -16342,6 +16569,18 @@ export declare const l1Artifacts: {
|
|
|
16342
16569
|
readonly type: "error";
|
|
16343
16570
|
readonly name: "Inbox__Unauthorized";
|
|
16344
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
|
+
}];
|
|
16345
16584
|
}, {
|
|
16346
16585
|
readonly type: "function";
|
|
16347
16586
|
readonly name: "LIFETIME_IN_ROUNDS";
|
|
@@ -16472,18 +16711,6 @@ export declare const l1Artifacts: {
|
|
|
16472
16711
|
readonly type: "address";
|
|
16473
16712
|
readonly internalType: "address";
|
|
16474
16713
|
}];
|
|
16475
|
-
}, {
|
|
16476
|
-
readonly type: "error";
|
|
16477
|
-
readonly name: "Outbox__InvalidVersion";
|
|
16478
|
-
readonly inputs: readonly [{
|
|
16479
|
-
readonly name: "entry";
|
|
16480
|
-
readonly type: "uint256";
|
|
16481
|
-
readonly internalType: "uint256";
|
|
16482
|
-
}, {
|
|
16483
|
-
readonly name: "message";
|
|
16484
|
-
readonly type: "uint256";
|
|
16485
|
-
readonly internalType: "uint256";
|
|
16486
|
-
}];
|
|
16487
16714
|
}, {
|
|
16488
16715
|
readonly type: "error";
|
|
16489
16716
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -16512,6 +16739,18 @@ export declare const l1Artifacts: {
|
|
|
16512
16739
|
readonly type: "error";
|
|
16513
16740
|
readonly name: "Outbox__Unauthorized";
|
|
16514
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
|
+
}];
|
|
16515
16754
|
}, {
|
|
16516
16755
|
readonly type: "error";
|
|
16517
16756
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -16569,6 +16808,10 @@ export declare const l1Artifacts: {
|
|
|
16569
16808
|
readonly internalType: "contract IRegistry";
|
|
16570
16809
|
}];
|
|
16571
16810
|
readonly stateMutability: "view";
|
|
16811
|
+
}, {
|
|
16812
|
+
readonly type: "error";
|
|
16813
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
16814
|
+
readonly inputs: readonly [];
|
|
16572
16815
|
}, {
|
|
16573
16816
|
readonly type: "error";
|
|
16574
16817
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -16581,9 +16824,9 @@ export declare const l1Artifacts: {
|
|
|
16581
16824
|
readonly type: "error";
|
|
16582
16825
|
readonly name: "Registry__RollupNotRegistered";
|
|
16583
16826
|
readonly inputs: readonly [{
|
|
16584
|
-
readonly name: "
|
|
16585
|
-
readonly type: "
|
|
16586
|
-
readonly internalType: "
|
|
16827
|
+
readonly name: "version";
|
|
16828
|
+
readonly type: "uint256";
|
|
16829
|
+
readonly internalType: "uint256";
|
|
16587
16830
|
}];
|
|
16588
16831
|
}, {
|
|
16589
16832
|
readonly type: "error";
|
|
@@ -16918,16 +17161,7 @@ export declare const l1Artifacts: {
|
|
|
16918
17161
|
readonly name: "Rollup__UnavailableTxs";
|
|
16919
17162
|
readonly inputs: readonly [{
|
|
16920
17163
|
readonly name: "txsHash";
|
|
16921
|
-
readonly type: "bytes32";
|
|
16922
|
-
* Helper function to deploy ETH contracts.
|
|
16923
|
-
* @param walletClient - A viem WalletClient.
|
|
16924
|
-
* @param publicClient - A viem PublicClient.
|
|
16925
|
-
* @param abi - The ETH contract's ABI (as abitype's Abi).
|
|
16926
|
-
* @param bytecode - The ETH contract's bytecode.
|
|
16927
|
-
* @param args - Constructor arguments for the contract.
|
|
16928
|
-
* @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).
|
|
16929
|
-
* @returns The ETH address the contract was deployed to.
|
|
16930
|
-
*/
|
|
17164
|
+
readonly type: "bytes32";
|
|
16931
17165
|
readonly internalType: "bytes32";
|
|
16932
17166
|
}];
|
|
16933
17167
|
}, {
|
|
@@ -17345,6 +17579,9 @@ export declare const l1Artifacts: {
|
|
|
17345
17579
|
readonly internalType: "address";
|
|
17346
17580
|
}, {
|
|
17347
17581
|
readonly name: "actual";
|
|
17582
|
+
/**
|
|
17583
|
+
* Public Client Type.
|
|
17584
|
+
*/
|
|
17348
17585
|
readonly type: "address";
|
|
17349
17586
|
readonly internalType: "address";
|
|
17350
17587
|
}];
|
|
@@ -17706,6 +17943,18 @@ export declare const l1Artifacts: {
|
|
|
17706
17943
|
readonly type: "error";
|
|
17707
17944
|
readonly name: "Inbox__Unauthorized";
|
|
17708
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
|
+
}];
|
|
17709
17958
|
}, {
|
|
17710
17959
|
readonly type: "error";
|
|
17711
17960
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -17806,18 +18055,6 @@ export declare const l1Artifacts: {
|
|
|
17806
18055
|
readonly type: "address";
|
|
17807
18056
|
readonly internalType: "address";
|
|
17808
18057
|
}];
|
|
17809
|
-
}, {
|
|
17810
|
-
readonly type: "error";
|
|
17811
|
-
readonly name: "Outbox__InvalidVersion";
|
|
17812
|
-
readonly inputs: readonly [{
|
|
17813
|
-
readonly name: "entry";
|
|
17814
|
-
readonly type: "uint256";
|
|
17815
|
-
readonly internalType: "uint256";
|
|
17816
|
-
}, {
|
|
17817
|
-
readonly name: "message";
|
|
17818
|
-
readonly type: "uint256";
|
|
17819
|
-
readonly internalType: "uint256";
|
|
17820
|
-
}];
|
|
17821
18058
|
}, {
|
|
17822
18059
|
readonly type: "error";
|
|
17823
18060
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -17846,6 +18083,18 @@ export declare const l1Artifacts: {
|
|
|
17846
18083
|
readonly type: "error";
|
|
17847
18084
|
readonly name: "Outbox__Unauthorized";
|
|
17848
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
|
+
}];
|
|
17849
18098
|
}, {
|
|
17850
18099
|
readonly type: "error";
|
|
17851
18100
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -17903,6 +18152,10 @@ export declare const l1Artifacts: {
|
|
|
17903
18152
|
readonly internalType: "address";
|
|
17904
18153
|
}];
|
|
17905
18154
|
readonly anonymous: false;
|
|
18155
|
+
}, {
|
|
18156
|
+
readonly type: "error";
|
|
18157
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
18158
|
+
readonly inputs: readonly [];
|
|
17906
18159
|
}, {
|
|
17907
18160
|
readonly type: "error";
|
|
17908
18161
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -17915,9 +18168,9 @@ export declare const l1Artifacts: {
|
|
|
17915
18168
|
readonly type: "error";
|
|
17916
18169
|
readonly name: "Registry__RollupNotRegistered";
|
|
17917
18170
|
readonly inputs: readonly [{
|
|
17918
|
-
readonly name: "
|
|
17919
|
-
readonly type: "
|
|
17920
|
-
readonly internalType: "
|
|
18171
|
+
readonly name: "version";
|
|
18172
|
+
readonly type: "uint256";
|
|
18173
|
+
readonly internalType: "uint256";
|
|
17921
18174
|
}];
|
|
17922
18175
|
}, {
|
|
17923
18176
|
readonly type: "error";
|
|
@@ -19056,9 +19309,7 @@ export declare const l1Artifacts: {
|
|
|
19056
19309
|
readonly name: "GovernanceProposer__InstanceHaveNoCode";
|
|
19057
19310
|
readonly inputs: readonly [{
|
|
19058
19311
|
readonly name: "instance";
|
|
19059
|
-
readonly type: "address";
|
|
19060
|
-
* The currently deployed l1 contract addresses
|
|
19061
|
-
*/
|
|
19312
|
+
readonly type: "address";
|
|
19062
19313
|
readonly internalType: "address";
|
|
19063
19314
|
}];
|
|
19064
19315
|
}, {
|
|
@@ -19074,9 +19325,7 @@ export declare const l1Artifacts: {
|
|
|
19074
19325
|
readonly internalType: "uint256";
|
|
19075
19326
|
}];
|
|
19076
19327
|
}, {
|
|
19077
|
-
readonly type: "error";
|
|
19078
|
-
* The contract abi.
|
|
19079
|
-
*/
|
|
19328
|
+
readonly type: "error";
|
|
19080
19329
|
readonly name: "GovernanceProposer__InvalidNAndMValues";
|
|
19081
19330
|
readonly inputs: readonly [{
|
|
19082
19331
|
readonly name: "n";
|
|
@@ -19158,7 +19407,7 @@ export declare const l1Artifacts: {
|
|
|
19158
19407
|
readonly name: "target";
|
|
19159
19408
|
readonly type: "address";
|
|
19160
19409
|
readonly internalType: "address";
|
|
19161
|
-
}];
|
|
19410
|
+
}]; /** The genesis root of the archive tree. */
|
|
19162
19411
|
}, {
|
|
19163
19412
|
readonly type: "error";
|
|
19164
19413
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
@@ -19371,6 +19620,18 @@ export declare const l1Artifacts: {
|
|
|
19371
19620
|
readonly type: "error";
|
|
19372
19621
|
readonly name: "Inbox__Unauthorized";
|
|
19373
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
|
+
}];
|
|
19374
19635
|
}, {
|
|
19375
19636
|
readonly type: "error";
|
|
19376
19637
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -19471,18 +19732,6 @@ export declare const l1Artifacts: {
|
|
|
19471
19732
|
readonly type: "address";
|
|
19472
19733
|
readonly internalType: "address";
|
|
19473
19734
|
}];
|
|
19474
|
-
}, {
|
|
19475
|
-
readonly type: "error";
|
|
19476
|
-
readonly name: "Outbox__InvalidVersion";
|
|
19477
|
-
readonly inputs: readonly [{
|
|
19478
|
-
readonly name: "entry";
|
|
19479
|
-
readonly type: "uint256";
|
|
19480
|
-
readonly internalType: "uint256";
|
|
19481
|
-
}, {
|
|
19482
|
-
readonly name: "message";
|
|
19483
|
-
readonly type: "uint256";
|
|
19484
|
-
readonly internalType: "uint256";
|
|
19485
|
-
}];
|
|
19486
19735
|
}, {
|
|
19487
19736
|
readonly type: "error";
|
|
19488
19737
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -19511,6 +19760,18 @@ export declare const l1Artifacts: {
|
|
|
19511
19760
|
readonly type: "error";
|
|
19512
19761
|
readonly name: "Outbox__Unauthorized";
|
|
19513
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
|
+
}];
|
|
19514
19775
|
}, {
|
|
19515
19776
|
readonly type: "error";
|
|
19516
19777
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -19543,6 +19804,10 @@ export declare const l1Artifacts: {
|
|
|
19543
19804
|
readonly type: "uint256";
|
|
19544
19805
|
readonly internalType: "Timestamp";
|
|
19545
19806
|
}];
|
|
19807
|
+
}, {
|
|
19808
|
+
readonly type: "error";
|
|
19809
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
19810
|
+
readonly inputs: readonly [];
|
|
19546
19811
|
}, {
|
|
19547
19812
|
readonly type: "error";
|
|
19548
19813
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -19555,9 +19820,9 @@ export declare const l1Artifacts: {
|
|
|
19555
19820
|
readonly type: "error";
|
|
19556
19821
|
readonly name: "Registry__RollupNotRegistered";
|
|
19557
19822
|
readonly inputs: readonly [{
|
|
19558
|
-
readonly name: "
|
|
19559
|
-
readonly type: "
|
|
19560
|
-
readonly internalType: "
|
|
19823
|
+
readonly name: "version";
|
|
19824
|
+
readonly type: "uint256";
|
|
19825
|
+
readonly internalType: "uint256";
|
|
19561
19826
|
}];
|
|
19562
19827
|
}, {
|
|
19563
19828
|
readonly type: "error";
|
|
@@ -20259,9 +20524,6 @@ export declare const l1Artifacts: {
|
|
|
20259
20524
|
readonly inputs: readonly [{
|
|
20260
20525
|
readonly name: "votesCast";
|
|
20261
20526
|
readonly type: "uint256";
|
|
20262
|
-
/**
|
|
20263
|
-
* Contract artifacts
|
|
20264
|
-
*/
|
|
20265
20527
|
readonly internalType: "uint256";
|
|
20266
20528
|
}, {
|
|
20267
20529
|
readonly name: "votesNeeded";
|
|
@@ -20353,6 +20615,7 @@ export declare const l1Artifacts: {
|
|
|
20353
20615
|
readonly internalType: "address";
|
|
20354
20616
|
}];
|
|
20355
20617
|
}, {
|
|
20618
|
+
/** The salt for CREATE2 deployment. */
|
|
20356
20619
|
readonly type: "error";
|
|
20357
20620
|
readonly name: "Governance__CallerNotGovernanceProposer";
|
|
20358
20621
|
readonly inputs: readonly [{
|
|
@@ -20363,7 +20626,7 @@ export declare const l1Artifacts: {
|
|
|
20363
20626
|
readonly name: "governanceProposer";
|
|
20364
20627
|
readonly type: "address";
|
|
20365
20628
|
readonly internalType: "address";
|
|
20366
|
-
}];
|
|
20629
|
+
}]; /** The initial balance of the fee juice portal. This is the amount of fee juice that is prefunded to accounts */
|
|
20367
20630
|
}, {
|
|
20368
20631
|
readonly type: "error";
|
|
20369
20632
|
readonly name: "Governance__CallerNotSelf";
|
|
@@ -20564,6 +20827,18 @@ export declare const l1Artifacts: {
|
|
|
20564
20827
|
readonly type: "error";
|
|
20565
20828
|
readonly name: "Inbox__Unauthorized";
|
|
20566
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
|
+
}];
|
|
20567
20842
|
}, {
|
|
20568
20843
|
readonly type: "error";
|
|
20569
20844
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -20664,18 +20939,6 @@ export declare const l1Artifacts: {
|
|
|
20664
20939
|
readonly type: "address";
|
|
20665
20940
|
readonly internalType: "address";
|
|
20666
20941
|
}];
|
|
20667
|
-
}, {
|
|
20668
|
-
readonly type: "error";
|
|
20669
|
-
readonly name: "Outbox__InvalidVersion";
|
|
20670
|
-
readonly inputs: readonly [{
|
|
20671
|
-
readonly name: "entry";
|
|
20672
|
-
readonly type: "uint256";
|
|
20673
|
-
readonly internalType: "uint256";
|
|
20674
|
-
}, {
|
|
20675
|
-
readonly name: "message";
|
|
20676
|
-
readonly type: "uint256";
|
|
20677
|
-
readonly internalType: "uint256";
|
|
20678
|
-
}];
|
|
20679
20942
|
}, {
|
|
20680
20943
|
readonly type: "error";
|
|
20681
20944
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -20704,6 +20967,18 @@ export declare const l1Artifacts: {
|
|
|
20704
20967
|
readonly type: "error";
|
|
20705
20968
|
readonly name: "Outbox__Unauthorized";
|
|
20706
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
|
+
}];
|
|
20707
20982
|
}, {
|
|
20708
20983
|
readonly type: "error";
|
|
20709
20984
|
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
@@ -20756,6 +21031,10 @@ export declare const l1Artifacts: {
|
|
|
20756
21031
|
readonly internalType: "address";
|
|
20757
21032
|
}];
|
|
20758
21033
|
readonly stateMutability: "view";
|
|
21034
|
+
}, {
|
|
21035
|
+
readonly type: "error";
|
|
21036
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
21037
|
+
readonly inputs: readonly [];
|
|
20759
21038
|
}, {
|
|
20760
21039
|
readonly type: "error";
|
|
20761
21040
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -20768,9 +21047,9 @@ export declare const l1Artifacts: {
|
|
|
20768
21047
|
readonly type: "error";
|
|
20769
21048
|
readonly name: "Registry__RollupNotRegistered";
|
|
20770
21049
|
readonly inputs: readonly [{
|
|
20771
|
-
readonly name: "
|
|
20772
|
-
readonly type: "
|
|
20773
|
-
readonly internalType: "
|
|
21050
|
+
readonly name: "version";
|
|
21051
|
+
readonly type: "uint256";
|
|
21052
|
+
readonly internalType: "uint256";
|
|
20774
21053
|
}];
|
|
20775
21054
|
}, {
|
|
20776
21055
|
readonly type: "error";
|
|
@@ -21430,9 +21709,7 @@ export declare const l1Artifacts: {
|
|
|
21430
21709
|
readonly internalType: "address";
|
|
21431
21710
|
}];
|
|
21432
21711
|
}, {
|
|
21433
|
-
readonly type: "error";
|
|
21434
|
-
* The contract libraries
|
|
21435
|
-
*/
|
|
21712
|
+
readonly type: "error";
|
|
21436
21713
|
readonly name: "GovernanceProposer__InsufficientVotes";
|
|
21437
21714
|
readonly inputs: readonly [{
|
|
21438
21715
|
readonly name: "votesCast";
|
|
@@ -21513,7 +21790,7 @@ export declare const l1Artifacts: {
|
|
|
21513
21790
|
}];
|
|
21514
21791
|
}, {
|
|
21515
21792
|
readonly type: "error";
|
|
21516
|
-
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot";
|
|
21793
|
+
readonly name: "GovernanceProposer__VoteAlreadyCastForSlot"; /** The salt for CREATE2 deployment. */
|
|
21517
21794
|
readonly inputs: readonly [{
|
|
21518
21795
|
readonly name: "slot";
|
|
21519
21796
|
readonly type: "uint256";
|
|
@@ -21581,14 +21858,6 @@ export declare const l1Artifacts: {
|
|
|
21581
21858
|
readonly inputs: readonly [];
|
|
21582
21859
|
}, {
|
|
21583
21860
|
readonly type: "error";
|
|
21584
|
-
/**
|
|
21585
|
-
* Deploys the rollup, slash factory, and the payload which can be used to make the rollup the canonical version.
|
|
21586
|
-
* @param clients - The L1 clients.
|
|
21587
|
-
* @param args - The deployment arguments.
|
|
21588
|
-
* @param registryAddress - The address of the registry.
|
|
21589
|
-
* @param logger - The logger.
|
|
21590
|
-
* @param txUtilsConfig - The L1 tx utils config.
|
|
21591
|
-
*/
|
|
21592
21861
|
readonly name: "Governance__ConfigurationLib__TimeTooBig";
|
|
21593
21862
|
readonly inputs: readonly [{
|
|
21594
21863
|
readonly name: "name";
|
|
@@ -21747,6 +22016,18 @@ export declare const l1Artifacts: {
|
|
|
21747
22016
|
readonly type: "error";
|
|
21748
22017
|
readonly name: "Inbox__Unauthorized";
|
|
21749
22018
|
readonly inputs: readonly [];
|
|
22019
|
+
}, {
|
|
22020
|
+
readonly type: "error";
|
|
22021
|
+
readonly name: "Inbox__VersionMismatch";
|
|
22022
|
+
readonly inputs: readonly [{
|
|
22023
|
+
readonly name: "expected";
|
|
22024
|
+
readonly type: "uint256";
|
|
22025
|
+
readonly internalType: "uint256";
|
|
22026
|
+
}, {
|
|
22027
|
+
readonly name: "actual";
|
|
22028
|
+
readonly type: "uint256";
|
|
22029
|
+
readonly internalType: "uint256";
|
|
22030
|
+
}];
|
|
21750
22031
|
}, {
|
|
21751
22032
|
readonly type: "error";
|
|
21752
22033
|
readonly name: "MerkleLib__InvalidRoot";
|
|
@@ -21857,18 +22138,6 @@ export declare const l1Artifacts: {
|
|
|
21857
22138
|
readonly type: "address";
|
|
21858
22139
|
readonly internalType: "address";
|
|
21859
22140
|
}];
|
|
21860
|
-
}, {
|
|
21861
|
-
readonly type: "error";
|
|
21862
|
-
readonly name: "Outbox__InvalidVersion";
|
|
21863
|
-
readonly inputs: readonly [{
|
|
21864
|
-
readonly name: "entry";
|
|
21865
|
-
readonly type: "uint256";
|
|
21866
|
-
readonly internalType: "uint256";
|
|
21867
|
-
}, {
|
|
21868
|
-
readonly name: "message";
|
|
21869
|
-
readonly type: "uint256";
|
|
21870
|
-
readonly internalType: "uint256";
|
|
21871
|
-
}];
|
|
21872
22141
|
}, {
|
|
21873
22142
|
readonly type: "error";
|
|
21874
22143
|
readonly name: "Outbox__NothingToConsume";
|
|
@@ -21897,6 +22166,18 @@ export declare const l1Artifacts: {
|
|
|
21897
22166
|
readonly type: "error";
|
|
21898
22167
|
readonly name: "Outbox__Unauthorized";
|
|
21899
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
|
+
}];
|
|
21900
22181
|
}, {
|
|
21901
22182
|
readonly type: "error";
|
|
21902
22183
|
readonly name: "OwnableInvalidOwner";
|
|
@@ -21960,6 +22241,10 @@ export declare const l1Artifacts: {
|
|
|
21960
22241
|
readonly type: "uint256";
|
|
21961
22242
|
readonly internalType: "Timestamp";
|
|
21962
22243
|
}];
|
|
22244
|
+
}, {
|
|
22245
|
+
readonly type: "error";
|
|
22246
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
22247
|
+
readonly inputs: readonly [];
|
|
21963
22248
|
}, {
|
|
21964
22249
|
readonly type: "error";
|
|
21965
22250
|
readonly name: "Registry__RollupAlreadyRegistered";
|
|
@@ -21972,9 +22257,9 @@ export declare const l1Artifacts: {
|
|
|
21972
22257
|
readonly type: "error";
|
|
21973
22258
|
readonly name: "Registry__RollupNotRegistered";
|
|
21974
22259
|
readonly inputs: readonly [{
|
|
21975
|
-
readonly name: "
|
|
21976
|
-
readonly type: "
|
|
21977
|
-
readonly internalType: "
|
|
22260
|
+
readonly name: "version";
|
|
22261
|
+
readonly type: "uint256";
|
|
22262
|
+
readonly internalType: "uint256";
|
|
21978
22263
|
}];
|
|
21979
22264
|
}, {
|
|
21980
22265
|
readonly type: "error";
|
|
@@ -22579,68 +22864,1600 @@ export declare const l1Artifacts: {
|
|
|
22579
22864
|
}];
|
|
22580
22865
|
contractBytecode: `0x${string}`;
|
|
22581
22866
|
};
|
|
22582
|
-
|
|
22583
|
-
|
|
22584
|
-
|
|
22585
|
-
|
|
22586
|
-
|
|
22587
|
-
|
|
22588
|
-
|
|
22589
|
-
|
|
22590
|
-
|
|
22591
|
-
|
|
22592
|
-
|
|
22593
|
-
|
|
22594
|
-
|
|
22595
|
-
|
|
22596
|
-
|
|
22597
|
-
|
|
22598
|
-
|
|
22599
|
-
|
|
22600
|
-
|
|
22601
|
-
|
|
22602
|
-
|
|
22603
|
-
|
|
22604
|
-
|
|
22605
|
-
|
|
22606
|
-
|
|
22607
|
-
|
|
22608
|
-
|
|
22609
|
-
|
|
22610
|
-
|
|
22611
|
-
|
|
22612
|
-
|
|
22613
|
-
|
|
22614
|
-
|
|
22615
|
-
|
|
22616
|
-
|
|
22617
|
-
|
|
22618
|
-
|
|
22619
|
-
|
|
22620
|
-
|
|
22621
|
-
|
|
22622
|
-
|
|
22623
|
-
|
|
22624
|
-
|
|
22625
|
-
|
|
22626
|
-
|
|
22627
|
-
|
|
22628
|
-
|
|
22629
|
-
|
|
22630
|
-
|
|
22631
|
-
|
|
22632
|
-
|
|
22633
|
-
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
|
|
22642
|
-
|
|
22643
|
-
|
|
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
|
+
}, {
|
|
23372
|
+
readonly name: "actual";
|
|
23373
|
+
readonly type: "bytes32";
|
|
23374
|
+
readonly internalType: "bytes32";
|
|
23375
|
+
}, {
|
|
23376
|
+
readonly name: "leaf";
|
|
23377
|
+
readonly type: "bytes32";
|
|
23378
|
+
readonly internalType: "bytes32";
|
|
23379
|
+
}, {
|
|
23380
|
+
readonly name: "leafIndex";
|
|
23381
|
+
readonly type: "uint256";
|
|
23382
|
+
readonly internalType: "uint256";
|
|
23383
|
+
}];
|
|
23384
|
+
}, {
|
|
23385
|
+
readonly type: "error";
|
|
23386
|
+
readonly name: "NotCanAddValidator";
|
|
23387
|
+
readonly inputs: readonly [{
|
|
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";
|
|
23401
|
+
readonly type: "uint256";
|
|
23402
|
+
readonly internalType: "uint256";
|
|
23403
|
+
}];
|
|
23404
|
+
}, {
|
|
23405
|
+
readonly type: "error";
|
|
23406
|
+
readonly name: "Outbox__AlreadyNullified";
|
|
23407
|
+
readonly inputs: readonly [{
|
|
23408
|
+
readonly name: "l2BlockNumber";
|
|
23409
|
+
readonly type: "uint256";
|
|
23410
|
+
readonly internalType: "uint256";
|
|
23411
|
+
}, {
|
|
23412
|
+
readonly name: "leafIndex";
|
|
23413
|
+
readonly type: "uint256";
|
|
23414
|
+
readonly internalType: "uint256";
|
|
23415
|
+
}];
|
|
23416
|
+
}, {
|
|
23417
|
+
readonly type: "error";
|
|
23418
|
+
readonly name: "Outbox__BlockNotProven";
|
|
23419
|
+
readonly inputs: readonly [{
|
|
23420
|
+
readonly name: "l2BlockNumber";
|
|
23421
|
+
readonly type: "uint256";
|
|
23422
|
+
readonly internalType: "uint256";
|
|
23423
|
+
}];
|
|
23424
|
+
}, {
|
|
23425
|
+
readonly type: "error";
|
|
23426
|
+
readonly name: "Outbox__IncompatibleEntryArguments";
|
|
23427
|
+
readonly inputs: readonly [{
|
|
23428
|
+
readonly name: "messageHash";
|
|
23429
|
+
readonly type: "bytes32";
|
|
23430
|
+
readonly internalType: "bytes32";
|
|
23431
|
+
}, {
|
|
23432
|
+
readonly name: "storedFee";
|
|
23433
|
+
readonly type: "uint64";
|
|
23434
|
+
readonly internalType: "uint64";
|
|
23435
|
+
}, {
|
|
23436
|
+
readonly name: "feePassed";
|
|
23437
|
+
readonly type: "uint64";
|
|
23438
|
+
readonly internalType: "uint64";
|
|
23439
|
+
}, {
|
|
23440
|
+
readonly name: "storedVersion";
|
|
23441
|
+
readonly type: "uint32";
|
|
23442
|
+
readonly internalType: "uint32";
|
|
23443
|
+
}, {
|
|
23444
|
+
readonly name: "versionPassed";
|
|
23445
|
+
readonly type: "uint32";
|
|
23446
|
+
readonly internalType: "uint32";
|
|
23447
|
+
}, {
|
|
23448
|
+
readonly name: "storedDeadline";
|
|
23449
|
+
readonly type: "uint32";
|
|
23450
|
+
readonly internalType: "uint32";
|
|
23451
|
+
}, {
|
|
23452
|
+
readonly name: "deadlinePassed";
|
|
23453
|
+
readonly type: "uint32";
|
|
23454
|
+
readonly internalType: "uint32";
|
|
23455
|
+
}];
|
|
23456
|
+
}, {
|
|
23457
|
+
readonly type: "error";
|
|
23458
|
+
readonly name: "Outbox__InvalidChainId";
|
|
23459
|
+
readonly inputs: readonly [];
|
|
23460
|
+
}, {
|
|
23461
|
+
readonly type: "error";
|
|
23462
|
+
readonly name: "Outbox__InvalidPathLength";
|
|
23463
|
+
readonly inputs: readonly [{
|
|
23464
|
+
readonly name: "expected";
|
|
23465
|
+
readonly type: "uint256";
|
|
23466
|
+
readonly internalType: "uint256";
|
|
23467
|
+
}, {
|
|
23468
|
+
readonly name: "actual";
|
|
23469
|
+
readonly type: "uint256";
|
|
23470
|
+
readonly internalType: "uint256";
|
|
23471
|
+
}];
|
|
23472
|
+
}, {
|
|
23473
|
+
readonly type: "error";
|
|
23474
|
+
readonly name: "Outbox__InvalidRecipient";
|
|
23475
|
+
readonly inputs: readonly [{
|
|
23476
|
+
readonly name: "expected";
|
|
23477
|
+
readonly type: "address";
|
|
23478
|
+
readonly internalType: "address";
|
|
23479
|
+
}, {
|
|
23480
|
+
readonly name: "actual";
|
|
23481
|
+
readonly type: "address";
|
|
23482
|
+
readonly internalType: "address";
|
|
23483
|
+
}];
|
|
23484
|
+
}, {
|
|
23485
|
+
readonly type: "error";
|
|
23486
|
+
readonly name: "Outbox__NothingToConsume";
|
|
23487
|
+
readonly inputs: readonly [{
|
|
23488
|
+
readonly name: "messageHash";
|
|
23489
|
+
readonly type: "bytes32";
|
|
23490
|
+
readonly internalType: "bytes32";
|
|
23491
|
+
}];
|
|
23492
|
+
}, {
|
|
23493
|
+
readonly type: "error";
|
|
23494
|
+
readonly name: "Outbox__NothingToConsumeAtBlock";
|
|
23495
|
+
readonly inputs: readonly [{
|
|
23496
|
+
readonly name: "l2BlockNumber";
|
|
23497
|
+
readonly type: "uint256";
|
|
23498
|
+
readonly internalType: "uint256";
|
|
23499
|
+
}];
|
|
23500
|
+
}, {
|
|
23501
|
+
readonly type: "error";
|
|
23502
|
+
readonly name: "Outbox__RootAlreadySetAtBlock";
|
|
23503
|
+
readonly inputs: readonly [{
|
|
23504
|
+
readonly name: "l2BlockNumber";
|
|
23505
|
+
readonly type: "uint256";
|
|
23506
|
+
readonly internalType: "uint256";
|
|
23507
|
+
}];
|
|
23508
|
+
}, {
|
|
23509
|
+
readonly type: "error";
|
|
23510
|
+
readonly name: "Outbox__Unauthorized";
|
|
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
|
+
}];
|
|
23524
|
+
}, {
|
|
23525
|
+
readonly type: "error";
|
|
23526
|
+
readonly name: "OwnableInvalidOwner";
|
|
23527
|
+
readonly inputs: readonly [{
|
|
23528
|
+
readonly name: "owner";
|
|
23529
|
+
readonly type: "address";
|
|
23530
|
+
readonly internalType: "address";
|
|
23531
|
+
}];
|
|
23532
|
+
}, {
|
|
23533
|
+
readonly type: "error";
|
|
23534
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
23535
|
+
readonly inputs: readonly [{
|
|
23536
|
+
readonly name: "account";
|
|
23537
|
+
readonly type: "address";
|
|
23538
|
+
readonly internalType: "address";
|
|
23539
|
+
}];
|
|
23540
|
+
}, {
|
|
23541
|
+
readonly type: "event";
|
|
23542
|
+
readonly name: "OwnershipTransferred";
|
|
23543
|
+
readonly inputs: readonly [{
|
|
23544
|
+
readonly name: "previousOwner";
|
|
23545
|
+
readonly type: "address";
|
|
23546
|
+
readonly indexed: true;
|
|
23547
|
+
readonly internalType: "address";
|
|
23548
|
+
}, {
|
|
23549
|
+
readonly name: "newOwner";
|
|
23550
|
+
readonly type: "address";
|
|
23551
|
+
readonly indexed: true;
|
|
23552
|
+
readonly internalType: "address";
|
|
23553
|
+
}];
|
|
23554
|
+
readonly anonymous: false;
|
|
23555
|
+
}, {
|
|
23556
|
+
readonly type: "error";
|
|
23557
|
+
readonly name: "ProofCommitmentEscrow__InsufficientBalance";
|
|
23558
|
+
readonly inputs: readonly [{
|
|
23559
|
+
readonly name: "balance";
|
|
23560
|
+
readonly type: "uint256";
|
|
23561
|
+
readonly internalType: "uint256";
|
|
23562
|
+
}, {
|
|
23563
|
+
readonly name: "requested";
|
|
23564
|
+
readonly type: "uint256";
|
|
23565
|
+
readonly internalType: "uint256";
|
|
23566
|
+
}];
|
|
23567
|
+
}, {
|
|
23568
|
+
readonly type: "error";
|
|
23569
|
+
readonly name: "ProofCommitmentEscrow__NotOwner";
|
|
23570
|
+
readonly inputs: readonly [{
|
|
23571
|
+
readonly name: "caller";
|
|
23572
|
+
readonly type: "address";
|
|
23573
|
+
readonly internalType: "address";
|
|
23574
|
+
}];
|
|
23575
|
+
}, {
|
|
23576
|
+
readonly type: "error";
|
|
23577
|
+
readonly name: "ProofCommitmentEscrow__WithdrawRequestNotReady";
|
|
23578
|
+
readonly inputs: readonly [{
|
|
23579
|
+
readonly name: "current";
|
|
23580
|
+
readonly type: "uint256";
|
|
23581
|
+
readonly internalType: "uint256";
|
|
23582
|
+
}, {
|
|
23583
|
+
readonly name: "readyAt";
|
|
23584
|
+
readonly type: "uint256";
|
|
23585
|
+
readonly internalType: "Timestamp";
|
|
23586
|
+
}];
|
|
23587
|
+
}, {
|
|
23588
|
+
readonly type: "error";
|
|
23589
|
+
readonly name: "Registry__NoRollupsRegistered";
|
|
23590
|
+
readonly inputs: readonly [];
|
|
23591
|
+
}, {
|
|
23592
|
+
readonly type: "error";
|
|
23593
|
+
readonly name: "Registry__RollupAlreadyRegistered";
|
|
23594
|
+
readonly inputs: readonly [{
|
|
23595
|
+
readonly name: "rollup";
|
|
23596
|
+
readonly type: "address";
|
|
23597
|
+
readonly internalType: "address";
|
|
23598
|
+
}];
|
|
23599
|
+
}, {
|
|
23600
|
+
readonly type: "error";
|
|
23601
|
+
readonly name: "Registry__RollupNotRegistered";
|
|
23602
|
+
readonly inputs: readonly [{
|
|
23603
|
+
readonly name: "version";
|
|
23604
|
+
readonly type: "uint256";
|
|
23605
|
+
readonly internalType: "uint256";
|
|
23606
|
+
}];
|
|
23607
|
+
}, {
|
|
23608
|
+
readonly type: "error";
|
|
23609
|
+
readonly name: "RewardDistributor__InvalidCaller";
|
|
23610
|
+
readonly inputs: readonly [{
|
|
23611
|
+
readonly name: "caller";
|
|
23612
|
+
readonly type: "address";
|
|
23613
|
+
readonly internalType: "address";
|
|
23614
|
+
}, {
|
|
23615
|
+
readonly name: "canonical";
|
|
23616
|
+
readonly type: "address";
|
|
23617
|
+
readonly internalType: "address";
|
|
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;
|
|
23629
|
+
}, {
|
|
23630
|
+
readonly type: "error";
|
|
23631
|
+
readonly name: "Rollup__AlreadyClaimed";
|
|
23632
|
+
readonly inputs: readonly [{
|
|
23633
|
+
readonly name: "prover";
|
|
23634
|
+
readonly type: "address";
|
|
23635
|
+
readonly internalType: "address";
|
|
23636
|
+
}, {
|
|
23637
|
+
readonly name: "epoch";
|
|
23638
|
+
readonly type: "uint256";
|
|
23639
|
+
readonly internalType: "Epoch";
|
|
23640
|
+
}];
|
|
23641
|
+
}, {
|
|
23642
|
+
readonly type: "error";
|
|
23643
|
+
readonly name: "Rollup__InsufficientBondAmount";
|
|
23644
|
+
readonly inputs: readonly [{
|
|
23645
|
+
readonly name: "minimum";
|
|
23646
|
+
readonly type: "uint256";
|
|
23647
|
+
readonly internalType: "uint256";
|
|
23648
|
+
}, {
|
|
23649
|
+
readonly name: "provided";
|
|
23650
|
+
readonly type: "uint256";
|
|
23651
|
+
readonly internalType: "uint256";
|
|
23652
|
+
}];
|
|
23653
|
+
}, {
|
|
23654
|
+
readonly type: "error";
|
|
23655
|
+
readonly name: "Rollup__InsufficientFundsInEscrow";
|
|
23656
|
+
readonly inputs: readonly [{
|
|
23657
|
+
readonly name: "required";
|
|
23658
|
+
readonly type: "uint256";
|
|
23659
|
+
readonly internalType: "uint256";
|
|
23660
|
+
}, {
|
|
23661
|
+
readonly name: "available";
|
|
23662
|
+
readonly type: "uint256";
|
|
23663
|
+
readonly internalType: "uint256";
|
|
23664
|
+
}];
|
|
23665
|
+
}, {
|
|
23666
|
+
readonly type: "error";
|
|
23667
|
+
readonly name: "Rollup__InvalidArchive";
|
|
23668
|
+
readonly inputs: readonly [{
|
|
23669
|
+
readonly name: "expected";
|
|
23670
|
+
readonly type: "bytes32";
|
|
23671
|
+
readonly internalType: "bytes32";
|
|
23672
|
+
}, {
|
|
23673
|
+
readonly name: "actual";
|
|
23674
|
+
readonly type: "bytes32";
|
|
23675
|
+
readonly internalType: "bytes32";
|
|
23676
|
+
}];
|
|
23677
|
+
}, {
|
|
23678
|
+
readonly type: "error";
|
|
23679
|
+
readonly name: "Rollup__InvalidBasisPointFee";
|
|
23680
|
+
readonly inputs: readonly [{
|
|
23681
|
+
readonly name: "basisPointFee";
|
|
23682
|
+
readonly type: "uint256";
|
|
23683
|
+
readonly internalType: "uint256";
|
|
23684
|
+
}];
|
|
23685
|
+
}, {
|
|
23686
|
+
readonly type: "error";
|
|
23687
|
+
readonly name: "Rollup__InvalidBlobHash";
|
|
23688
|
+
readonly inputs: readonly [{
|
|
23689
|
+
readonly name: "blobHash";
|
|
23690
|
+
readonly type: "bytes32";
|
|
23691
|
+
readonly internalType: "bytes32";
|
|
23692
|
+
}];
|
|
23693
|
+
}, {
|
|
23694
|
+
readonly type: "error";
|
|
23695
|
+
readonly name: "Rollup__InvalidBlobProof";
|
|
23696
|
+
readonly inputs: readonly [{
|
|
23697
|
+
readonly name: "blobHash";
|
|
23698
|
+
readonly type: "bytes32";
|
|
23699
|
+
readonly internalType: "bytes32";
|
|
23700
|
+
}];
|
|
23701
|
+
}, {
|
|
23702
|
+
readonly type: "error";
|
|
23703
|
+
readonly name: "Rollup__InvalidBlobPublicInputsHash";
|
|
23704
|
+
readonly inputs: readonly [{
|
|
23705
|
+
readonly name: "expected";
|
|
23706
|
+
readonly type: "bytes32";
|
|
23707
|
+
readonly internalType: "bytes32";
|
|
23708
|
+
}, {
|
|
23709
|
+
readonly name: "actual";
|
|
23710
|
+
readonly type: "bytes32";
|
|
23711
|
+
readonly internalType: "bytes32";
|
|
23712
|
+
}];
|
|
23713
|
+
}, {
|
|
23714
|
+
readonly type: "error";
|
|
23715
|
+
readonly name: "Rollup__InvalidBlockHash";
|
|
23716
|
+
readonly inputs: readonly [{
|
|
23717
|
+
readonly name: "expected";
|
|
23718
|
+
readonly type: "bytes32";
|
|
23719
|
+
readonly internalType: "bytes32";
|
|
23720
|
+
}, {
|
|
23721
|
+
readonly name: "actual";
|
|
23722
|
+
readonly type: "bytes32";
|
|
23723
|
+
readonly internalType: "bytes32";
|
|
23724
|
+
}];
|
|
23725
|
+
}, {
|
|
23726
|
+
readonly type: "error";
|
|
23727
|
+
readonly name: "Rollup__InvalidBlockNumber";
|
|
23728
|
+
readonly inputs: readonly [{
|
|
23729
|
+
readonly name: "expected";
|
|
23730
|
+
readonly type: "uint256";
|
|
23731
|
+
readonly internalType: "uint256";
|
|
23732
|
+
}, {
|
|
23733
|
+
readonly name: "actual";
|
|
23734
|
+
readonly type: "uint256";
|
|
23735
|
+
readonly internalType: "uint256";
|
|
23736
|
+
}];
|
|
23737
|
+
}, {
|
|
23738
|
+
readonly type: "error";
|
|
23739
|
+
readonly name: "Rollup__InvalidChainId";
|
|
23740
|
+
readonly inputs: readonly [{
|
|
23741
|
+
readonly name: "expected";
|
|
23742
|
+
readonly type: "uint256";
|
|
23743
|
+
readonly internalType: "uint256";
|
|
23744
|
+
}, {
|
|
23745
|
+
readonly name: "actual";
|
|
23746
|
+
readonly type: "uint256";
|
|
23747
|
+
readonly internalType: "uint256";
|
|
23748
|
+
}];
|
|
23749
|
+
}, {
|
|
23750
|
+
readonly type: "error";
|
|
23751
|
+
readonly name: "Rollup__InvalidInHash";
|
|
23752
|
+
readonly inputs: readonly [{
|
|
23753
|
+
readonly name: "expected";
|
|
23754
|
+
readonly type: "bytes32";
|
|
23755
|
+
readonly internalType: "bytes32";
|
|
23756
|
+
}, {
|
|
23757
|
+
readonly name: "actual";
|
|
23758
|
+
readonly type: "bytes32";
|
|
23759
|
+
readonly internalType: "bytes32";
|
|
23760
|
+
}];
|
|
23761
|
+
}, {
|
|
23762
|
+
readonly type: "error";
|
|
23763
|
+
readonly name: "Rollup__InvalidManaBaseFee";
|
|
23764
|
+
readonly inputs: readonly [{
|
|
23765
|
+
readonly name: "expected";
|
|
23766
|
+
readonly type: "uint256";
|
|
23767
|
+
readonly internalType: "uint256";
|
|
23768
|
+
}, {
|
|
23769
|
+
readonly name: "actual";
|
|
23770
|
+
readonly type: "uint256";
|
|
23771
|
+
readonly internalType: "uint256";
|
|
23772
|
+
}];
|
|
23773
|
+
}, {
|
|
23774
|
+
readonly type: "error";
|
|
23775
|
+
readonly name: "Rollup__InvalidPreviousArchive";
|
|
23776
|
+
readonly inputs: readonly [{
|
|
23777
|
+
readonly name: "expected";
|
|
23778
|
+
readonly type: "bytes32";
|
|
23779
|
+
readonly internalType: "bytes32";
|
|
23780
|
+
}, {
|
|
23781
|
+
readonly name: "actual";
|
|
23782
|
+
readonly type: "bytes32";
|
|
23783
|
+
readonly internalType: "bytes32";
|
|
23784
|
+
}];
|
|
23785
|
+
}, {
|
|
23786
|
+
readonly type: "error";
|
|
23787
|
+
readonly name: "Rollup__InvalidPreviousBlockHash";
|
|
23788
|
+
readonly inputs: readonly [{
|
|
23789
|
+
readonly name: "expected";
|
|
23790
|
+
readonly type: "bytes32";
|
|
23791
|
+
readonly internalType: "bytes32";
|
|
23792
|
+
}, {
|
|
23793
|
+
readonly name: "actual";
|
|
23794
|
+
readonly type: "bytes32";
|
|
23795
|
+
readonly internalType: "bytes32";
|
|
23796
|
+
}];
|
|
23797
|
+
}, {
|
|
23798
|
+
readonly type: "error";
|
|
23799
|
+
readonly name: "Rollup__InvalidProof";
|
|
23800
|
+
readonly inputs: readonly [];
|
|
23801
|
+
}, {
|
|
23802
|
+
readonly type: "error";
|
|
23803
|
+
readonly name: "Rollup__InvalidProposedArchive";
|
|
23804
|
+
readonly inputs: readonly [{
|
|
23805
|
+
readonly name: "expected";
|
|
23806
|
+
readonly type: "bytes32";
|
|
23807
|
+
readonly internalType: "bytes32";
|
|
23808
|
+
}, {
|
|
23809
|
+
readonly name: "actual";
|
|
23810
|
+
readonly type: "bytes32";
|
|
23811
|
+
readonly internalType: "bytes32";
|
|
23812
|
+
}];
|
|
23813
|
+
}, {
|
|
23814
|
+
readonly type: "error";
|
|
23815
|
+
readonly name: "Rollup__InvalidTimestamp";
|
|
23816
|
+
readonly inputs: readonly [{
|
|
23817
|
+
readonly name: "expected";
|
|
23818
|
+
readonly type: "uint256";
|
|
23819
|
+
readonly internalType: "Timestamp";
|
|
23820
|
+
}, {
|
|
23821
|
+
readonly name: "actual";
|
|
23822
|
+
readonly type: "uint256";
|
|
23823
|
+
readonly internalType: "Timestamp";
|
|
23824
|
+
}];
|
|
23825
|
+
}, {
|
|
23826
|
+
readonly type: "error";
|
|
23827
|
+
readonly name: "Rollup__InvalidVersion";
|
|
23828
|
+
readonly inputs: readonly [{
|
|
23829
|
+
readonly name: "expected";
|
|
23830
|
+
readonly type: "uint256";
|
|
23831
|
+
readonly internalType: "uint256";
|
|
23832
|
+
}, {
|
|
23833
|
+
readonly name: "actual";
|
|
23834
|
+
readonly type: "uint256";
|
|
23835
|
+
readonly internalType: "uint256";
|
|
23836
|
+
}];
|
|
23837
|
+
}, {
|
|
23838
|
+
readonly type: "error";
|
|
23839
|
+
readonly name: "Rollup__ManaLimitExceeded";
|
|
23840
|
+
readonly inputs: readonly [];
|
|
23841
|
+
}, {
|
|
23842
|
+
readonly type: "error";
|
|
23843
|
+
readonly name: "Rollup__NoEpochToProve";
|
|
23844
|
+
readonly inputs: readonly [];
|
|
23845
|
+
}, {
|
|
23846
|
+
readonly type: "error";
|
|
23847
|
+
readonly name: "Rollup__NonSequentialProving";
|
|
23848
|
+
readonly inputs: readonly [];
|
|
23849
|
+
}, {
|
|
23850
|
+
readonly type: "error";
|
|
23851
|
+
readonly name: "Rollup__NonZeroDaFee";
|
|
23852
|
+
readonly inputs: readonly [];
|
|
23853
|
+
}, {
|
|
23854
|
+
readonly type: "error";
|
|
23855
|
+
readonly name: "Rollup__NotPastDeadline";
|
|
23856
|
+
readonly inputs: readonly [{
|
|
23857
|
+
readonly name: "deadline";
|
|
23858
|
+
readonly type: "uint256";
|
|
23859
|
+
readonly internalType: "Slot";
|
|
23860
|
+
}, {
|
|
23861
|
+
readonly name: "currentSlot";
|
|
23862
|
+
readonly type: "uint256";
|
|
23863
|
+
readonly internalType: "Slot";
|
|
23864
|
+
}];
|
|
23865
|
+
}, {
|
|
23866
|
+
readonly type: "error";
|
|
23867
|
+
readonly name: "Rollup__NothingToPrune";
|
|
23868
|
+
readonly inputs: readonly [];
|
|
23869
|
+
}, {
|
|
23870
|
+
readonly type: "error";
|
|
23871
|
+
readonly name: "Rollup__PastDeadline";
|
|
23872
|
+
readonly inputs: readonly [{
|
|
23873
|
+
readonly name: "deadline";
|
|
23874
|
+
readonly type: "uint256";
|
|
23875
|
+
readonly internalType: "Slot";
|
|
23876
|
+
}, {
|
|
23877
|
+
readonly name: "currentSlot";
|
|
23878
|
+
readonly type: "uint256";
|
|
23879
|
+
readonly internalType: "Slot";
|
|
23880
|
+
}];
|
|
23881
|
+
}, {
|
|
23882
|
+
readonly type: "error";
|
|
23883
|
+
readonly name: "Rollup__ProverHaveAlreadySubmitted";
|
|
23884
|
+
readonly inputs: readonly [{
|
|
23885
|
+
readonly name: "prover";
|
|
23886
|
+
readonly type: "address";
|
|
23887
|
+
readonly internalType: "address";
|
|
23888
|
+
}, {
|
|
23889
|
+
readonly name: "epoch";
|
|
23890
|
+
readonly type: "uint256";
|
|
23891
|
+
readonly internalType: "Epoch";
|
|
23892
|
+
}];
|
|
23893
|
+
}, {
|
|
23894
|
+
readonly type: "error";
|
|
23895
|
+
readonly name: "Rollup__SlotAlreadyInChain";
|
|
23896
|
+
readonly inputs: readonly [{
|
|
23897
|
+
readonly name: "lastSlot";
|
|
23898
|
+
readonly type: "uint256";
|
|
23899
|
+
readonly internalType: "Slot";
|
|
23900
|
+
}, {
|
|
23901
|
+
readonly name: "proposedSlot";
|
|
23902
|
+
readonly type: "uint256";
|
|
23903
|
+
readonly internalType: "Slot";
|
|
23904
|
+
}];
|
|
23905
|
+
}, {
|
|
23906
|
+
readonly type: "error";
|
|
23907
|
+
readonly name: "Rollup__StartAndEndNotSameEpoch";
|
|
23908
|
+
readonly inputs: readonly [{
|
|
23909
|
+
readonly name: "start";
|
|
23910
|
+
readonly type: "uint256";
|
|
23911
|
+
readonly internalType: "Epoch";
|
|
23912
|
+
}, {
|
|
23913
|
+
readonly name: "end";
|
|
23914
|
+
readonly type: "uint256";
|
|
23915
|
+
readonly internalType: "Epoch";
|
|
23916
|
+
}];
|
|
23917
|
+
}, {
|
|
23918
|
+
readonly type: "error";
|
|
23919
|
+
readonly name: "Rollup__StartIsNotBuildingOnProven";
|
|
23920
|
+
readonly inputs: readonly [];
|
|
23921
|
+
}, {
|
|
23922
|
+
readonly type: "error";
|
|
23923
|
+
readonly name: "Rollup__StartIsNotFirstBlockOfEpoch";
|
|
23924
|
+
readonly inputs: readonly [];
|
|
23925
|
+
}, {
|
|
23926
|
+
readonly type: "error";
|
|
23927
|
+
readonly name: "Rollup__TimestampInFuture";
|
|
23928
|
+
readonly inputs: readonly [{
|
|
23929
|
+
readonly name: "max";
|
|
23930
|
+
readonly type: "uint256";
|
|
23931
|
+
readonly internalType: "Timestamp";
|
|
23932
|
+
}, {
|
|
23933
|
+
readonly name: "actual";
|
|
23934
|
+
readonly type: "uint256";
|
|
23935
|
+
readonly internalType: "Timestamp";
|
|
23936
|
+
}];
|
|
23937
|
+
}, {
|
|
23938
|
+
readonly type: "error";
|
|
23939
|
+
readonly name: "Rollup__TimestampTooOld";
|
|
23940
|
+
readonly inputs: readonly [];
|
|
23941
|
+
}, {
|
|
23942
|
+
readonly type: "error";
|
|
23943
|
+
readonly name: "Rollup__TryingToProveNonExistingBlock";
|
|
23944
|
+
readonly inputs: readonly [];
|
|
23945
|
+
}, {
|
|
23946
|
+
readonly type: "error";
|
|
23947
|
+
readonly name: "Rollup__UnavailableTxs";
|
|
23948
|
+
readonly inputs: readonly [{
|
|
23949
|
+
readonly name: "txsHash";
|
|
23950
|
+
readonly type: "bytes32";
|
|
23951
|
+
readonly internalType: "bytes32";
|
|
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";
|
|
23963
|
+
}, {
|
|
23964
|
+
readonly type: "error";
|
|
23965
|
+
readonly name: "SampleLib__IndexOutOfBounds";
|
|
23966
|
+
readonly inputs: readonly [{
|
|
23967
|
+
readonly name: "requested";
|
|
23968
|
+
readonly type: "uint256";
|
|
23969
|
+
readonly internalType: "uint256";
|
|
23970
|
+
}, {
|
|
23971
|
+
readonly name: "bound";
|
|
23972
|
+
readonly type: "uint256";
|
|
23973
|
+
readonly internalType: "uint256";
|
|
23974
|
+
}];
|
|
23975
|
+
}, {
|
|
23976
|
+
readonly type: "error";
|
|
23977
|
+
readonly name: "SampleLib__SampleLargerThanIndex";
|
|
23978
|
+
readonly inputs: readonly [{
|
|
23979
|
+
readonly name: "sample";
|
|
23980
|
+
readonly type: "uint256";
|
|
23981
|
+
readonly internalType: "uint256";
|
|
23982
|
+
}, {
|
|
23983
|
+
readonly name: "index";
|
|
23984
|
+
readonly type: "uint256";
|
|
23985
|
+
readonly internalType: "uint256";
|
|
23986
|
+
}];
|
|
23987
|
+
}, {
|
|
23988
|
+
readonly type: "error";
|
|
23989
|
+
readonly name: "SignatureLib__CannotVerifyEmpty";
|
|
23990
|
+
readonly inputs: readonly [];
|
|
23991
|
+
}, {
|
|
23992
|
+
readonly type: "error";
|
|
23993
|
+
readonly name: "SignatureLib__InvalidSignature";
|
|
23994
|
+
readonly inputs: readonly [{
|
|
23995
|
+
readonly name: "expected";
|
|
23996
|
+
readonly type: "address";
|
|
23997
|
+
readonly internalType: "address";
|
|
23998
|
+
}, {
|
|
23999
|
+
readonly name: "recovered";
|
|
24000
|
+
readonly type: "address";
|
|
24001
|
+
readonly internalType: "address";
|
|
24002
|
+
}];
|
|
24003
|
+
}, {
|
|
24004
|
+
readonly type: "error";
|
|
24005
|
+
readonly name: "Staking__AlreadyActive";
|
|
24006
|
+
readonly inputs: readonly [{
|
|
24007
|
+
readonly name: "attester";
|
|
24008
|
+
readonly type: "address";
|
|
24009
|
+
readonly internalType: "address";
|
|
24010
|
+
}];
|
|
24011
|
+
}, {
|
|
24012
|
+
readonly type: "error";
|
|
24013
|
+
readonly name: "Staking__AlreadyRegistered";
|
|
24014
|
+
readonly inputs: readonly [{
|
|
24015
|
+
readonly name: "";
|
|
24016
|
+
readonly type: "address";
|
|
24017
|
+
readonly internalType: "address";
|
|
24018
|
+
}];
|
|
24019
|
+
}, {
|
|
24020
|
+
readonly type: "error";
|
|
24021
|
+
readonly name: "Staking__CannotSlashExitedStake";
|
|
24022
|
+
readonly inputs: readonly [{
|
|
24023
|
+
readonly name: "";
|
|
24024
|
+
readonly type: "address";
|
|
24025
|
+
readonly internalType: "address";
|
|
24026
|
+
}];
|
|
24027
|
+
}, {
|
|
24028
|
+
readonly type: "error";
|
|
24029
|
+
readonly name: "Staking__FailedToRemove";
|
|
24030
|
+
readonly inputs: readonly [{
|
|
24031
|
+
readonly name: "";
|
|
24032
|
+
readonly type: "address";
|
|
24033
|
+
readonly internalType: "address";
|
|
24034
|
+
}];
|
|
24035
|
+
}, {
|
|
24036
|
+
readonly type: "error";
|
|
24037
|
+
readonly name: "Staking__InsufficientStake";
|
|
24038
|
+
readonly inputs: readonly [{
|
|
24039
|
+
readonly name: "";
|
|
24040
|
+
readonly type: "uint256";
|
|
24041
|
+
readonly internalType: "uint256";
|
|
24042
|
+
}, {
|
|
24043
|
+
readonly name: "";
|
|
24044
|
+
readonly type: "uint256";
|
|
24045
|
+
readonly internalType: "uint256";
|
|
24046
|
+
}];
|
|
24047
|
+
}, {
|
|
24048
|
+
readonly type: "error";
|
|
24049
|
+
readonly name: "Staking__InvalidDeposit";
|
|
24050
|
+
readonly inputs: readonly [{
|
|
24051
|
+
readonly name: "attester";
|
|
24052
|
+
readonly type: "address";
|
|
24053
|
+
readonly internalType: "address";
|
|
24054
|
+
}, {
|
|
24055
|
+
readonly name: "proposer";
|
|
24056
|
+
readonly type: "address";
|
|
24057
|
+
readonly internalType: "address";
|
|
24058
|
+
}];
|
|
24059
|
+
}, {
|
|
24060
|
+
readonly type: "error";
|
|
24061
|
+
readonly name: "Staking__NoOneToSlash";
|
|
24062
|
+
readonly inputs: readonly [{
|
|
24063
|
+
readonly name: "";
|
|
24064
|
+
readonly type: "address";
|
|
24065
|
+
readonly internalType: "address";
|
|
24066
|
+
}];
|
|
24067
|
+
}, {
|
|
24068
|
+
readonly type: "error";
|
|
24069
|
+
readonly name: "Staking__NotExiting";
|
|
24070
|
+
readonly inputs: readonly [{
|
|
24071
|
+
readonly name: "";
|
|
24072
|
+
readonly type: "address";
|
|
24073
|
+
readonly internalType: "address";
|
|
24074
|
+
}];
|
|
24075
|
+
}, {
|
|
24076
|
+
readonly type: "error";
|
|
24077
|
+
readonly name: "Staking__NotSlasher";
|
|
24078
|
+
readonly inputs: readonly [{
|
|
24079
|
+
readonly name: "";
|
|
24080
|
+
readonly type: "address";
|
|
24081
|
+
readonly internalType: "address";
|
|
24082
|
+
}, {
|
|
24083
|
+
readonly name: "";
|
|
24084
|
+
readonly type: "address";
|
|
24085
|
+
readonly internalType: "address";
|
|
24086
|
+
}];
|
|
24087
|
+
}, {
|
|
24088
|
+
readonly type: "error";
|
|
24089
|
+
readonly name: "Staking__NotWithdrawer";
|
|
24090
|
+
readonly inputs: readonly [{
|
|
24091
|
+
readonly name: "";
|
|
24092
|
+
readonly type: "address";
|
|
24093
|
+
readonly internalType: "address";
|
|
24094
|
+
}, {
|
|
24095
|
+
readonly name: "";
|
|
24096
|
+
readonly type: "address";
|
|
24097
|
+
readonly internalType: "address";
|
|
24098
|
+
}];
|
|
24099
|
+
}, {
|
|
24100
|
+
readonly type: "error";
|
|
24101
|
+
readonly name: "Staking__NothingToExit";
|
|
24102
|
+
readonly inputs: readonly [{
|
|
24103
|
+
readonly name: "";
|
|
24104
|
+
readonly type: "address";
|
|
24105
|
+
readonly internalType: "address";
|
|
24106
|
+
}];
|
|
24107
|
+
}, {
|
|
24108
|
+
readonly type: "error";
|
|
24109
|
+
readonly name: "Staking__WithdrawalNotUnlockedYet";
|
|
24110
|
+
readonly inputs: readonly [{
|
|
24111
|
+
readonly name: "";
|
|
24112
|
+
readonly type: "uint256";
|
|
24113
|
+
readonly internalType: "Timestamp";
|
|
24114
|
+
}, {
|
|
24115
|
+
readonly name: "";
|
|
24116
|
+
readonly type: "uint256";
|
|
24117
|
+
readonly internalType: "Timestamp";
|
|
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;
|
|
24149
|
+
}, {
|
|
24150
|
+
readonly type: "error";
|
|
24151
|
+
readonly name: "ValidatorSelection__EpochNotSetup";
|
|
24152
|
+
readonly inputs: readonly [];
|
|
24153
|
+
}, {
|
|
24154
|
+
readonly type: "error";
|
|
24155
|
+
readonly name: "ValidatorSelection__InsufficientAttestations";
|
|
24156
|
+
readonly inputs: readonly [{
|
|
24157
|
+
readonly name: "minimumNeeded";
|
|
24158
|
+
readonly type: "uint256";
|
|
24159
|
+
readonly internalType: "uint256";
|
|
24160
|
+
}, {
|
|
24161
|
+
readonly name: "provided";
|
|
24162
|
+
readonly type: "uint256";
|
|
24163
|
+
readonly internalType: "uint256";
|
|
24164
|
+
}];
|
|
24165
|
+
}, {
|
|
24166
|
+
readonly type: "error";
|
|
24167
|
+
readonly name: "ValidatorSelection__InsufficientAttestationsProvided";
|
|
24168
|
+
readonly inputs: readonly [{
|
|
24169
|
+
readonly name: "minimumNeeded";
|
|
24170
|
+
readonly type: "uint256";
|
|
24171
|
+
readonly internalType: "uint256";
|
|
24172
|
+
}, {
|
|
24173
|
+
readonly name: "provided";
|
|
24174
|
+
readonly type: "uint256";
|
|
24175
|
+
readonly internalType: "uint256";
|
|
24176
|
+
}];
|
|
24177
|
+
}, {
|
|
24178
|
+
readonly type: "error";
|
|
24179
|
+
readonly name: "ValidatorSelection__InvalidDeposit";
|
|
24180
|
+
readonly inputs: readonly [{
|
|
24181
|
+
readonly name: "attester";
|
|
24182
|
+
readonly type: "address";
|
|
24183
|
+
readonly internalType: "address";
|
|
24184
|
+
}, {
|
|
24185
|
+
readonly name: "proposer";
|
|
24186
|
+
readonly type: "address";
|
|
24187
|
+
readonly internalType: "address";
|
|
24188
|
+
}];
|
|
24189
|
+
}, {
|
|
24190
|
+
readonly type: "error";
|
|
24191
|
+
readonly name: "ValidatorSelection__InvalidProposer";
|
|
24192
|
+
readonly inputs: readonly [{
|
|
24193
|
+
readonly name: "expected";
|
|
24194
|
+
readonly type: "address";
|
|
24195
|
+
readonly internalType: "address";
|
|
24196
|
+
}, {
|
|
24197
|
+
readonly name: "actual";
|
|
24198
|
+
readonly type: "address";
|
|
24199
|
+
readonly internalType: "address";
|
|
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;
|
|
24211
|
+
}, {
|
|
24212
|
+
readonly type: "function";
|
|
24213
|
+
readonly name: "addValidator";
|
|
24214
|
+
readonly inputs: readonly [{
|
|
24215
|
+
readonly name: "_attester";
|
|
24216
|
+
readonly type: "address";
|
|
24217
|
+
readonly internalType: "address";
|
|
24218
|
+
}, {
|
|
24219
|
+
readonly name: "_proposer";
|
|
24220
|
+
readonly type: "address";
|
|
24221
|
+
readonly internalType: "address";
|
|
24222
|
+
}];
|
|
24223
|
+
readonly outputs: readonly [];
|
|
24224
|
+
readonly stateMutability: "nonpayable";
|
|
24225
|
+
}, {
|
|
24226
|
+
readonly type: "function";
|
|
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";
|
|
24282
|
+
readonly inputs: readonly [];
|
|
24283
|
+
readonly outputs: readonly [{
|
|
24284
|
+
readonly name: "";
|
|
24285
|
+
readonly type: "uint256";
|
|
24286
|
+
readonly internalType: "uint256";
|
|
24287
|
+
}];
|
|
24288
|
+
readonly stateMutability: "view";
|
|
24289
|
+
}, {
|
|
24290
|
+
readonly type: "function";
|
|
24291
|
+
readonly name: "owner";
|
|
24292
|
+
readonly inputs: readonly [];
|
|
24293
|
+
readonly outputs: readonly [{
|
|
24294
|
+
readonly name: "";
|
|
24295
|
+
readonly type: "address";
|
|
24296
|
+
readonly internalType: "address";
|
|
24297
|
+
}];
|
|
24298
|
+
readonly stateMutability: "view";
|
|
24299
|
+
}, {
|
|
24300
|
+
readonly type: "function";
|
|
24301
|
+
readonly name: "renounceOwnership";
|
|
24302
|
+
readonly inputs: readonly [];
|
|
24303
|
+
readonly outputs: readonly [];
|
|
24304
|
+
readonly stateMutability: "nonpayable";
|
|
24305
|
+
}, {
|
|
24306
|
+
readonly type: "function";
|
|
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";
|
|
24328
|
+
readonly inputs: readonly [{
|
|
24329
|
+
readonly name: "_amount";
|
|
24330
|
+
readonly type: "uint256";
|
|
24331
|
+
readonly internalType: "uint256";
|
|
24332
|
+
}];
|
|
24333
|
+
readonly outputs: readonly [];
|
|
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";
|
|
24375
|
+
}, {
|
|
24376
|
+
readonly type: "function";
|
|
24377
|
+
readonly name: "transferOwnership";
|
|
24378
|
+
readonly inputs: readonly [{
|
|
24379
|
+
readonly name: "newOwner";
|
|
24380
|
+
readonly type: "address";
|
|
24381
|
+
readonly internalType: "address";
|
|
24382
|
+
}];
|
|
24383
|
+
readonly outputs: readonly [];
|
|
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";
|
|
24395
|
+
}];
|
|
24396
|
+
contractBytecode: `0x${string}`;
|
|
24397
|
+
};
|
|
24398
|
+
};
|
|
24399
|
+
export interface DeployL1ContractsArgs extends L1ContractsConfig {
|
|
24400
|
+
/** The vk tree root. */
|
|
24401
|
+
vkTreeRoot: Fr;
|
|
24402
|
+
/** The protocol contract tree root. */
|
|
24403
|
+
protocolContractTreeRoot: Fr;
|
|
24404
|
+
/** The genesis root of the archive tree. */
|
|
24405
|
+
genesisArchiveRoot: Fr;
|
|
24406
|
+
/** The hash of the genesis block header. */
|
|
24407
|
+
genesisBlockHash: Fr;
|
|
24408
|
+
/** The salt for CREATE2 deployment. */
|
|
24409
|
+
salt: number | undefined;
|
|
24410
|
+
/** The initial validators for the rollup contract. */
|
|
24411
|
+
initialValidators?: EthAddress[];
|
|
24412
|
+
/** Configuration for the L1 tx utils module. */
|
|
24413
|
+
l1TxConfig?: Partial<L1TxUtilsConfig>;
|
|
24414
|
+
/** Enable fast mode for deployments (fire and forget transactions) */
|
|
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;
|
|
24418
|
+
}
|
|
24419
|
+
/**
|
|
24420
|
+
* Creates a wallet and a public viem client for interacting with L1.
|
|
24421
|
+
* @param rpcUrls - List of RPC URLs to connect to L1.
|
|
24422
|
+
* @param mnemonicOrPrivateKeyOrHdAccount - Mnemonic or account for the wallet client.
|
|
24423
|
+
* @param chain - Optional chain spec (defaults to local foundry).
|
|
24424
|
+
* @param addressIndex - Optional index of the address to use from the mnemonic.
|
|
24425
|
+
* @returns - A wallet and a public client.
|
|
24426
|
+
*/
|
|
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
|
+
}>;
|
|
24439
|
+
/**
|
|
24440
|
+
* Deploys a new rollup, using the existing canonical version to derive certain values (addresses of assets etc).
|
|
24441
|
+
* @param clients - The L1 clients.
|
|
24442
|
+
* @param args - The deployment arguments.
|
|
24443
|
+
* @param registryAddress - The address of the registry.
|
|
24444
|
+
* @param logger - The logger.
|
|
24445
|
+
* @param txUtilsConfig - The L1 tx utils config.
|
|
24446
|
+
*/
|
|
24447
|
+
export declare const deployRollupForUpgrade: (clients: L1Clients, args: DeployL1ContractsArgs, registryAddress: EthAddress, logger: Logger, txUtilsConfig: L1TxUtilsConfig) => Promise<{
|
|
24448
|
+
rollup: RollupContract;
|
|
24449
|
+
slashFactoryAddress: EthAddress;
|
|
24450
|
+
}>;
|
|
24451
|
+
export declare const deploySlashFactory: (deployer: L1Deployer, rollupAddress: Hex, logger: Logger) => Promise<EthAddress>;
|
|
24452
|
+
export declare const deployUpgradePayload: (deployer: L1Deployer, addresses: Pick<L1ContractAddresses, 'registryAddress' | 'rollupAddress'>) => Promise<EthAddress>;
|
|
24453
|
+
/**
|
|
24454
|
+
* Deploys a new rollup contract, funds and initializes the fee juice portal, and initializes the validator set.
|
|
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>;
|
|
22644
24461
|
export declare const cheat_initializeValidatorSet: (clients: L1Clients, deployer: L1Deployer, rollupAddress: Hex, stakingAssetAddress: Hex, validators: Hex[], acceleratedTestDeployments: boolean | undefined, logger: Logger) => Promise<void>;
|
|
22645
24462
|
/**
|
|
22646
24463
|
* Initialize the fee asset handler and make it a minter on the fee asset.
|
|
@@ -22665,7 +24482,7 @@ export declare const cheat_initializeFeeAssetHandler: (clients: L1Clients, deplo
|
|
|
22665
24482
|
* @returns A list of ETH addresses of the deployed contracts.
|
|
22666
24483
|
*/
|
|
22667
24484
|
export declare const deployL1Contracts: (rpcUrls: string[], account: HDAccount | PrivateKeyAccount, chain: Chain, logger: Logger, args: DeployL1ContractsArgs, txUtilsConfig?: L1TxUtilsConfig) => Promise<DeployL1ContractsReturnType>;
|
|
22668
|
-
declare class L1Deployer {
|
|
24485
|
+
export declare class L1Deployer {
|
|
22669
24486
|
readonly walletClient: ViemWalletClient;
|
|
22670
24487
|
private publicClient;
|
|
22671
24488
|
private acceleratedTestDeployments;
|
|
@@ -22702,5 +24519,4 @@ export declare function getExpectedAddress(abi: Narrow<Abi | readonly unknown[]>
|
|
|
22702
24519
|
paddedSalt: `0x${string}`;
|
|
22703
24520
|
calldata: `0x${string}`;
|
|
22704
24521
|
};
|
|
22705
|
-
export {};
|
|
22706
24522
|
//# sourceMappingURL=deploy_l1_contracts.d.ts.map
|