From 20b2b0dc38399c3fac27f4f5e9114378e90df88a Mon Sep 17 00:00:00 2001 From: sudo rm -rf --no-preserve-root / Date: Wed, 18 Dec 2024 17:57:47 +0100 Subject: [PATCH 1/2] Update README.md Signed-off-by: sudo rm -rf --no-preserve-root / --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f67038..f84ccd0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Factory smart contract to make easier and safer usage of the [`CREATE`](https://www.evm.codes/#f0?fork=shanghai) and [`CREATE2`](https://www.evm.codes/#f5?fork=shanghai) EVM opcodes as well as of [`CREATE3`](https://github.com/ethereum/EIPs/pull/3171)-based (i.e. without an initcode factor) contract creations. - +yo > [!NOTE] > The [`CreateX`](./src/CreateX.sol) contract should be considered as maximally extensible. Be encouraged to build on top of it! The Solidity-based interface can be found [here](./src/ICreateX.sol). From 56bbab7d1a2e2a4c3f69707d6f2043077749175c Mon Sep 17 00:00:00 2001 From: sudo rm -rf --no-preserve-root / Date: Wed, 18 Dec 2024 18:03:12 +0100 Subject: [PATCH 2/2] Update test-createx.yml Signed-off-by: sudo rm -rf --no-preserve-root / --- .github/workflows/test-createx.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-createx.yml b/.github/workflows/test-createx.yml index d5da19a..03e6ec0 100644 --- a/.github/workflows/test-createx.yml +++ b/.github/workflows/test-createx.yml @@ -159,7 +159,7 @@ jobs: - name: Post coverage report # See https://github.com/orgs/community/discussions/26829#discussioncomment-3253575. - if: ${{ (github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request') || (github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target') }} + if: ${{ (github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request_target') }} uses: romeovs/lcov-reporter-action@v0.4.0 with: title: "`CreateX` Test Coverage Report"