You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/0_internal/ethereum_package.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ make batcher_start_ethereum_package
34
34
To start the aggregator run:
35
35
36
36
```bash
37
-
make aggregator_start_ethereum_package
37
+
make aggregator_start_ethereum_package ENVIRONMENT=devnet
38
38
```
39
39
40
40
To start an operator run:
@@ -45,14 +45,26 @@ make operator_full_registration_and_start_ethereum_package
45
45
46
46
If you want to deploy more operators, you must duplicate the config-operator-1-ethereum-package.yaml and change the private and bls keys and the address.
47
47
48
+
If operator starting fails due to a failure in operation registration to aligned (not whitelisted), try running the commands separately:
49
+
50
+
```bash
51
+
make operator_full_registration CONFIG_FILE=config-files/config-operator-1-ethereum-package.yaml ENVIRONMENT=devnet
52
+
make operator_start CONFIG_FILE=config-files/config-operator-1-ethereum-package.yaml ENVIRONMENT=devnet
53
+
```
54
+
48
55
To start Telemetry and the Explorer, run the usual commands:
49
56
50
57
```bash
51
58
make telemetry_start_all
59
+
60
+
make explorer_build_db
52
61
make explorer_start
53
62
```
54
63
64
+
Note: If you are starting telemetry again and fails, a common failure reason can be forgetting to clean the db running `make telemetry_clean_db`.
65
+
55
66
To spam transactions install spamoor:
67
+
56
68
```bash
57
69
make spamoor_install
58
70
```
@@ -69,6 +81,7 @@ make spamoor_send_transactions \\
69
81
```
70
82
71
83
For Example:
84
+
72
85
```bash
73
86
make spamoor_send_transactions COUNT=1000 TX_CONSUME_GAS=150000 TX_PER_BLOCK=50 NUM_WALLETS=100 TIP_FEE=2
74
87
```
@@ -97,8 +110,8 @@ make spamoor_send_transactions COUNT=1000000000 TX_CONSUME_GAS=150000 TX_PER_BL
97
110
```
98
111
99
112
- Notes:
100
-
- A transaction consuming `150000` of gas would be similar to a bridge swap.
101
-
- We pass `2` gwei more to the `tipFee` that should be enough if not, you can increase it.
113
+
- A transaction consuming `150000` of gas would be similar to a bridge swap.
114
+
- We pass `2` gwei more to the `tipFee` that should be enough if not, you can increase it.
102
115
103
116
3.**Monitor Gas Price Updates:** After a few blocks, the `gasPrice` will adjust. The aligned batcher and aggregator will fetch the updated `gasPrice` and start competing in the mempool with their adjusted bump.
104
117
4.**Repeat as Needed:** Re-run the same command with the updated `TIP_FEE` to maintain competition:
0 commit comments