Skip to content

Commit 22b70ff

Browse files
authored
docs: update SDK reference with Hoodi network (#2108)
1 parent 7868d49 commit 22b70ff

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/3_guides/1.2_SDK_api_reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub async fn submit(
1818

1919
#### Arguments
2020

21-
- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`)
21+
- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet | hoodi`)
2222
- `verification_data` - The verification data for the proof.
2323
- `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification.
2424
- `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(
6262

6363
#### Arguments
6464

65-
- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`)
65+
- `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet | hoodi`)
6666
- `verification_data` - A verification data array.
6767
- `max_fee` - The maximum fee that the submitter is willing to pay for the verification for each proof.
6868
- `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(
108108
#### Arguments
109109

110110
- `eth_rpc_url` - The URL of the Ethereum RPC node.
111-
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`)
111+
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`)
112112
- `verification_data` - The verification data for the proof.
113113
- `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification.
114114
- `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(
157157
#### Arguments
158158

159159
- `eth_rpc_url` - The URL of the Ethereum RPC node.
160-
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`)
160+
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`)
161161
- `verification_data` - A verification data array.
162162
- `max_fee` - The maximum fee that the submitter is willing to pay for the proof verification.
163163
- `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(
203203
#### Arguments
204204

205205
- `aligned_verification_data` - The aligned verification data obtained when submitting the proofs.
206-
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`)
206+
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`)
207207
- `eth_rpc_url` - The URL of the Ethereum RPC node.
208208

209209
#### Returns

docs/3_guides/1.3_SDK_api_reference_aggregation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Checks if the proof has been verified with Aligned Aggregation Mode.
1010
pub async fn is_proof_verified_in_aggregation_mode(
1111
verification_data: AggregationModeVerificationData,
1212
network: Network,
13-
eth_rpc_url: &str
13+
eth_rpc_url: &str,
1414
beacon_client_url: &str,
1515
from_block: Option<u64>
1616
) -> Result<[u8; 32], ProofVerificationAggModeError>
@@ -19,7 +19,7 @@ pub async fn is_proof_verified_in_aggregation_mode(
1919
#### Arguments
2020

2121
- `verification_data` - The verification data needed based on the provided proving system.
22-
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet`)
22+
- `network` - The network on which the verification will be done (`devnet | holesky | mainnet | hoodi`)
2323
- `eth_rpc_url` - The URL of the Ethereum RPC node.
2424

2525
#### Returns

0 commit comments

Comments
 (0)