From 1969ec6ba37178caf61a865ca25a259e968282cc Mon Sep 17 00:00:00 2001 From: gretzke Date: Tue, 4 Feb 2025 16:27:46 +0100 Subject: [PATCH 1/4] Create package.json --- package.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 000000000..786c6d157 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "@uniswap/v4-core", + "version": "1.0.0", + "description": "🦄 Core smart contracts of Uniswap v4", + "repository": { + "type": "git", + "url": "git+https://github.com/Uniswap/v4-core.git" + }, + "license": "BUSL-1.1", + "bugs": { + "url": "https://github.com/Uniswap/v4-core/issues" + }, + "homepage": "https://github.com/Uniswap/v4-core#readme", + "publishConfig": { + "access": "public", + "provenance": true + } +} From 03339958297450b37c79826dbb6edfb38bf7e331 Mon Sep 17 00:00:00 2001 From: Daniel Gretzke Date: Tue, 4 Feb 2025 16:46:09 +0100 Subject: [PATCH 2/4] Add bug bounty URL Co-authored-by: Alice <34962750+hensha256@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 786c6d157..7d32a95c1 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "license": "BUSL-1.1", "bugs": { - "url": "https://github.com/Uniswap/v4-core/issues" + "url": "https://uniswap.org/bug-bounty" }, "homepage": "https://github.com/Uniswap/v4-core#readme", "publishConfig": { From 9954701e180174796df08a6ec2b849235c359a43 Mon Sep 17 00:00:00 2001 From: Daniel Gretzke Date: Tue, 4 Feb 2025 16:46:31 +0100 Subject: [PATCH 3/4] Add keywords Co-authored-by: Alice <34962750+hensha256@users.noreply.github.com> --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 7d32a95c1..a98025f0c 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,11 @@ "url": "git+https://github.com/Uniswap/v4-core.git" }, "license": "BUSL-1.1", + "keywords": [ + "uniswap", + "core", + "v4" + ], "bugs": { "url": "https://uniswap.org/bug-bounty" }, From 8765d415507c19c5565337d5dd1dbe9e770babe6 Mon Sep 17 00:00:00 2001 From: gretzke Date: Tue, 4 Feb 2025 19:21:26 +0100 Subject: [PATCH 4/4] run CI on stable foundry --- .github/workflows/lint.yml | 2 +- .github/workflows/tests-merge.yml | 2 +- .github/workflows/tests-pr.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 049508100..6e6ffb68e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: - version: nightly + version: stable - name: Lint run: forge fmt --check diff --git a/.github/workflows/tests-merge.yml b/.github/workflows/tests-merge.yml index 13da03c2b..b6def8a74 100644 --- a/.github/workflows/tests-merge.yml +++ b/.github/workflows/tests-merge.yml @@ -18,7 +18,7 @@ jobs: - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: - version: nightly + version: stable - name: Build run: forge build diff --git a/.github/workflows/tests-pr.yml b/.github/workflows/tests-pr.yml index ea424b0dd..5efd814b3 100644 --- a/.github/workflows/tests-pr.yml +++ b/.github/workflows/tests-pr.yml @@ -20,7 +20,7 @@ jobs: - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: - version: nightly + version: stable - name: Build run: forge build