From c7ef3379208f0c71d27df13b17bf47bf21947bea Mon Sep 17 00:00:00 2001
From: Yash Atreya <44857776+yash-atreya@users.noreply.github.com>
Date: Mon, 14 Apr 2025 12:26:00 +0530
Subject: [PATCH 1/3] chore: use ithaca rpc
---
.../http-provider.md | 2 +-
.../setting-up-a-provider.md | 2 +-
.../transaction-lifecycle.md | 2 +-
.../docs/pages/getting-started/quick-start.md | 2 +-
vocs/docs/pages/index.mdx | 49 ++++++++++++++++++-
5 files changed, 51 insertions(+), 6 deletions(-)
diff --git a/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/http-provider.md b/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/http-provider.md
index 95e08fa..cc85ca2 100644
--- a/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/http-provider.md
+++ b/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/http-provider.md
@@ -15,7 +15,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> eyre::Result<()> {
// Set up the HTTP transport which is consumed by the RPC client.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
// Create a provider with the HTTP transport using the `reqwest` crate.
let provider = ProviderBuilder::new().connect_http(rpc_url);
diff --git a/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/setting-up-a-provider.md b/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/setting-up-a-provider.md
index 15e5ebb..eb66bd0 100644
--- a/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/setting-up-a-provider.md
+++ b/vocs/docs/pages/building-with-alloy/connecting-to-a-blockchain/setting-up-a-provider.md
@@ -19,7 +19,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> eyre::Result<()> {
// Set up the RPC URL.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
// Instanties a provider using a rpc_url string.
let provider = ProviderBuilder::new().connect(rpc_url).await?;
diff --git a/vocs/docs/pages/building-with-alloy/transaction-lifecycle.md b/vocs/docs/pages/building-with-alloy/transaction-lifecycle.md
index 7521f3b..37bf41b 100644
--- a/vocs/docs/pages/building-with-alloy/transaction-lifecycle.md
+++ b/vocs/docs/pages/building-with-alloy/transaction-lifecycle.md
@@ -34,7 +34,7 @@ let rpc_url = anvil.endpoint().parse()?;
```rust
// Alternatively you can use any valid RPC URL found on https://chainlist.org/
-let rpc_url = "https://eth.merkle.io".parse()?;
+let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
```
Next let's define a `signer` for Alice. By default `Anvil` defines a mnemonic phrase: `"test test test test test test test test test test test junk"`. Make sure to not use this mnemonic phrase outside of testing environments. We register the signer in an [`EthereumWallet`](https://docs.rs/alloy/latest/alloy/network/struct.EthereumWallet.html) to be used in the `Provider` to sign our future transaction.
diff --git a/vocs/docs/pages/getting-started/quick-start.md b/vocs/docs/pages/getting-started/quick-start.md
index 50fb907..66d31aa 100644
--- a/vocs/docs/pages/getting-started/quick-start.md
+++ b/vocs/docs/pages/getting-started/quick-start.md
@@ -33,7 +33,7 @@ Next, add the following section to the body to create a provider with HTTP trans
```rust
// Set up the HTTP transport which is consumed by the RPC client.
-let rpc_url = "https://eth.merkle.io".parse()?;
+let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
// Create a provider with the HTTP transport using the `reqwest` crate.
let provider = ProviderBuilder::new().connect_http(rpc_url);
diff --git a/vocs/docs/pages/index.mdx b/vocs/docs/pages/index.mdx
index bc2a9dc..ca79299 100644
--- a/vocs/docs/pages/index.mdx
+++ b/vocs/docs/pages/index.mdx
@@ -30,6 +30,51 @@ import { HomePage, Sponsors } from "vocs/components";
+
+
+
+
+
Modular
+
Composable modules to build applications & libraries with speed
+
+
+
+
+
+
+
+
+
Lightweight
+
+
Tiny bundle size optimized for tree-shaking
+
See more
+
+
+
+
+
+
+
+
+
+
All-round signers
+
Optimized architecture compared to alternative libraries
+
+
+
+
+
+
+
+
+
Typed APIs
+
Flexible programmatic APIs with extensive TypeScript typing
+
+
+
+
+
+
@@ -57,7 +102,7 @@ sol! {
#[tokio::main]
async fn main() -> Result<()> {
// Initialize the provider.
- let provider = ProviderBuilder::new().connect("https://eth.llamarpc.com").await?;
+ let provider = ProviderBuilder::new().connect("https://reth-ethereum.ithaca.xyz/rpc").await?;
// Instantiate the contract instance.
let weth = address!("0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2");
@@ -108,7 +153,7 @@ async fn main() -> Result<()> {
// Signs transactions before dispatching them.
.wallet(signer)
// Forking mainnet using anvil to avoid spending real ETH.
- .on_anvil_with_config(|a| a.fork("https://eth.llamarpc.com"));
+ .on_anvil_with_config(|a| a.fork("https://reth-ethereum.ithaca.xyz/rpc"));
// Setup WETH contract instance.
let weth = address!("0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2");
From ae735bf07393481eaa8c8561c079bca2d2bbe5c3 Mon Sep 17 00:00:00 2001
From: Yash Atreya <44857776+yash-atreya@users.noreply.github.com>
Date: Mon, 14 Apr 2025 12:37:23 +0530
Subject: [PATCH 2/3] update examples
---
lib/examples | 2 +-
vocs/docs/pages/examples/advanced/any_network.mdx | 4 ++--
vocs/docs/pages/examples/advanced/decoding_json_abi.mdx | 4 ++--
vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx | 4 ++--
vocs/docs/pages/examples/advanced/encoding_sol_static.mdx | 4 ++--
vocs/docs/pages/examples/advanced/foundry_fork_db.mdx | 4 ++--
vocs/docs/pages/examples/advanced/reth_db_layer.mdx | 4 ++--
vocs/docs/pages/examples/advanced/reth_db_provider.mdx | 4 ++--
.../pages/examples/big-numbers/comparison_equivalence.mdx | 4 ++--
vocs/docs/pages/examples/big-numbers/conversion.mdx | 4 ++--
vocs/docs/pages/examples/big-numbers/create_instances.mdx | 4 ++--
vocs/docs/pages/examples/big-numbers/math_operations.mdx | 4 ++--
vocs/docs/pages/examples/big-numbers/math_utilities.mdx | 4 ++--
vocs/docs/pages/examples/comparison/compare_new_heads.mdx | 4 ++--
vocs/docs/pages/examples/comparison/compare_pending_txs.mdx | 4 ++--
.../docs/pages/examples/contracts/deploy_and_link_library.mdx | 4 ++--
vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx | 4 ++--
vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx | 4 ++--
vocs/docs/pages/examples/contracts/deploy_from_contract.mdx | 4 ++--
vocs/docs/pages/examples/contracts/interact_with_abi.mdx | 4 ++--
.../examples/contracts/interact_with_contract_instance.mdx | 4 ++--
vocs/docs/pages/examples/contracts/jsonrpc_error_decoding.mdx | 4 ++--
vocs/docs/pages/examples/contracts/revert_decoding.mdx | 4 ++--
vocs/docs/pages/examples/contracts/unknown_return_types.mdx | 4 ++--
vocs/docs/pages/examples/fillers/gas_filler.mdx | 4 ++--
vocs/docs/pages/examples/fillers/nonce_filler.mdx | 4 ++--
vocs/docs/pages/examples/fillers/recommended_fillers.mdx | 4 ++--
vocs/docs/pages/examples/fillers/wallet_filler.mdx | 4 ++--
vocs/docs/pages/examples/layers/fallback_layer.mdx | 4 ++--
vocs/docs/pages/examples/layers/hyper_http_layer.mdx | 4 ++--
vocs/docs/pages/examples/layers/logging_layer.mdx | 4 ++--
vocs/docs/pages/examples/layers/retry_layer.mdx | 4 ++--
.../pages/examples/node-bindings/anvil_deploy_contract.mdx | 4 ++--
.../docs/pages/examples/node-bindings/anvil_fork_instance.mdx | 4 ++--
.../docs/pages/examples/node-bindings/anvil_fork_provider.mdx | 4 ++--
.../pages/examples/node-bindings/anvil_local_instance.mdx | 4 ++--
.../pages/examples/node-bindings/anvil_local_provider.mdx | 4 ++--
.../pages/examples/node-bindings/anvil_set_storage_at.mdx | 4 ++--
.../docs/pages/examples/node-bindings/geth_local_instance.mdx | 4 ++--
.../docs/pages/examples/node-bindings/reth_local_instance.mdx | 4 ++--
.../pages/examples/primitives/bytes_and_address_types.mdx | 4 ++--
vocs/docs/pages/examples/primitives/hashing_functions.mdx | 4 ++--
vocs/docs/pages/examples/providers/batch_rpc.mdx | 4 ++--
vocs/docs/pages/examples/providers/builder.mdx | 4 ++--
vocs/docs/pages/examples/providers/builtin.mdx | 4 ++--
vocs/docs/pages/examples/providers/dyn_provider.mdx | 4 ++--
vocs/docs/pages/examples/providers/http.mdx | 4 ++--
vocs/docs/pages/examples/providers/http_with_auth.mdx | 4 ++--
vocs/docs/pages/examples/providers/ipc.mdx | 4 ++--
vocs/docs/pages/examples/providers/mocking.mdx | 4 ++--
vocs/docs/pages/examples/providers/multicall.mdx | 4 ++--
vocs/docs/pages/examples/providers/multicall_batching.mdx | 4 ++--
vocs/docs/pages/examples/providers/wrapped_provider.mdx | 4 ++--
vocs/docs/pages/examples/providers/ws.mdx | 4 ++--
vocs/docs/pages/examples/providers/ws_with_auth.mdx | 4 ++--
vocs/docs/pages/examples/queries/query_contract_storage.mdx | 4 ++--
vocs/docs/pages/examples/queries/query_deployed_bytecode.mdx | 4 ++--
vocs/docs/pages/examples/queries/query_logs.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/all_derives.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/contract.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/decode_returns.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/events_errors.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/extra_derives.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/structs_enums.mdx | 4 ++--
vocs/docs/pages/examples/sol-macro/user_defined_types.mdx | 4 ++--
vocs/docs/pages/examples/subscriptions/event_multiplexer.mdx | 4 ++--
vocs/docs/pages/examples/subscriptions/poll_logs.mdx | 4 ++--
vocs/docs/pages/examples/subscriptions/subscribe_all_logs.mdx | 4 ++--
vocs/docs/pages/examples/subscriptions/subscribe_blocks.mdx | 4 ++--
vocs/docs/pages/examples/subscriptions/subscribe_logs.mdx | 4 ++--
.../examples/subscriptions/subscribe_pending_transactions.mdx | 4 ++--
.../pages/examples/transactions/debug_trace_call_many.mdx | 4 ++--
vocs/docs/pages/examples/transactions/decode_input.mdx | 4 ++--
vocs/docs/pages/examples/transactions/decode_receipt_log.mdx | 4 ++--
.../pages/examples/transactions/encode_decode_eip1559.mdx | 4 ++--
vocs/docs/pages/examples/transactions/gas_price_usd.mdx | 4 ++--
.../examples/transactions/permit2_signature_transfer.mdx | 4 ++--
.../pages/examples/transactions/send_eip1559_transaction.mdx | 4 ++--
.../pages/examples/transactions/send_eip4844_transaction.mdx | 4 ++--
.../pages/examples/transactions/send_eip7702_transaction.mdx | 4 ++--
.../pages/examples/transactions/send_legacy_transaction.mdx | 4 ++--
.../pages/examples/transactions/send_private_transaction.mdx | 4 ++--
.../docs/pages/examples/transactions/send_raw_transaction.mdx | 4 ++--
vocs/docs/pages/examples/transactions/trace_call.mdx | 4 ++--
vocs/docs/pages/examples/transactions/trace_call_many.mdx | 4 ++--
vocs/docs/pages/examples/transactions/trace_transaction.mdx | 4 ++--
vocs/docs/pages/examples/transactions/transfer_erc20.mdx | 4 ++--
vocs/docs/pages/examples/transactions/transfer_eth.mdx | 4 ++--
vocs/docs/pages/examples/transactions/with_access_list.mdx | 4 ++--
vocs/docs/pages/examples/wallets/aws_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/create_keystore.mdx | 4 ++--
vocs/docs/pages/examples/wallets/ethereum_wallet.mdx | 4 ++--
vocs/docs/pages/examples/wallets/gcp_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/keystore_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/ledger_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/mnemonic_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/private_key_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/sign_message.mdx | 4 ++--
vocs/docs/pages/examples/wallets/sign_permit_hash.mdx | 4 ++--
vocs/docs/pages/examples/wallets/trezor_signer.mdx | 4 ++--
vocs/docs/pages/examples/wallets/verify_message.mdx | 4 ++--
vocs/docs/pages/examples/wallets/yubi_signer.mdx | 4 ++--
vocs/docs/snippets/contracts/examples/interact_with_abi.rs | 2 +-
vocs/docs/snippets/layers/examples/fallback_layer.rs | 2 +-
.../snippets/node-bindings/examples/anvil_fork_instance.rs | 2 +-
.../snippets/node-bindings/examples/anvil_fork_provider.rs | 2 +-
.../snippets/node-bindings/examples/anvil_set_storage_at.rs | 2 +-
vocs/docs/snippets/providers/examples/batch_rpc.rs | 2 +-
vocs/docs/snippets/providers/examples/http.rs | 2 +-
vocs/docs/snippets/providers/examples/http_with_auth.rs | 2 +-
vocs/docs/snippets/providers/examples/multicall.rs | 2 +-
vocs/docs/snippets/providers/examples/multicall_batching.rs | 2 +-
vocs/docs/snippets/queries/examples/query_contract_storage.rs | 2 +-
.../docs/snippets/queries/examples/query_deployed_bytecode.rs | 2 +-
vocs/docs/snippets/queries/examples/query_logs.rs | 2 +-
vocs/docs/snippets/transactions/examples/gas_price_usd.rs | 2 +-
.../transactions/examples/permit2_signature_transfer.rs | 2 +-
vocs/docs/snippets/transactions/examples/trace_call.rs | 2 +-
vocs/docs/snippets/transactions/examples/trace_transaction.rs | 2 +-
vocs/docs/snippets/transactions/examples/transfer_erc20.rs | 2 +-
vocs/docs/snippets/wallets/examples/ledger_signer.rs | 2 +-
vocs/docs/snippets/wallets/examples/trezor_signer.rs | 2 +-
vocs/docs/snippets/wallets/examples/yubi_signer.rs | 2 +-
123 files changed, 224 insertions(+), 224 deletions(-)
diff --git a/lib/examples b/lib/examples
index a2c02c7..2195e23 160000
--- a/lib/examples
+++ b/lib/examples
@@ -1 +1 @@
-Subproject commit a2c02c7af1f61ed400aa2b429398cba751859cee
+Subproject commit 2195e23d57867ffc813b71f77e4fe2f007c8ef8e
diff --git a/vocs/docs/pages/examples/advanced/any_network.mdx b/vocs/docs/pages/examples/advanced/any_network.mdx
index a7a979e..3503b32 100644
--- a/vocs/docs/pages/examples/advanced/any_network.mdx
+++ b/vocs/docs/pages/examples/advanced/any_network.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `any_network`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/any_network.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/any_network.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/any_network.rs).
diff --git a/vocs/docs/pages/examples/advanced/decoding_json_abi.mdx b/vocs/docs/pages/examples/advanced/decoding_json_abi.mdx
index 8114a9f..e94668a 100644
--- a/vocs/docs/pages/examples/advanced/decoding_json_abi.mdx
+++ b/vocs/docs/pages/examples/advanced/decoding_json_abi.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `decoding_json_abi`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/decoding_json_abi.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/decoding_json_abi.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/decoding_json_abi.rs).
diff --git a/vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx b/vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx
index f3da115..75658af 100644
--- a/vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx
+++ b/vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `encoding_dyn_abi`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/encoding_dyn_abi.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/encoding_dyn_abi.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/encoding_dyn_abi.rs).
diff --git a/vocs/docs/pages/examples/advanced/encoding_sol_static.mdx b/vocs/docs/pages/examples/advanced/encoding_sol_static.mdx
index f6eacce..a9f6a89 100644
--- a/vocs/docs/pages/examples/advanced/encoding_sol_static.mdx
+++ b/vocs/docs/pages/examples/advanced/encoding_sol_static.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `encoding_sol_static`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/encoding_sol_static.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/encoding_sol_static.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/encoding_sol_static.rs).
diff --git a/vocs/docs/pages/examples/advanced/foundry_fork_db.mdx b/vocs/docs/pages/examples/advanced/foundry_fork_db.mdx
index 91d96b9..c4c683d 100644
--- a/vocs/docs/pages/examples/advanced/foundry_fork_db.mdx
+++ b/vocs/docs/pages/examples/advanced/foundry_fork_db.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `foundry_fork_db`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/foundry_fork_db.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/foundry_fork_db.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/foundry_fork_db.rs).
diff --git a/vocs/docs/pages/examples/advanced/reth_db_layer.mdx b/vocs/docs/pages/examples/advanced/reth_db_layer.mdx
index ec9882e..558136e 100644
--- a/vocs/docs/pages/examples/advanced/reth_db_layer.mdx
+++ b/vocs/docs/pages/examples/advanced/reth_db_layer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `reth_db_layer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/reth_db_layer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/reth_db_layer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/reth_db_layer.rs).
diff --git a/vocs/docs/pages/examples/advanced/reth_db_provider.mdx b/vocs/docs/pages/examples/advanced/reth_db_provider.mdx
index 39c488e..b57ea3f 100644
--- a/vocs/docs/pages/examples/advanced/reth_db_provider.mdx
+++ b/vocs/docs/pages/examples/advanced/reth_db_provider.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/advanced/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `reth_db_provider`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/advanced/examples/reth_db_provider.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/advanced/examples/reth_db_provider.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/advanced/examples/reth_db_provider.rs).
diff --git a/vocs/docs/pages/examples/big-numbers/comparison_equivalence.mdx b/vocs/docs/pages/examples/big-numbers/comparison_equivalence.mdx
index 2e1e754..0efeb95 100644
--- a/vocs/docs/pages/examples/big-numbers/comparison_equivalence.mdx
+++ b/vocs/docs/pages/examples/big-numbers/comparison_equivalence.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/big-numbers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `comparison_equivalence`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/big-numbers/examples/comparison_equivalence.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/big-numbers/examples/comparison_equivalence.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/big-numbers/examples/comparison_equivalence.rs).
diff --git a/vocs/docs/pages/examples/big-numbers/conversion.mdx b/vocs/docs/pages/examples/big-numbers/conversion.mdx
index da17c8b..84917f5 100644
--- a/vocs/docs/pages/examples/big-numbers/conversion.mdx
+++ b/vocs/docs/pages/examples/big-numbers/conversion.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/big-numbers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `conversion`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/big-numbers/examples/conversion.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/big-numbers/examples/conversion.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/big-numbers/examples/conversion.rs).
diff --git a/vocs/docs/pages/examples/big-numbers/create_instances.mdx b/vocs/docs/pages/examples/big-numbers/create_instances.mdx
index 152f3af..09f34fa 100644
--- a/vocs/docs/pages/examples/big-numbers/create_instances.mdx
+++ b/vocs/docs/pages/examples/big-numbers/create_instances.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/big-numbers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `create_instances`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/big-numbers/examples/create_instances.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/big-numbers/examples/create_instances.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/big-numbers/examples/create_instances.rs).
diff --git a/vocs/docs/pages/examples/big-numbers/math_operations.mdx b/vocs/docs/pages/examples/big-numbers/math_operations.mdx
index dc8f856..3d42a0c 100644
--- a/vocs/docs/pages/examples/big-numbers/math_operations.mdx
+++ b/vocs/docs/pages/examples/big-numbers/math_operations.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/big-numbers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `math_operations`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/big-numbers/examples/math_operations.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/big-numbers/examples/math_operations.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/big-numbers/examples/math_operations.rs).
diff --git a/vocs/docs/pages/examples/big-numbers/math_utilities.mdx b/vocs/docs/pages/examples/big-numbers/math_utilities.mdx
index 96eb2ab..3ee5179 100644
--- a/vocs/docs/pages/examples/big-numbers/math_utilities.mdx
+++ b/vocs/docs/pages/examples/big-numbers/math_utilities.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/big-numbers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `math_utilities`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/big-numbers/examples/math_utilities.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/big-numbers/examples/math_utilities.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/big-numbers/examples/math_utilities.rs).
diff --git a/vocs/docs/pages/examples/comparison/compare_new_heads.mdx b/vocs/docs/pages/examples/comparison/compare_new_heads.mdx
index d0e6b85..12a2494 100644
--- a/vocs/docs/pages/examples/comparison/compare_new_heads.mdx
+++ b/vocs/docs/pages/examples/comparison/compare_new_heads.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/comparison/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `compare_new_heads`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/comparison/examples/compare_new_heads.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/comparison/examples/compare_new_heads.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/comparison/examples/compare_new_heads.rs).
diff --git a/vocs/docs/pages/examples/comparison/compare_pending_txs.mdx b/vocs/docs/pages/examples/comparison/compare_pending_txs.mdx
index 4271497..9735f8e 100644
--- a/vocs/docs/pages/examples/comparison/compare_pending_txs.mdx
+++ b/vocs/docs/pages/examples/comparison/compare_pending_txs.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/comparison/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `compare_pending_txs`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/comparison/examples/compare_pending_txs.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/comparison/examples/compare_pending_txs.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/comparison/examples/compare_pending_txs.rs).
diff --git a/vocs/docs/pages/examples/contracts/deploy_and_link_library.mdx b/vocs/docs/pages/examples/contracts/deploy_and_link_library.mdx
index 267cf4b..6392a34 100644
--- a/vocs/docs/pages/examples/contracts/deploy_and_link_library.mdx
+++ b/vocs/docs/pages/examples/contracts/deploy_and_link_library.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `deploy_and_link_library`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/deploy_and_link_library.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/deploy_and_link_library.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/deploy_and_link_library.rs).
diff --git a/vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx b/vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx
index 3123687..1fc1e87 100644
--- a/vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx
+++ b/vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `deploy_from_artifact`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/deploy_from_artifact.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/deploy_from_artifact.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/deploy_from_artifact.rs).
diff --git a/vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx b/vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx
index 8bfa1fe..61af6ac 100644
--- a/vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx
+++ b/vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `deploy_from_bytecode`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/deploy_from_bytecode.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/deploy_from_bytecode.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/deploy_from_bytecode.rs).
diff --git a/vocs/docs/pages/examples/contracts/deploy_from_contract.mdx b/vocs/docs/pages/examples/contracts/deploy_from_contract.mdx
index cb7f342..17452f9 100644
--- a/vocs/docs/pages/examples/contracts/deploy_from_contract.mdx
+++ b/vocs/docs/pages/examples/contracts/deploy_from_contract.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `deploy_from_contract`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/deploy_from_contract.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/deploy_from_contract.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/deploy_from_contract.rs).
diff --git a/vocs/docs/pages/examples/contracts/interact_with_abi.mdx b/vocs/docs/pages/examples/contracts/interact_with_abi.mdx
index fadabb4..7524d17 100644
--- a/vocs/docs/pages/examples/contracts/interact_with_abi.mdx
+++ b/vocs/docs/pages/examples/contracts/interact_with_abi.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `interact_with_abi`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/interact_with_abi.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/interact_with_abi.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/interact_with_abi.rs).
diff --git a/vocs/docs/pages/examples/contracts/interact_with_contract_instance.mdx b/vocs/docs/pages/examples/contracts/interact_with_contract_instance.mdx
index 2de5aa4..d1082c4 100644
--- a/vocs/docs/pages/examples/contracts/interact_with_contract_instance.mdx
+++ b/vocs/docs/pages/examples/contracts/interact_with_contract_instance.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `interact_with_contract_instance`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/interact_with_contract_instance.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/interact_with_contract_instance.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/interact_with_contract_instance.rs).
diff --git a/vocs/docs/pages/examples/contracts/jsonrpc_error_decoding.mdx b/vocs/docs/pages/examples/contracts/jsonrpc_error_decoding.mdx
index b8d8e48..3deb13f 100644
--- a/vocs/docs/pages/examples/contracts/jsonrpc_error_decoding.mdx
+++ b/vocs/docs/pages/examples/contracts/jsonrpc_error_decoding.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `jsonrpc_error_decoding`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/jsonrpc_error_decoding.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/jsonrpc_error_decoding.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/jsonrpc_error_decoding.rs).
diff --git a/vocs/docs/pages/examples/contracts/revert_decoding.mdx b/vocs/docs/pages/examples/contracts/revert_decoding.mdx
index 15c366f..1d5c916 100644
--- a/vocs/docs/pages/examples/contracts/revert_decoding.mdx
+++ b/vocs/docs/pages/examples/contracts/revert_decoding.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `revert_decoding`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/revert_decoding.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/revert_decoding.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/revert_decoding.rs).
diff --git a/vocs/docs/pages/examples/contracts/unknown_return_types.mdx b/vocs/docs/pages/examples/contracts/unknown_return_types.mdx
index 8f75f0d..0bb6d86 100644
--- a/vocs/docs/pages/examples/contracts/unknown_return_types.mdx
+++ b/vocs/docs/pages/examples/contracts/unknown_return_types.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `unknown_return_types`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/unknown_return_types.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/unknown_return_types.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/unknown_return_types.rs).
diff --git a/vocs/docs/pages/examples/fillers/gas_filler.mdx b/vocs/docs/pages/examples/fillers/gas_filler.mdx
index 9069d15..c962162 100644
--- a/vocs/docs/pages/examples/fillers/gas_filler.mdx
+++ b/vocs/docs/pages/examples/fillers/gas_filler.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/fillers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `gas_filler`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/fillers/examples/gas_filler.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/fillers/examples/gas_filler.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/fillers/examples/gas_filler.rs).
diff --git a/vocs/docs/pages/examples/fillers/nonce_filler.mdx b/vocs/docs/pages/examples/fillers/nonce_filler.mdx
index e0ef6a2..7f95774 100644
--- a/vocs/docs/pages/examples/fillers/nonce_filler.mdx
+++ b/vocs/docs/pages/examples/fillers/nonce_filler.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/fillers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `nonce_filler`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/fillers/examples/nonce_filler.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/fillers/examples/nonce_filler.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/fillers/examples/nonce_filler.rs).
diff --git a/vocs/docs/pages/examples/fillers/recommended_fillers.mdx b/vocs/docs/pages/examples/fillers/recommended_fillers.mdx
index 5350b50..f6ac539 100644
--- a/vocs/docs/pages/examples/fillers/recommended_fillers.mdx
+++ b/vocs/docs/pages/examples/fillers/recommended_fillers.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/fillers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `recommended_fillers`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/fillers/examples/recommended_fillers.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/fillers/examples/recommended_fillers.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/fillers/examples/recommended_fillers.rs).
diff --git a/vocs/docs/pages/examples/fillers/wallet_filler.mdx b/vocs/docs/pages/examples/fillers/wallet_filler.mdx
index a8d19a1..3568c1f 100644
--- a/vocs/docs/pages/examples/fillers/wallet_filler.mdx
+++ b/vocs/docs/pages/examples/fillers/wallet_filler.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/fillers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `wallet_filler`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/fillers/examples/wallet_filler.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/fillers/examples/wallet_filler.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/fillers/examples/wallet_filler.rs).
diff --git a/vocs/docs/pages/examples/layers/fallback_layer.mdx b/vocs/docs/pages/examples/layers/fallback_layer.mdx
index d150c4d..e98ca9a 100644
--- a/vocs/docs/pages/examples/layers/fallback_layer.mdx
+++ b/vocs/docs/pages/examples/layers/fallback_layer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/layers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `fallback_layer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/layers/examples/fallback_layer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/layers/examples/fallback_layer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/layers/examples/fallback_layer.rs).
diff --git a/vocs/docs/pages/examples/layers/hyper_http_layer.mdx b/vocs/docs/pages/examples/layers/hyper_http_layer.mdx
index a7bc0df..a3ceb3e 100644
--- a/vocs/docs/pages/examples/layers/hyper_http_layer.mdx
+++ b/vocs/docs/pages/examples/layers/hyper_http_layer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/layers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `hyper_http_layer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/layers/examples/hyper_http_layer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/layers/examples/hyper_http_layer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/layers/examples/hyper_http_layer.rs).
diff --git a/vocs/docs/pages/examples/layers/logging_layer.mdx b/vocs/docs/pages/examples/layers/logging_layer.mdx
index 38dfc2f..35b2df9 100644
--- a/vocs/docs/pages/examples/layers/logging_layer.mdx
+++ b/vocs/docs/pages/examples/layers/logging_layer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/layers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `logging_layer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/layers/examples/logging_layer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/layers/examples/logging_layer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/layers/examples/logging_layer.rs).
diff --git a/vocs/docs/pages/examples/layers/retry_layer.mdx b/vocs/docs/pages/examples/layers/retry_layer.mdx
index db8b7a5..3b63fc1 100644
--- a/vocs/docs/pages/examples/layers/retry_layer.mdx
+++ b/vocs/docs/pages/examples/layers/retry_layer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/layers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `retry_layer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/layers/examples/retry_layer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/layers/examples/retry_layer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/layers/examples/retry_layer.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_deploy_contract.mdx b/vocs/docs/pages/examples/node-bindings/anvil_deploy_contract.mdx
index 5fa7a86..eade627 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_deploy_contract.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_deploy_contract.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_deploy_contract`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_deploy_contract.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_deploy_contract.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_deploy_contract.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_fork_instance.mdx b/vocs/docs/pages/examples/node-bindings/anvil_fork_instance.mdx
index b993928..5671843 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_fork_instance.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_fork_instance.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_fork_instance`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_fork_instance.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_fork_instance.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_fork_instance.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_fork_provider.mdx b/vocs/docs/pages/examples/node-bindings/anvil_fork_provider.mdx
index 20c62ee..6efc643 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_fork_provider.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_fork_provider.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_fork_provider`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_fork_provider.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_fork_provider.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_fork_provider.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_local_instance.mdx b/vocs/docs/pages/examples/node-bindings/anvil_local_instance.mdx
index bfb3396..70de90a 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_local_instance.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_local_instance.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_local_instance`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_local_instance.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_local_instance.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_local_instance.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_local_provider.mdx b/vocs/docs/pages/examples/node-bindings/anvil_local_provider.mdx
index 809c158..64ab769 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_local_provider.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_local_provider.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_local_provider`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_local_provider.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_local_provider.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_local_provider.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/anvil_set_storage_at.mdx b/vocs/docs/pages/examples/node-bindings/anvil_set_storage_at.mdx
index 5f2333e..61c3b40 100644
--- a/vocs/docs/pages/examples/node-bindings/anvil_set_storage_at.mdx
+++ b/vocs/docs/pages/examples/node-bindings/anvil_set_storage_at.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `anvil_set_storage_at`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/anvil_set_storage_at.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/anvil_set_storage_at.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/anvil_set_storage_at.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/geth_local_instance.mdx b/vocs/docs/pages/examples/node-bindings/geth_local_instance.mdx
index fe6ebc8..0724b64 100644
--- a/vocs/docs/pages/examples/node-bindings/geth_local_instance.mdx
+++ b/vocs/docs/pages/examples/node-bindings/geth_local_instance.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `geth_local_instance`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/geth_local_instance.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/geth_local_instance.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/geth_local_instance.rs).
diff --git a/vocs/docs/pages/examples/node-bindings/reth_local_instance.mdx b/vocs/docs/pages/examples/node-bindings/reth_local_instance.mdx
index b0981de..a49242b 100644
--- a/vocs/docs/pages/examples/node-bindings/reth_local_instance.mdx
+++ b/vocs/docs/pages/examples/node-bindings/reth_local_instance.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/node-bindings/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `reth_local_instance`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/node-bindings/examples/reth_local_instance.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/node-bindings/examples/reth_local_instance.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/node-bindings/examples/reth_local_instance.rs).
diff --git a/vocs/docs/pages/examples/primitives/bytes_and_address_types.mdx b/vocs/docs/pages/examples/primitives/bytes_and_address_types.mdx
index 2fe5356..c68a905 100644
--- a/vocs/docs/pages/examples/primitives/bytes_and_address_types.mdx
+++ b/vocs/docs/pages/examples/primitives/bytes_and_address_types.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/primitives/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `bytes_and_address_types`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/primitives/examples/bytes_and_address_types.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/primitives/examples/bytes_and_address_types.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/primitives/examples/bytes_and_address_types.rs).
diff --git a/vocs/docs/pages/examples/primitives/hashing_functions.mdx b/vocs/docs/pages/examples/primitives/hashing_functions.mdx
index cd0ece4..91e133b 100644
--- a/vocs/docs/pages/examples/primitives/hashing_functions.mdx
+++ b/vocs/docs/pages/examples/primitives/hashing_functions.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/primitives/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `hashing_functions`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/primitives/examples/hashing_functions.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/primitives/examples/hashing_functions.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/primitives/examples/hashing_functions.rs).
diff --git a/vocs/docs/pages/examples/providers/batch_rpc.mdx b/vocs/docs/pages/examples/providers/batch_rpc.mdx
index 969460b..c241cc1 100644
--- a/vocs/docs/pages/examples/providers/batch_rpc.mdx
+++ b/vocs/docs/pages/examples/providers/batch_rpc.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `batch_rpc`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/batch_rpc.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/batch_rpc.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/batch_rpc.rs).
diff --git a/vocs/docs/pages/examples/providers/builder.mdx b/vocs/docs/pages/examples/providers/builder.mdx
index 6ba0be2..128c037 100644
--- a/vocs/docs/pages/examples/providers/builder.mdx
+++ b/vocs/docs/pages/examples/providers/builder.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `builder`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/builder.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/builder.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/builder.rs).
diff --git a/vocs/docs/pages/examples/providers/builtin.mdx b/vocs/docs/pages/examples/providers/builtin.mdx
index df62945..3ba5b5c 100644
--- a/vocs/docs/pages/examples/providers/builtin.mdx
+++ b/vocs/docs/pages/examples/providers/builtin.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `builtin`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/builtin.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/builtin.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/builtin.rs).
diff --git a/vocs/docs/pages/examples/providers/dyn_provider.mdx b/vocs/docs/pages/examples/providers/dyn_provider.mdx
index e0cd59b..63cfb8a 100644
--- a/vocs/docs/pages/examples/providers/dyn_provider.mdx
+++ b/vocs/docs/pages/examples/providers/dyn_provider.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `dyn_provider`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/dyn_provider.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/dyn_provider.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/dyn_provider.rs).
diff --git a/vocs/docs/pages/examples/providers/http.mdx b/vocs/docs/pages/examples/providers/http.mdx
index da048cf..3764b99 100644
--- a/vocs/docs/pages/examples/providers/http.mdx
+++ b/vocs/docs/pages/examples/providers/http.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `http`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/http.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/http.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/http.rs).
diff --git a/vocs/docs/pages/examples/providers/http_with_auth.mdx b/vocs/docs/pages/examples/providers/http_with_auth.mdx
index 253f70b..5a2e04f 100644
--- a/vocs/docs/pages/examples/providers/http_with_auth.mdx
+++ b/vocs/docs/pages/examples/providers/http_with_auth.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `http_with_auth`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/http_with_auth.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/http_with_auth.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/http_with_auth.rs).
diff --git a/vocs/docs/pages/examples/providers/ipc.mdx b/vocs/docs/pages/examples/providers/ipc.mdx
index 91d0081..2990fbe 100644
--- a/vocs/docs/pages/examples/providers/ipc.mdx
+++ b/vocs/docs/pages/examples/providers/ipc.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `ipc`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/ipc.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/ipc.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/ipc.rs).
diff --git a/vocs/docs/pages/examples/providers/mocking.mdx b/vocs/docs/pages/examples/providers/mocking.mdx
index 573925d..a8fb48f 100644
--- a/vocs/docs/pages/examples/providers/mocking.mdx
+++ b/vocs/docs/pages/examples/providers/mocking.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `mocking`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/mocking.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/mocking.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/mocking.rs).
diff --git a/vocs/docs/pages/examples/providers/multicall.mdx b/vocs/docs/pages/examples/providers/multicall.mdx
index 9b3e183..cb98bff 100644
--- a/vocs/docs/pages/examples/providers/multicall.mdx
+++ b/vocs/docs/pages/examples/providers/multicall.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `multicall`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/multicall.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/multicall.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/multicall.rs).
diff --git a/vocs/docs/pages/examples/providers/multicall_batching.mdx b/vocs/docs/pages/examples/providers/multicall_batching.mdx
index db8fe4c..9732016 100644
--- a/vocs/docs/pages/examples/providers/multicall_batching.mdx
+++ b/vocs/docs/pages/examples/providers/multicall_batching.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `multicall_batching`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/multicall_batching.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/multicall_batching.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/multicall_batching.rs).
diff --git a/vocs/docs/pages/examples/providers/wrapped_provider.mdx b/vocs/docs/pages/examples/providers/wrapped_provider.mdx
index feb62c4..8bb6bc2 100644
--- a/vocs/docs/pages/examples/providers/wrapped_provider.mdx
+++ b/vocs/docs/pages/examples/providers/wrapped_provider.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `wrapped_provider`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/wrapped_provider.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/wrapped_provider.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/wrapped_provider.rs).
diff --git a/vocs/docs/pages/examples/providers/ws.mdx b/vocs/docs/pages/examples/providers/ws.mdx
index ab24b91..31ba0d1 100644
--- a/vocs/docs/pages/examples/providers/ws.mdx
+++ b/vocs/docs/pages/examples/providers/ws.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `ws`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/ws.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/ws.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/ws.rs).
diff --git a/vocs/docs/pages/examples/providers/ws_with_auth.mdx b/vocs/docs/pages/examples/providers/ws_with_auth.mdx
index 7393e64..6b2c7e5 100644
--- a/vocs/docs/pages/examples/providers/ws_with_auth.mdx
+++ b/vocs/docs/pages/examples/providers/ws_with_auth.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/providers/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `ws_with_auth`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/providers/examples/ws_with_auth.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/providers/examples/ws_with_auth.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/providers/examples/ws_with_auth.rs).
diff --git a/vocs/docs/pages/examples/queries/query_contract_storage.mdx b/vocs/docs/pages/examples/queries/query_contract_storage.mdx
index 18dce8b..97a02a0 100644
--- a/vocs/docs/pages/examples/queries/query_contract_storage.mdx
+++ b/vocs/docs/pages/examples/queries/query_contract_storage.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/queries/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `query_contract_storage`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/queries/examples/query_contract_storage.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/queries/examples/query_contract_storage.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/queries/examples/query_contract_storage.rs).
diff --git a/vocs/docs/pages/examples/queries/query_deployed_bytecode.mdx b/vocs/docs/pages/examples/queries/query_deployed_bytecode.mdx
index d50c44e..8fc9692 100644
--- a/vocs/docs/pages/examples/queries/query_deployed_bytecode.mdx
+++ b/vocs/docs/pages/examples/queries/query_deployed_bytecode.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/queries/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `query_deployed_bytecode`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/queries/examples/query_deployed_bytecode.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/queries/examples/query_deployed_bytecode.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/queries/examples/query_deployed_bytecode.rs).
diff --git a/vocs/docs/pages/examples/queries/query_logs.mdx b/vocs/docs/pages/examples/queries/query_logs.mdx
index cc4d24b..e18b5ae 100644
--- a/vocs/docs/pages/examples/queries/query_logs.mdx
+++ b/vocs/docs/pages/examples/queries/query_logs.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/queries/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `query_logs`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/queries/examples/query_logs.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/queries/examples/query_logs.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/queries/examples/query_logs.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/all_derives.mdx b/vocs/docs/pages/examples/sol-macro/all_derives.mdx
index b55a066..7b9047c 100644
--- a/vocs/docs/pages/examples/sol-macro/all_derives.mdx
+++ b/vocs/docs/pages/examples/sol-macro/all_derives.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `all_derives`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/all_derives.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/all_derives.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/all_derives.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/contract.mdx b/vocs/docs/pages/examples/sol-macro/contract.mdx
index cb7f342..17452f9 100644
--- a/vocs/docs/pages/examples/sol-macro/contract.mdx
+++ b/vocs/docs/pages/examples/sol-macro/contract.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/contracts/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `deploy_from_contract`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/contracts/examples/deploy_from_contract.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/contracts/examples/deploy_from_contract.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/contracts/examples/deploy_from_contract.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/decode_returns.mdx b/vocs/docs/pages/examples/sol-macro/decode_returns.mdx
index 84e03ae..90ba44c 100644
--- a/vocs/docs/pages/examples/sol-macro/decode_returns.mdx
+++ b/vocs/docs/pages/examples/sol-macro/decode_returns.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `decode_returns`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/decode_returns.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/decode_returns.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/decode_returns.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/events_errors.mdx b/vocs/docs/pages/examples/sol-macro/events_errors.mdx
index 63aecaf..6bba84a 100644
--- a/vocs/docs/pages/examples/sol-macro/events_errors.mdx
+++ b/vocs/docs/pages/examples/sol-macro/events_errors.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `events_errors`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/events_errors.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/events_errors.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/events_errors.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/extra_derives.mdx b/vocs/docs/pages/examples/sol-macro/extra_derives.mdx
index 8519160..961875c 100644
--- a/vocs/docs/pages/examples/sol-macro/extra_derives.mdx
+++ b/vocs/docs/pages/examples/sol-macro/extra_derives.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `extra_derives`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/extra_derives.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/extra_derives.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/extra_derives.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/structs_enums.mdx b/vocs/docs/pages/examples/sol-macro/structs_enums.mdx
index cd96c39..f3d914d 100644
--- a/vocs/docs/pages/examples/sol-macro/structs_enums.mdx
+++ b/vocs/docs/pages/examples/sol-macro/structs_enums.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `structs_enums`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/structs_enums.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/structs_enums.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/structs_enums.rs).
diff --git a/vocs/docs/pages/examples/sol-macro/user_defined_types.mdx b/vocs/docs/pages/examples/sol-macro/user_defined_types.mdx
index 2993117..2d955f5 100644
--- a/vocs/docs/pages/examples/sol-macro/user_defined_types.mdx
+++ b/vocs/docs/pages/examples/sol-macro/user_defined_types.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/sol-macro/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `user_defined_types`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/sol-macro/examples/user_defined_types.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/sol-macro/examples/user_defined_types.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/sol-macro/examples/user_defined_types.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/event_multiplexer.mdx b/vocs/docs/pages/examples/subscriptions/event_multiplexer.mdx
index 6d1bb2d..d05ceb4 100644
--- a/vocs/docs/pages/examples/subscriptions/event_multiplexer.mdx
+++ b/vocs/docs/pages/examples/subscriptions/event_multiplexer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `event_multiplexer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/event_multiplexer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/event_multiplexer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/event_multiplexer.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/poll_logs.mdx b/vocs/docs/pages/examples/subscriptions/poll_logs.mdx
index 17babc7..5d79989 100644
--- a/vocs/docs/pages/examples/subscriptions/poll_logs.mdx
+++ b/vocs/docs/pages/examples/subscriptions/poll_logs.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `poll_logs`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/poll_logs.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/poll_logs.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/poll_logs.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/subscribe_all_logs.mdx b/vocs/docs/pages/examples/subscriptions/subscribe_all_logs.mdx
index 2eab526..3c15357 100644
--- a/vocs/docs/pages/examples/subscriptions/subscribe_all_logs.mdx
+++ b/vocs/docs/pages/examples/subscriptions/subscribe_all_logs.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `subscribe_all_logs`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/subscribe_all_logs.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/subscribe_all_logs.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/subscribe_all_logs.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/subscribe_blocks.mdx b/vocs/docs/pages/examples/subscriptions/subscribe_blocks.mdx
index 1ddef1e..5b35c70 100644
--- a/vocs/docs/pages/examples/subscriptions/subscribe_blocks.mdx
+++ b/vocs/docs/pages/examples/subscriptions/subscribe_blocks.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `subscribe_blocks`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/subscribe_blocks.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/subscribe_blocks.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/subscribe_blocks.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/subscribe_logs.mdx b/vocs/docs/pages/examples/subscriptions/subscribe_logs.mdx
index b3223dc..af0c29c 100644
--- a/vocs/docs/pages/examples/subscriptions/subscribe_logs.mdx
+++ b/vocs/docs/pages/examples/subscriptions/subscribe_logs.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `subscribe_logs`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/subscribe_logs.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/subscribe_logs.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/subscribe_logs.rs).
diff --git a/vocs/docs/pages/examples/subscriptions/subscribe_pending_transactions.mdx b/vocs/docs/pages/examples/subscriptions/subscribe_pending_transactions.mdx
index e4db86b..8ba72d5 100644
--- a/vocs/docs/pages/examples/subscriptions/subscribe_pending_transactions.mdx
+++ b/vocs/docs/pages/examples/subscriptions/subscribe_pending_transactions.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/subscriptions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `subscribe_pending_transactions`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/subscriptions/examples/subscribe_pending_transactions.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/subscriptions/examples/subscribe_pending_transactions.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/subscriptions/examples/subscribe_pending_transactions.rs).
diff --git a/vocs/docs/pages/examples/transactions/debug_trace_call_many.mdx b/vocs/docs/pages/examples/transactions/debug_trace_call_many.mdx
index a51fd98..31882b7 100644
--- a/vocs/docs/pages/examples/transactions/debug_trace_call_many.mdx
+++ b/vocs/docs/pages/examples/transactions/debug_trace_call_many.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `debug_trace_call_many`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/debug_trace_call_many.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/debug_trace_call_many.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/debug_trace_call_many.rs).
diff --git a/vocs/docs/pages/examples/transactions/decode_input.mdx b/vocs/docs/pages/examples/transactions/decode_input.mdx
index bc7440f..000d108 100644
--- a/vocs/docs/pages/examples/transactions/decode_input.mdx
+++ b/vocs/docs/pages/examples/transactions/decode_input.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `decode_input`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/decode_input.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/decode_input.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/decode_input.rs).
diff --git a/vocs/docs/pages/examples/transactions/decode_receipt_log.mdx b/vocs/docs/pages/examples/transactions/decode_receipt_log.mdx
index d3e54ef..94be1ec 100644
--- a/vocs/docs/pages/examples/transactions/decode_receipt_log.mdx
+++ b/vocs/docs/pages/examples/transactions/decode_receipt_log.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `decode_receipt_log`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/decode_receipt_log.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/decode_receipt_log.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/decode_receipt_log.rs).
diff --git a/vocs/docs/pages/examples/transactions/encode_decode_eip1559.mdx b/vocs/docs/pages/examples/transactions/encode_decode_eip1559.mdx
index 856e036..67bc7d5 100644
--- a/vocs/docs/pages/examples/transactions/encode_decode_eip1559.mdx
+++ b/vocs/docs/pages/examples/transactions/encode_decode_eip1559.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `encode_decode_eip1559`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/encode_decode_eip1559.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/encode_decode_eip1559.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/encode_decode_eip1559.rs).
diff --git a/vocs/docs/pages/examples/transactions/gas_price_usd.mdx b/vocs/docs/pages/examples/transactions/gas_price_usd.mdx
index 9e8527f..c4f9219 100644
--- a/vocs/docs/pages/examples/transactions/gas_price_usd.mdx
+++ b/vocs/docs/pages/examples/transactions/gas_price_usd.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `gas_price_usd`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/gas_price_usd.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/gas_price_usd.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/gas_price_usd.rs).
diff --git a/vocs/docs/pages/examples/transactions/permit2_signature_transfer.mdx b/vocs/docs/pages/examples/transactions/permit2_signature_transfer.mdx
index 1a06443..0f0bf1a 100644
--- a/vocs/docs/pages/examples/transactions/permit2_signature_transfer.mdx
+++ b/vocs/docs/pages/examples/transactions/permit2_signature_transfer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `permit2_signature_transfer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/permit2_signature_transfer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/permit2_signature_transfer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/permit2_signature_transfer.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_eip1559_transaction.mdx b/vocs/docs/pages/examples/transactions/send_eip1559_transaction.mdx
index 331cfa1..650b7ae 100644
--- a/vocs/docs/pages/examples/transactions/send_eip1559_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_eip1559_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_eip1559_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_eip1559_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_eip1559_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_eip1559_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_eip4844_transaction.mdx b/vocs/docs/pages/examples/transactions/send_eip4844_transaction.mdx
index 0667ba4..bc3f554 100644
--- a/vocs/docs/pages/examples/transactions/send_eip4844_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_eip4844_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_eip4844_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_eip4844_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_eip4844_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_eip4844_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_eip7702_transaction.mdx b/vocs/docs/pages/examples/transactions/send_eip7702_transaction.mdx
index 4fda5ac..93b9ff7 100644
--- a/vocs/docs/pages/examples/transactions/send_eip7702_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_eip7702_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_eip7702_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_eip7702_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_eip7702_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_eip7702_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_legacy_transaction.mdx b/vocs/docs/pages/examples/transactions/send_legacy_transaction.mdx
index fe76bad..3f41fbc 100644
--- a/vocs/docs/pages/examples/transactions/send_legacy_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_legacy_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_legacy_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_legacy_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_legacy_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_legacy_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_private_transaction.mdx b/vocs/docs/pages/examples/transactions/send_private_transaction.mdx
index eeff7c0..eaec61f 100644
--- a/vocs/docs/pages/examples/transactions/send_private_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_private_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_private_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_private_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_private_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_private_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/send_raw_transaction.mdx b/vocs/docs/pages/examples/transactions/send_raw_transaction.mdx
index 67e3221..e463978 100644
--- a/vocs/docs/pages/examples/transactions/send_raw_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/send_raw_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `send_raw_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/send_raw_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/send_raw_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/send_raw_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/trace_call.mdx b/vocs/docs/pages/examples/transactions/trace_call.mdx
index 3194f8c..509579c 100644
--- a/vocs/docs/pages/examples/transactions/trace_call.mdx
+++ b/vocs/docs/pages/examples/transactions/trace_call.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `trace_call`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/trace_call.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/trace_call.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/trace_call.rs).
diff --git a/vocs/docs/pages/examples/transactions/trace_call_many.mdx b/vocs/docs/pages/examples/transactions/trace_call_many.mdx
index 992ce60..4ae7f83 100644
--- a/vocs/docs/pages/examples/transactions/trace_call_many.mdx
+++ b/vocs/docs/pages/examples/transactions/trace_call_many.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `trace_call_many`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/trace_call_many.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/trace_call_many.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/trace_call_many.rs).
diff --git a/vocs/docs/pages/examples/transactions/trace_transaction.mdx b/vocs/docs/pages/examples/transactions/trace_transaction.mdx
index 9c37dc4..bb71f1d 100644
--- a/vocs/docs/pages/examples/transactions/trace_transaction.mdx
+++ b/vocs/docs/pages/examples/transactions/trace_transaction.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `trace_transaction`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/trace_transaction.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/trace_transaction.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/trace_transaction.rs).
diff --git a/vocs/docs/pages/examples/transactions/transfer_erc20.mdx b/vocs/docs/pages/examples/transactions/transfer_erc20.mdx
index 3e34539..f3add8d 100644
--- a/vocs/docs/pages/examples/transactions/transfer_erc20.mdx
+++ b/vocs/docs/pages/examples/transactions/transfer_erc20.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `transfer_erc20`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/transfer_erc20.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/transfer_erc20.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/transfer_erc20.rs).
diff --git a/vocs/docs/pages/examples/transactions/transfer_eth.mdx b/vocs/docs/pages/examples/transactions/transfer_eth.mdx
index 719fe75..30504c6 100644
--- a/vocs/docs/pages/examples/transactions/transfer_eth.mdx
+++ b/vocs/docs/pages/examples/transactions/transfer_eth.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `transfer_eth`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/transfer_eth.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/transfer_eth.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/transfer_eth.rs).
diff --git a/vocs/docs/pages/examples/transactions/with_access_list.mdx b/vocs/docs/pages/examples/transactions/with_access_list.mdx
index 5d8dff6..7d0209e 100644
--- a/vocs/docs/pages/examples/transactions/with_access_list.mdx
+++ b/vocs/docs/pages/examples/transactions/with_access_list.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/transactions/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `with_access_list`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/transactions/examples/with_access_list.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/transactions/examples/with_access_list.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/transactions/examples/with_access_list.rs).
diff --git a/vocs/docs/pages/examples/wallets/aws_signer.mdx b/vocs/docs/pages/examples/wallets/aws_signer.mdx
index 5568abd..2a6c0d7 100644
--- a/vocs/docs/pages/examples/wallets/aws_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/aws_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `aws_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/aws_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/aws_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/aws_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/create_keystore.mdx b/vocs/docs/pages/examples/wallets/create_keystore.mdx
index 207e8ee..53cd455 100644
--- a/vocs/docs/pages/examples/wallets/create_keystore.mdx
+++ b/vocs/docs/pages/examples/wallets/create_keystore.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `create_keystore`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/create_keystore.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/create_keystore.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/create_keystore.rs).
diff --git a/vocs/docs/pages/examples/wallets/ethereum_wallet.mdx b/vocs/docs/pages/examples/wallets/ethereum_wallet.mdx
index 2c0052e..015b746 100644
--- a/vocs/docs/pages/examples/wallets/ethereum_wallet.mdx
+++ b/vocs/docs/pages/examples/wallets/ethereum_wallet.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `ethereum_wallet`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/ethereum_wallet.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/ethereum_wallet.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/ethereum_wallet.rs).
diff --git a/vocs/docs/pages/examples/wallets/gcp_signer.mdx b/vocs/docs/pages/examples/wallets/gcp_signer.mdx
index 42d21c8..1534bc6 100644
--- a/vocs/docs/pages/examples/wallets/gcp_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/gcp_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `gcp_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/gcp_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/gcp_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/gcp_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/keystore_signer.mdx b/vocs/docs/pages/examples/wallets/keystore_signer.mdx
index dedf803..b80cf4b 100644
--- a/vocs/docs/pages/examples/wallets/keystore_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/keystore_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `keystore_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/keystore_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/keystore_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/keystore_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/ledger_signer.mdx b/vocs/docs/pages/examples/wallets/ledger_signer.mdx
index 207c134..368de09 100644
--- a/vocs/docs/pages/examples/wallets/ledger_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/ledger_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `ledger_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/ledger_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/ledger_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/ledger_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/mnemonic_signer.mdx b/vocs/docs/pages/examples/wallets/mnemonic_signer.mdx
index 98e48fb..f9ecea1 100644
--- a/vocs/docs/pages/examples/wallets/mnemonic_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/mnemonic_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `mnemonic_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/mnemonic_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/mnemonic_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/mnemonic_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/private_key_signer.mdx b/vocs/docs/pages/examples/wallets/private_key_signer.mdx
index 84413ea..8bf8860 100644
--- a/vocs/docs/pages/examples/wallets/private_key_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/private_key_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `private_key_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/private_key_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/private_key_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/private_key_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/sign_message.mdx b/vocs/docs/pages/examples/wallets/sign_message.mdx
index 8ea214a..99f529b 100644
--- a/vocs/docs/pages/examples/wallets/sign_message.mdx
+++ b/vocs/docs/pages/examples/wallets/sign_message.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `sign_message`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/sign_message.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/sign_message.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/sign_message.rs).
diff --git a/vocs/docs/pages/examples/wallets/sign_permit_hash.mdx b/vocs/docs/pages/examples/wallets/sign_permit_hash.mdx
index fd581d4..c354e88 100644
--- a/vocs/docs/pages/examples/wallets/sign_permit_hash.mdx
+++ b/vocs/docs/pages/examples/wallets/sign_permit_hash.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `sign_permit_hash`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/sign_permit_hash.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/sign_permit_hash.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/sign_permit_hash.rs).
diff --git a/vocs/docs/pages/examples/wallets/trezor_signer.mdx b/vocs/docs/pages/examples/wallets/trezor_signer.mdx
index c06b420..e7eef4c 100644
--- a/vocs/docs/pages/examples/wallets/trezor_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/trezor_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `trezor_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/trezor_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/trezor_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/trezor_signer.rs).
diff --git a/vocs/docs/pages/examples/wallets/verify_message.mdx b/vocs/docs/pages/examples/wallets/verify_message.mdx
index a309941..b16bf9c 100644
--- a/vocs/docs/pages/examples/wallets/verify_message.mdx
+++ b/vocs/docs/pages/examples/wallets/verify_message.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `verify_message`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/verify_message.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/verify_message.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/verify_message.rs).
diff --git a/vocs/docs/pages/examples/wallets/yubi_signer.mdx b/vocs/docs/pages/examples/wallets/yubi_signer.mdx
index 6f280aa..766d5c3 100644
--- a/vocs/docs/pages/examples/wallets/yubi_signer.mdx
+++ b/vocs/docs/pages/examples/wallets/yubi_signer.mdx
@@ -1,7 +1,7 @@
{/*DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh`
ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN
EDIT OR CREATE THIS TEMPLATE INSTEAD: ./vocs/docs/pages/templates/wallets/README.mdx
-LATEST UPDATE: https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee
+LATEST UPDATE: https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e
*/}
## Example: `yubi_signer`
@@ -15,4 +15,4 @@ To run this example:
// [!include ~/snippets/wallets/examples/yubi_signer.rs]
```
-Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a2c02c7af1f61ed400aa2b429398cba751859cee/examples/wallets/examples/yubi_signer.rs).
+Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/2195e23d57867ffc813b71f77e4fe2f007c8ef8e/examples/wallets/examples/yubi_signer.rs).
diff --git a/vocs/docs/snippets/contracts/examples/interact_with_abi.rs b/vocs/docs/snippets/contracts/examples/interact_with_abi.rs
index f0e4cc1..a9de722 100644
--- a/vocs/docs/snippets/contracts/examples/interact_with_abi.rs
+++ b/vocs/docs/snippets/contracts/examples/interact_with_abi.rs
@@ -15,7 +15,7 @@ sol!(
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider =
ProviderBuilder::new().on_anvil_with_wallet_and_config(|anvil| anvil.fork(rpc_url))?;
diff --git a/vocs/docs/snippets/layers/examples/fallback_layer.rs b/vocs/docs/snippets/layers/examples/fallback_layer.rs
index f19a65f..06f78cc 100644
--- a/vocs/docs/snippets/layers/examples/fallback_layer.rs
+++ b/vocs/docs/snippets/layers/examples/fallback_layer.rs
@@ -23,7 +23,7 @@ async fn main() -> Result<()> {
// Define your list of transports to use
let transports = vec![
- Http::new(Url::parse("https://eth.merkle.io")?),
+ Http::new(Url::parse("https://reth-ethereum.ithaca.xyz/rpc")?),
Http::new(Url::parse("https://eth.llamarpc.com")?),
Http::new(Url::parse("https://ethereum-rpc.publicnode.com")?),
];
diff --git a/vocs/docs/snippets/node-bindings/examples/anvil_fork_instance.rs b/vocs/docs/snippets/node-bindings/examples/anvil_fork_instance.rs
index fded980..72b4dc0 100644
--- a/vocs/docs/snippets/node-bindings/examples/anvil_fork_instance.rs
+++ b/vocs/docs/snippets/node-bindings/examples/anvil_fork_instance.rs
@@ -10,7 +10,7 @@ use eyre::Result;
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let anvil = Anvil::new().fork(rpc_url).try_spawn()?;
let provider = ProviderBuilder::new().on_http(anvil.endpoint_url());
diff --git a/vocs/docs/snippets/node-bindings/examples/anvil_fork_provider.rs b/vocs/docs/snippets/node-bindings/examples/anvil_fork_provider.rs
index 113c558..82c250b 100644
--- a/vocs/docs/snippets/node-bindings/examples/anvil_fork_provider.rs
+++ b/vocs/docs/snippets/node-bindings/examples/anvil_fork_provider.rs
@@ -7,7 +7,7 @@ use eyre::Result;
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider = ProviderBuilder::new().on_anvil_with_config(|anvil| anvil.fork(rpc_url));
// Get node info using the Anvil API.
diff --git a/vocs/docs/snippets/node-bindings/examples/anvil_set_storage_at.rs b/vocs/docs/snippets/node-bindings/examples/anvil_set_storage_at.rs
index 1a91363..81fe354 100644
--- a/vocs/docs/snippets/node-bindings/examples/anvil_set_storage_at.rs
+++ b/vocs/docs/snippets/node-bindings/examples/anvil_set_storage_at.rs
@@ -22,7 +22,7 @@ static WETH_ADDR: Address = address!("C02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2")
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider = ProviderBuilder::new().on_anvil_with_config(|anvil| anvil.fork(rpc_url));
// Create an instance of the WETH contract.
diff --git a/vocs/docs/snippets/providers/examples/batch_rpc.rs b/vocs/docs/snippets/providers/examples/batch_rpc.rs
index e405888..fb5ca4f 100644
--- a/vocs/docs/snippets/providers/examples/batch_rpc.rs
+++ b/vocs/docs/snippets/providers/examples/batch_rpc.rs
@@ -13,7 +13,7 @@ async fn main() -> Result<()> {
// Ensure `anvil` is available in $PATH.
let anvil = Anvil::new().spawn();
- // Swap this out with a RPC_URL provider that supports JSON-RPC batch requests. e.g. https://eth.merkle.io
+ // Swap this out with a RPC_URL provider that supports JSON-RPC batch requests. e.g. https://reth-ethereum.ithaca.xyz/rpc
let rpc_url = anvil.endpoint_url();
// Create a HTTP transport.
diff --git a/vocs/docs/snippets/providers/examples/http.rs b/vocs/docs/snippets/providers/examples/http.rs
index d5c18b8..d632fba 100644
--- a/vocs/docs/snippets/providers/examples/http.rs
+++ b/vocs/docs/snippets/providers/examples/http.rs
@@ -6,7 +6,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Create a provider with the HTTP transport using the `reqwest` crate.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().on_http(rpc_url);
// Get latest block number.
diff --git a/vocs/docs/snippets/providers/examples/http_with_auth.rs b/vocs/docs/snippets/providers/examples/http_with_auth.rs
index 7df65ff..30f066d 100644
--- a/vocs/docs/snippets/providers/examples/http_with_auth.rs
+++ b/vocs/docs/snippets/providers/examples/http_with_auth.rs
@@ -24,7 +24,7 @@ async fn main() -> Result<()> {
let client_with_auth = Client::builder().default_headers(headers).build()?;
// Create the HTTP transport.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let http = Http::with_client(client_with_auth, rpc_url);
let rpc_client = RpcClient::new(http, false);
diff --git a/vocs/docs/snippets/providers/examples/multicall.rs b/vocs/docs/snippets/providers/examples/multicall.rs
index 9c306a0..99c6228 100644
--- a/vocs/docs/snippets/providers/examples/multicall.rs
+++ b/vocs/docs/snippets/providers/examples/multicall.rs
@@ -20,7 +20,7 @@ sol!(
async fn main() -> eyre::Result<()> {
// Create a new provider
let provider = ProviderBuilder::new()
- .on_anvil_with_wallet_and_config(|a| a.fork("https://eth.merkle.io"))?;
+ .on_anvil_with_wallet_and_config(|a| a.fork("https://reth-ethereum.ithaca.xyz/rpc"))?;
// Create a new instance of the IWETH9 contract.
let weth =
IWETH9Instance::new(address!("0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"), &provider);
diff --git a/vocs/docs/snippets/providers/examples/multicall_batching.rs b/vocs/docs/snippets/providers/examples/multicall_batching.rs
index 5e16bd3..f36d7f9 100644
--- a/vocs/docs/snippets/providers/examples/multicall_batching.rs
+++ b/vocs/docs/snippets/providers/examples/multicall_batching.rs
@@ -31,7 +31,7 @@ async fn main() -> Result<()> {
.layer(CallBatchLayer::new().wait(Duration::from_secs(10)))
// Can also use the shorthand `with_call_batching` on the build which set the delay to 1ms.
// .with_call_batching()
- .on_anvil_with_wallet_and_config(|a| a.fork("https://eth.merkle.io"))?;
+ .on_anvil_with_wallet_and_config(|a| a.fork("https://reth-ethereum.ithaca.xyz/rpc"))?;
// Create a new instance of the IWETH9 contract.
let weth =
diff --git a/vocs/docs/snippets/queries/examples/query_contract_storage.rs b/vocs/docs/snippets/queries/examples/query_contract_storage.rs
index 2ab0f37..580a05a 100644
--- a/vocs/docs/snippets/queries/examples/query_contract_storage.rs
+++ b/vocs/docs/snippets/queries/examples/query_contract_storage.rs
@@ -9,7 +9,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Create a provider.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().on_http(rpc_url);
// Get storage slot 0 from the Uniswap V3 USDC-ETH pool on Ethereum mainnet.
diff --git a/vocs/docs/snippets/queries/examples/query_deployed_bytecode.rs b/vocs/docs/snippets/queries/examples/query_deployed_bytecode.rs
index 6ad302e..d35af32 100644
--- a/vocs/docs/snippets/queries/examples/query_deployed_bytecode.rs
+++ b/vocs/docs/snippets/queries/examples/query_deployed_bytecode.rs
@@ -9,7 +9,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Create a provider.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().on_http(rpc_url);
// Get the bytecode of the Uniswap V3 USDC-ETH pool on Ethereum mainnet.
diff --git a/vocs/docs/snippets/queries/examples/query_logs.rs b/vocs/docs/snippets/queries/examples/query_logs.rs
index 6e39ba4..e3076d4 100644
--- a/vocs/docs/snippets/queries/examples/query_logs.rs
+++ b/vocs/docs/snippets/queries/examples/query_logs.rs
@@ -10,7 +10,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Create a provider.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().on_http(rpc_url);
// Get logs from the latest block
diff --git a/vocs/docs/snippets/transactions/examples/gas_price_usd.rs b/vocs/docs/snippets/transactions/examples/gas_price_usd.rs
index 1501c68..b95d552 100644
--- a/vocs/docs/snippets/transactions/examples/gas_price_usd.rs
+++ b/vocs/docs/snippets/transactions/examples/gas_price_usd.rs
@@ -26,7 +26,7 @@ sol!(
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider = ProviderBuilder::new().on_anvil_with_config(|anvil| anvil.fork(rpc_url));
// Create a call to get the latest answer from the Chainlink ETH/USD feed.
diff --git a/vocs/docs/snippets/transactions/examples/permit2_signature_transfer.rs b/vocs/docs/snippets/transactions/examples/permit2_signature_transfer.rs
index 6d714fa..363f97e 100644
--- a/vocs/docs/snippets/transactions/examples/permit2_signature_transfer.rs
+++ b/vocs/docs/snippets/transactions/examples/permit2_signature_transfer.rs
@@ -63,7 +63,7 @@ impl From for ISignatureTransfer::PermitTransferFrom {
async fn main() -> Result<()> {
// Spin up a local Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let anvil = Anvil::new().fork(rpc_url).try_spawn()?;
// Set up signers from the first two default Anvil accounts (Alice, Bob).
diff --git a/vocs/docs/snippets/transactions/examples/trace_call.rs b/vocs/docs/snippets/transactions/examples/trace_call.rs
index 219264c..72d09b7 100644
--- a/vocs/docs/snippets/transactions/examples/trace_call.rs
+++ b/vocs/docs/snippets/transactions/examples/trace_call.rs
@@ -11,7 +11,7 @@ use eyre::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Create a provider.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().on_http(rpc_url);
// Build a transaction to send 100 wei from Alice to Vitalik.
diff --git a/vocs/docs/snippets/transactions/examples/trace_transaction.rs b/vocs/docs/snippets/transactions/examples/trace_transaction.rs
index a897a57..5a102a6 100644
--- a/vocs/docs/snippets/transactions/examples/trace_transaction.rs
+++ b/vocs/docs/snippets/transactions/examples/trace_transaction.rs
@@ -14,7 +14,7 @@ use eyre::Result;
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider = ProviderBuilder::new().on_anvil_with_config(|anvil| anvil.fork(rpc_url));
// Hash of the tx we want to trace.
diff --git a/vocs/docs/snippets/transactions/examples/transfer_erc20.rs b/vocs/docs/snippets/transactions/examples/transfer_erc20.rs
index bb49b34..49793c8 100644
--- a/vocs/docs/snippets/transactions/examples/transfer_erc20.rs
+++ b/vocs/docs/snippets/transactions/examples/transfer_erc20.rs
@@ -19,7 +19,7 @@ sol!(
async fn main() -> Result<()> {
// Spin up a forked Anvil node.
// Ensure `anvil` is available in $PATH.
- let rpc_url = "https://eth.merkle.io";
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc";
let provider =
ProviderBuilder::new().on_anvil_with_wallet_and_config(|anvil| anvil.fork(rpc_url))?;
diff --git a/vocs/docs/snippets/wallets/examples/ledger_signer.rs b/vocs/docs/snippets/wallets/examples/ledger_signer.rs
index a03da05..d323f4c 100644
--- a/vocs/docs/snippets/wallets/examples/ledger_signer.rs
+++ b/vocs/docs/snippets/wallets/examples/ledger_signer.rs
@@ -15,7 +15,7 @@ async fn main() -> Result<()> {
let signer = LedgerSigner::new(HDPath::LedgerLive(0), Some(1)).await?;
// Create a provider with the wallet.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().wallet(signer).on_http(rpc_url);
// Build a transaction to send 100 wei from Alice to Vitalik.
diff --git a/vocs/docs/snippets/wallets/examples/trezor_signer.rs b/vocs/docs/snippets/wallets/examples/trezor_signer.rs
index 40e08a1..506ce13 100644
--- a/vocs/docs/snippets/wallets/examples/trezor_signer.rs
+++ b/vocs/docs/snippets/wallets/examples/trezor_signer.rs
@@ -15,7 +15,7 @@ async fn main() -> Result<()> {
let signer = TrezorSigner::new(HDPath::TrezorLive(0), Some(1)).await?;
// Create a provider with the wallet.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().wallet(signer).on_http(rpc_url);
// Build a transaction to send 100 wei from Alice to Vitalik.
diff --git a/vocs/docs/snippets/wallets/examples/yubi_signer.rs b/vocs/docs/snippets/wallets/examples/yubi_signer.rs
index 687a5d9..3d0fa58 100644
--- a/vocs/docs/snippets/wallets/examples/yubi_signer.rs
+++ b/vocs/docs/snippets/wallets/examples/yubi_signer.rs
@@ -24,7 +24,7 @@ async fn main() -> Result<()> {
let signer = YubiSigner::connect(connector, Credentials::default(), 0);
// Create a provider with the wallet.
- let rpc_url = "https://eth.merkle.io".parse()?;
+ let rpc_url = "https://reth-ethereum.ithaca.xyz/rpc".parse()?;
let provider = ProviderBuilder::new().wallet(signer).on_http(rpc_url);
// Build a transaction to send 100 wei from Alice to Vitalik.
From ac306042b43b4d2ee4d64ad0cf4c748a82c6b058 Mon Sep 17 00:00:00 2001
From: Yash Atreya <44857776+yash-atreya@users.noreply.github.com>
Date: Mon, 14 Apr 2025 12:38:14 +0530
Subject: [PATCH 3/3] rm book.toml
---
README.md | 2 +-
book.toml | 23 -----------------------
2 files changed, 1 insertion(+), 24 deletions(-)
delete mode 100644 book.toml
diff --git a/README.md b/README.md
index e1769ea..92a660e 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ A book on all things Alloy.
[![Telegram chat][telegram-badge]][telegram-url]
-[`ethers-rs`]: https://github.com/gakonst/ethers-rs
+[`alloy-rs`]: https://github.com/gakonst/ethers-rs
[telegram-badge]: https://img.shields.io/endpoint?color=neon&style=for-the-badge&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fethers_rs
[telegram-url]: https://t.me/ethers_rs
diff --git a/book.toml b/book.toml
deleted file mode 100644
index 853411c..0000000
--- a/book.toml
+++ /dev/null
@@ -1,23 +0,0 @@
-[book]
-authors = ["Alloy Contributors"]
-language = "en"
-multilingual = false
-src = "src"
-title = "Alloy Book"
-description = "A book on all things Alloy"
-
-[build]
-create-missing = false
-
-[preprocessor.external-links]
-
-[output.html]
-git-repository-url = "https://github.com/alloy-rs/book"
-edit-url-template = "https://github.com/alloy-rs/book/edit/main/{path}"
-default-theme = "ayu"
-
-[output.html.fold]
-enable = true
-level = 0
-
-[output.linkcheck]