Commit e1d65f3 1 parent f695f4a commit e1d65f3 Copy full SHA for e1d65f3
File tree 6 files changed +6
-7
lines changed
end-to-end/scripts/native-network
sequencer-client/src/publisher
6 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export interface BlobSinkConfig {
22
22
23
23
export const blobSinkConfigMapping : ConfigMappingsType < BlobSinkConfig > = {
24
24
blobSinkUrl : {
25
- env : 'SEQ_BLOB_SINK_URL ' ,
25
+ env : 'BLOB_SINK_URL ' ,
26
26
description : 'The URL of the blob sink' ,
27
27
} ,
28
28
l1RpcUrl : {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export ETHEREUM_HOST=${ETHEREUM_HOST:-"http://127.0.0.1:8545"}
20
20
export L1_CONSENSUS_HOST_URL=${L1_CONSENSUS_HOST_URL:- }
21
21
export P2P_ENABLED=" true"
22
22
export VALIDATOR_DISABLED=" true"
23
- export SEQ_BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
23
+ export BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
24
24
export SEQ_MAX_SECONDS_BETWEEN_BLOCKS=" 0"
25
25
export SEQ_MIN_TX_PER_BLOCK=" 1"
26
26
export P2P_TCP_ANNOUNCE_ADDR=" 127.0.0.1:40400"
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export PROVER_AGENT_COUNT="1"
44
44
export PROVER_AGENT_ENABLED=" true"
45
45
export PROVER_PUBLISHER_PRIVATE_KEY=${PROVER_PUBLISHER_PRIVATE_KEY:- " 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" }
46
46
export PROVER_COORDINATION_NODE_URL=" http://127.0.0.1:8080"
47
- export PROVER_BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
47
+ export BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
48
48
export AZTEC_NODE_URL=" http://127.0.0.1:8080"
49
49
export OTEL_RESOURCE_ATTRIBUTES=" service.name=prover-node-${PORT} "
50
50
export OTEL_EXPORTER_OTLP_METRICS_ENDPOINT=" ${OTEL_EXPORTER_OTLP_METRICS_ENDPOINT:- } "
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export P2P_TCP_ANNOUNCE_ADDR="127.0.0.1:$P2P_PORT"
77
77
export P2P_UDP_ANNOUNCE_ADDR=" 127.0.0.1:$P2P_PORT "
78
78
export P2P_TCP_LISTEN_ADDR=" 0.0.0.0:$P2P_PORT "
79
79
export P2P_UDP_LISTEN_ADDR=" 0.0.0.0:$P2P_PORT "
80
- export SEQ_BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
80
+ export BLOB_SINK_URL =" http://127.0.0.1:${BLOB_SINK_PORT:- 5053} "
81
81
export L1_CHAIN_ID=${L1_CHAIN_ID:- 31337}
82
82
export OTEL_RESOURCE_ATTRIBUTES=" service.name=validator-node-${PORT} "
83
83
export OTEL_EXPORTER_OTLP_METRICS_ENDPOINT=" ${OTEL_EXPORTER_OTLP_METRICS_ENDPOINT:- } "
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export type EnvVar =
17
17
| 'BB_WORKING_DIRECTORY'
18
18
| 'BOOTSTRAP_NODES'
19
19
| 'BLOB_SINK_PORT'
20
+ | 'BLOB_SINK_URL'
20
21
| 'BOT_DA_GAS_LIMIT'
21
22
| 'BOT_FEE_PAYMENT_METHOD'
22
23
| 'BOT_FLUSH_SETUP_TRANSACTIONS'
@@ -102,7 +103,6 @@ export type EnvVar =
102
103
| 'P2P_UDP_ANNOUNCE_ADDR'
103
104
| 'P2P_UDP_LISTEN_ADDR'
104
105
| 'PEER_ID_PRIVATE_KEY'
105
- | 'PROVER_BLOB_SINK_URL'
106
106
| 'PROOF_VERIFIER_L1_START_BLOCK'
107
107
| 'PROOF_VERIFIER_POLL_INTERVAL_MS'
108
108
| 'PROVER_AGENT_ENABLED'
@@ -141,7 +141,6 @@ export type EnvVar =
141
141
| 'REGISTRY_CONTRACT_ADDRESS'
142
142
| 'ROLLUP_CONTRACT_ADDRESS'
143
143
| 'SEQ_ALLOWED_SETUP_FN'
144
- | 'SEQ_BLOB_SINK_URL'
145
144
| 'SEQ_MAX_BLOCK_SIZE_IN_BYTES'
146
145
| 'SEQ_MAX_TX_PER_BLOCK'
147
146
| 'SEQ_MIN_TX_PER_BLOCK'
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export const getPublisherConfigMappings: (
78
78
} ,
79
79
...l1TxUtilsConfigMappings ,
80
80
blobSinkUrl : {
81
- env : ` ${ scope } _BLOB_SINK_URL` ,
81
+ env : 'BLOB_SINK_URL' ,
82
82
description : 'The URL of the blob sink.' ,
83
83
parseEnv : ( val ?: string ) => val ,
84
84
} ,
You can’t perform that action at this time.
0 commit comments