Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/3_guides/1.2_SDK_api_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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`.
Expand Down Expand Up @@ -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`.
Expand Down Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/3_guides/1.3_SDK_api_reference_aggregation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<u64>
) -> Result<[u8; 32], ProofVerificationAggModeError>
Expand All @@ -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
Expand Down