Skip to content

Commit

Permalink
chore: bump to 0.4.0 (#54)
Browse files Browse the repository at this point in the history
* bump to 0.4

* update examples
  • Loading branch information
zerosnacks authored Oct 3, 2024
1 parent be0d356 commit b9da592
Show file tree
Hide file tree
Showing 84 changed files with 200 additions and 156 deletions.
2 changes: 1 addition & 1 deletion lib/examples
Submodule examples updated 48 files
+6 −1 Cargo.toml
+2 −0 README.md
+4 −1 examples/advanced/Cargo.toml
+4 −0 examples/advanced/examples/any_network.rs
+1 −1 examples/advanced/examples/encoding_dyn_abi.rs
+3 −3 examples/advanced/examples/encoding_sol_static.rs
+158 −0 examples/advanced/examples/foundry_fork_db.rs
+2 −16 examples/contracts/examples/deploy_from_artifact.rs
+2 −15 examples/contracts/examples/deploy_from_bytecode.rs
+2 −16 examples/contracts/examples/deploy_from_contract.rs
+4 −6 examples/contracts/examples/interact_with_abi.rs
+3 −1 examples/contracts/examples/interact_with_contract_instance.rs
+7 −4 examples/contracts/examples/unknown_return_types.rs
+3 −14 examples/fillers/examples/gas_filler.rs
+3 −14 examples/fillers/examples/nonce_filler.rs
+3 −13 examples/fillers/examples/recommended_fillers.rs
+1 −1 examples/fillers/examples/wallet_filler.rs
+7 −3 examples/layers/examples/logging_layer.rs
+1 −0 examples/node-bindings/examples/anvil_deploy_contract.rs
+4 −7 examples/node-bindings/examples/anvil_fork_instance.rs
+3 −5 examples/node-bindings/examples/anvil_fork_provider.rs
+1 −2 examples/node-bindings/examples/anvil_local_instance.rs
+2 −2 examples/node-bindings/examples/anvil_local_provider.rs
+50 −0 examples/node-bindings/examples/anvil_set_storage_at.rs
+1 −1 examples/providers/examples/builder.rs
+7 −5 examples/providers/examples/builtin.rs
+1 −3 examples/providers/examples/http.rs
+1 −3 examples/providers/examples/ws.rs
+1 −3 examples/providers/examples/ws_with_auth.rs
+3 −6 examples/sol-macro/examples/events_errors.rs
+1 −3 examples/subscriptions/examples/subscribe_all_logs.rs
+1 −3 examples/subscriptions/examples/subscribe_logs.rs
+1 −3 examples/subscriptions/examples/subscribe_pending_transactions.rs
+2 −6 examples/transactions/examples/gas_price_usd.rs
+5 −9 examples/transactions/examples/send_eip1559_transaction.rs
+5 −7 examples/transactions/examples/send_eip4844_transaction.rs
+48 −38 examples/transactions/examples/send_eip7702_transaction.rs
+6 −10 examples/transactions/examples/send_legacy_transaction.rs
+9 −18 examples/transactions/examples/send_raw_transaction.rs
+2 −6 examples/transactions/examples/trace_transaction.rs
+12 −8 examples/transactions/examples/transfer_erc20.rs
+8 −16 examples/transactions/examples/transfer_eth.rs
+5 −7 examples/transactions/examples/with_access_list.rs
+4 −8 examples/wallets/examples/keystore_signer.rs
+1 −3 examples/wallets/examples/ledger_signer.rs
+1 −1 examples/wallets/examples/private_key_signer.rs
+1 −3 examples/wallets/examples/trezor_signer.rs
+1 −3 examples/wallets/examples/yubi_signer.rs
2 changes: 2 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
- [Local provider on Anvil](./examples/node-bindings/anvil_local_provider.md)
- [Local provider on Geth](./examples/node-bindings/geth_local_instance.md)
- [Local provider on Reth](./examples/node-bindings/reth_local_instance.md)
- [Mock WETH balance with Anvil](./examples/node-bindings/anvil_set_storage_at.md)
- [Primitives](./examples/primitives/README.md)
- [Bytes and address types](./examples/primitives/bytes_and_address_types.md)
- [Hashing functions](./examples/primitives/hashing_functions.md)
Expand Down Expand Up @@ -132,6 +133,7 @@
- [Decoding with `json_abi`](./examples/advanced/decoding_json_abi.md)
- [Encoding with `dyn_abi`](./examples/advanced/encoding_dyn_abi.md)
- [Static encoding with `sol!`](./examples/advanced/encoding_sol_static.md)
- [Using `foundry-fork-db`](./examples/advanced/foundry_fork_db.md)
<!-- MANUALLY MAINTAINED -->

# Appendix
Expand Down
3 changes: 2 additions & 1 deletion src/examples/advanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
- [Using `AnyNetwork`](any_network.md)
- [Decoding with `json_abi`](decoding_json_abi.md)
- [Encoding with `dyn_abi`](encoding_dyn_abi.md)
- [Static encoding with `sol!`](encoding_sol_static.md)
- [Static encoding with `sol!`](encoding_sol_static.md)
- [Using `foundry-fork-db`](foundry_fork_db.md)
4 changes: 2 additions & 2 deletions src/examples/advanced/any_network.md
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: ./src/templates/advanced/any_network.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `any_network`

Expand All @@ -16,4 +16,4 @@ To run this example:
{{#include ../../../lib/examples/examples/advanced/examples/any_network.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/any_network.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/advanced/examples/any_network.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/decoding_json_abi.md
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: ./src/templates/advanced/decoding_json_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `decoding_json_abi`

Expand All @@ -16,4 +16,4 @@ To run this example:
{{#include ../../../lib/examples/examples/advanced/examples/decoding_json_abi.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/decoding_json_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/advanced/examples/decoding_json_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/encoding_dyn_abi.md
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: ./src/templates/advanced/encoding_dyn_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `encoding_dyn_abi`

Expand All @@ -16,4 +16,4 @@ To run this example:
{{#include ../../../lib/examples/examples/advanced/examples/encoding_dyn_abi.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/encoding_dyn_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/advanced/examples/encoding_dyn_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/encoding_sol_static.md
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: ./src/templates/advanced/encoding_sol_static.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `encoding_sol_static`

Expand All @@ -16,4 +16,4 @@ To run this example:
{{#include ../../../lib/examples/examples/advanced/examples/encoding_sol_static.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/encoding_sol_static.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/advanced/examples/encoding_sol_static.rs).
19 changes: 19 additions & 0 deletions src/examples/advanced/foundry_fork_db.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!-- 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: ./src/templates/advanced/foundry_fork_db.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `foundry_fork_db`

### Example

To run this example:

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

```rust,ignore
{{#include ../../../lib/examples/examples/advanced/examples/foundry_fork_db.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/advanced/examples/foundry_fork_db.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,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: ./src/templates/big-numbers/comparison_equivalence.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `comparison_equivalence`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/comparison_equivalence.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/big-numbers/conversion.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `conversion`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/conversion.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/big-numbers/create_instances.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `create_instances`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/create_instances.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/big-numbers/math_operations.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `math_operations`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/math_operations.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/big-numbers/math_utilities.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `math_utilities`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/math_utilities.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/contracts/deploy_from_artifact.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `deploy_from_artifact`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_artifact.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/deploy_from_artifact.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_bytecode.md
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: ./src/templates/contracts/deploy_from_bytecode.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `deploy_from_bytecode`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_bytecode.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/deploy_from_bytecode.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,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: ./src/templates/contracts/deploy_from_contract.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `deploy_from_contract`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_contract.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/contracts/interact_with_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `interact_with_abi`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/interact_with_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/interact_with_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/interact_with_contract_instance.md
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: ./src/templates/contracts/interact_with_contract_instance.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `interact_with_contract_instance`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/interact_with_contract_instance.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/interact_with_contract_instance.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/jsonrpc_error_decoding.md
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: ./src/templates/contracts/jsonrpc_error_decoding.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `jsonrpc_error_decoding`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/jsonrpc_error_decoding.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/jsonrpc_error_decoding.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/unknown_return_types.md
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: ./src/templates/contracts/unknown_return_types.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `unknown_return_types`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/unknown_return_types.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/contracts/examples/unknown_return_types.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/gas_filler.md
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: ./src/templates/fillers/gas_filler.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `gas_filler`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/fillers/examples/gas_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/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,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: ./src/templates/fillers/nonce_filler.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c -->

## Example: `nonce_filler`

Expand All @@ -16,4 +16,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/22caff11b2131824130f006a856127df99cd12fa/examples/fillers/examples/nonce_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/4773fb93e2bfe7762c0c883920293ff9af1f283c/examples/fillers/examples/nonce_filler.rs).
Loading

0 comments on commit b9da592

Please sign in to comment.