From ea346054a8a035b473a3d290e7927ffac75445f9 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Wed, 4 Dec 2024 18:23:03 +0100 Subject: [PATCH 1/2] add tracing examples --- lib/examples | 2 +- src/SUMMARY.md | 2 ++ src/examples/advanced/any_network.md | 4 ++-- src/examples/advanced/decoding_json_abi.md | 4 ++-- src/examples/advanced/encoding_dyn_abi.md | 4 ++-- src/examples/advanced/encoding_sol_static.md | 4 ++-- src/examples/advanced/foundry_fork_db.md | 4 ++-- src/examples/advanced/reth_db_layer.md | 4 ++-- src/examples/advanced/reth_db_provider.md | 4 ++-- .../big-numbers/comparison_equivalence.md | 4 ++-- src/examples/big-numbers/conversion.md | 4 ++-- src/examples/big-numbers/create_instances.md | 4 ++-- src/examples/big-numbers/math_operations.md | 4 ++-- src/examples/big-numbers/math_utilities.md | 4 ++-- src/examples/comparison/compare_new_heads.md | 4 ++-- .../comparison/compare_pending_txs.md | 4 ++-- .../contracts/deploy_from_artifact.md | 4 ++-- .../contracts/deploy_from_bytecode.md | 4 ++-- .../contracts/deploy_from_contract.md | 4 ++-- src/examples/contracts/interact_with_abi.md | 4 ++-- .../interact_with_contract_instance.md | 4 ++-- .../contracts/jsonrpc_error_decoding.md | 4 ++-- .../contracts/unknown_return_types.md | 4 ++-- src/examples/fillers/gas_filler.md | 4 ++-- src/examples/fillers/nonce_filler.md | 4 ++-- src/examples/fillers/recommended_fillers.md | 4 ++-- src/examples/fillers/wallet_filler.md | 4 ++-- src/examples/layers/hyper_http_layer.md | 4 ++-- src/examples/layers/logging_layer.md | 4 ++-- src/examples/layers/retry_layer.md | 4 ++-- .../node-bindings/anvil_deploy_contract.md | 4 ++-- .../node-bindings/anvil_fork_instance.md | 4 ++-- .../node-bindings/anvil_fork_provider.md | 4 ++-- .../node-bindings/anvil_local_instance.md | 4 ++-- .../node-bindings/anvil_local_provider.md | 4 ++-- .../node-bindings/anvil_set_storage_at.md | 4 ++-- .../node-bindings/geth_local_instance.md | 4 ++-- .../node-bindings/reth_local_instance.md | 4 ++-- .../primitives/bytes_and_address_types.md | 4 ++-- src/examples/primitives/hashing_functions.md | 4 ++-- src/examples/providers/batch_rpc.md | 4 ++-- src/examples/providers/builder.md | 4 ++-- src/examples/providers/builtin.md | 4 ++-- src/examples/providers/http.md | 4 ++-- src/examples/providers/http_with_auth.md | 4 ++-- src/examples/providers/ipc.md | 4 ++-- src/examples/providers/ws.md | 4 ++-- src/examples/providers/ws_with_auth.md | 4 ++-- .../queries/query_contract_storage.md | 4 ++-- .../queries/query_deployed_bytecode.md | 4 ++-- src/examples/queries/query_logs.md | 4 ++-- src/examples/sol-macro/contract.md | 4 ++-- src/examples/sol-macro/decode_returns.md | 4 ++-- src/examples/sol-macro/events_errors.md | 4 ++-- src/examples/sol-macro/structs_enums.md | 4 ++-- src/examples/sol-macro/user_defined_types.md | 4 ++-- .../subscriptions/event_multiplexer.md | 4 ++-- src/examples/subscriptions/poll_logs.md | 4 ++-- .../subscriptions/subscribe_all_logs.md | 4 ++-- .../subscriptions/subscribe_blocks.md | 4 ++-- src/examples/subscriptions/subscribe_logs.md | 4 ++-- .../subscribe_pending_transactions.md | 4 ++-- src/examples/transactions/README.md | 4 +++- .../transactions/debug_trace_call_many.md | 19 +++++++++++++++++++ src/examples/transactions/decode_input.md | 4 ++-- .../transactions/encode_decode_eip1559.md | 4 ++-- src/examples/transactions/gas_price_usd.md | 4 ++-- .../transactions/send_eip1559_transaction.md | 4 ++-- .../transactions/send_eip4844_transaction.md | 4 ++-- .../transactions/send_eip7702_transaction.md | 4 ++-- .../transactions/send_legacy_transaction.md | 4 ++-- .../transactions/send_private_transaction.md | 4 ++-- .../transactions/send_raw_transaction.md | 4 ++-- src/examples/transactions/trace_call.md | 4 ++-- src/examples/transactions/trace_call_many.md | 19 +++++++++++++++++++ .../transactions/trace_transaction.md | 4 ++-- src/examples/transactions/transfer_erc20.md | 4 ++-- src/examples/transactions/transfer_eth.md | 4 ++-- src/examples/transactions/with_access_list.md | 4 ++-- src/examples/wallets/aws_signer.md | 4 ++-- src/examples/wallets/create_keystore.md | 4 ++-- src/examples/wallets/keystore_signer.md | 4 ++-- src/examples/wallets/ledger_signer.md | 4 ++-- src/examples/wallets/mnemonic_signer.md | 4 ++-- src/examples/wallets/private_key_signer.md | 4 ++-- src/examples/wallets/sign_message.md | 4 ++-- src/examples/wallets/sign_permit_hash.md | 4 ++-- src/examples/wallets/trezor_signer.md | 4 ++-- src/examples/wallets/verify_message.md | 4 ++-- src/examples/wallets/yubi_signer.md | 4 ++-- src/templates/transactions/README.md | 4 +++- 91 files changed, 217 insertions(+), 173 deletions(-) create mode 100644 src/examples/transactions/debug_trace_call_many.md create mode 100644 src/examples/transactions/trace_call_many.md diff --git a/lib/examples b/lib/examples index 85f3dd1..e650725 160000 --- a/lib/examples +++ b/lib/examples @@ -1 +1 @@ -Subproject commit 85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910 +Subproject commit e650725f1b7277ec26af82c42e2594e9afd86e91 diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 8587093..332eeb3 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -117,6 +117,8 @@ - [Send EIP-7702 transaction](./examples/transactions/send_eip7702_transaction.md) - [Send legacy transaction](./examples/transactions/send_legacy_transaction.md) - [Send private transaction using Flashbots Protect](./examples/transactions/send_private_transaction.md) + - [Simulate using `debug_traceCallMany`](./examples/transactions/debug_trace_call_many.md) + - [Simulate using `trace_callMany`](./examples/transactions/trace_call_many.md) - [Trace call](./examples/transactions/trace_call.md) - [Trace transaction](./examples/transactions/trace_transaction.md) - [Transfer ERC20 token](./examples/transactions/transfer_erc20.md) diff --git a/src/examples/advanced/any_network.md b/src/examples/advanced/any_network.md index 63425b1..d2eb839 100644 --- a/src/examples/advanced/any_network.md +++ b/src/examples/advanced/any_network.md @@ -1,7 +1,7 @@ - + ## Example: `any_network` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/any_network.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/any_network.rs). diff --git a/src/examples/advanced/decoding_json_abi.md b/src/examples/advanced/decoding_json_abi.md index dbd7023..7c806e5 100644 --- a/src/examples/advanced/decoding_json_abi.md +++ b/src/examples/advanced/decoding_json_abi.md @@ -1,7 +1,7 @@ - + ## Example: `decoding_json_abi` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/decoding_json_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/decoding_json_abi.rs). diff --git a/src/examples/advanced/encoding_dyn_abi.md b/src/examples/advanced/encoding_dyn_abi.md index a79808e..9d561d8 100644 --- a/src/examples/advanced/encoding_dyn_abi.md +++ b/src/examples/advanced/encoding_dyn_abi.md @@ -1,7 +1,7 @@ - + ## Example: `encoding_dyn_abi` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/encoding_dyn_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/encoding_dyn_abi.rs). diff --git a/src/examples/advanced/encoding_sol_static.md b/src/examples/advanced/encoding_sol_static.md index 73cbc4a..28d0276 100644 --- a/src/examples/advanced/encoding_sol_static.md +++ b/src/examples/advanced/encoding_sol_static.md @@ -1,7 +1,7 @@ - + ## Example: `encoding_sol_static` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/encoding_sol_static.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/encoding_sol_static.rs). diff --git a/src/examples/advanced/foundry_fork_db.md b/src/examples/advanced/foundry_fork_db.md index 70cadfa..a477678 100644 --- a/src/examples/advanced/foundry_fork_db.md +++ b/src/examples/advanced/foundry_fork_db.md @@ -1,7 +1,7 @@ - + ## Example: `foundry_fork_db` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/foundry_fork_db.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/foundry_fork_db.rs). diff --git a/src/examples/advanced/reth_db_layer.md b/src/examples/advanced/reth_db_layer.md index f77aeb3..65aff6b 100644 --- a/src/examples/advanced/reth_db_layer.md +++ b/src/examples/advanced/reth_db_layer.md @@ -1,7 +1,7 @@ - + ## Example: `reth_db_layer` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/reth_db_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/reth_db_layer.rs). diff --git a/src/examples/advanced/reth_db_provider.md b/src/examples/advanced/reth_db_provider.md index 6256d64..4c7b232 100644 --- a/src/examples/advanced/reth_db_provider.md +++ b/src/examples/advanced/reth_db_provider.md @@ -1,7 +1,7 @@ - + ## Example: `reth_db_provider` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/advanced/examples/reth_db_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/reth_db_provider.rs). diff --git a/src/examples/big-numbers/comparison_equivalence.md b/src/examples/big-numbers/comparison_equivalence.md index 407d1f7..f0d4d09 100644 --- a/src/examples/big-numbers/comparison_equivalence.md +++ b/src/examples/big-numbers/comparison_equivalence.md @@ -1,7 +1,7 @@ - + ## Example: `comparison_equivalence` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/big-numbers/examples/comparison_equivalence.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/comparison_equivalence.rs). diff --git a/src/examples/big-numbers/conversion.md b/src/examples/big-numbers/conversion.md index 2bdba76..a5b043f 100644 --- a/src/examples/big-numbers/conversion.md +++ b/src/examples/big-numbers/conversion.md @@ -1,7 +1,7 @@ - + ## Example: `conversion` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/big-numbers/examples/conversion.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/conversion.rs). diff --git a/src/examples/big-numbers/create_instances.md b/src/examples/big-numbers/create_instances.md index 79d4dc0..dfa6686 100644 --- a/src/examples/big-numbers/create_instances.md +++ b/src/examples/big-numbers/create_instances.md @@ -1,7 +1,7 @@ - + ## Example: `create_instances` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/big-numbers/examples/create_instances.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/create_instances.rs). diff --git a/src/examples/big-numbers/math_operations.md b/src/examples/big-numbers/math_operations.md index 4e4e592..fde98ec 100644 --- a/src/examples/big-numbers/math_operations.md +++ b/src/examples/big-numbers/math_operations.md @@ -1,7 +1,7 @@ - + ## Example: `math_operations` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/big-numbers/examples/math_operations.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/math_operations.rs). diff --git a/src/examples/big-numbers/math_utilities.md b/src/examples/big-numbers/math_utilities.md index 01b4f28..b4dd26d 100644 --- a/src/examples/big-numbers/math_utilities.md +++ b/src/examples/big-numbers/math_utilities.md @@ -1,7 +1,7 @@ - + ## Example: `math_utilities` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/big-numbers/examples/math_utilities.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/math_utilities.rs). diff --git a/src/examples/comparison/compare_new_heads.md b/src/examples/comparison/compare_new_heads.md index bc6c186..11f554a 100644 --- a/src/examples/comparison/compare_new_heads.md +++ b/src/examples/comparison/compare_new_heads.md @@ -1,7 +1,7 @@ - + ## Example: `compare_new_heads` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/comparison/examples/compare_new_heads.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/comparison/examples/compare_new_heads.rs). diff --git a/src/examples/comparison/compare_pending_txs.md b/src/examples/comparison/compare_pending_txs.md index 3fc856e..3f89924 100644 --- a/src/examples/comparison/compare_pending_txs.md +++ b/src/examples/comparison/compare_pending_txs.md @@ -1,7 +1,7 @@ - + ## Example: `compare_pending_txs` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/comparison/examples/compare_pending_txs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/comparison/examples/compare_pending_txs.rs). diff --git a/src/examples/contracts/deploy_from_artifact.md b/src/examples/contracts/deploy_from_artifact.md index 81a9bc4..3b829ef 100644 --- a/src/examples/contracts/deploy_from_artifact.md +++ b/src/examples/contracts/deploy_from_artifact.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_artifact` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/deploy_from_artifact.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_artifact.rs). diff --git a/src/examples/contracts/deploy_from_bytecode.md b/src/examples/contracts/deploy_from_bytecode.md index 0f97b34..545e71f 100644 --- a/src/examples/contracts/deploy_from_bytecode.md +++ b/src/examples/contracts/deploy_from_bytecode.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_bytecode` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/deploy_from_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_bytecode.rs). diff --git a/src/examples/contracts/deploy_from_contract.md b/src/examples/contracts/deploy_from_contract.md index 2436777..1b66e8a 100644 --- a/src/examples/contracts/deploy_from_contract.md +++ b/src/examples/contracts/deploy_from_contract.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_contract` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_contract.rs). diff --git a/src/examples/contracts/interact_with_abi.md b/src/examples/contracts/interact_with_abi.md index 4b56f66..af413cc 100644 --- a/src/examples/contracts/interact_with_abi.md +++ b/src/examples/contracts/interact_with_abi.md @@ -1,7 +1,7 @@ - + ## Example: `interact_with_abi` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/interact_with_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/interact_with_abi.rs). diff --git a/src/examples/contracts/interact_with_contract_instance.md b/src/examples/contracts/interact_with_contract_instance.md index 2102775..554562a 100644 --- a/src/examples/contracts/interact_with_contract_instance.md +++ b/src/examples/contracts/interact_with_contract_instance.md @@ -1,7 +1,7 @@ - + ## Example: `interact_with_contract_instance` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/interact_with_contract_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/interact_with_contract_instance.rs). diff --git a/src/examples/contracts/jsonrpc_error_decoding.md b/src/examples/contracts/jsonrpc_error_decoding.md index c4d8e86..749a070 100644 --- a/src/examples/contracts/jsonrpc_error_decoding.md +++ b/src/examples/contracts/jsonrpc_error_decoding.md @@ -1,7 +1,7 @@ - + ## Example: `jsonrpc_error_decoding` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/jsonrpc_error_decoding.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/jsonrpc_error_decoding.rs). diff --git a/src/examples/contracts/unknown_return_types.md b/src/examples/contracts/unknown_return_types.md index 485357c..3271eb8 100644 --- a/src/examples/contracts/unknown_return_types.md +++ b/src/examples/contracts/unknown_return_types.md @@ -1,7 +1,7 @@ - + ## Example: `unknown_return_types` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/unknown_return_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/unknown_return_types.rs). diff --git a/src/examples/fillers/gas_filler.md b/src/examples/fillers/gas_filler.md index 4e2480e..cd1536d 100644 --- a/src/examples/fillers/gas_filler.md +++ b/src/examples/fillers/gas_filler.md @@ -1,7 +1,7 @@ - + ## Example: `gas_filler` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/fillers/examples/gas_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/gas_filler.rs). diff --git a/src/examples/fillers/nonce_filler.md b/src/examples/fillers/nonce_filler.md index e90b3e8..24880eb 100644 --- a/src/examples/fillers/nonce_filler.md +++ b/src/examples/fillers/nonce_filler.md @@ -1,7 +1,7 @@ - + ## Example: `nonce_filler` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/fillers/examples/nonce_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/nonce_filler.rs). diff --git a/src/examples/fillers/recommended_fillers.md b/src/examples/fillers/recommended_fillers.md index 0b2d3b6..1dc3c0a 100644 --- a/src/examples/fillers/recommended_fillers.md +++ b/src/examples/fillers/recommended_fillers.md @@ -1,7 +1,7 @@ - + ## Example: `recommended_fillers` @@ -16,4 +16,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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/fillers/examples/recommended_fillers.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/recommended_fillers.rs). diff --git a/src/examples/fillers/wallet_filler.md b/src/examples/fillers/wallet_filler.md index 301a302..efebd50 100644 --- a/src/examples/fillers/wallet_filler.md +++ b/src/examples/fillers/wallet_filler.md @@ -1,7 +1,7 @@ - + ## Example: `wallet_filler` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/fillers/examples/wallet_filler.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/fillers/examples/wallet_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/wallet_filler.rs). diff --git a/src/examples/layers/hyper_http_layer.md b/src/examples/layers/hyper_http_layer.md index 319ce68..91626ff 100644 --- a/src/examples/layers/hyper_http_layer.md +++ b/src/examples/layers/hyper_http_layer.md @@ -1,7 +1,7 @@ - + ## Example: `hyper_http_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/hyper_http_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/layers/examples/hyper_http_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/hyper_http_layer.rs). diff --git a/src/examples/layers/logging_layer.md b/src/examples/layers/logging_layer.md index 79165cb..d303ff5 100644 --- a/src/examples/layers/logging_layer.md +++ b/src/examples/layers/logging_layer.md @@ -1,7 +1,7 @@ - + ## Example: `logging_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/logging_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/layers/examples/logging_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/logging_layer.rs). diff --git a/src/examples/layers/retry_layer.md b/src/examples/layers/retry_layer.md index 3550742..cf9c281 100644 --- a/src/examples/layers/retry_layer.md +++ b/src/examples/layers/retry_layer.md @@ -1,7 +1,7 @@ - + ## Example: `retry_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/retry_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/layers/examples/retry_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/retry_layer.rs). diff --git a/src/examples/node-bindings/anvil_deploy_contract.md b/src/examples/node-bindings/anvil_deploy_contract.md index ce394ac..7f3ff11 100644 --- a/src/examples/node-bindings/anvil_deploy_contract.md +++ b/src/examples/node-bindings/anvil_deploy_contract.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_deploy_contract` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_deploy_contract.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_deploy_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_deploy_contract.rs). diff --git a/src/examples/node-bindings/anvil_fork_instance.md b/src/examples/node-bindings/anvil_fork_instance.md index 2c78af6..c21de7e 100644 --- a/src/examples/node-bindings/anvil_fork_instance.md +++ b/src/examples/node-bindings/anvil_fork_instance.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_fork_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_fork_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_fork_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_fork_instance.rs). diff --git a/src/examples/node-bindings/anvil_fork_provider.md b/src/examples/node-bindings/anvil_fork_provider.md index 191643a..022fe69 100644 --- a/src/examples/node-bindings/anvil_fork_provider.md +++ b/src/examples/node-bindings/anvil_fork_provider.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_fork_provider` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_fork_provider.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_fork_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_fork_provider.rs). diff --git a/src/examples/node-bindings/anvil_local_instance.md b/src/examples/node-bindings/anvil_local_instance.md index 76627d1..4b648c0 100644 --- a/src/examples/node-bindings/anvil_local_instance.md +++ b/src/examples/node-bindings/anvil_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_local_instance.rs). diff --git a/src/examples/node-bindings/anvil_local_provider.md b/src/examples/node-bindings/anvil_local_provider.md index 1802457..515e0f9 100644 --- a/src/examples/node-bindings/anvil_local_provider.md +++ b/src/examples/node-bindings/anvil_local_provider.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_local_provider` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_local_provider.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_local_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_local_provider.rs). diff --git a/src/examples/node-bindings/anvil_set_storage_at.md b/src/examples/node-bindings/anvil_set_storage_at.md index ef5485d..ffbb29e 100644 --- a/src/examples/node-bindings/anvil_set_storage_at.md +++ b/src/examples/node-bindings/anvil_set_storage_at.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_set_storage_at` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_set_storage_at.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/anvil_set_storage_at.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_set_storage_at.rs). diff --git a/src/examples/node-bindings/geth_local_instance.md b/src/examples/node-bindings/geth_local_instance.md index ca41deb..1871759 100644 --- a/src/examples/node-bindings/geth_local_instance.md +++ b/src/examples/node-bindings/geth_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `geth_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/geth_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/geth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/geth_local_instance.rs). diff --git a/src/examples/node-bindings/reth_local_instance.md b/src/examples/node-bindings/reth_local_instance.md index 49a7411..d63e801 100644 --- a/src/examples/node-bindings/reth_local_instance.md +++ b/src/examples/node-bindings/reth_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `reth_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/reth_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/node-bindings/examples/reth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/reth_local_instance.rs). diff --git a/src/examples/primitives/bytes_and_address_types.md b/src/examples/primitives/bytes_and_address_types.md index 07cfbdd..468655c 100644 --- a/src/examples/primitives/bytes_and_address_types.md +++ b/src/examples/primitives/bytes_and_address_types.md @@ -1,7 +1,7 @@ - + ## Example: `bytes_and_address_types` @@ -16,4 +16,4 @@ To run this example: {{#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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/primitives/examples/bytes_and_address_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/primitives/examples/bytes_and_address_types.rs). diff --git a/src/examples/primitives/hashing_functions.md b/src/examples/primitives/hashing_functions.md index 5fbf8ec..fb077af 100644 --- a/src/examples/primitives/hashing_functions.md +++ b/src/examples/primitives/hashing_functions.md @@ -1,7 +1,7 @@ - + ## Example: `hashing_functions` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/primitives/examples/hashing_functions.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/primitives/examples/hashing_functions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/primitives/examples/hashing_functions.rs). diff --git a/src/examples/providers/batch_rpc.md b/src/examples/providers/batch_rpc.md index e1bfbeb..b3cd72d 100644 --- a/src/examples/providers/batch_rpc.md +++ b/src/examples/providers/batch_rpc.md @@ -1,7 +1,7 @@ - + ## Example: `batch_rpc` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/batch_rpc.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/batch_rpc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/batch_rpc.rs). diff --git a/src/examples/providers/builder.md b/src/examples/providers/builder.md index c1cfffe..c5c7094 100644 --- a/src/examples/providers/builder.md +++ b/src/examples/providers/builder.md @@ -1,7 +1,7 @@ - + ## Example: `builder` @@ -16,4 +16,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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/builder.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/builder.rs). diff --git a/src/examples/providers/builtin.md b/src/examples/providers/builtin.md index ad41725..99a9ca7 100644 --- a/src/examples/providers/builtin.md +++ b/src/examples/providers/builtin.md @@ -1,7 +1,7 @@ - + ## Example: `builtin` @@ -16,4 +16,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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/builtin.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/builtin.rs). diff --git a/src/examples/providers/http.md b/src/examples/providers/http.md index 5e75fd8..9bcf2e5 100644 --- a/src/examples/providers/http.md +++ b/src/examples/providers/http.md @@ -1,7 +1,7 @@ - + ## Example: `http` @@ -16,4 +16,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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/http.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/http.rs). diff --git a/src/examples/providers/http_with_auth.md b/src/examples/providers/http_with_auth.md index a1cec89..dd642f4 100644 --- a/src/examples/providers/http_with_auth.md +++ b/src/examples/providers/http_with_auth.md @@ -1,7 +1,7 @@ - + ## Example: `http_with_auth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/http_with_auth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/http_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/http_with_auth.rs). diff --git a/src/examples/providers/ipc.md b/src/examples/providers/ipc.md index 418d3ce..a0d3b9f 100644 --- a/src/examples/providers/ipc.md +++ b/src/examples/providers/ipc.md @@ -1,7 +1,7 @@ - + ## Example: `ipc` @@ -16,4 +16,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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/ipc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ipc.rs). diff --git a/src/examples/providers/ws.md b/src/examples/providers/ws.md index f5abd44..168e76a 100644 --- a/src/examples/providers/ws.md +++ b/src/examples/providers/ws.md @@ -1,7 +1,7 @@ - + ## Example: `ws` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/ws.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/ws.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ws.rs). diff --git a/src/examples/providers/ws_with_auth.md b/src/examples/providers/ws_with_auth.md index 34c30d8..f2ce0b9 100644 --- a/src/examples/providers/ws_with_auth.md +++ b/src/examples/providers/ws_with_auth.md @@ -1,7 +1,7 @@ - + ## Example: `ws_with_auth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/ws_with_auth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/providers/examples/ws_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ws_with_auth.rs). diff --git a/src/examples/queries/query_contract_storage.md b/src/examples/queries/query_contract_storage.md index b1ac382..1543150 100644 --- a/src/examples/queries/query_contract_storage.md +++ b/src/examples/queries/query_contract_storage.md @@ -1,7 +1,7 @@ - + ## Example: `query_contract_storage` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_contract_storage.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/queries/examples/query_contract_storage.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_contract_storage.rs). diff --git a/src/examples/queries/query_deployed_bytecode.md b/src/examples/queries/query_deployed_bytecode.md index 5349024..6330995 100644 --- a/src/examples/queries/query_deployed_bytecode.md +++ b/src/examples/queries/query_deployed_bytecode.md @@ -1,7 +1,7 @@ - + ## Example: `query_deployed_bytecode` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_deployed_bytecode.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/queries/examples/query_deployed_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_deployed_bytecode.rs). diff --git a/src/examples/queries/query_logs.md b/src/examples/queries/query_logs.md index 403f5c3..4e14e35 100644 --- a/src/examples/queries/query_logs.md +++ b/src/examples/queries/query_logs.md @@ -1,7 +1,7 @@ - + ## Example: `query_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/queries/examples/query_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_logs.rs). diff --git a/src/examples/sol-macro/contract.md b/src/examples/sol-macro/contract.md index 2436777..1b66e8a 100644 --- a/src/examples/sol-macro/contract.md +++ b/src/examples/sol-macro/contract.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_contract` @@ -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/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_contract.rs). diff --git a/src/examples/sol-macro/decode_returns.md b/src/examples/sol-macro/decode_returns.md index 6c15070..c516e74 100644 --- a/src/examples/sol-macro/decode_returns.md +++ b/src/examples/sol-macro/decode_returns.md @@ -1,7 +1,7 @@ - + ## Example: `decode_returns` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/decode_returns.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/sol-macro/examples/decode_returns.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/decode_returns.rs). diff --git a/src/examples/sol-macro/events_errors.md b/src/examples/sol-macro/events_errors.md index dd9cc01..f550b42 100644 --- a/src/examples/sol-macro/events_errors.md +++ b/src/examples/sol-macro/events_errors.md @@ -1,7 +1,7 @@ - + ## Example: `events_errors` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/events_errors.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/sol-macro/examples/events_errors.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/events_errors.rs). diff --git a/src/examples/sol-macro/structs_enums.md b/src/examples/sol-macro/structs_enums.md index 2000d06..dec1c3d 100644 --- a/src/examples/sol-macro/structs_enums.md +++ b/src/examples/sol-macro/structs_enums.md @@ -1,7 +1,7 @@ - + ## Example: `structs_enums` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/structs_enums.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/sol-macro/examples/structs_enums.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/structs_enums.rs). diff --git a/src/examples/sol-macro/user_defined_types.md b/src/examples/sol-macro/user_defined_types.md index 9501b6e..b925f6e 100644 --- a/src/examples/sol-macro/user_defined_types.md +++ b/src/examples/sol-macro/user_defined_types.md @@ -1,7 +1,7 @@ - + ## Example: `user_defined_types` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/user_defined_types.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/sol-macro/examples/user_defined_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/user_defined_types.rs). diff --git a/src/examples/subscriptions/event_multiplexer.md b/src/examples/subscriptions/event_multiplexer.md index 3f8ec51..4929df3 100644 --- a/src/examples/subscriptions/event_multiplexer.md +++ b/src/examples/subscriptions/event_multiplexer.md @@ -1,7 +1,7 @@ - + ## Example: `event_multiplexer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/event_multiplexer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/event_multiplexer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/event_multiplexer.rs). diff --git a/src/examples/subscriptions/poll_logs.md b/src/examples/subscriptions/poll_logs.md index 77efc8a..49d2e02 100644 --- a/src/examples/subscriptions/poll_logs.md +++ b/src/examples/subscriptions/poll_logs.md @@ -1,7 +1,7 @@ - + ## Example: `poll_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/poll_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/poll_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/poll_logs.rs). diff --git a/src/examples/subscriptions/subscribe_all_logs.md b/src/examples/subscriptions/subscribe_all_logs.md index e66a64a..588b26f 100644 --- a/src/examples/subscriptions/subscribe_all_logs.md +++ b/src/examples/subscriptions/subscribe_all_logs.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_all_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_all_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/subscribe_all_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_all_logs.rs). diff --git a/src/examples/subscriptions/subscribe_blocks.md b/src/examples/subscriptions/subscribe_blocks.md index 6c17591..1767ff7 100644 --- a/src/examples/subscriptions/subscribe_blocks.md +++ b/src/examples/subscriptions/subscribe_blocks.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_blocks` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_blocks.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/subscribe_blocks.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_blocks.rs). diff --git a/src/examples/subscriptions/subscribe_logs.md b/src/examples/subscriptions/subscribe_logs.md index 53c59f4..ef584e8 100644 --- a/src/examples/subscriptions/subscribe_logs.md +++ b/src/examples/subscriptions/subscribe_logs.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/subscribe_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_logs.rs). diff --git a/src/examples/subscriptions/subscribe_pending_transactions.md b/src/examples/subscriptions/subscribe_pending_transactions.md index 0958f60..f14da52 100644 --- a/src/examples/subscriptions/subscribe_pending_transactions.md +++ b/src/examples/subscriptions/subscribe_pending_transactions.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_pending_transactions` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_pending_transactions.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/subscriptions/examples/subscribe_pending_transactions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_pending_transactions.rs). diff --git a/src/examples/transactions/README.md b/src/examples/transactions/README.md index 1e84a01..08a6a67 100644 --- a/src/examples/transactions/README.md +++ b/src/examples/transactions/README.md @@ -9,8 +9,10 @@ - [Send legacy transaction](send_legacy_transaction.md) - [Send private transaction using Flashbots Protect](send_private_transaction.md) - [Sign and send a raw transaction](send_raw_transaction.md) +- [Simulate using `debug_traceCallMany`](debug_trace_call_many.md) +- [Simulate using `trace_callMany`](trace_call_many.md) - [Trace call](trace_call.md) - [Trace transaction](trace_transaction.md) - [Transfer ERC20 token](transfer_erc20.md) - [Transfer ETH](transfer_eth.md) -- [Send transaction with access list](with_access_list.md) \ No newline at end of file +- [Send transaction with access list](with_access_list.md) diff --git a/src/examples/transactions/debug_trace_call_many.md b/src/examples/transactions/debug_trace_call_many.md new file mode 100644 index 0000000..421232f --- /dev/null +++ b/src/examples/transactions/debug_trace_call_many.md @@ -0,0 +1,19 @@ + + + + + +## Example: `debug_trace_call_many` + +### 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 debug_trace_call_many` + +```rust,ignore +{{#include ../../../lib/examples/examples/transactions/examples/debug_trace_call_many.rs}} +``` + +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/debug_trace_call_many.rs). diff --git a/src/examples/transactions/decode_input.md b/src/examples/transactions/decode_input.md index ae4868a..ff0f4f0 100644 --- a/src/examples/transactions/decode_input.md +++ b/src/examples/transactions/decode_input.md @@ -1,7 +1,7 @@ - + ## Example: `decode_input` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/decode_input.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/decode_input.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/decode_input.rs). diff --git a/src/examples/transactions/encode_decode_eip1559.md b/src/examples/transactions/encode_decode_eip1559.md index 39d214a..54e1da5 100644 --- a/src/examples/transactions/encode_decode_eip1559.md +++ b/src/examples/transactions/encode_decode_eip1559.md @@ -1,7 +1,7 @@ - + ## Example: `encode_decode_eip1559` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/encode_decode_eip1559.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/encode_decode_eip1559.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/encode_decode_eip1559.rs). diff --git a/src/examples/transactions/gas_price_usd.md b/src/examples/transactions/gas_price_usd.md index 08e17c5..e054c80 100644 --- a/src/examples/transactions/gas_price_usd.md +++ b/src/examples/transactions/gas_price_usd.md @@ -1,7 +1,7 @@ - + ## Example: `gas_price_usd` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/gas_price_usd.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/gas_price_usd.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/gas_price_usd.rs). diff --git a/src/examples/transactions/send_eip1559_transaction.md b/src/examples/transactions/send_eip1559_transaction.md index 2df2a2f..7eb8507 100644 --- a/src/examples/transactions/send_eip1559_transaction.md +++ b/src/examples/transactions/send_eip1559_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip1559_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip1559_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_eip1559_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip1559_transaction.rs). diff --git a/src/examples/transactions/send_eip4844_transaction.md b/src/examples/transactions/send_eip4844_transaction.md index f3c41e1..ed4cd7d 100644 --- a/src/examples/transactions/send_eip4844_transaction.md +++ b/src/examples/transactions/send_eip4844_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip4844_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip4844_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_eip4844_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip4844_transaction.rs). diff --git a/src/examples/transactions/send_eip7702_transaction.md b/src/examples/transactions/send_eip7702_transaction.md index 8a2d8b0..5f04810 100644 --- a/src/examples/transactions/send_eip7702_transaction.md +++ b/src/examples/transactions/send_eip7702_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip7702_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip7702_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_eip7702_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip7702_transaction.rs). diff --git a/src/examples/transactions/send_legacy_transaction.md b/src/examples/transactions/send_legacy_transaction.md index 975709c..04dc01b 100644 --- a/src/examples/transactions/send_legacy_transaction.md +++ b/src/examples/transactions/send_legacy_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_legacy_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_legacy_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_legacy_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_legacy_transaction.rs). diff --git a/src/examples/transactions/send_private_transaction.md b/src/examples/transactions/send_private_transaction.md index 42a16e0..482819d 100644 --- a/src/examples/transactions/send_private_transaction.md +++ b/src/examples/transactions/send_private_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_private_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_private_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_private_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_private_transaction.rs). diff --git a/src/examples/transactions/send_raw_transaction.md b/src/examples/transactions/send_raw_transaction.md index b2af81a..1d700e8 100644 --- a/src/examples/transactions/send_raw_transaction.md +++ b/src/examples/transactions/send_raw_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_raw_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_raw_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/send_raw_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_raw_transaction.rs). diff --git a/src/examples/transactions/trace_call.md b/src/examples/transactions/trace_call.md index dcb6378..a08691b 100644 --- a/src/examples/transactions/trace_call.md +++ b/src/examples/transactions/trace_call.md @@ -1,7 +1,7 @@ - + ## Example: `trace_call` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/trace_call.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/trace_call.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_call.rs). diff --git a/src/examples/transactions/trace_call_many.md b/src/examples/transactions/trace_call_many.md new file mode 100644 index 0000000..2e36801 --- /dev/null +++ b/src/examples/transactions/trace_call_many.md @@ -0,0 +1,19 @@ + + + + + +## Example: `trace_call_many` + +### 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 trace_call_many` + +```rust,ignore +{{#include ../../../lib/examples/examples/transactions/examples/trace_call_many.rs}} +``` + +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_call_many.rs). diff --git a/src/examples/transactions/trace_transaction.md b/src/examples/transactions/trace_transaction.md index ef62c52..e774324 100644 --- a/src/examples/transactions/trace_transaction.md +++ b/src/examples/transactions/trace_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `trace_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/trace_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/trace_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_transaction.rs). diff --git a/src/examples/transactions/transfer_erc20.md b/src/examples/transactions/transfer_erc20.md index ac48fc7..4b43a04 100644 --- a/src/examples/transactions/transfer_erc20.md +++ b/src/examples/transactions/transfer_erc20.md @@ -1,7 +1,7 @@ - + ## Example: `transfer_erc20` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/transfer_erc20.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/transfer_erc20.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/transfer_erc20.rs). diff --git a/src/examples/transactions/transfer_eth.md b/src/examples/transactions/transfer_eth.md index 7d439fc..a4221c1 100644 --- a/src/examples/transactions/transfer_eth.md +++ b/src/examples/transactions/transfer_eth.md @@ -1,7 +1,7 @@ - + ## Example: `transfer_eth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/transfer_eth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/transfer_eth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/transfer_eth.rs). diff --git a/src/examples/transactions/with_access_list.md b/src/examples/transactions/with_access_list.md index 6e56a49..88ceebe 100644 --- a/src/examples/transactions/with_access_list.md +++ b/src/examples/transactions/with_access_list.md @@ -1,7 +1,7 @@ - + ## Example: `with_access_list` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/with_access_list.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/transactions/examples/with_access_list.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/with_access_list.rs). diff --git a/src/examples/wallets/aws_signer.md b/src/examples/wallets/aws_signer.md index 2fb51ad..128f6bd 100644 --- a/src/examples/wallets/aws_signer.md +++ b/src/examples/wallets/aws_signer.md @@ -1,7 +1,7 @@ - + ## Example: `aws_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/aws_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/aws_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/aws_signer.rs). diff --git a/src/examples/wallets/create_keystore.md b/src/examples/wallets/create_keystore.md index c057247..fca52ef 100644 --- a/src/examples/wallets/create_keystore.md +++ b/src/examples/wallets/create_keystore.md @@ -1,7 +1,7 @@ - + ## Example: `create_keystore` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/create_keystore.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/create_keystore.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/create_keystore.rs). diff --git a/src/examples/wallets/keystore_signer.md b/src/examples/wallets/keystore_signer.md index d19b83e..e9c9dc9 100644 --- a/src/examples/wallets/keystore_signer.md +++ b/src/examples/wallets/keystore_signer.md @@ -1,7 +1,7 @@ - + ## Example: `keystore_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/keystore_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/keystore_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/keystore_signer.rs). diff --git a/src/examples/wallets/ledger_signer.md b/src/examples/wallets/ledger_signer.md index 763fa29..785a9e8 100644 --- a/src/examples/wallets/ledger_signer.md +++ b/src/examples/wallets/ledger_signer.md @@ -1,7 +1,7 @@ - + ## Example: `ledger_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/ledger_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/ledger_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/ledger_signer.rs). diff --git a/src/examples/wallets/mnemonic_signer.md b/src/examples/wallets/mnemonic_signer.md index fff31b8..8877ec8 100644 --- a/src/examples/wallets/mnemonic_signer.md +++ b/src/examples/wallets/mnemonic_signer.md @@ -1,7 +1,7 @@ - + ## Example: `mnemonic_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/mnemonic_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/mnemonic_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/mnemonic_signer.rs). diff --git a/src/examples/wallets/private_key_signer.md b/src/examples/wallets/private_key_signer.md index 38a0bfe..2f8a1b0 100644 --- a/src/examples/wallets/private_key_signer.md +++ b/src/examples/wallets/private_key_signer.md @@ -1,7 +1,7 @@ - + ## Example: `private_key_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/private_key_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/private_key_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/private_key_signer.rs). diff --git a/src/examples/wallets/sign_message.md b/src/examples/wallets/sign_message.md index 20f9981..1883b24 100644 --- a/src/examples/wallets/sign_message.md +++ b/src/examples/wallets/sign_message.md @@ -1,7 +1,7 @@ - + ## Example: `sign_message` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/sign_message.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/sign_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/sign_message.rs). diff --git a/src/examples/wallets/sign_permit_hash.md b/src/examples/wallets/sign_permit_hash.md index 9d6e99c..345c8b8 100644 --- a/src/examples/wallets/sign_permit_hash.md +++ b/src/examples/wallets/sign_permit_hash.md @@ -1,7 +1,7 @@ - + ## Example: `sign_permit_hash` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/sign_permit_hash.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/sign_permit_hash.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/sign_permit_hash.rs). diff --git a/src/examples/wallets/trezor_signer.md b/src/examples/wallets/trezor_signer.md index 42767f8..5d0c2cd 100644 --- a/src/examples/wallets/trezor_signer.md +++ b/src/examples/wallets/trezor_signer.md @@ -1,7 +1,7 @@ - + ## Example: `trezor_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/trezor_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/trezor_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/trezor_signer.rs). diff --git a/src/examples/wallets/verify_message.md b/src/examples/wallets/verify_message.md index 533a526..a261e6d 100644 --- a/src/examples/wallets/verify_message.md +++ b/src/examples/wallets/verify_message.md @@ -1,7 +1,7 @@ - + ## Example: `verify_message` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/verify_message.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/verify_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/verify_message.rs). diff --git a/src/examples/wallets/yubi_signer.md b/src/examples/wallets/yubi_signer.md index 5a3c065..b271c2b 100644 --- a/src/examples/wallets/yubi_signer.md +++ b/src/examples/wallets/yubi_signer.md @@ -1,7 +1,7 @@ - + ## Example: `yubi_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/yubi_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/85f3dd12c38b7f3f9389f9bea3b604ee7c3f1910/examples/wallets/examples/yubi_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/yubi_signer.rs). diff --git a/src/templates/transactions/README.md b/src/templates/transactions/README.md index 1e84a01..08a6a67 100644 --- a/src/templates/transactions/README.md +++ b/src/templates/transactions/README.md @@ -9,8 +9,10 @@ - [Send legacy transaction](send_legacy_transaction.md) - [Send private transaction using Flashbots Protect](send_private_transaction.md) - [Sign and send a raw transaction](send_raw_transaction.md) +- [Simulate using `debug_traceCallMany`](debug_trace_call_many.md) +- [Simulate using `trace_callMany`](trace_call_many.md) - [Trace call](trace_call.md) - [Trace transaction](trace_transaction.md) - [Transfer ERC20 token](transfer_erc20.md) - [Transfer ETH](transfer_eth.md) -- [Send transaction with access list](with_access_list.md) \ No newline at end of file +- [Send transaction with access list](with_access_list.md) From 0a764ed82eecf8e5198c1e96aad87908be614010 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Wed, 4 Dec 2024 18:29:45 +0100 Subject: [PATCH 2/2] update w/ formatting fixes --- lib/examples | 2 +- src/examples/advanced/any_network.md | 4 ++-- src/examples/advanced/decoding_json_abi.md | 4 ++-- src/examples/advanced/encoding_dyn_abi.md | 4 ++-- src/examples/advanced/encoding_sol_static.md | 4 ++-- src/examples/advanced/foundry_fork_db.md | 4 ++-- src/examples/advanced/reth_db_layer.md | 4 ++-- src/examples/advanced/reth_db_provider.md | 4 ++-- src/examples/big-numbers/comparison_equivalence.md | 4 ++-- src/examples/big-numbers/conversion.md | 4 ++-- src/examples/big-numbers/create_instances.md | 4 ++-- src/examples/big-numbers/math_operations.md | 4 ++-- src/examples/big-numbers/math_utilities.md | 4 ++-- src/examples/comparison/compare_new_heads.md | 4 ++-- src/examples/comparison/compare_pending_txs.md | 4 ++-- src/examples/contracts/deploy_from_artifact.md | 4 ++-- src/examples/contracts/deploy_from_bytecode.md | 4 ++-- src/examples/contracts/deploy_from_contract.md | 4 ++-- src/examples/contracts/interact_with_abi.md | 4 ++-- src/examples/contracts/interact_with_contract_instance.md | 4 ++-- src/examples/contracts/jsonrpc_error_decoding.md | 4 ++-- src/examples/contracts/unknown_return_types.md | 4 ++-- src/examples/fillers/gas_filler.md | 4 ++-- src/examples/fillers/nonce_filler.md | 4 ++-- src/examples/fillers/recommended_fillers.md | 4 ++-- src/examples/fillers/wallet_filler.md | 4 ++-- src/examples/layers/hyper_http_layer.md | 4 ++-- src/examples/layers/logging_layer.md | 4 ++-- src/examples/layers/retry_layer.md | 4 ++-- src/examples/node-bindings/anvil_deploy_contract.md | 4 ++-- src/examples/node-bindings/anvil_fork_instance.md | 4 ++-- src/examples/node-bindings/anvil_fork_provider.md | 4 ++-- src/examples/node-bindings/anvil_local_instance.md | 4 ++-- src/examples/node-bindings/anvil_local_provider.md | 4 ++-- src/examples/node-bindings/anvil_set_storage_at.md | 4 ++-- src/examples/node-bindings/geth_local_instance.md | 4 ++-- src/examples/node-bindings/reth_local_instance.md | 4 ++-- src/examples/primitives/bytes_and_address_types.md | 4 ++-- src/examples/primitives/hashing_functions.md | 4 ++-- src/examples/providers/batch_rpc.md | 4 ++-- src/examples/providers/builder.md | 4 ++-- src/examples/providers/builtin.md | 4 ++-- src/examples/providers/http.md | 4 ++-- src/examples/providers/http_with_auth.md | 4 ++-- src/examples/providers/ipc.md | 4 ++-- src/examples/providers/ws.md | 4 ++-- src/examples/providers/ws_with_auth.md | 4 ++-- src/examples/queries/query_contract_storage.md | 4 ++-- src/examples/queries/query_deployed_bytecode.md | 4 ++-- src/examples/queries/query_logs.md | 4 ++-- src/examples/sol-macro/contract.md | 4 ++-- src/examples/sol-macro/decode_returns.md | 4 ++-- src/examples/sol-macro/events_errors.md | 4 ++-- src/examples/sol-macro/structs_enums.md | 4 ++-- src/examples/sol-macro/user_defined_types.md | 4 ++-- src/examples/subscriptions/event_multiplexer.md | 4 ++-- src/examples/subscriptions/poll_logs.md | 4 ++-- src/examples/subscriptions/subscribe_all_logs.md | 4 ++-- src/examples/subscriptions/subscribe_blocks.md | 4 ++-- src/examples/subscriptions/subscribe_logs.md | 4 ++-- src/examples/subscriptions/subscribe_pending_transactions.md | 4 ++-- src/examples/transactions/debug_trace_call_many.md | 4 ++-- src/examples/transactions/decode_input.md | 4 ++-- src/examples/transactions/encode_decode_eip1559.md | 4 ++-- src/examples/transactions/gas_price_usd.md | 4 ++-- src/examples/transactions/send_eip1559_transaction.md | 4 ++-- src/examples/transactions/send_eip4844_transaction.md | 4 ++-- src/examples/transactions/send_eip7702_transaction.md | 4 ++-- src/examples/transactions/send_legacy_transaction.md | 4 ++-- src/examples/transactions/send_private_transaction.md | 4 ++-- src/examples/transactions/send_raw_transaction.md | 4 ++-- src/examples/transactions/trace_call.md | 4 ++-- src/examples/transactions/trace_call_many.md | 4 ++-- src/examples/transactions/trace_transaction.md | 4 ++-- src/examples/transactions/transfer_erc20.md | 4 ++-- src/examples/transactions/transfer_eth.md | 4 ++-- src/examples/transactions/with_access_list.md | 4 ++-- src/examples/wallets/aws_signer.md | 4 ++-- src/examples/wallets/create_keystore.md | 4 ++-- src/examples/wallets/keystore_signer.md | 4 ++-- src/examples/wallets/ledger_signer.md | 4 ++-- src/examples/wallets/mnemonic_signer.md | 4 ++-- src/examples/wallets/private_key_signer.md | 4 ++-- src/examples/wallets/sign_message.md | 4 ++-- src/examples/wallets/sign_permit_hash.md | 4 ++-- src/examples/wallets/trezor_signer.md | 4 ++-- src/examples/wallets/verify_message.md | 4 ++-- src/examples/wallets/yubi_signer.md | 4 ++-- 88 files changed, 175 insertions(+), 175 deletions(-) diff --git a/lib/examples b/lib/examples index e650725..5a6776f 160000 --- a/lib/examples +++ b/lib/examples @@ -1 +1 @@ -Subproject commit e650725f1b7277ec26af82c42e2594e9afd86e91 +Subproject commit 5a6776f2400312ee6beb7ee108d9407cd889c078 diff --git a/src/examples/advanced/any_network.md b/src/examples/advanced/any_network.md index d2eb839..e65f286 100644 --- a/src/examples/advanced/any_network.md +++ b/src/examples/advanced/any_network.md @@ -1,7 +1,7 @@ - + ## Example: `any_network` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/any_network.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/any_network.rs). diff --git a/src/examples/advanced/decoding_json_abi.md b/src/examples/advanced/decoding_json_abi.md index 7c806e5..21eb975 100644 --- a/src/examples/advanced/decoding_json_abi.md +++ b/src/examples/advanced/decoding_json_abi.md @@ -1,7 +1,7 @@ - + ## Example: `decoding_json_abi` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/decoding_json_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/decoding_json_abi.rs). diff --git a/src/examples/advanced/encoding_dyn_abi.md b/src/examples/advanced/encoding_dyn_abi.md index 9d561d8..c0553fb 100644 --- a/src/examples/advanced/encoding_dyn_abi.md +++ b/src/examples/advanced/encoding_dyn_abi.md @@ -1,7 +1,7 @@ - + ## Example: `encoding_dyn_abi` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/encoding_dyn_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/encoding_dyn_abi.rs). diff --git a/src/examples/advanced/encoding_sol_static.md b/src/examples/advanced/encoding_sol_static.md index 28d0276..f06eb7d 100644 --- a/src/examples/advanced/encoding_sol_static.md +++ b/src/examples/advanced/encoding_sol_static.md @@ -1,7 +1,7 @@ - + ## Example: `encoding_sol_static` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/encoding_sol_static.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/encoding_sol_static.rs). diff --git a/src/examples/advanced/foundry_fork_db.md b/src/examples/advanced/foundry_fork_db.md index a477678..489ce70 100644 --- a/src/examples/advanced/foundry_fork_db.md +++ b/src/examples/advanced/foundry_fork_db.md @@ -1,7 +1,7 @@ - + ## Example: `foundry_fork_db` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/foundry_fork_db.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/foundry_fork_db.rs). diff --git a/src/examples/advanced/reth_db_layer.md b/src/examples/advanced/reth_db_layer.md index 65aff6b..45daa81 100644 --- a/src/examples/advanced/reth_db_layer.md +++ b/src/examples/advanced/reth_db_layer.md @@ -1,7 +1,7 @@ - + ## Example: `reth_db_layer` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/reth_db_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/reth_db_layer.rs). diff --git a/src/examples/advanced/reth_db_provider.md b/src/examples/advanced/reth_db_provider.md index 4c7b232..266a12f 100644 --- a/src/examples/advanced/reth_db_provider.md +++ b/src/examples/advanced/reth_db_provider.md @@ -1,7 +1,7 @@ - + ## Example: `reth_db_provider` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/advanced/examples/reth_db_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/advanced/examples/reth_db_provider.rs). diff --git a/src/examples/big-numbers/comparison_equivalence.md b/src/examples/big-numbers/comparison_equivalence.md index f0d4d09..34e1427 100644 --- a/src/examples/big-numbers/comparison_equivalence.md +++ b/src/examples/big-numbers/comparison_equivalence.md @@ -1,7 +1,7 @@ - + ## Example: `comparison_equivalence` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/comparison_equivalence.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/big-numbers/examples/comparison_equivalence.rs). diff --git a/src/examples/big-numbers/conversion.md b/src/examples/big-numbers/conversion.md index a5b043f..2fd3374 100644 --- a/src/examples/big-numbers/conversion.md +++ b/src/examples/big-numbers/conversion.md @@ -1,7 +1,7 @@ - + ## Example: `conversion` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/conversion.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/big-numbers/examples/conversion.rs). diff --git a/src/examples/big-numbers/create_instances.md b/src/examples/big-numbers/create_instances.md index dfa6686..d0cc8b4 100644 --- a/src/examples/big-numbers/create_instances.md +++ b/src/examples/big-numbers/create_instances.md @@ -1,7 +1,7 @@ - + ## Example: `create_instances` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/create_instances.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/big-numbers/examples/create_instances.rs). diff --git a/src/examples/big-numbers/math_operations.md b/src/examples/big-numbers/math_operations.md index fde98ec..b0bad78 100644 --- a/src/examples/big-numbers/math_operations.md +++ b/src/examples/big-numbers/math_operations.md @@ -1,7 +1,7 @@ - + ## Example: `math_operations` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/math_operations.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/big-numbers/examples/math_operations.rs). diff --git a/src/examples/big-numbers/math_utilities.md b/src/examples/big-numbers/math_utilities.md index b4dd26d..d3fdc04 100644 --- a/src/examples/big-numbers/math_utilities.md +++ b/src/examples/big-numbers/math_utilities.md @@ -1,7 +1,7 @@ - + ## Example: `math_utilities` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/big-numbers/examples/math_utilities.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/big-numbers/examples/math_utilities.rs). diff --git a/src/examples/comparison/compare_new_heads.md b/src/examples/comparison/compare_new_heads.md index 11f554a..b3711c3 100644 --- a/src/examples/comparison/compare_new_heads.md +++ b/src/examples/comparison/compare_new_heads.md @@ -1,7 +1,7 @@ - + ## Example: `compare_new_heads` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/comparison/examples/compare_new_heads.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/comparison/examples/compare_new_heads.rs). diff --git a/src/examples/comparison/compare_pending_txs.md b/src/examples/comparison/compare_pending_txs.md index 3f89924..4d3bdf8 100644 --- a/src/examples/comparison/compare_pending_txs.md +++ b/src/examples/comparison/compare_pending_txs.md @@ -1,7 +1,7 @@ - + ## Example: `compare_pending_txs` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/comparison/examples/compare_pending_txs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/comparison/examples/compare_pending_txs.rs). diff --git a/src/examples/contracts/deploy_from_artifact.md b/src/examples/contracts/deploy_from_artifact.md index 3b829ef..11c59cb 100644 --- a/src/examples/contracts/deploy_from_artifact.md +++ b/src/examples/contracts/deploy_from_artifact.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_artifact` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_artifact.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/deploy_from_artifact.rs). diff --git a/src/examples/contracts/deploy_from_bytecode.md b/src/examples/contracts/deploy_from_bytecode.md index 545e71f..b9e7357 100644 --- a/src/examples/contracts/deploy_from_bytecode.md +++ b/src/examples/contracts/deploy_from_bytecode.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_bytecode` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/deploy_from_bytecode.rs). diff --git a/src/examples/contracts/deploy_from_contract.md b/src/examples/contracts/deploy_from_contract.md index 1b66e8a..1f92046 100644 --- a/src/examples/contracts/deploy_from_contract.md +++ b/src/examples/contracts/deploy_from_contract.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_contract` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/deploy_from_contract.rs). diff --git a/src/examples/contracts/interact_with_abi.md b/src/examples/contracts/interact_with_abi.md index af413cc..58473ed 100644 --- a/src/examples/contracts/interact_with_abi.md +++ b/src/examples/contracts/interact_with_abi.md @@ -1,7 +1,7 @@ - + ## Example: `interact_with_abi` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/interact_with_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/interact_with_abi.rs). diff --git a/src/examples/contracts/interact_with_contract_instance.md b/src/examples/contracts/interact_with_contract_instance.md index 554562a..8d87687 100644 --- a/src/examples/contracts/interact_with_contract_instance.md +++ b/src/examples/contracts/interact_with_contract_instance.md @@ -1,7 +1,7 @@ - + ## Example: `interact_with_contract_instance` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/interact_with_contract_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/interact_with_contract_instance.rs). diff --git a/src/examples/contracts/jsonrpc_error_decoding.md b/src/examples/contracts/jsonrpc_error_decoding.md index 749a070..86b1b59 100644 --- a/src/examples/contracts/jsonrpc_error_decoding.md +++ b/src/examples/contracts/jsonrpc_error_decoding.md @@ -1,7 +1,7 @@ - + ## Example: `jsonrpc_error_decoding` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/jsonrpc_error_decoding.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/jsonrpc_error_decoding.rs). diff --git a/src/examples/contracts/unknown_return_types.md b/src/examples/contracts/unknown_return_types.md index 3271eb8..4526546 100644 --- a/src/examples/contracts/unknown_return_types.md +++ b/src/examples/contracts/unknown_return_types.md @@ -1,7 +1,7 @@ - + ## Example: `unknown_return_types` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/unknown_return_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/unknown_return_types.rs). diff --git a/src/examples/fillers/gas_filler.md b/src/examples/fillers/gas_filler.md index cd1536d..843c28a 100644 --- a/src/examples/fillers/gas_filler.md +++ b/src/examples/fillers/gas_filler.md @@ -1,7 +1,7 @@ - + ## Example: `gas_filler` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/gas_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/fillers/examples/gas_filler.rs). diff --git a/src/examples/fillers/nonce_filler.md b/src/examples/fillers/nonce_filler.md index 24880eb..f9ecbce 100644 --- a/src/examples/fillers/nonce_filler.md +++ b/src/examples/fillers/nonce_filler.md @@ -1,7 +1,7 @@ - + ## Example: `nonce_filler` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/nonce_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/fillers/examples/nonce_filler.rs). diff --git a/src/examples/fillers/recommended_fillers.md b/src/examples/fillers/recommended_fillers.md index 1dc3c0a..66ab2d6 100644 --- a/src/examples/fillers/recommended_fillers.md +++ b/src/examples/fillers/recommended_fillers.md @@ -1,7 +1,7 @@ - + ## Example: `recommended_fillers` @@ -16,4 +16,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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/recommended_fillers.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/fillers/examples/recommended_fillers.rs). diff --git a/src/examples/fillers/wallet_filler.md b/src/examples/fillers/wallet_filler.md index efebd50..b679ae7 100644 --- a/src/examples/fillers/wallet_filler.md +++ b/src/examples/fillers/wallet_filler.md @@ -1,7 +1,7 @@ - + ## Example: `wallet_filler` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/fillers/examples/wallet_filler.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/fillers/examples/wallet_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/fillers/examples/wallet_filler.rs). diff --git a/src/examples/layers/hyper_http_layer.md b/src/examples/layers/hyper_http_layer.md index 91626ff..9b1811a 100644 --- a/src/examples/layers/hyper_http_layer.md +++ b/src/examples/layers/hyper_http_layer.md @@ -1,7 +1,7 @@ - + ## Example: `hyper_http_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/hyper_http_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/hyper_http_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/layers/examples/hyper_http_layer.rs). diff --git a/src/examples/layers/logging_layer.md b/src/examples/layers/logging_layer.md index d303ff5..6042273 100644 --- a/src/examples/layers/logging_layer.md +++ b/src/examples/layers/logging_layer.md @@ -1,7 +1,7 @@ - + ## Example: `logging_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/logging_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/logging_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/layers/examples/logging_layer.rs). diff --git a/src/examples/layers/retry_layer.md b/src/examples/layers/retry_layer.md index cf9c281..e977f2a 100644 --- a/src/examples/layers/retry_layer.md +++ b/src/examples/layers/retry_layer.md @@ -1,7 +1,7 @@ - + ## Example: `retry_layer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/layers/examples/retry_layer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/layers/examples/retry_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/layers/examples/retry_layer.rs). diff --git a/src/examples/node-bindings/anvil_deploy_contract.md b/src/examples/node-bindings/anvil_deploy_contract.md index 7f3ff11..35881f3 100644 --- a/src/examples/node-bindings/anvil_deploy_contract.md +++ b/src/examples/node-bindings/anvil_deploy_contract.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_deploy_contract` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_deploy_contract.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_deploy_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_deploy_contract.rs). diff --git a/src/examples/node-bindings/anvil_fork_instance.md b/src/examples/node-bindings/anvil_fork_instance.md index c21de7e..95907d2 100644 --- a/src/examples/node-bindings/anvil_fork_instance.md +++ b/src/examples/node-bindings/anvil_fork_instance.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_fork_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_fork_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_fork_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_fork_instance.rs). diff --git a/src/examples/node-bindings/anvil_fork_provider.md b/src/examples/node-bindings/anvil_fork_provider.md index 022fe69..0b0aa2d 100644 --- a/src/examples/node-bindings/anvil_fork_provider.md +++ b/src/examples/node-bindings/anvil_fork_provider.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_fork_provider` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_fork_provider.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_fork_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_fork_provider.rs). diff --git a/src/examples/node-bindings/anvil_local_instance.md b/src/examples/node-bindings/anvil_local_instance.md index 4b648c0..d13227f 100644 --- a/src/examples/node-bindings/anvil_local_instance.md +++ b/src/examples/node-bindings/anvil_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_local_instance.rs). diff --git a/src/examples/node-bindings/anvil_local_provider.md b/src/examples/node-bindings/anvil_local_provider.md index 515e0f9..e7c01bc 100644 --- a/src/examples/node-bindings/anvil_local_provider.md +++ b/src/examples/node-bindings/anvil_local_provider.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_local_provider` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_local_provider.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_local_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_local_provider.rs). diff --git a/src/examples/node-bindings/anvil_set_storage_at.md b/src/examples/node-bindings/anvil_set_storage_at.md index ffbb29e..6ba3e5a 100644 --- a/src/examples/node-bindings/anvil_set_storage_at.md +++ b/src/examples/node-bindings/anvil_set_storage_at.md @@ -1,7 +1,7 @@ - + ## Example: `anvil_set_storage_at` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/anvil_set_storage_at.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/anvil_set_storage_at.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/anvil_set_storage_at.rs). diff --git a/src/examples/node-bindings/geth_local_instance.md b/src/examples/node-bindings/geth_local_instance.md index 1871759..a3a00d9 100644 --- a/src/examples/node-bindings/geth_local_instance.md +++ b/src/examples/node-bindings/geth_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `geth_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/geth_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/geth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/geth_local_instance.rs). diff --git a/src/examples/node-bindings/reth_local_instance.md b/src/examples/node-bindings/reth_local_instance.md index d63e801..e5e5675 100644 --- a/src/examples/node-bindings/reth_local_instance.md +++ b/src/examples/node-bindings/reth_local_instance.md @@ -1,7 +1,7 @@ - + ## Example: `reth_local_instance` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/node-bindings/examples/reth_local_instance.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/node-bindings/examples/reth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/node-bindings/examples/reth_local_instance.rs). diff --git a/src/examples/primitives/bytes_and_address_types.md b/src/examples/primitives/bytes_and_address_types.md index 468655c..63c37cb 100644 --- a/src/examples/primitives/bytes_and_address_types.md +++ b/src/examples/primitives/bytes_and_address_types.md @@ -1,7 +1,7 @@ - + ## Example: `bytes_and_address_types` @@ -16,4 +16,4 @@ To run this example: {{#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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/primitives/examples/bytes_and_address_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/primitives/examples/bytes_and_address_types.rs). diff --git a/src/examples/primitives/hashing_functions.md b/src/examples/primitives/hashing_functions.md index fb077af..1f369e9 100644 --- a/src/examples/primitives/hashing_functions.md +++ b/src/examples/primitives/hashing_functions.md @@ -1,7 +1,7 @@ - + ## Example: `hashing_functions` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/primitives/examples/hashing_functions.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/primitives/examples/hashing_functions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/primitives/examples/hashing_functions.rs). diff --git a/src/examples/providers/batch_rpc.md b/src/examples/providers/batch_rpc.md index b3cd72d..4e5dccd 100644 --- a/src/examples/providers/batch_rpc.md +++ b/src/examples/providers/batch_rpc.md @@ -1,7 +1,7 @@ - + ## Example: `batch_rpc` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/batch_rpc.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/batch_rpc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/batch_rpc.rs). diff --git a/src/examples/providers/builder.md b/src/examples/providers/builder.md index c5c7094..e613285 100644 --- a/src/examples/providers/builder.md +++ b/src/examples/providers/builder.md @@ -1,7 +1,7 @@ - + ## Example: `builder` @@ -16,4 +16,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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/builder.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/builder.rs). diff --git a/src/examples/providers/builtin.md b/src/examples/providers/builtin.md index 99a9ca7..9c1f047 100644 --- a/src/examples/providers/builtin.md +++ b/src/examples/providers/builtin.md @@ -1,7 +1,7 @@ - + ## Example: `builtin` @@ -16,4 +16,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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/builtin.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/builtin.rs). diff --git a/src/examples/providers/http.md b/src/examples/providers/http.md index 9bcf2e5..7bb3e5d 100644 --- a/src/examples/providers/http.md +++ b/src/examples/providers/http.md @@ -1,7 +1,7 @@ - + ## Example: `http` @@ -16,4 +16,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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/http.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/http.rs). diff --git a/src/examples/providers/http_with_auth.md b/src/examples/providers/http_with_auth.md index dd642f4..3c65972 100644 --- a/src/examples/providers/http_with_auth.md +++ b/src/examples/providers/http_with_auth.md @@ -1,7 +1,7 @@ - + ## Example: `http_with_auth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/http_with_auth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/http_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/http_with_auth.rs). diff --git a/src/examples/providers/ipc.md b/src/examples/providers/ipc.md index a0d3b9f..83096db 100644 --- a/src/examples/providers/ipc.md +++ b/src/examples/providers/ipc.md @@ -1,7 +1,7 @@ - + ## Example: `ipc` @@ -16,4 +16,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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ipc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/ipc.rs). diff --git a/src/examples/providers/ws.md b/src/examples/providers/ws.md index 168e76a..52f1697 100644 --- a/src/examples/providers/ws.md +++ b/src/examples/providers/ws.md @@ -1,7 +1,7 @@ - + ## Example: `ws` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/ws.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ws.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/ws.rs). diff --git a/src/examples/providers/ws_with_auth.md b/src/examples/providers/ws_with_auth.md index f2ce0b9..15410aa 100644 --- a/src/examples/providers/ws_with_auth.md +++ b/src/examples/providers/ws_with_auth.md @@ -1,7 +1,7 @@ - + ## Example: `ws_with_auth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/providers/examples/ws_with_auth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/providers/examples/ws_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/providers/examples/ws_with_auth.rs). diff --git a/src/examples/queries/query_contract_storage.md b/src/examples/queries/query_contract_storage.md index 1543150..6228b5c 100644 --- a/src/examples/queries/query_contract_storage.md +++ b/src/examples/queries/query_contract_storage.md @@ -1,7 +1,7 @@ - + ## Example: `query_contract_storage` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_contract_storage.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_contract_storage.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/queries/examples/query_contract_storage.rs). diff --git a/src/examples/queries/query_deployed_bytecode.md b/src/examples/queries/query_deployed_bytecode.md index 6330995..ba23531 100644 --- a/src/examples/queries/query_deployed_bytecode.md +++ b/src/examples/queries/query_deployed_bytecode.md @@ -1,7 +1,7 @@ - + ## Example: `query_deployed_bytecode` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_deployed_bytecode.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_deployed_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/queries/examples/query_deployed_bytecode.rs). diff --git a/src/examples/queries/query_logs.md b/src/examples/queries/query_logs.md index 4e14e35..b72a6dc 100644 --- a/src/examples/queries/query_logs.md +++ b/src/examples/queries/query_logs.md @@ -1,7 +1,7 @@ - + ## Example: `query_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/queries/examples/query_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/queries/examples/query_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/queries/examples/query_logs.rs). diff --git a/src/examples/sol-macro/contract.md b/src/examples/sol-macro/contract.md index 1b66e8a..1f92046 100644 --- a/src/examples/sol-macro/contract.md +++ b/src/examples/sol-macro/contract.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_from_contract` @@ -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/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/contracts/examples/deploy_from_contract.rs). diff --git a/src/examples/sol-macro/decode_returns.md b/src/examples/sol-macro/decode_returns.md index c516e74..4c9c28a 100644 --- a/src/examples/sol-macro/decode_returns.md +++ b/src/examples/sol-macro/decode_returns.md @@ -1,7 +1,7 @@ - + ## Example: `decode_returns` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/decode_returns.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/decode_returns.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/sol-macro/examples/decode_returns.rs). diff --git a/src/examples/sol-macro/events_errors.md b/src/examples/sol-macro/events_errors.md index f550b42..d8dc963 100644 --- a/src/examples/sol-macro/events_errors.md +++ b/src/examples/sol-macro/events_errors.md @@ -1,7 +1,7 @@ - + ## Example: `events_errors` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/events_errors.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/events_errors.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/sol-macro/examples/events_errors.rs). diff --git a/src/examples/sol-macro/structs_enums.md b/src/examples/sol-macro/structs_enums.md index dec1c3d..738f8b7 100644 --- a/src/examples/sol-macro/structs_enums.md +++ b/src/examples/sol-macro/structs_enums.md @@ -1,7 +1,7 @@ - + ## Example: `structs_enums` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/structs_enums.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/structs_enums.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/sol-macro/examples/structs_enums.rs). diff --git a/src/examples/sol-macro/user_defined_types.md b/src/examples/sol-macro/user_defined_types.md index b925f6e..d298943 100644 --- a/src/examples/sol-macro/user_defined_types.md +++ b/src/examples/sol-macro/user_defined_types.md @@ -1,7 +1,7 @@ - + ## Example: `user_defined_types` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/sol-macro/examples/user_defined_types.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/sol-macro/examples/user_defined_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/sol-macro/examples/user_defined_types.rs). diff --git a/src/examples/subscriptions/event_multiplexer.md b/src/examples/subscriptions/event_multiplexer.md index 4929df3..c727967 100644 --- a/src/examples/subscriptions/event_multiplexer.md +++ b/src/examples/subscriptions/event_multiplexer.md @@ -1,7 +1,7 @@ - + ## Example: `event_multiplexer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/event_multiplexer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/event_multiplexer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/event_multiplexer.rs). diff --git a/src/examples/subscriptions/poll_logs.md b/src/examples/subscriptions/poll_logs.md index 49d2e02..e724c4c 100644 --- a/src/examples/subscriptions/poll_logs.md +++ b/src/examples/subscriptions/poll_logs.md @@ -1,7 +1,7 @@ - + ## Example: `poll_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/poll_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/poll_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/poll_logs.rs). diff --git a/src/examples/subscriptions/subscribe_all_logs.md b/src/examples/subscriptions/subscribe_all_logs.md index 588b26f..1cabef0 100644 --- a/src/examples/subscriptions/subscribe_all_logs.md +++ b/src/examples/subscriptions/subscribe_all_logs.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_all_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_all_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_all_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/subscribe_all_logs.rs). diff --git a/src/examples/subscriptions/subscribe_blocks.md b/src/examples/subscriptions/subscribe_blocks.md index 1767ff7..bd29f49 100644 --- a/src/examples/subscriptions/subscribe_blocks.md +++ b/src/examples/subscriptions/subscribe_blocks.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_blocks` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_blocks.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_blocks.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/subscribe_blocks.rs). diff --git a/src/examples/subscriptions/subscribe_logs.md b/src/examples/subscriptions/subscribe_logs.md index ef584e8..e7ed95b 100644 --- a/src/examples/subscriptions/subscribe_logs.md +++ b/src/examples/subscriptions/subscribe_logs.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_logs` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_logs.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/subscribe_logs.rs). diff --git a/src/examples/subscriptions/subscribe_pending_transactions.md b/src/examples/subscriptions/subscribe_pending_transactions.md index f14da52..201fb20 100644 --- a/src/examples/subscriptions/subscribe_pending_transactions.md +++ b/src/examples/subscriptions/subscribe_pending_transactions.md @@ -1,7 +1,7 @@ - + ## Example: `subscribe_pending_transactions` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/subscriptions/examples/subscribe_pending_transactions.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/subscriptions/examples/subscribe_pending_transactions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/subscriptions/examples/subscribe_pending_transactions.rs). diff --git a/src/examples/transactions/debug_trace_call_many.md b/src/examples/transactions/debug_trace_call_many.md index 421232f..e6a6409 100644 --- a/src/examples/transactions/debug_trace_call_many.md +++ b/src/examples/transactions/debug_trace_call_many.md @@ -1,7 +1,7 @@ - + ## Example: `debug_trace_call_many` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/debug_trace_call_many.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/debug_trace_call_many.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/debug_trace_call_many.rs). diff --git a/src/examples/transactions/decode_input.md b/src/examples/transactions/decode_input.md index ff0f4f0..71b2cc2 100644 --- a/src/examples/transactions/decode_input.md +++ b/src/examples/transactions/decode_input.md @@ -1,7 +1,7 @@ - + ## Example: `decode_input` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/decode_input.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/decode_input.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/decode_input.rs). diff --git a/src/examples/transactions/encode_decode_eip1559.md b/src/examples/transactions/encode_decode_eip1559.md index 54e1da5..9e2450f 100644 --- a/src/examples/transactions/encode_decode_eip1559.md +++ b/src/examples/transactions/encode_decode_eip1559.md @@ -1,7 +1,7 @@ - + ## Example: `encode_decode_eip1559` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/encode_decode_eip1559.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/encode_decode_eip1559.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/encode_decode_eip1559.rs). diff --git a/src/examples/transactions/gas_price_usd.md b/src/examples/transactions/gas_price_usd.md index e054c80..d248532 100644 --- a/src/examples/transactions/gas_price_usd.md +++ b/src/examples/transactions/gas_price_usd.md @@ -1,7 +1,7 @@ - + ## Example: `gas_price_usd` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/gas_price_usd.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/gas_price_usd.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/gas_price_usd.rs). diff --git a/src/examples/transactions/send_eip1559_transaction.md b/src/examples/transactions/send_eip1559_transaction.md index 7eb8507..99c33f1 100644 --- a/src/examples/transactions/send_eip1559_transaction.md +++ b/src/examples/transactions/send_eip1559_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip1559_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip1559_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip1559_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_eip1559_transaction.rs). diff --git a/src/examples/transactions/send_eip4844_transaction.md b/src/examples/transactions/send_eip4844_transaction.md index ed4cd7d..fd334cc 100644 --- a/src/examples/transactions/send_eip4844_transaction.md +++ b/src/examples/transactions/send_eip4844_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip4844_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip4844_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip4844_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_eip4844_transaction.rs). diff --git a/src/examples/transactions/send_eip7702_transaction.md b/src/examples/transactions/send_eip7702_transaction.md index 5f04810..5f29847 100644 --- a/src/examples/transactions/send_eip7702_transaction.md +++ b/src/examples/transactions/send_eip7702_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_eip7702_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_eip7702_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_eip7702_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_eip7702_transaction.rs). diff --git a/src/examples/transactions/send_legacy_transaction.md b/src/examples/transactions/send_legacy_transaction.md index 04dc01b..33b7ff7 100644 --- a/src/examples/transactions/send_legacy_transaction.md +++ b/src/examples/transactions/send_legacy_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_legacy_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_legacy_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_legacy_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_legacy_transaction.rs). diff --git a/src/examples/transactions/send_private_transaction.md b/src/examples/transactions/send_private_transaction.md index 482819d..57497e7 100644 --- a/src/examples/transactions/send_private_transaction.md +++ b/src/examples/transactions/send_private_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_private_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_private_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_private_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_private_transaction.rs). diff --git a/src/examples/transactions/send_raw_transaction.md b/src/examples/transactions/send_raw_transaction.md index 1d700e8..83f76d6 100644 --- a/src/examples/transactions/send_raw_transaction.md +++ b/src/examples/transactions/send_raw_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `send_raw_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/send_raw_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/send_raw_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/send_raw_transaction.rs). diff --git a/src/examples/transactions/trace_call.md b/src/examples/transactions/trace_call.md index a08691b..b5a3d7d 100644 --- a/src/examples/transactions/trace_call.md +++ b/src/examples/transactions/trace_call.md @@ -1,7 +1,7 @@ - + ## Example: `trace_call` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/trace_call.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_call.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/trace_call.rs). diff --git a/src/examples/transactions/trace_call_many.md b/src/examples/transactions/trace_call_many.md index 2e36801..089e83b 100644 --- a/src/examples/transactions/trace_call_many.md +++ b/src/examples/transactions/trace_call_many.md @@ -1,7 +1,7 @@ - + ## Example: `trace_call_many` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/trace_call_many.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_call_many.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/trace_call_many.rs). diff --git a/src/examples/transactions/trace_transaction.md b/src/examples/transactions/trace_transaction.md index e774324..6364afd 100644 --- a/src/examples/transactions/trace_transaction.md +++ b/src/examples/transactions/trace_transaction.md @@ -1,7 +1,7 @@ - + ## Example: `trace_transaction` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/trace_transaction.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/trace_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/trace_transaction.rs). diff --git a/src/examples/transactions/transfer_erc20.md b/src/examples/transactions/transfer_erc20.md index 4b43a04..670ee7b 100644 --- a/src/examples/transactions/transfer_erc20.md +++ b/src/examples/transactions/transfer_erc20.md @@ -1,7 +1,7 @@ - + ## Example: `transfer_erc20` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/transfer_erc20.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/transfer_erc20.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/transfer_erc20.rs). diff --git a/src/examples/transactions/transfer_eth.md b/src/examples/transactions/transfer_eth.md index a4221c1..7ce2fd6 100644 --- a/src/examples/transactions/transfer_eth.md +++ b/src/examples/transactions/transfer_eth.md @@ -1,7 +1,7 @@ - + ## Example: `transfer_eth` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/transfer_eth.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/transfer_eth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/transfer_eth.rs). diff --git a/src/examples/transactions/with_access_list.md b/src/examples/transactions/with_access_list.md index 88ceebe..ab6ef8d 100644 --- a/src/examples/transactions/with_access_list.md +++ b/src/examples/transactions/with_access_list.md @@ -1,7 +1,7 @@ - + ## Example: `with_access_list` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/transactions/examples/with_access_list.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/transactions/examples/with_access_list.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/transactions/examples/with_access_list.rs). diff --git a/src/examples/wallets/aws_signer.md b/src/examples/wallets/aws_signer.md index 128f6bd..42e61d7 100644 --- a/src/examples/wallets/aws_signer.md +++ b/src/examples/wallets/aws_signer.md @@ -1,7 +1,7 @@ - + ## Example: `aws_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/aws_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/aws_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/aws_signer.rs). diff --git a/src/examples/wallets/create_keystore.md b/src/examples/wallets/create_keystore.md index fca52ef..93259b4 100644 --- a/src/examples/wallets/create_keystore.md +++ b/src/examples/wallets/create_keystore.md @@ -1,7 +1,7 @@ - + ## Example: `create_keystore` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/create_keystore.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/create_keystore.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/create_keystore.rs). diff --git a/src/examples/wallets/keystore_signer.md b/src/examples/wallets/keystore_signer.md index e9c9dc9..df06e2a 100644 --- a/src/examples/wallets/keystore_signer.md +++ b/src/examples/wallets/keystore_signer.md @@ -1,7 +1,7 @@ - + ## Example: `keystore_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/keystore_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/keystore_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/keystore_signer.rs). diff --git a/src/examples/wallets/ledger_signer.md b/src/examples/wallets/ledger_signer.md index 785a9e8..e7a8bca 100644 --- a/src/examples/wallets/ledger_signer.md +++ b/src/examples/wallets/ledger_signer.md @@ -1,7 +1,7 @@ - + ## Example: `ledger_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/ledger_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/ledger_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/ledger_signer.rs). diff --git a/src/examples/wallets/mnemonic_signer.md b/src/examples/wallets/mnemonic_signer.md index 8877ec8..47904de 100644 --- a/src/examples/wallets/mnemonic_signer.md +++ b/src/examples/wallets/mnemonic_signer.md @@ -1,7 +1,7 @@ - + ## Example: `mnemonic_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/mnemonic_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/mnemonic_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/mnemonic_signer.rs). diff --git a/src/examples/wallets/private_key_signer.md b/src/examples/wallets/private_key_signer.md index 2f8a1b0..87afdbc 100644 --- a/src/examples/wallets/private_key_signer.md +++ b/src/examples/wallets/private_key_signer.md @@ -1,7 +1,7 @@ - + ## Example: `private_key_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/private_key_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/private_key_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/private_key_signer.rs). diff --git a/src/examples/wallets/sign_message.md b/src/examples/wallets/sign_message.md index 1883b24..eaec492 100644 --- a/src/examples/wallets/sign_message.md +++ b/src/examples/wallets/sign_message.md @@ -1,7 +1,7 @@ - + ## Example: `sign_message` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/sign_message.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/sign_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/sign_message.rs). diff --git a/src/examples/wallets/sign_permit_hash.md b/src/examples/wallets/sign_permit_hash.md index 345c8b8..0218c94 100644 --- a/src/examples/wallets/sign_permit_hash.md +++ b/src/examples/wallets/sign_permit_hash.md @@ -1,7 +1,7 @@ - + ## Example: `sign_permit_hash` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/sign_permit_hash.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/sign_permit_hash.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/sign_permit_hash.rs). diff --git a/src/examples/wallets/trezor_signer.md b/src/examples/wallets/trezor_signer.md index 5d0c2cd..d1f7235 100644 --- a/src/examples/wallets/trezor_signer.md +++ b/src/examples/wallets/trezor_signer.md @@ -1,7 +1,7 @@ - + ## Example: `trezor_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/trezor_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/trezor_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/trezor_signer.rs). diff --git a/src/examples/wallets/verify_message.md b/src/examples/wallets/verify_message.md index a261e6d..ddc8705 100644 --- a/src/examples/wallets/verify_message.md +++ b/src/examples/wallets/verify_message.md @@ -1,7 +1,7 @@ - + ## Example: `verify_message` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/verify_message.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/verify_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/verify_message.rs). diff --git a/src/examples/wallets/yubi_signer.md b/src/examples/wallets/yubi_signer.md index b271c2b..baae76b 100644 --- a/src/examples/wallets/yubi_signer.md +++ b/src/examples/wallets/yubi_signer.md @@ -1,7 +1,7 @@ - + ## Example: `yubi_signer` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/wallets/examples/yubi_signer.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e650725f1b7277ec26af82c42e2594e9afd86e91/examples/wallets/examples/yubi_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/5a6776f2400312ee6beb7ee108d9407cd889c078/examples/wallets/examples/yubi_signer.rs).