Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 401
fix(docs): batcher and explorer urls#1688
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
4c27bc1ec4ce70bc1e43fd6b4920657f11ebed5630d2a14a9869a29932a284eFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -19,8 +19,11 @@ pub async fn submit( | ||
| #### Arguments | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted. | ||
| - `network` - The network on which the proof will be submitted (`devnet | holesky-stage | holesky`) | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted: | ||
| - mainnet: `wss://mainnet.batcher.alignedlayer.com` | ||
| - holesky: `wss://batcher.alignedlayer.com` | ||
avilagaston9 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - devnet: `ws://localhost:8080` | ||
| - `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`) | ||
| - `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`. | ||
| @@ -65,8 +68,11 @@ pub async fn submit_multiple( | ||
| #### Arguments | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted. | ||
| - `network` - The network on which the proof will be submitted (`devnet | holesky-stage | holesky`) | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted: | ||
| - mainnet: `wss://mainnet.batcher.alignedlayer.com` | ||
| - holesky: `wss://batcher.alignedlayer.com` | ||
avilagaston9 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - devnet: `ws://localhost:8080` | ||
| - `network` - The network on which the proof will be submitted (`devnet | holesky | mainnet`) | ||
| - `verification_data` - A verification data array. | ||
| - `max_fees` - A max fee array. | ||
| - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. | ||
| @@ -114,9 +120,12 @@ pub async fn submit_and_wait_verification( | ||
| #### Arguments | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted. | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted | ||
| - mainnet: `wss://mainnet.batcher.alignedlayer.com` | ||
| - holesky: `wss://batcher.alignedlayer.com` | ||
avilagaston9 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - devnet: `ws://localhost:8080` | ||
| - `eth_rpc_url` - The URL of the Ethereum RPC node. | ||
| - `network` - The network on which the verification will be done (`devnet | holesky-stage | holesky`) | ||
| - `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) | ||
| - `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`. | ||
| @@ -167,9 +176,12 @@ pub async fn submit_multiple_and_wait_verification( | ||
| #### Arguments | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted. | ||
| - `batcher_url` - The url of the batcher to which the proof will be submitted: | ||
| - mainnet: `wss://mainnet.batcher.alignedlayer.com` | ||
| - holesky: `wss://batcher.alignedlayer.com` | ||
avilagaston9 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - devnet: `ws://localhost:8080` | ||
| - `eth_rpc_url` - The URL of the Ethereum RPC node. | ||
| - `network` - The network on which the verification will be done (`devnet | holesky-stage | holesky`) | ||
| - `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) | ||
| - `verification_data` - A verification data array. | ||
| - `max_fees` - A max fee array. | ||
| - `wallet` - The wallet used to sign the proof. Should be using correct chain id. See `get_chain_id`. | ||
| @@ -218,7 +230,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-stage | holesky`) | ||
| - `network` - The network on which the verification will be done (`devnet | holesky | mainnet`) | ||
| - `eth_rpc_url` - The URL of the Ethereum RPC node. | ||
| - `payment_service_addr` - The address of the batcher payment service contract. | ||
| @@ -296,7 +308,10 @@ pub async fn get_nonce_from_batcher( | ||
| #### Arguments | ||
| - `batcher_url` - The batcher websocket url. | ||
| - `batcher_url` - The batcher websocket url: | ||
| - mainnet: `wss://mainnet.batcher.alignedlayer.com` | ||
| - holesky: `wss://batcher.alignedlayer.com` | ||
avilagaston9 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - devnet: `ws://localhost:8080` | ||
| - `address` - The user address for which the nonce will be retrieved. | ||
| #### Returns | ||
Uh oh!
There was an error while loading. Please reload this page.