Skip to content

Commit

Permalink
Merge branch 'main' into remove-function-consructor-artifacts-from-code
Browse files Browse the repository at this point in the history
  • Loading branch information
bidzyyys authored Aug 19, 2024
2 parents 5f4ebd0 + f68c8c0 commit dbc0268
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/tokens.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ Even though the concept of a token is simple, they have a variety of complexitie
You've probably heard of the ERC-20 or ERC-721 token standards, and that's why you're here. Head to our specialized guides to learn more about these:

* xref:erc20.adoc[ERC-20]: the most widespread token standard for fungible assets, albeit somewhat limited by its simplicity.
* xref:erc721.adoc[ERC-721]: the de-facto solution for non-fungible tokens, often used for collectibles and games.
* xref:erc721.adoc[ERC-721]: the de-facto solution for non-fungible tokens, often used for collectibles and games.
1 change: 0 additions & 1 deletion examples/erc721-consecutive/tests/erc721-consecutive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use alloy::{
primitives::{Address, U256},
sol,
sol_types::SolConstructor,
};
use alloy_primitives::uint;
use e2e::{receipt, watch, Account, EventExt, ReceiptExt, Revert};
Expand Down
3 changes: 0 additions & 3 deletions examples/erc721-metadata/tests/erc721.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@

use abi::Erc721;
use alloy::{
network::ReceiptResponse,
primitives::{Address, U256},
sol,
sol_types::SolConstructor,
};
use e2e::{receipt, watch, Account, EventExt, ReceiptExt, Revert};
use eyre::ContextCompat;

use crate::Erc721MetadataExample::constructorCall;

Expand Down
2 changes: 1 addition & 1 deletion lib/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async fn foo(alice: Account, bob: Account) -> eyre::Result<()> {
### Contracts

We use `koba` to deploy contracts to the blockchain. This is not required, a
separate mechanism for deployment can be used. `Deployer` type exposes `Deployer::deploy`
separate mechanism for deployment can be used. `Deployer` type exposes `Deployer::deploy`
method that abstracts away the mechanism used in our workflow.

Given a Solidity contract with a constructor at path `src/constructor.sol` like
Expand Down
2 changes: 1 addition & 1 deletion scripts/nitro-testnode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ then
git clone --recurse-submodules https://github.com/OffchainLabs/nitro-testnode.git
cd ./nitro-testnode || exit
# `release` branch.
git checkout 7e490fdf8175da1edddd1855ea123499a6afec76 || exit
git checkout 8cb6b84e31909157d431e7e4af9fb83799443e00 || exit

./test-node.bash --no-run --init --no-tokenbridge || exit
fi
Expand Down

0 comments on commit dbc0268

Please sign in to comment.