@@ -51,12 +51,12 @@ struct ProveArgs {
5151 /// The RPC URL for the network.
5252 #[ arg( long) ]
5353 rpc_url : String ,
54- /// The estimated throughput of the prover.
54+ /// The amount of proving gas units (PGUs) per second your prover can process .
5555 #[ arg( long) ]
5656 throughput : f64 ,
57- /// The bid amount for the prover.
57+ /// The $PROVE price per billion proving gas units (PGUs) your prover is willing to bid .
5858 #[ arg( long) ]
59- bid_amount : u64 ,
59+ bid : f64 ,
6060 /// The private key for the prover.
6161 #[ arg( long) ]
6262 private_key : String ,
@@ -152,7 +152,7 @@ async fn main() -> Result<()> {
152152 let results_data = vec ! [
153153 CalibrationResultsTable {
154154 name: "Estimated Throughput" . to_string( ) ,
155- value: format!( "{} pgus /second" , metrics. pgus_per_second. round( ) ) ,
155+ value: format!( "{} PGUs /second" , metrics. pgus_per_second. round( ) ) ,
156156 } ,
157157 CalibrationResultsTable {
158158 name: "Estimated Bid Price" . to_string( ) ,
@@ -185,7 +185,7 @@ async fn main() -> Result<()> {
185185 let ctx = SerialContext :: new ( network, signer) ;
186186
187187 // Setup the bidder.
188- let bidder = SerialBidder :: new ( U256 :: from ( args. bid_amount ) , args. throughput ) ;
188+ let bidder = SerialBidder :: new ( U256 :: from ( args. bid ) , args. throughput ) ;
189189
190190 // Setup the prover
191191 let prover = SerialProver :: new ( ) ;
@@ -198,7 +198,7 @@ async fn main() -> Result<()> {
198198 wallet = %ctx. signer( ) . address( ) ,
199199 rpc = %args. rpc_url,
200200 throughput = %args. throughput,
201- bid_amount = %args. bid_amount ,
201+ bid = %args. bid ,
202202 "Starting Node on Succinct Network..."
203203 ) ;
204204 let node = Node :: new ( ctx, bidder, prover, monitor) ;
0 commit comments