Skip to content

Commit

Permalink
apply update in example, bump to 0.2.1 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks authored Aug 2, 2024
1 parent 03aa9e3 commit cf69103
Show file tree
Hide file tree
Showing 73 changed files with 201 additions and 135 deletions.
3 changes: 3 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@
- [Create keystore](./examples/wallets/create_keystore.md)
- [Advanced](./examples/advanced/README.md)
- [Using `AnyNetwork`](./examples/advanced/any_network.md)
- [Decoding with `json_abi`](./examples/advanced/decoding_json_abi.md)
- [Encoding with `dyn_abi`](./examples/advanced/encoding_dyn_abi.md)
- [Static encoding with `sol!`](./examples/advanced/encoding_sol_static.md)
<!-- MANUALLY MAINTAINED -->

# Appendix
Expand Down
5 changes: 4 additions & 1 deletion src/examples/advanced/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Advanced

- [Using `AnyNetwork`](any_network.md)
- [Using `AnyNetwork`](any_network.md)
- [Decoding with `json_abi`](decoding_json_abi.md)
- [Encoding with `dyn_abi`](encoding_dyn_abi.md)
- [Static encoding with `sol!`](encoding_sol_static.md)
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/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

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

## Example: `decoding_json_abi`

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

```rust,ignore
{{#include ../../../lib/examples/examples/advanced/examples/decoding_json_abi.rs}}
```

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

## Example: `encoding_dyn_abi`

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

```rust,ignore
{{#include ../../../lib/examples/examples/advanced/examples/encoding_dyn_abi.rs}}
```

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

## Example: `encoding_sol_static`

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

```rust,ignore
{{#include ../../../lib/examples/examples/advanced/examples/encoding_sol_static.rs}}
```

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

## Example: `deploy_contract_anvil`

Expand All @@ -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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/anvil/examples/deploy_contract_anvil.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/anvil/examples/deploy_contract_anvil.rs).
4 changes: 2 additions & 2 deletions src/examples/anvil/fork_anvil.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/anvil/fork_anvil.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

## Example: `fork_anvil`

Expand All @@ -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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/anvil/examples/fork_anvil.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/anvil/examples/fork_anvil.rs).
4 changes: 2 additions & 2 deletions src/examples/anvil/local_anvil.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/anvil/local_anvil.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

## Example: `local_anvil`

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

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

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

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

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

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

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

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

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

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

## 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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/contracts/examples/interact_with_contract_instance.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/contracts/examples/interact_with_contract_instance.rs).
4 changes: 2 additions & 2 deletions src/examples/contracts/unknown_return_types.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/unknown_return_types.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

## Example: `unknown_return_types`

Expand All @@ -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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/contracts/examples/unknown_return_types.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/contracts/examples/unknown_return_types.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/gas_filler.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/fillers/gas_filler.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

## Example: `gas_filler`

Expand All @@ -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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/fillers/examples/gas_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/fillers/examples/gas_filler.rs).
4 changes: 2 additions & 2 deletions src/examples/fillers/nonce_filler.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/fillers/nonce_filler.md -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/6ac6ececdbfb33142c128f21df07cd0e92a96620 -->
<!-- LATEST UPDATE: https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626 -->

## Example: `nonce_filler`

Expand All @@ -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/6ac6ececdbfb33142c128f21df07cd0e92a96620/examples/fillers/examples/nonce_filler.rs).
Find the source code on Github [here](https://github.com/alloy-rs/examples/tree/e04031989826a4dfcb7a677a7c6b933534c76626/examples/fillers/examples/nonce_filler.rs).
Loading

0 comments on commit cf69103

Please sign in to comment.