This repository was archived by the owner on Mar 27, 2026. It is now read-only.
Master on main#57
Open
Dargon789 wants to merge 5 commits into
Open
Conversation
* Create config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> * Update config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Contributor
|
@Dargon789 is attempting to deploy a commit to the Consensys Team on Vercel. A member of the Team first needs to authorize it. |
Deepinside-web
approved these changes
Feb 13, 2026
| say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow. | ||
| # Inside the workflow, you define the jobs you want to run. | ||
| jobs: | ||
| - say-hello |
There was a problem hiding this comment.
Boilerplate CI config does nothing for the project
Low Severity
This .circleci/config.yml is a verbatim auto-generated CircleCI template whose only step is echo Hello, World!. The repository contains multiple real projects with build and lint scripts, but this CI config doesn't invoke any of them. It appears to be default scaffolding that was unintentionally included in the merge to main.
* Create config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> * Update config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> * fix: quickstarts/wagmi/package.json & quickstarts/wagmi/pnpm-lock.yaml to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Circleci project setup (#16) * Add .circleci/config.yml * Add metaMaskWallet to rainbowkit (#45) * Add metamask connectkit example (#51) * Bump Next.js Version (#56) * Update quickstarts/connectkit/src/App.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update quickstarts/connectkit/src/App.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: Mohammad Shahbaz Alam <shahbaz17@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * fix: quickstarts/next/package.json & quickstarts/next/pnpm-lock.yaml to reduce vulnerabilities (#15) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: quickstarts/wagmi/package.json & quickstarts/wagmi/pnpm-lock.yaml to reduce vulnerabilities (#21) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Feat/start (#47) * quickstart example created * now using metamask connector * updating packages --------- Co-authored-by: Alejandro <smarketing.cuz@gmail.com> * fix: upgrade @tanstack/react-query from 5.85.5 to 5.89.0 (#9) Snyk has created this PR to upgrade @tanstack/react-query from 5.85.5 to 5.89.0. See this package in pnpm: @tanstack/react-query See this project in Snyk: https://app.snyk.io/org/dargon789/project/cad0800a-fed9-4d81-a11e-49277bc2d489?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/lib/utils.ts Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/app/layout.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/components/Hero.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Add Vercel Web Analytics to Next.js (#52) This is an automated pull request generated by Vercel to help install [Web Analytics](https://vercel.com/docs/analytics) in your application. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Add Vercel Web Analytics to Next.js (#53) Implemented Vercel Web Analytics for Next.js App Router project Successfully completed the following: 1. **Installed @vercel/analytics package** - Used npm to install @vercel/analytics version 1.6.1 - Package added to dependencies in package.json - Created package-lock.json for dependency management 2. **Configured Analytics in App Router layout** - Modified: examples/quickstart/app/layout.tsx - Added import: `import { Analytics } from "@vercel/analytics/next";` - Placed <Analytics /> component inside the <body> tag, after the main content - Follows Next.js App Router best practices for analytics integration 3. **Verification completed** - Build: ✓ Successfully compiled (npm run build) - Linter: ✓ No ESLint warnings or errors (npm run lint) - Type checking: ✓ Passed during build process Implementation details: - The Analytics component is positioned at the end of the body tag, which is the recommended placement for optimal page load performance - Preserved all existing code structure and functionality - The implementation follows Vercel's official documentation for Next.js App Router projects - No breaking changes introduced to existing components or features Files modified: - examples/quickstart/app/layout.tsx (added Analytics import and component) - examples/quickstart/package.json (added @vercel/analytics dependency) - examples/quickstart/package-lock.json (new file - dependency lock file) Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Mark repository as deprecated and update links (MetaMask#71) * Revert "Fix React Server Components CVE vulnerabilities" (#42) * Fix React Server Components CVE vulnerabilities (#40) Updated dependencies to fix Next.js and React CVE vulnerabilities. The fix-react2shell-next tool automatically updated the following packages to their secure versions: - next - react-server-dom-webpack - react-server-dom-parcel - react-server-dom-turbopack All package.json files have been scanned and vulnerable versions have been patched to the correct fixed versions based on the official React advisory. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Revert "Fix React Server Components CVE vulnerabilities (#40)" This reverts commit e568ee3. --------- Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Vercel/react server components CVE vu i5sm2v (#57) * Mark repository as deprecated and update links (MetaMask#71) * fix react (#50) * Create config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> * Update config.yml Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> * fix: quickstarts/wagmi/package.json & quickstarts/wagmi/pnpm-lock.yaml to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Circleci project setup (#16) * Add .circleci/config.yml * Add metaMaskWallet to rainbowkit (#45) * Add metamask connectkit example (#51) * Bump Next.js Version (#56) * Update quickstarts/connectkit/src/App.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update quickstarts/connectkit/src/App.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: Mohammad Shahbaz Alam <shahbaz17@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * fix: quickstarts/next/package.json & quickstarts/next/pnpm-lock.yaml to reduce vulnerabilities (#15) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: quickstarts/wagmi/package.json & quickstarts/wagmi/pnpm-lock.yaml to reduce vulnerabilities (#21) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Feat/start (#47) * quickstart example created * now using metamask connector * updating packages --------- Co-authored-by: Alejandro <smarketing.cuz@gmail.com> * fix: upgrade @tanstack/react-query from 5.85.5 to 5.89.0 (#9) Snyk has created this PR to upgrade @tanstack/react-query from 5.85.5 to 5.89.0. See this package in pnpm: @tanstack/react-query See this project in Snyk: https://app.snyk.io/org/dargon789/project/cad0800a-fed9-4d81-a11e-49277bc2d489?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/lib/utils.ts Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/app/layout.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/components/Hero.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Add Vercel Web Analytics to Next.js (#52) This is an automated pull request generated by Vercel to help install [Web Analytics](https://vercel.com/docs/analytics) in your application. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Add Vercel Web Analytics to Next.js (#53) Implemented Vercel Web Analytics for Next.js App Router project Successfully completed the following: 1. **Installed @vercel/analytics package** - Used npm to install @vercel/analytics version 1.6.1 - Package added to dependencies in package.json - Created package-lock.json for dependency management 2. **Configured Analytics in App Router layout** - Modified: examples/quickstart/app/layout.tsx - Added import: `import { Analytics } from "@vercel/analytics/next";` - Placed <Analytics /> component inside the <body> tag, after the main content - Follows Next.js App Router best practices for analytics integration 3. **Verification completed** - Build: ✓ Successfully compiled (npm run build) - Linter: ✓ No ESLint warnings or errors (npm run lint) - Type checking: ✓ Passed during build process Implementation details: - The Analytics component is positioned at the end of the body tag, which is the recommended placement for optimal page load performance - Preserved all existing code structure and functionality - The implementation follows Vercel's official documentation for Next.js App Router projects - No breaking changes introduced to existing components or features Files modified: - examples/quickstart/app/layout.tsx (added Analytics import and component) - examples/quickstart/package.json (added @vercel/analytics dependency) - examples/quickstart/package-lock.json (new file - dependency lock file) Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Revert "Fix React Server Components CVE vulnerabilities" (#42) * Fix React Server Components CVE vulnerabilities (#40) Updated dependencies to fix Next.js and React CVE vulnerabilities. The fix-react2shell-next tool automatically updated the following packages to their secure versions: - next - react-server-dom-webpack - react-server-dom-parcel - react-server-dom-turbopack All package.json files have been scanned and vulnerable versions have been patched to the correct fixed versions based on the official React advisory. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Revert "Fix React Server Components CVE vulnerabilities (#40)" This reverts commit e568ee3. --------- Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> --------- Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: Mohammad Shahbaz Alam <shahbaz17@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: googleworkspace-bot <googleworkspace-bot@google.com> Co-authored-by: Alejandro <smarketing.cuz@gmail.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> --------- Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: Mohammad Shahbaz Alam <shahbaz17@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: googleworkspace-bot <googleworkspace-bot@google.com> Co-authored-by: Alejandro <smarketing.cuz@gmail.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Delete .circleci directory (#58) Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update README.md (#59) * Update README.md Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update README.md * Fix React Server Components CVE vulnerabilities (#61) Updated dependencies to fix Next.js and React CVE vulnerabilities. The fix-react2shell-next tool automatically updated the following packages to their secure versions: - next - react-server-dom-webpack - react-server-dom-parcel - react-server-dom-turbopack All package.json files have been scanned and vulnerable versions have been patched to the correct fixed versions based on the official React advisory. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com> * Update examples/quickstart/package.json Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update examples/quickstart/README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: Mohammad Shahbaz Alam <shahbaz17@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: googleworkspace-bot <googleworkspace-bot@google.com> Co-authored-by: Alejandro <smarketing.cuz@gmail.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Note
Low Risk
Adds a basic CI pipeline configuration only; no application logic or data/security-sensitive code is changed.
Overview
Introduces a new CircleCI config at
.circleci/config.ymlthat defines a singlesay-hellojob (checkout +echo Hello, World!) and a workflow to run it.Written by Cursor Bugbot for commit db49d28. This will update automatically on new commits. Configure here.