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
6 changes: 6 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,19 @@
- [Deploy from artifact](./examples/contracts/deploy_from_artifact.md)
- [Deploy from bytecode](./examples/contracts/deploy_from_bytecode.md)
- [Deploy from contract](./examples/contracts/deploy_from_contract.md)
- [Deploy and link library](./examples/contracts/deploy_and_link_library.md)
- [Interact with ABI](./examples/contracts/interact_with_abi.md)
- [Interact with contract instance](./examples/contracts/interact_with_contract_instance.md)
- [JSON-RPC error decoding](./examples/contracts/jsonrpc_error_decoding.md)
- [Handling unknown return types](./examples/contracts/unknown_return_types.md)
- [Decode revert](./examples/contracts/revert_decoding.md)
- [Fillers](./examples/fillers/README.md)
- [Gas estimation filler](./examples/fillers/gas_filler.md)
- [Nonce management filler](./examples/fillers/nonce_filler.md)
- [Recommended fillers](./examples/fillers/recommended_fillers.md)
- [Wallet management filler](./examples/fillers/wallet_filler.md)
- [Layers](./examples/layers/README.md)
- [Fallback layer](./examples/layers/fallback_layer.md)
- [Hyper transport layer](./examples/layers/hyper_http_layer.md)
- [Request / response logging layer](./examples/layers/logging_layer.md)
- [Retry-backoff layer](./examples/layers/retry_layer.md)
Expand All @@ -91,6 +94,7 @@
- [WS with authentication](./examples/providers/ws_with_auth.md)
- [Multicall Builder](./examples/providers/multicall.md)
- [JSON-RPC Batch Request](./examples/providers/batch_rpc.md)
- [DynProvider](./examples/providers/dyn_provider.md)
- [Queries](./examples/queries/README.md)
- [Query contract storage](./examples/queries/query_contract_storage.md)
- [Query contract deployed bytecode](./examples/queries/query_deployed_bytecode.md)
Expand All @@ -112,6 +116,7 @@
- [Decode input](./examples/transactions/decode_input.md)
- [Encode and decode EIP-1559 transaction](./examples/transactions/encode_decode_eip1559.md)
- [Get gas price in USD](./examples/transactions/gas_price_usd.md)
- [Decode logs from transaction receipt](./examples/transactions/decode_receipt_log.md)
- [Sign and send a raw transaction](./examples/transactions/send_raw_transaction.md)
- [Send transaction with access list](./examples/transactions/with_access_list.md)
- [Send EIP-1559 transaction](./examples/transactions/send_eip1559_transaction.md)
Expand All @@ -125,6 +130,7 @@
- [Trace transaction](./examples/transactions/trace_transaction.md)
- [Transfer ERC20 token](./examples/transactions/transfer_erc20.md)
- [Transfer ETH](./examples/transactions/transfer_eth.md)
- [Transfer ERC20 token using a signed permit](./examples/transactions/permit2_signature_transfer.md)
- [Wallets](./examples/wallets/README.md)
- [AWS signer](./examples/wallets/aws_signer.md)
- [GCP signer](./examples/wallets/gcp_signer.md)
Expand Down
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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/any_network.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/decoding_json_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/encoding_dyn_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/encoding_sol_static.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/advanced/examples/encoding_sol_static.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/foundry_fork_db.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/foundry_fork_db.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `foundry_fork_db`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/foundry_fork_db.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/advanced/examples/foundry_fork_db.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/reth_db_layer.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/reth_db_layer.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `reth_db_layer`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/reth_db_layer.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/advanced/examples/reth_db_layer.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/reth_db_provider.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/reth_db_provider.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `reth_db_provider`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/advanced/examples/reth_db_provider.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/advanced/examples/reth_db_provider.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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/big-numbers/examples/comparison_equivalence.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/big-numbers/examples/conversion.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/big-numbers/examples/create_instances.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/big-numbers/examples/math_operations.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/big-numbers/examples/math_utilities.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/big-numbers/examples/math_utilities.rs).
4 changes: 2 additions & 2 deletions src/examples/comparison/compare_new_heads.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/comparison/compare_new_heads.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `compare_new_heads`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/comparison/examples/compare_new_heads.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/comparison/examples/compare_new_heads.rs).
4 changes: 2 additions & 2 deletions src/examples/comparison/compare_pending_txs.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/comparison/compare_pending_txs.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `compare_pending_txs`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/comparison/examples/compare_pending_txs.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/comparison/examples/compare_pending_txs.rs).
4 changes: 3 additions & 1 deletion src/examples/contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
- [Deploy from artifact](deploy_from_artifact.md)
- [Deploy from bytecode](deploy_from_bytecode.md)
- [Deploy from contract](deploy_from_contract.md)
- [Deploy and link library](deploy_and_link_library.md)
- [Interact with ABI](interact_with_abi.md)
- [Interact with contract instance](interact_with_contract_instance.md)
- [Handling unknown return types](unknown_return_types.md)
- [Handling unknown return types](unknown_return_types.md)
- [Decode revert](revert_decoding.md)
19 changes: 19 additions & 0 deletions src/examples/contracts/deploy_and_link_library.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/contracts/deploy_and_link_library.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## Example: `deploy_and_link_library`

### 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 deploy_and_link_library`

```rust,ignore
{{#include ../../../lib/examples/examples/contracts/examples/deploy_and_link_library.rs}}
```

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/contracts/examples/deploy_and_link_library.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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/contracts/examples/deploy_from_artifact.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/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/cb2cd9483cfdb8e54744131b34451c996dcc240c -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945 -->

## 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/cb2cd9483cfdb8e54744131b34451c996dcc240c/examples/contracts/examples/deploy_from_bytecode.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/563757390a7575f52ef0ca2e6b2640d3d930a945/examples/contracts/examples/deploy_from_bytecode.rs).
Loading