diff --git a/docs/3_guides/1.2_SDK_api_reference.md b/docs/3_guides/1.2_SDK_api_reference.md index 4d165b3c95..cc39a2d53a 100644 --- a/docs/3_guides/1.2_SDK_api_reference.md +++ b/docs/3_guides/1.2_SDK_api_reference.md @@ -18,7 +18,7 @@ pub async fn submit( #### Arguments -- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`) +- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet | hoodi`) - `verification_data` - The verification data for the proof. - `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification. - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. @@ -62,7 +62,7 @@ pub async fn submit_multiple( #### Arguments -- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`) +- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet | hoodi`) - `verification_data` - A verification data array. - `max_fee` - The maximum fee that the submitter is willing to pay for the verification for each proof. - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. @@ -108,7 +108,7 @@ pub async fn submit_and_wait_verification( #### Arguments - `eth_rpc_url` - The URL of the Ethereum RPC node. -- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) +- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`) - `verification_data` - The verification data for the proof. - `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification. - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. @@ -157,7 +157,7 @@ pub async fn submit_multiple_and_wait_verification( #### Arguments - `eth_rpc_url` - The URL of the Ethereum RPC node. -- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) +- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`) - `verification_data` - A verification data array. - `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification. - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. @@ -203,7 +203,7 @@ pub async fn is_proof_verified( #### Arguments - `aligned_verification_data` - The aligned verification data obtained when submitting the proofs. -- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) +- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`) - `eth_rpc_url` - The URL of the Ethereum RPC node. #### Returns diff --git a/docs/3_guides/1.3_SDK_api_reference_aggregation.md b/docs/3_guides/1.3_SDK_api_reference_aggregation.md index e37dfdfe72..5ce413ba27 100644 --- a/docs/3_guides/1.3_SDK_api_reference_aggregation.md +++ b/docs/3_guides/1.3_SDK_api_reference_aggregation.md @@ -10,7 +10,7 @@ Checks if the proof has been verified with Aligned Aggregation Mode. pub async fn is_proof_verified_in_aggregation_mode( verification_data: AggregationModeVerificationData, network: Network, - eth_rpc_url: &str + eth_rpc_url: &str, beacon_client_url: &str, from_block: Option ) -> Result<[u8; 32], ProofVerificationAggModeError> @@ -19,7 +19,7 @@ pub async fn is_proof_verified_in_aggregation_mode( #### Arguments - `verification_data` - The verification data needed based on the provided proving system. -- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) +- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`) - `eth_rpc_url` - The URL of the Ethereum RPC node. #### Returns