From ca06c8f4b06fc596ddf6b8a39359703dc02187e3 Mon Sep 17 00:00:00 2001 From: Legion's <64915515+Dargon789@users.noreply.github.com> Date: Sat, 30 Mar 2024 14:25:04 +0700 Subject: [PATCH 01/10] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000000..034e848032 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From 3af5a887a6727387ab08ddf05681ed1af44a2fc2 Mon Sep 17 00:00:00 2001 From: Legion's <64915515+Dargon789@users.noreply.github.com> Date: Sat, 13 Apr 2024 00:34:46 +0700 Subject: [PATCH 02/10] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..676233afaf --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run build + displayName: 'npm install and build' From 1275488cc4694f82c5633237cbc890d5ebac0027 Mon Sep 17 00:00:00 2001 From: Legion's <64915515+Dargon789@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:56:12 +0700 Subject: [PATCH 03/10] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000000..c9903e895b --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +wagmi-project-two.vercel.app \ No newline at end of file From 6466316b23acdb5b14276cb0c910986537e7f15e Mon Sep 17 00:00:00 2001 From: Corban Riley Date: Thu, 12 Jun 2025 14:20:54 -0400 Subject: [PATCH 04/10] Updating DefaultGuest address --- packages/wallet/primitives/src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wallet/primitives/src/constants.ts b/packages/wallet/primitives/src/constants.ts index 1920bb0126..6cb7aab9b4 100644 --- a/packages/wallet/primitives/src/constants.ts +++ b/packages/wallet/primitives/src/constants.ts @@ -1,6 +1,6 @@ import { Abi, Address } from 'ox' -export const DefaultGuest: Address.Address = '0x75e19AA6241D84C290658131857824B4eeF10dfF' +export const DefaultGuest: Address.Address = '0xf3c7175460BeD3340A1c4dc700fD6C8Cd3F56250' // ERC1271 export const IS_VALID_SIGNATURE = Abi.from([ From 9ed93e84fa2c0fa03a35f4f479a72ea9c5bff0d2 Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Fri, 29 Aug 2025 23:40:31 +0700 Subject: [PATCH 05/10] Update tests.yml (#51) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 62fc357db0..f7e20a2032 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,17 +3,30 @@ on: [push] name: tests jobs: - install: - name: Install dependencies + test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/install-dependencies + # ... (other steps) + - name: Install dependencies + run: pnpm install + + - name: Start local blockchain node + run: npx hardhat node & + # Or use npx ganache-cli --port 8545 & + + - name: Wait for node + run: | + for i in {1..10}; do + nc -z localhost 8545 && break + sleep 1 + done + + - name: Run tests + run: pnpm run test build: name: Run build runs-on: ubuntu-latest - needs: [install] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/install-dependencies @@ -23,7 +36,6 @@ jobs: tests: name: Run all tests runs-on: ubuntu-latest - needs: [install] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/install-dependencies From 27d3c49a3c40f2334a5ea9b78f3ff812ccd49fdb Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Sat, 30 Aug 2025 02:30:39 +0700 Subject: [PATCH 06/10] Update tests.yml (#52) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f7e20a2032..98f00e4a17 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,23 +6,26 @@ jobs: test: runs-on: ubuntu-latest steps: - # ... (other steps) - - name: Install dependencies - run: pnpm install + # ... other steps ... + - name: Install pnpm + run: npm install -g pnpm - - name: Start local blockchain node - run: npx hardhat node & - # Or use npx ganache-cli --port 8545 & + - name: Install dependencies + run: pnpm install - - name: Wait for node - run: | + - name: Start local blockchain node + run: npx hardhat node & + # Or use npx ganache-cli --port 8545 & + + - name: Wait for node + run: | for i in {1..10}; do nc -z localhost 8545 && break sleep 1 done - - name: Run tests - run: pnpm run test + - name: Run tests + run: pnpm run test build: name: Run build From 16098929d051b1c6e51377aca6b835bb8544c417 Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Sat, 30 Aug 2025 06:25:54 +0700 Subject: [PATCH 07/10] Update tests.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 98f00e4a17..b7f3c321e5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,7 @@ jobs: - name: Install dependencies run: pnpm install + working-directory: ./app - name: Start local blockchain node run: npx hardhat node & From 2a17d6e7cd915d6c3f24e6f4a0f55d9d2b02de9e Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Mon, 8 Sep 2025 15:41:31 +0700 Subject: [PATCH 08/10] Update tests.yml (#55) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b7f3c321e5..81a5ceabe3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,18 +1,17 @@ on: [push] name: tests - jobs: test: runs-on: ubuntu-latest steps: - # ... other steps ... + # ... other steps ... - name: Install pnpm run: npm install -g pnpm - name: Install dependencies run: pnpm install - working-directory: ./app + # Remove: working-directory: ./app - name: Start local blockchain node run: npx hardhat node & From c18059c521f14ad44ff5e556eacf5114413af2a3 Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Wed, 17 Sep 2025 21:33:30 +0700 Subject: [PATCH 09/10] Update tests.yml (#56) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 81a5ceabe3..33d5a44b04 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,11 +11,12 @@ jobs: - name: Install dependencies run: pnpm install - # Remove: working-directory: ./app + working-directory: ./correct-path-to-package-json - name: Start local blockchain node - run: npx hardhat node & - # Or use npx ganache-cli --port 8545 & + run: # Fork latest mainnet state + anvil --fork-url https://reth-ethereum.ithaca.xyz/rpc + # Or use npx ganache-cli --port 8545 & - name: Wait for node run: | From 778ab8e388429c892fb0a81f4d9bd9dc73209f45 Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Wed, 17 Sep 2025 21:43:44 +0700 Subject: [PATCH 10/10] Update tests.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 33d5a44b04..0a5c4e0cc6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: steps: # ... other steps ... - name: Install pnpm - run: npm install -g pnpm + run: npm install -g corepack & corepack enable & corepack install - name: Install dependencies run: pnpm install @@ -16,7 +16,7 @@ jobs: - name: Start local blockchain node run: # Fork latest mainnet state anvil --fork-url https://reth-ethereum.ithaca.xyz/rpc - # Or use npx ganache-cli --port 8545 & + # https://github.com/foundry-rs/foundry - name: Wait for node run: |