@@ -79,6 +79,7 @@ The Builder is configured via environment variables. The following values are su
79
79
| ` ROLLUP_RPC_URL ` | Yes | RPC endpoint for the rollup chain |
80
80
| ` TX_POOL_URL ` | Yes | Transaction pool URL (must end with ` / ` ) |
81
81
| ` TX_BROADCAST_URLS ` | No | Additional endpoints for blob txs (comma-separated, slash required) |
82
+ | ` FLASHBOTS_ENDPOINT ` | No | Flashbots API to submit blocks to. |
82
83
| ` ZENITH_ADDRESS ` | Yes | Zenith contract address |
83
84
| ` BUILDER_HELPER_ADDRESS ` | Yes | Builder helper contract address |
84
85
| ` QUINCEY_URL ` | Yes | Remote sequencer signing endpoint |
@@ -87,7 +88,7 @@ The Builder is configured via environment variables. The following values are su
87
88
| ` BUILDER_KEY ` | Yes | AWS KMS key ID _ or_ local private key for builder signing |
88
89
| ` BUILDER_REWARDS_ADDRESS ` | Yes | Address receiving builder rewards |
89
90
| ` ROLLUP_BLOCK_GAS_LIMIT ` | No | Override for block gas limit |
90
- | ` CONCURRENCY_LIMIT ` | No | Max concurrent tasks the simulator uses |
91
+ | ` CONCURRENCY_LIMIT ` | No | Max concurrent tasks the simulator uses |
91
92
| ` OAUTH_CLIENT_ID ` | Yes | Oauth client ID for the builder |
92
93
| ` OAUTH_CLIENT_SECRET ` | Yes | Oauth client secret for the builder |
93
94
| ` OAUTH_AUTHENTICATE_URL ` | Yes | Oauth authenticate URL for the builder for performing OAuth logins |
@@ -135,13 +136,13 @@ A binary (`bin/submit_transaction.rs`) for continously sending very small transa
135
136
136
137
The following values are available for configuring the transaction sender:
137
138
138
- | Key | Required | Description |
139
- | ------------------- | -------- | ------------------------------------------------ |
140
- | ` RPC_URL ` | Yes | RPC endpoint used for sending the transaction |
141
- | ` RECIPIENT_ADDRESS ` | Yes | Address to which the transaction is sent |
142
- | ` SLEEP_TIME ` | Yes | Optional delay (in ms) between transactions |
143
- | ` SIGNER_CHAIN_ID ` | Yes | Chain ID used for signing |
144
- | ` SIGNER_KEY ` | Yes | Signing key used to sign the transaction |
139
+ | Key | Required | Description |
140
+ | ------------------- | -------- | --------------------------------------------- |
141
+ | ` RPC_URL ` | Yes | RPC endpoint used for sending the transaction |
142
+ | ` RECIPIENT_ADDRESS ` | Yes | Address to which the transaction is sent |
143
+ | ` SLEEP_TIME ` | Yes | Optional delay (in ms) between transactions |
144
+ | ` SIGNER_CHAIN_ID ` | Yes | Chain ID used for signing |
145
+ | ` SIGNER_KEY ` | Yes | Signing key used to sign the transaction |
145
146
146
147
The transaction submitter is located at ` bin/submit_transaction.rs ` .
147
148
@@ -155,13 +156,13 @@ A binary (`bin/submit_order.rs`) for continuously sending small example orders f
155
156
156
157
The following values need to be configured:
157
158
158
- | Key | Required | Description |
159
- | ------------------- | -------- | ------------------------------------------------ |
160
- | ` RPC_URL ` | Yes | RPC endpoint used for sending the transaction |
161
- | ` SEND_TO_ROLLUP ` | Yes | Whether to make a rollup order (RU-RU) or host order (RU-HOST) |
162
- | ` SLEEP_TIME ` | Yes | Optional delay (in ms) between transactions |
163
- | ` SIGNER_CHAIN_ID ` | Yes | Chain ID used for signing |
164
- | ` SIGNER_KEY ` | Yes | Signing key used to sign the transaction |
159
+ | Key | Required | Description |
160
+ | ----------------- | -------- | -------------- ------------------------------------------------ |
161
+ | ` RPC_URL ` | Yes | RPC endpoint used for sending the transaction |
162
+ | ` SEND_TO_ROLLUP ` | Yes | Whether to make a rollup order (RU-RU) or host order (RU-HOST) |
163
+ | ` SLEEP_TIME ` | Yes | Optional delay (in ms) between transactions |
164
+ | ` SIGNER_CHAIN_ID ` | Yes | Chain ID used for signing |
165
+ | ` SIGNER_KEY ` | Yes | Signing key used to sign the transaction |
165
166
166
167
Run the order submitter with ` cargo run --bin order-submitter `
167
168
0 commit comments