Skip to content

Commit

Permalink
chore: bump to alloy 0.3.6 (#51)
Browse files Browse the repository at this point in the history
* update anvil -> node_bindings

* fix templates
  • Loading branch information
zerosnacks authored Sep 19, 2024
1 parent ac31d49 commit 5243419
Show file tree
Hide file tree
Showing 87 changed files with 316 additions and 226 deletions.
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ A walkthrough of building with Alloy.

Highlighted features of Alloy.

### [Examples](./examples/anvil/deploy_contract_anvil.md)
### [Examples](./examples/big-numbers/comparison_equivalence.md)

This section will give you practical examples of how Alloy can be used in your codebase.

Expand Down
22 changes: 13 additions & 9 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@

<!-- MANUALLY MAINTAINED -->
<!-- TO UPDATE EXAMPLES RUN: `./scripts/update.sh` AND MAKE MODIFICATIONS IF NECESSARY -->
- [Anvil](./examples/anvil/README.md)
- [Deploy contract](./examples/anvil/deploy_contract_anvil.md)
- [Fork](./examples/anvil/fork_anvil.md)
- [Local](./examples/anvil/local_anvil.md)
- [Big numbers](./examples/big-numbers/README.md)
- [Comparison and equivalence](./examples/big-numbers/comparison_equivalence.md)
- [Conversion](./examples/big-numbers/conversion.md)
Expand All @@ -69,6 +65,14 @@
- [Wallet management filler](./examples/fillers/wallet_filler.md)
- [Layers](./examples/layers/README.md)
- [Request / response logging layer](./examples/layers/logging_layer.md)
- [Node bindings](./examples/node-bindings/README.md)
- [Deploy contract on local Anvil instance](./examples/node-bindings/anvil_deploy_contract.md)
- [Fork instance on Anvil](./examples/node-bindings/anvil_fork_instance.md)
- [Fork provider on Anvil](./examples/node-bindings/anvil_fork_provider.md)
- [Local instance on Anvil](./examples/node-bindings/anvil_local_instance.md)
- [Local provider on Anvil](./examples/node-bindings/anvil_local_provider.md)
- [Local provider on Geth](./examples/node-bindings/geth_local_instance.md)
- [Local provider on Reth](./examples/node-bindings/reth_local_instance.md)
- [Primitives](./examples/primitives/README.md)
- [Bytes and address types](./examples/primitives/bytes_and_address_types.md)
- [Hashing functions](./examples/primitives/hashing_functions.md)
Expand Down Expand Up @@ -100,17 +104,17 @@
- [Decode input](./examples/transactions/decode_input.md)
- [Encode and decode EIP-1559 transaction](./examples/transactions/encode_decode_eip1559.md)
- [Get gas price in USD](./examples/transactions/gas_price_usd.md)
- [Trace call](./examples/transactions/trace_call.md)
- [Trace transaction](./examples/transactions/trace_transaction.md)
- [Transfer ERC20 token](./examples/transactions/transfer_erc20.md)
- [Transfer ETH](./examples/transactions/transfer_eth.md)
- [Sign and send a raw transaction](./examples/transactions/send_raw_transaction.md)
- [Send transaction with access list](./examples/transactions/with_access_list.md)
- [Send EIP-1559 transaction](./examples/transactions/send_eip1559_transaction.md)
- [Send legacy transaction](./examples/transactions/send_legacy_transaction.md)
- [Send EIP-4844 transaction](./examples/transactions/send_eip4844_transaction.md)
- [Send EIP-7702 transaction](./examples/transactions/send_eip7702_transaction.md)
- [Send legacy transaction](./examples/transactions/send_legacy_transaction.md)
- [Send private transaction using Flashbots Protect](./examples/transactions/send_private_transaction.md)
- [Trace call](./examples/transactions/trace_call.md)
- [Trace transaction](./examples/transactions/trace_transaction.md)
- [Transfer ERC20 token](./examples/transactions/transfer_erc20.md)
- [Transfer ETH](./examples/transactions/transfer_eth.md)
- [Wallets](./examples/wallets/README.md)
- [AWS signer](./examples/wallets/aws_signer.md)
- [Ledger signer](./examples/wallets/ledger_signer.md)
Expand Down
4 changes: 2 additions & 2 deletions src/examples/advanced/any_network.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/advanced/any_network.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `any_network`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/advanced/examples/any_network.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/any_network.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/decoding_json_abi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/advanced/decoding_json_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `decoding_json_abi`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/advanced/examples/decoding_json_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/decoding_json_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/encoding_dyn_abi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/advanced/encoding_dyn_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `encoding_dyn_abi`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/advanced/examples/encoding_dyn_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/encoding_dyn_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/advanced/encoding_sol_static.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/advanced/encoding_sol_static.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `encoding_sol_static`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/advanced/examples/encoding_sol_static.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/advanced/examples/encoding_sol_static.rs).
5 changes: 0 additions & 5 deletions src/examples/anvil/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions src/examples/anvil/deploy_contract_anvil.md

This file was deleted.

19 changes: 0 additions & 19 deletions src/examples/anvil/fork_anvil.md

This file was deleted.

19 changes: 0 additions & 19 deletions src/examples/anvil/local_anvil.md

This file was deleted.

4 changes: 2 additions & 2 deletions src/examples/big-numbers/comparison_equivalence.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/big-numbers/comparison_equivalence.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `comparison_equivalence`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/comparison_equivalence.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/comparison_equivalence.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/conversion.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/big-numbers/conversion.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `conversion`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/conversion.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/conversion.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/create_instances.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/big-numbers/create_instances.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `create_instances`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/create_instances.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/create_instances.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/math_operations.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/big-numbers/math_operations.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `math_operations`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/math_operations.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/math_operations.rs).
4 changes: 2 additions & 2 deletions src/examples/big-numbers/math_utilities.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/big-numbers/math_utilities.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `math_utilities`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/big-numbers/examples/math_utilities.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/big-numbers/examples/math_utilities.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_artifact.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/contracts/deploy_from_artifact.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `deploy_from_artifact`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/deploy_from_artifact.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_artifact.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_bytecode.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/contracts/deploy_from_bytecode.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `deploy_from_bytecode`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/deploy_from_bytecode.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_bytecode.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/deploy_from_contract.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/contracts/deploy_from_contract.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `deploy_from_contract`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/deploy_from_contract.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/deploy_from_contract.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/interact_with_abi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/contracts/interact_with_abi.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `interact_with_abi`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/interact_with_abi.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/interact_with_abi.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/interact_with_contract_instance.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- DO NOT EDIT THIS FILE. IT IS GENERATED BY RUNNING `./scripts/update.sh` -->
<!-- ANY CHANGES MADE TO THIS FILE WILL BE OVERWRITTEN -->
<!-- EDIT OR CREATE THIS TEMPLATE INSTEAD: ./src/templates/contracts/interact_with_contract_instance.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa -->

## Example: `interact_with_contract_instance`

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

Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/330d1e12b360045be20c52a3cedff75eb4bd4c45/examples/contracts/examples/interact_with_contract_instance.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/22caff11b2131824130f006a856127df99cd12fa/examples/contracts/examples/interact_with_contract_instance.rs).
Loading

0 comments on commit 5243419

Please sign in to comment.