From 2aaf21028d62702553e009704ff1b644d4689361 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Tue, 17 Sep 2024 12:11:26 +0200 Subject: [PATCH] update for broken send_eip7702_transaction example --- 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/anvil/deploy_contract_anvil.md | 4 ++-- src/examples/anvil/fork_anvil.md | 4 ++-- src/examples/anvil/local_anvil.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/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/logging_layer.md | 4 ++-- src/examples/primitives/bytes_and_address_types.md | 4 ++-- src/examples/primitives/hashing_functions.md | 4 ++-- src/examples/providers/builder.md | 4 ++-- src/examples/providers/builtin.md | 4 ++-- src/examples/providers/http.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/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_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 ++-- 72 files changed, 143 insertions(+), 143 deletions(-) diff --git a/lib/examples b/lib/examples index 6daa276..330d1e1 160000 --- a/lib/examples +++ b/lib/examples @@ -1 +1 @@ -Subproject commit 6daa2764410749eaf935d333c2294429a3623ac9 +Subproject commit 330d1e12b360045be20c52a3cedff75eb4bd4c45 diff --git a/src/examples/advanced/any_network.md b/src/examples/advanced/any_network.md index 435c272..3f41e21 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/advanced/examples/any_network.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 186ae8d..10196fa 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/advanced/examples/decoding_json_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 fd5ea3d..2fb9e8b 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/advanced/examples/encoding_dyn_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 8278a5a..e182d0c 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/advanced/examples/encoding_sol_static.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/advanced/examples/encoding_sol_static.rs). diff --git a/src/examples/anvil/deploy_contract_anvil.md b/src/examples/anvil/deploy_contract_anvil.md index 021f862..d03c2f5 100644 --- a/src/examples/anvil/deploy_contract_anvil.md +++ b/src/examples/anvil/deploy_contract_anvil.md @@ -1,7 +1,7 @@ - + ## Example: `deploy_contract_anvil` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/anvil/examples/deploy_contract_anvil.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/6daa2764410749eaf935d333c2294429a3623ac9/examples/anvil/examples/deploy_contract_anvil.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/anvil/examples/deploy_contract_anvil.rs). diff --git a/src/examples/anvil/fork_anvil.md b/src/examples/anvil/fork_anvil.md index 806c904..a4306cd 100644 --- a/src/examples/anvil/fork_anvil.md +++ b/src/examples/anvil/fork_anvil.md @@ -1,7 +1,7 @@ - + ## Example: `fork_anvil` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/anvil/examples/fork_anvil.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/6daa2764410749eaf935d333c2294429a3623ac9/examples/anvil/examples/fork_anvil.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/anvil/examples/fork_anvil.rs). diff --git a/src/examples/anvil/local_anvil.md b/src/examples/anvil/local_anvil.md index 87e1eb9..1b31c4b 100644 --- a/src/examples/anvil/local_anvil.md +++ b/src/examples/anvil/local_anvil.md @@ -1,7 +1,7 @@ - + ## Example: `local_anvil` @@ -16,4 +16,4 @@ To run this example: {{#include ../../../lib/examples/examples/anvil/examples/local_anvil.rs}} ``` -Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/6daa2764410749eaf935d333c2294429a3623ac9/examples/anvil/examples/local_anvil.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/anvil/examples/local_anvil.rs). diff --git a/src/examples/big-numbers/comparison_equivalence.md b/src/examples/big-numbers/comparison_equivalence.md index 8c6ff25..045358d 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/big-numbers/examples/comparison_equivalence.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/comparison_equivalence.rs). diff --git a/src/examples/big-numbers/conversion.md b/src/examples/big-numbers/conversion.md index 08f751a..fadc775 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/big-numbers/examples/conversion.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 5a10926..3ca59d3 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/big-numbers/examples/create_instances.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 96d98ae..c8f42e7 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/big-numbers/examples/math_operations.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 8496022..ca29db1 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/big-numbers/examples/math_utilities.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/math_utilities.rs). diff --git a/src/examples/contracts/deploy_from_artifact.md b/src/examples/contracts/deploy_from_artifact.md index 089f152..c05fb10 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/deploy_from_artifact.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 bec85fa..ade92b0 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/deploy_from_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 f6957a1..a210429 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 742ddb0..03555b0 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/interact_with_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 c88015c..488c7a3 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/interact_with_contract_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 fa64236..4c408da 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/jsonrpc_error_decoding.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 c4493dc..dfa2a0f 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/unknown_return_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/unknown_return_types.rs). diff --git a/src/examples/fillers/gas_filler.md b/src/examples/fillers/gas_filler.md index bd5fd6f..0cb2e2f 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/fillers/examples/gas_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/fillers/examples/gas_filler.rs). diff --git a/src/examples/fillers/nonce_filler.md b/src/examples/fillers/nonce_filler.md index 6e88bba..e40c6b0 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/fillers/examples/nonce_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/fillers/examples/nonce_filler.rs). diff --git a/src/examples/fillers/recommended_fillers.md b/src/examples/fillers/recommended_fillers.md index bdf70c0..57dbb5c 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/fillers/examples/recommended_fillers.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/fillers/examples/recommended_fillers.rs). diff --git a/src/examples/fillers/wallet_filler.md b/src/examples/fillers/wallet_filler.md index a3745a9..4e95c06 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/fillers/examples/wallet_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/fillers/examples/wallet_filler.rs). diff --git a/src/examples/layers/logging_layer.md b/src/examples/layers/logging_layer.md index be08f53..71a1016 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/layers/examples/logging_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/layers/examples/logging_layer.rs). diff --git a/src/examples/primitives/bytes_and_address_types.md b/src/examples/primitives/bytes_and_address_types.md index e5ac970..4ef50e2 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/primitives/examples/bytes_and_address_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 b8aca09..f10176d 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/primitives/examples/hashing_functions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/primitives/examples/hashing_functions.rs). diff --git a/src/examples/providers/builder.md b/src/examples/providers/builder.md index f38bb9a..27b5dd4 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/builder.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/providers/examples/builder.rs). diff --git a/src/examples/providers/builtin.md b/src/examples/providers/builtin.md index 58e2d3a..6256769 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/builtin.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/providers/examples/builtin.rs). diff --git a/src/examples/providers/http.md b/src/examples/providers/http.md index 261fb07..2200511 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/http.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/providers/examples/http.rs). diff --git a/src/examples/providers/ipc.md b/src/examples/providers/ipc.md index 397eda6..0e2d829 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/ipc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/providers/examples/ipc.rs). diff --git a/src/examples/providers/ws.md b/src/examples/providers/ws.md index 482ec8d..502f95c 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/ws.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/providers/examples/ws.rs). diff --git a/src/examples/providers/ws_with_auth.md b/src/examples/providers/ws_with_auth.md index 0ce4580..7da6d35 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/providers/examples/ws_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 92d4f4d..1a97a1c 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/queries/examples/query_contract_storage.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 971c4cf..a5e5a68 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/queries/examples/query_deployed_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/queries/examples/query_deployed_bytecode.rs). diff --git a/src/examples/queries/query_logs.md b/src/examples/queries/query_logs.md index c3bb87f..c48f502 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/queries/examples/query_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/queries/examples/query_logs.rs). diff --git a/src/examples/sol-macro/contract.md b/src/examples/sol-macro/contract.md index f6957a1..a210429 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 6717089..af9eb27 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/sol-macro/examples/decode_returns.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 db77b5a..774dfb3 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/sol-macro/examples/events_errors.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 b7c1c2d..1ac7eaf 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/sol-macro/examples/structs_enums.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 f1eaa76..4108593 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/sol-macro/examples/user_defined_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 d401196..922797b 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/event_multiplexer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/subscriptions/examples/event_multiplexer.rs). diff --git a/src/examples/subscriptions/poll_logs.md b/src/examples/subscriptions/poll_logs.md index 2ffbdbe..d41814f 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/poll_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 4750861..90771f0 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/subscribe_all_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/subscriptions/examples/subscribe_all_logs.rs). diff --git a/src/examples/subscriptions/subscribe_blocks.md b/src/examples/subscriptions/subscribe_blocks.md index 633f51e..f63c538 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/subscribe_blocks.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/subscriptions/examples/subscribe_blocks.rs). diff --git a/src/examples/subscriptions/subscribe_logs.md b/src/examples/subscriptions/subscribe_logs.md index 09017c8..343bcf6 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/subscribe_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 43f35ae..a2b64d2 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/subscriptions/examples/subscribe_pending_transactions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/subscriptions/examples/subscribe_pending_transactions.rs). diff --git a/src/examples/transactions/decode_input.md b/src/examples/transactions/decode_input.md index 6938516..8fe86ea 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/decode_input.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 68c4858..a8d6410 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/encode_decode_eip1559.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 c178f97..cf754f1 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/gas_price_usd.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 1f91b0d..68698a4 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_eip1559_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 7fb5935..bfd6af9 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_eip4844_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 6783edd..16bfcd7 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_eip7702_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 e8ceacc..2a51a85 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_legacy_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 a722448..ec4b844 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_private_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 b4548c0..3f92961 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/send_raw_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/transactions/examples/send_raw_transaction.rs). diff --git a/src/examples/transactions/trace_call.md b/src/examples/transactions/trace_call.md index aed3b2a..1b11f5e 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/trace_call.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/transactions/examples/trace_call.rs). diff --git a/src/examples/transactions/trace_transaction.md b/src/examples/transactions/trace_transaction.md index ae7ff3a..a7d4c06 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/trace_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/transactions/examples/trace_transaction.rs). diff --git a/src/examples/transactions/transfer_erc20.md b/src/examples/transactions/transfer_erc20.md index 8e32be7..0508eab 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/transfer_erc20.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/transactions/examples/transfer_erc20.rs). diff --git a/src/examples/transactions/transfer_eth.md b/src/examples/transactions/transfer_eth.md index 3305500..716c147 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/transfer_eth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 b03cb39..ff13fb3 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/transactions/examples/with_access_list.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/transactions/examples/with_access_list.rs). diff --git a/src/examples/wallets/aws_signer.md b/src/examples/wallets/aws_signer.md index a19bc73..0210fc8 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/aws_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/aws_signer.rs). diff --git a/src/examples/wallets/create_keystore.md b/src/examples/wallets/create_keystore.md index eff6c80..ef7702d 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/create_keystore.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/create_keystore.rs). diff --git a/src/examples/wallets/keystore_signer.md b/src/examples/wallets/keystore_signer.md index d0f00ed..9cc4a7b 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/keystore_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/keystore_signer.rs). diff --git a/src/examples/wallets/ledger_signer.md b/src/examples/wallets/ledger_signer.md index adeccb1..d811fdd 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/ledger_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/ledger_signer.rs). diff --git a/src/examples/wallets/mnemonic_signer.md b/src/examples/wallets/mnemonic_signer.md index 8e27262..b3ee1ce 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/mnemonic_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 2946761..eb691c7 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/private_key_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/private_key_signer.rs). diff --git a/src/examples/wallets/sign_message.md b/src/examples/wallets/sign_message.md index 7f5196e..0a2ec05 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/sign_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/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 af0732a..363652b 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/sign_permit_hash.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/sign_permit_hash.rs). diff --git a/src/examples/wallets/trezor_signer.md b/src/examples/wallets/trezor_signer.md index 749f14b..b06d65a 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/trezor_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/trezor_signer.rs). diff --git a/src/examples/wallets/verify_message.md b/src/examples/wallets/verify_message.md index 851584a..14d9b4f 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/verify_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/verify_message.rs). diff --git a/src/examples/wallets/yubi_signer.md b/src/examples/wallets/yubi_signer.md index 13ce746..6bb4211 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/6daa2764410749eaf935d333c2294429a3623ac9/examples/wallets/examples/yubi_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/wallets/examples/yubi_signer.rs).