@@ -58,19 +58,19 @@ pub struct BuilderConfig {
58
58
/// The chain ID of the host chain.
59
59
#[ from_env( var = "HOST_CHAIN_ID" , desc = "The chain ID of the host chain" ) ]
60
60
pub host_chain_id : u64 ,
61
-
61
+
62
62
/// The chain ID of the rollup chain.
63
63
#[ from_env( var = "RU_CHAIN_ID" , desc = "The chain ID of the rollup chain" ) ]
64
64
pub ru_chain_id : u64 ,
65
-
65
+
66
66
/// URL for Host RPC node.
67
67
#[ from_env( var = "HOST_RPC_URL" , desc = "URL for Host RPC node" , infallible) ]
68
68
pub host_rpc_url : Cow < ' static , str > ,
69
-
69
+
70
70
/// URL for the Rollup RPC node.
71
71
#[ from_env( var = "ROLLUP_RPC_URL" , desc = "URL for Rollup RPC node" , infallible) ]
72
72
pub ru_rpc_url : Cow < ' static , str > ,
73
-
73
+
74
74
/// URL of the tx pool to poll for incoming transactions.
75
75
#[ from_env(
76
76
var = "TX_POOL_URL" ,
@@ -89,18 +89,18 @@ pub struct BuilderConfig {
89
89
optional
90
90
) ]
91
91
pub tx_broadcast_urls : Vec < Cow < ' static , str > > ,
92
-
92
+
93
93
/// Address of the Zenith contract on Host.
94
94
#[ from_env( var = "ZENITH_ADDRESS" , desc = "address of the Zenith contract on Host" ) ]
95
95
pub zenith_address : Address ,
96
-
96
+
97
97
/// Address of the Builder Helper contract on Host.
98
98
#[ from_env(
99
99
var = "BUILDER_HELPER_ADDRESS" ,
100
100
desc = "address of the Builder Helper contract on Host"
101
101
) ]
102
102
pub builder_helper_address : Address ,
103
-
103
+
104
104
/// URL for remote Quincey Sequencer server to sign blocks.
105
105
/// NB: Disregarded if a sequencer_signer is configured.
106
106
#[ from_env(
@@ -113,7 +113,7 @@ pub struct BuilderConfig {
113
113
/// Port for the Builder server.
114
114
#[ from_env( var = "BUILDER_PORT" , desc = "Port for the Builder server" ) ]
115
115
pub builder_port : u16 ,
116
-
116
+
117
117
/// Key to access Sequencer Wallet - AWS Key ID _OR_ local private key.
118
118
/// Set IFF using local Sequencer signing instead of remote Quincey signing.
119
119
#[ from_env(
@@ -138,7 +138,7 @@ pub struct BuilderConfig {
138
138
desc = "Address on Rollup to which Builder will receive user transaction fees"
139
139
) ]
140
140
pub builder_rewards_address : Address ,
141
-
141
+
142
142
/// Gas limit for RU block.
143
143
/// NOTE: a "smart" builder would determine this programmatically by simulating the block.
144
144
#[ from_env( var = "ROLLUP_BLOCK_GAS_LIMIT" , desc = "Gas limit for RU block" ) ]
0 commit comments