From 83ff5f2cf7fc84ae785405beedba38de6e29698e Mon Sep 17 00:00:00 2001 From: zerosnacks <95942363+zerosnacks@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:16:48 +0100 Subject: [PATCH] add hyper transport layer example (#59) --- lib/examples | 2 +- src/SUMMARY.md | 1 + 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/README.md | 3 ++- src/examples/layers/hyper_http_layer.md | 19 +++++++++++++++++++ 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/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/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 ++-- .../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/layers/README.md | 3 ++- 88 files changed, 191 insertions(+), 169 deletions(-) create mode 100644 src/examples/layers/hyper_http_layer.md diff --git a/lib/examples b/lib/examples index bc7aa07..a8fbd2e 160000 --- a/lib/examples +++ b/lib/examples @@ -1 +1 @@ -Subproject commit bc7aa07c3267fda3d4e9c56dca38572ef1be59dd +Subproject commit a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef diff --git a/src/SUMMARY.md b/src/SUMMARY.md index be9f789..fa19dc0 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -64,6 +64,7 @@ - [Recommended fillers](./examples/fillers/recommended_fillers.md) - [Wallet management filler](./examples/fillers/wallet_filler.md) - [Layers](./examples/layers/README.md) + - [Hyper transport layer](./examples/layers/hyper_http_layer.md) - [Request / response logging layer](./examples/layers/logging_layer.md) - [Retry-backoff layer](./examples/layers/retry_layer.md) - [Node bindings](./examples/node-bindings/README.md) diff --git a/src/examples/advanced/any_network.md b/src/examples/advanced/any_network.md index 2bc31f6..df962d9 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/any_network.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 9aacb5e..b286b26 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/decoding_json_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 811e2cb..27141dd 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/encoding_dyn_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 8b5d922..bbc2dda 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/encoding_sol_static.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 4ed2954..da07209 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/foundry_fork_db.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 e30f959..92af3ce 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/reth_db_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 82510a0..174ca4f 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/advanced/examples/reth_db_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 34968ea..b7846f8 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/big-numbers/examples/comparison_equivalence.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/big-numbers/examples/comparison_equivalence.rs). diff --git a/src/examples/big-numbers/conversion.md b/src/examples/big-numbers/conversion.md index 93364aa..bea9bfc 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/big-numbers/examples/conversion.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 5ff1cf2..487ba86 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/big-numbers/examples/create_instances.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 a172df5..8ff4016 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/big-numbers/examples/math_operations.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 bbb606b..5f99df3 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/big-numbers/examples/math_utilities.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 9ba1879..4162378 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/comparison/examples/compare_new_heads.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 6fd83d4..4ea1a1d 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/comparison/examples/compare_pending_txs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 d73a109..a30d455 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/deploy_from_artifact.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 87b2fce..8dbb511 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/deploy_from_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 b84e8bd..85f1ff9 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 0cd89d1..c1d1bc4 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/interact_with_abi.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 6e4a8b2..a90f46d 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/interact_with_contract_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 59d25d8..6233e92 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/jsonrpc_error_decoding.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 453d2b7..376648a 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/unknown_return_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/contracts/examples/unknown_return_types.rs). diff --git a/src/examples/fillers/gas_filler.md b/src/examples/fillers/gas_filler.md index 37fd086..befe609 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/fillers/examples/gas_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/fillers/examples/gas_filler.rs). diff --git a/src/examples/fillers/nonce_filler.md b/src/examples/fillers/nonce_filler.md index c0d872b..0d662f4 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/fillers/examples/nonce_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/fillers/examples/nonce_filler.rs). diff --git a/src/examples/fillers/recommended_fillers.md b/src/examples/fillers/recommended_fillers.md index df37b22..f408d10 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/fillers/examples/recommended_fillers.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/fillers/examples/recommended_fillers.rs). diff --git a/src/examples/fillers/wallet_filler.md b/src/examples/fillers/wallet_filler.md index 2f0abac..6bb8517 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/fillers/examples/wallet_filler.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/fillers/examples/wallet_filler.rs). diff --git a/src/examples/layers/README.md b/src/examples/layers/README.md index a64df9b..27307f2 100644 --- a/src/examples/layers/README.md +++ b/src/examples/layers/README.md @@ -1,4 +1,5 @@ ## Layers +- [Hyper layer transport](hyper_http_layer.md) - [Request / response logging layer](logging_layer.md) -- [Retry-backoff layer](retry_layer.md) \ No newline at end of file +- [Retry-backoff layer](retry_layer.md) diff --git a/src/examples/layers/hyper_http_layer.md b/src/examples/layers/hyper_http_layer.md new file mode 100644 index 0000000..59e6f31 --- /dev/null +++ b/src/examples/layers/hyper_http_layer.md @@ -0,0 +1,19 @@ + + + + + +## Example: `hyper_http_layer` + +### 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 hyper_http_layer` + +```rust,ignore +{{#include ../../../lib/examples/examples/layers/examples/hyper_http_layer.rs}} +``` + +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/layers/examples/hyper_http_layer.rs). diff --git a/src/examples/layers/logging_layer.md b/src/examples/layers/logging_layer.md index 7e52be0..2f910d2 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/layers/examples/logging_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/layers/examples/logging_layer.rs). diff --git a/src/examples/layers/retry_layer.md b/src/examples/layers/retry_layer.md index 26aa3e9..0232c68 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/layers/examples/retry_layer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 47737f7..16f5383 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_deploy_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 312d69f..316cc8c 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_fork_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 6c34b74..a145eeb 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_fork_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 090e09d..0b61a41 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 6f44133..73b1584 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_local_provider.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 ccf80c7..b5700c5 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/anvil_set_storage_at.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 f7ff4c4..d98c16a 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/geth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 07d4128..2da0215 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/node-bindings/examples/reth_local_instance.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 f0117d8..7d186b8 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/primitives/examples/bytes_and_address_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 e9623cd..5e3c272 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/primitives/examples/hashing_functions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/primitives/examples/hashing_functions.rs). diff --git a/src/examples/providers/builder.md b/src/examples/providers/builder.md index af39832..3a01fe6 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/builder.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/builder.rs). diff --git a/src/examples/providers/builtin.md b/src/examples/providers/builtin.md index 17abd89..dd91dcc 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/builtin.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/builtin.rs). diff --git a/src/examples/providers/http.md b/src/examples/providers/http.md index 2f09916..bd1246c 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/http.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/http.rs). diff --git a/src/examples/providers/http_with_auth.md b/src/examples/providers/http_with_auth.md index 4c6fa58..5fea0bf 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/http_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/http_with_auth.rs). diff --git a/src/examples/providers/ipc.md b/src/examples/providers/ipc.md index e3dc98a..d9223f4 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/ipc.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/ipc.rs). diff --git a/src/examples/providers/ws.md b/src/examples/providers/ws.md index bfbe8ff..85d7165 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/ws.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/providers/examples/ws.rs). diff --git a/src/examples/providers/ws_with_auth.md b/src/examples/providers/ws_with_auth.md index 725615b..14d2cf7 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/providers/examples/ws_with_auth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 dbe6a3f..388cd36 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/queries/examples/query_contract_storage.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 f2ce7c4..ce5f150 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/queries/examples/query_deployed_bytecode.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/queries/examples/query_deployed_bytecode.rs). diff --git a/src/examples/queries/query_logs.md b/src/examples/queries/query_logs.md index 14132e0..fb2f29a 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/queries/examples/query_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/queries/examples/query_logs.rs). diff --git a/src/examples/sol-macro/contract.md b/src/examples/sol-macro/contract.md index b84e8bd..85f1ff9 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/contracts/examples/deploy_from_contract.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 ebe9dc2..26aedd0 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/sol-macro/examples/decode_returns.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 244c24c..ff9c7c7 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/sol-macro/examples/events_errors.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 b61b6f0..146c569 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/sol-macro/examples/structs_enums.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 818c34e..0131f78 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/sol-macro/examples/user_defined_types.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 a9e04e4..771b0df 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/event_multiplexer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/subscriptions/examples/event_multiplexer.rs). diff --git a/src/examples/subscriptions/poll_logs.md b/src/examples/subscriptions/poll_logs.md index 3172da5..a1c3f69 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/poll_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 e9d55b3..ad6d347 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/subscribe_all_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/subscriptions/examples/subscribe_all_logs.rs). diff --git a/src/examples/subscriptions/subscribe_blocks.md b/src/examples/subscriptions/subscribe_blocks.md index 26ae681..fd4ed24 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/subscribe_blocks.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/subscriptions/examples/subscribe_blocks.rs). diff --git a/src/examples/subscriptions/subscribe_logs.md b/src/examples/subscriptions/subscribe_logs.md index 069c5cd..119f698 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/subscribe_logs.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 91e67aa..23bfdc4 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/subscriptions/examples/subscribe_pending_transactions.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/subscriptions/examples/subscribe_pending_transactions.rs). diff --git a/src/examples/transactions/decode_input.md b/src/examples/transactions/decode_input.md index be86968..f48fad6 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/decode_input.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 eaa0b7f..3c5f467 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/encode_decode_eip1559.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 dddcc86..00cd9cc 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/gas_price_usd.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 905e15a..79da64b 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_eip1559_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 3efafaa..008a7bb 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_eip4844_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 450c101..510ba3e 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_eip7702_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 e91c99f..770b993 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_legacy_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 eef0903..28a2dad 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_private_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 2f7ea4d..bfcfaed 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/send_raw_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/transactions/examples/send_raw_transaction.rs). diff --git a/src/examples/transactions/trace_call.md b/src/examples/transactions/trace_call.md index 3f37fba..87d1979 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/trace_call.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/transactions/examples/trace_call.rs). diff --git a/src/examples/transactions/trace_transaction.md b/src/examples/transactions/trace_transaction.md index 29a00ed..98ab294 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/trace_transaction.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/transactions/examples/trace_transaction.rs). diff --git a/src/examples/transactions/transfer_erc20.md b/src/examples/transactions/transfer_erc20.md index 038003c..9dc0162 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/transfer_erc20.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/transactions/examples/transfer_erc20.rs). diff --git a/src/examples/transactions/transfer_eth.md b/src/examples/transactions/transfer_eth.md index d716df6..7216f38 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/transfer_eth.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 4685dee..9f7439b 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/transactions/examples/with_access_list.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/transactions/examples/with_access_list.rs). diff --git a/src/examples/wallets/aws_signer.md b/src/examples/wallets/aws_signer.md index e3f1ba6..63b4d11 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/aws_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/aws_signer.rs). diff --git a/src/examples/wallets/create_keystore.md b/src/examples/wallets/create_keystore.md index 6a04821..7f6e0ce 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/create_keystore.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/create_keystore.rs). diff --git a/src/examples/wallets/keystore_signer.md b/src/examples/wallets/keystore_signer.md index 90326f0..04e10be 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/keystore_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/keystore_signer.rs). diff --git a/src/examples/wallets/ledger_signer.md b/src/examples/wallets/ledger_signer.md index 7150b76..43e71d2 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/ledger_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/ledger_signer.rs). diff --git a/src/examples/wallets/mnemonic_signer.md b/src/examples/wallets/mnemonic_signer.md index 2f43448..75410a2 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/mnemonic_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 82f2905..0144892 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/private_key_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/private_key_signer.rs). diff --git a/src/examples/wallets/sign_message.md b/src/examples/wallets/sign_message.md index a4d8dd7..5484d50 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/sign_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/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 aef6e9c..62573c4 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/sign_permit_hash.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/sign_permit_hash.rs). diff --git a/src/examples/wallets/trezor_signer.md b/src/examples/wallets/trezor_signer.md index eef1284..a27ae5a 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/trezor_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/trezor_signer.rs). diff --git a/src/examples/wallets/verify_message.md b/src/examples/wallets/verify_message.md index 6802584..65bf6da 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/verify_message.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/verify_message.rs). diff --git a/src/examples/wallets/yubi_signer.md b/src/examples/wallets/yubi_signer.md index 2dad2bc..1f6d534 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/bc7aa07c3267fda3d4e9c56dca38572ef1be59dd/examples/wallets/examples/yubi_signer.rs). +Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef/examples/wallets/examples/yubi_signer.rs). diff --git a/src/templates/layers/README.md b/src/templates/layers/README.md index a64df9b..27307f2 100644 --- a/src/templates/layers/README.md +++ b/src/templates/layers/README.md @@ -1,4 +1,5 @@ ## Layers +- [Hyper layer transport](hyper_http_layer.md) - [Request / response logging layer](logging_layer.md) -- [Retry-backoff layer](retry_layer.md) \ No newline at end of file +- [Retry-backoff layer](retry_layer.md)