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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
23 changes: 0 additions & 23 deletions book.toml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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?;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/any_network.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/decoding_json_abi.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/encoding_dyn_abi.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/encoding_sol_static.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/foundry_fork_db.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/reth_db_layer.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/advanced/reth_db_provider.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/big-numbers/conversion.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/big-numbers/create_instances.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/big-numbers/math_operations.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/big-numbers/math_utilities.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/comparison/compare_new_heads.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/comparison/compare_pending_txs.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/contracts/deploy_from_artifact.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/contracts/deploy_from_bytecode.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/contracts/deploy_from_contract.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
4 changes: 2 additions & 2 deletions vocs/docs/pages/examples/contracts/interact_with_abi.mdx
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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).
Loading