Skip to content

Commit

Permalink
feat(basic-building-blocks) + fix(script): Add basic hash and address…
Browse files Browse the repository at this point in the history
… types (#15)

* pull in latest examples

* insert primitive examples

* add links to summary

* add notification to update SUMMARY.md if necessary

* add path
  • Loading branch information
zerosnacks authored May 6, 2024
1 parent bd3b221 commit 87f8c27
Show file tree
Hide file tree
Showing 53 changed files with 153 additions and 95 deletions.
6 changes: 5 additions & 1 deletion scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -eo pipefail

# Utilities
GREEN="\033[00;32m"
YELLOW="\033[00;33m"

function log () {
echo -e "$1"
Expand All @@ -30,7 +31,8 @@ function main () {

# Update submodules
git submodule update --recursive --remote
git submodule foreach git pull origin
git submodule foreach git checkout main
git submodule foreach git pull origin main

# Get the commit hash of the latest commit in the examples repository
EXAMPLES_COMMIT_HASH=$(git -C ./lib/examples rev-parse HEAD)
Expand Down Expand Up @@ -86,6 +88,8 @@ done
UPDATED_EXAMPLE_FILES=$(find ./src/examples -type f)
diff <(echo "$CURRENT_EXAMPLE_FILES") <(echo "$UPDATED_EXAMPLE_FILES") || true

log $YELLOW "Make sure to update `src/SUMMARY.md` if necessary."

log $GREEN "Done"
}

Expand Down
4 changes: 4 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
- [Nonce management filler](./examples/fillers/nonce_filler.md)
- [Recommended fillers](./examples/fillers/recommended_fillers.md)
- [Signer management filler](./examples/fillers/signer_filler.md)
- [Primitives](./examples/primitives/bytes_and_address_types.md)
- [Bytes and address types](./examples/primitives/bytes_and_address_types.md)
- [Hashing functions](./examples/primitives/hashing_functions.md)
- [Providers](./examples/providers/builder.md)
- [Builder](./examples/providers/builder.md)
- [Builtin](./examples/providers/builtin.md)
Expand All @@ -70,6 +73,7 @@
- [Transfer ETH](./examples/transactions/transfer_eth.md)
- [Sign and send a raw transaction](./examples/transactions/sign_transaction.md)
- [Send transaction with access list](./examples/transactions/with_access_list.md)
- [Send EIP-4844 transaction](./examples/transactions/send_4844.md)
- [Wallets](./examples/wallets/aws_signer.md)
- [AWS signer](./examples/wallets/aws_signer.md)
- [Ledger signer](./examples/wallets/ledger_signer.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Basic hash and address types

TODO: [https://github.com/alloy-rs/examples/issues/70](https://github.com/alloy-rs/examples/issues/70)
{{#include ../../examples/primitives/bytes_and_address_types.md}}

{{#include ../../examples/primitives/hashing_functions.md}}
4 changes: 2 additions & 2 deletions src/examples/anvil/deploy_contract_anvil.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `deploy_contract_anvil`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/anvil/examples/deploy_contract_anvil.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/anvil/examples/deploy_contract_anvil.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/anvil/examples/deploy_contract_anvil.rs).
4 changes: 2 additions & 2 deletions src/examples/anvil/fork_anvil.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `fork_anvil`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/anvil/examples/fork_anvil.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/anvil/examples/fork_anvil.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/anvil/examples/fork_anvil.rs).
4 changes: 2 additions & 2 deletions src/examples/anvil/local_anvil.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `local_anvil`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/anvil/examples/local_anvil.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/anvil/examples/local_anvil.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/anvil/examples/local_anvil.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/comparison_equivalence.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `comparison_equivalence`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/big-numbers/examples/comparison_equivalence.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/big-numbers/examples/comparison_equivalence.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/big-numbers/examples/comparison_equivalence.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/conversion.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `conversion`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/big-numbers/examples/conversion.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/big-numbers/examples/conversion.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/big-numbers/examples/conversion.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/create_instances.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `create_instances`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/big-numbers/examples/create_instances.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/big-numbers/examples/create_instances.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/big-numbers/examples/create_instances.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/math_operations.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `math_operations`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/big-numbers/examples/math_operations.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/big-numbers/examples/math_operations.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/big-numbers/examples/math_operations.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/math_utilities.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `math_utilities`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/big-numbers/examples/math_utilities.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/big-numbers/examples/math_utilities.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/big-numbers/examples/math_utilities.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_artifact.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `deploy_from_artifact`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/contracts/examples/deploy_from_artifact.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/contracts/examples/deploy_from_artifact.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/contracts/examples/deploy_from_artifact.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_contract.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `deploy_from_contract`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/contracts/examples/deploy_from_contract.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/contracts/examples/deploy_from_contract.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/contracts/examples/deploy_from_contract.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/interact_with_abi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `interact_with_abi`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/contracts/examples/interact_with_abi.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/contracts/examples/interact_with_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/contracts/examples/interact_with_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/gas_filler.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `gas_filler`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/fillers/examples/gas_filler.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/fillers/examples/gas_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/fillers/examples/gas_filler.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/nonce_filler.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `nonce_filler`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/fillers/examples/nonce_filler.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/fillers/examples/nonce_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/fillers/examples/nonce_filler.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/recommended_fillers.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `recommended_fillers`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/fillers/examples/recommended_fillers.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/fillers/examples/recommended_fillers.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/fillers/examples/recommended_fillers.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/signer_filler.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `signer_filler`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/fillers/examples/signer_filler.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/fillers/examples/signer_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/fillers/examples/signer_filler.rs).
16 changes: 16 additions & 0 deletions src/examples/primitives/bytes_and_address_types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `bytes_and_address_types`

To run this example:

- Clone the [examples](https://github.com/alloy-rs/examples) repository: `git clone [email protected]:alloy-rs/examples.git`
- Run: `cargo run --example bytes_and_address_types`

```rust,ignore
{{#include ../../../lib/examples/examples/primitives/examples/bytes_and_address_types.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/primitives/examples/bytes_and_address_types.rs).
16 changes: 16 additions & 0 deletions src/examples/primitives/hashing_functions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `hashing_functions`

To run this example:

- Clone the [examples](https://github.com/alloy-rs/examples) repository: `git clone [email protected]:alloy-rs/examples.git`
- Run: `cargo run --example hashing_functions`

```rust,ignore
{{#include ../../../lib/examples/examples/primitives/examples/hashing_functions.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/primitives/examples/hashing_functions.rs).
4 changes: 2 additions & 2 deletions src/examples/providers/builder.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `builder`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/providers/examples/builder.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/providers/examples/builder.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/providers/examples/builder.rs).
4 changes: 2 additions & 2 deletions src/examples/providers/builtin.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `builtin`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/providers/examples/builtin.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/providers/examples/builtin.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/providers/examples/builtin.rs).
4 changes: 2 additions & 2 deletions src/examples/providers/http.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `http`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/providers/examples/http.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/providers/examples/http.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/providers/examples/http.rs).
4 changes: 2 additions & 2 deletions src/examples/providers/ipc.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad -->

### Example: `ipc`

Expand All @@ -13,4 +13,4 @@ To run this example:
{{#include ../../../lib/examples/examples/providers/examples/ipc.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/18184f3caec922bd5ba358f389b5bfea365ef444/examples/providers/examples/ipc.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/52a7c26c03ea845bd81076995f63fe6b31606dad/examples/providers/examples/ipc.rs).
Loading

0 comments on commit 87f8c27

Please sign in to comment.