forked from 0xsequence/sequence.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Fix merge branch 0xsequence/master #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
a0d71be
Bump the npm_and_yarn group across 1 directory with 1 update
dependabot[bot] ca06c8f
Create SECURITY.md
Dargon789 3af5a88
Set up CI with Azure Pipelines
Dargon789 fa3e0a9
Merge branch '0xsequence:master' into master
Dargon789 f2761ef
Merge branch '0xsequence:master' into master
Dargon789 7a74500
Merge branch '0xsequence:master' into master
Dargon789 709280e
codesandbox dev-project wagmi-dapp
Dargon789 29c9084
Merge branch 'master' of https://github.com/Dargon789/sequence.js
Dargon789 1275488
Create CNAME
Dargon789 9b5807f
Merge branch '0xsequence:master' into master
Dargon789 c1fedd5
Merge branch '0xsequence:master' into master
Dargon789 2f0a536
Merge branch '0xsequence:master' into master
Dargon789 4b1880a
Merge branch '0xsequence:master' into master
Dargon789 c292dd5
Merge branch '0xsequence:master' into master
Dargon789 caab6bc
Merge branch 'master' into dependabot/npm_and_yarn/npm_and_yarn-secur…
Dargon789 bb78b92
Merge pull request #1 from Dargon789/dependabot/npm_and_yarn/npm_and_…
Dargon789 b12a5dc
Create fortify.yml
Dargon789 5cbdca4
Update issue templates
Dargon789 1d8c21c
Update CNAME
Dargon789 a5b1d91
fix: upgrade @tanstack/react-query from 5.45.1 to 5.64.2
snyk-bot 2ec6a7c
Merge pull request #34 from Dargon789/snyk-upgrade-03178c54d4c5401412…
Dargon789 3e905fe
Create config.yml (#46)
Dargon789 b50b3e9
Update package.json
Dargon789 896e285
Update SECURITY.md
Dargon789 74f382b
Update wagmi-project/package.json
Dargon789 08616b0
Update wagmi-project/package.json
Dargon789 69327ef
Update wagmi-project/src/App.tsx
Dargon789 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # Use the latest 2.1 version of CircleCI pipeline process engine. | ||
| # See: https://circleci.com/docs/configuration-reference | ||
|
|
||
| version: 2.1 | ||
| executors: | ||
| my-custom-executor: | ||
| docker: | ||
| - image: cimg/base:stable | ||
| auth: | ||
| # ensure you have first added these secrets | ||
| # visit app.circleci.com/settings/project/github/Dargon789/hardhat-project/environment-variables | ||
| username: $DOCKER_HUB_USER | ||
| password: $DOCKER_HUB_PASSWORD | ||
| jobs: | ||
| web3-defi-game-project-: | ||
|
|
||
| executor: my-custom-executor | ||
| steps: | ||
| - checkout | ||
| - run: | | ||
| # echo Hello, World! | ||
Dargon789 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| workflows: | ||
| my-custom-workflow: | ||
| jobs: | ||
| - web3-defi-game-project- | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,118 @@ | ||
| { | ||
| // These tasks will run in order when initializing your CodeSandbox project. | ||
| "setupTasks": [ | ||
| { | ||
| "name": "Install Dependencies", | ||
| "command": "pnpm install" | ||
| } | ||
| ], | ||
|
|
||
| // These tasks can be run from CodeSandbox. Running one will open a log in the app. | ||
| "tasks": { | ||
| "build": { | ||
| "name": "build", | ||
| "command": "pnpm build", | ||
| "runAtStart": false | ||
| }, | ||
| "watch": { | ||
| "name": "watch", | ||
| "command": "pnpm watch", | ||
| "runAtStart": false | ||
| }, | ||
| "clean": { | ||
| "name": "clean", | ||
| "command": "pnpm clean", | ||
| "runAtStart": false | ||
| }, | ||
| "changeset": { | ||
| "name": "changeset", | ||
| "command": "pnpm changeset", | ||
| "runAtStart": false | ||
| }, | ||
| "version-packages": { | ||
| "name": "version-packages", | ||
| "command": "pnpm version-packages", | ||
| "runAtStart": false | ||
| }, | ||
| "release": { | ||
| "name": "release", | ||
| "command": "pnpm release", | ||
| "runAtStart": false | ||
| }, | ||
| "snapshot": { | ||
| "name": "snapshot", | ||
| "command": "pnpm snapshot", | ||
| "runAtStart": false | ||
| }, | ||
| "update-version": { | ||
| "name": "update-version", | ||
| "command": "pnpm update-version", | ||
| "runAtStart": false | ||
| }, | ||
| "test": { | ||
| "name": "test", | ||
| "command": "pnpm test", | ||
| "runAtStart": false | ||
| }, | ||
| "test:parallel": { | ||
| "name": "test:parallel", | ||
| "command": "pnpm test:parallel", | ||
| "runAtStart": false | ||
| }, | ||
| "lint": { | ||
| "name": "lint", | ||
| "command": "pnpm lint", | ||
| "runAtStart": false | ||
| }, | ||
| "lint:fix": { | ||
| "name": "lint:fix", | ||
| "command": "pnpm lint:fix", | ||
| "runAtStart": false | ||
| }, | ||
| "lint:tests": { | ||
| "name": "lint:tests", | ||
| "command": "pnpm lint:tests", | ||
| "runAtStart": false | ||
| }, | ||
| "lint:tests:fix": { | ||
| "name": "lint:tests:fix", | ||
| "command": "pnpm lint:tests:fix", | ||
| "runAtStart": false | ||
| }, | ||
| "format": { | ||
| "name": "format", | ||
| "command": "pnpm format", | ||
| "runAtStart": false | ||
| }, | ||
| "audit:fix": { | ||
| "name": "audit:fix", | ||
| "command": "pnpm audit:fix", | ||
| "runAtStart": false | ||
| }, | ||
| "typecheck": { | ||
| "name": "typecheck", | ||
| "command": "pnpm typecheck", | ||
| "runAtStart": false | ||
| }, | ||
| "dev": { | ||
| "name": "dev", | ||
| "command": "pnpm dev", | ||
| "runAtStart": true | ||
| }, | ||
| "postinstall": { | ||
| "name": "postinstall", | ||
| "command": "pnpm postinstall", | ||
| "runAtStart": false | ||
| }, | ||
| "coverage": { | ||
| "name": "coverage", | ||
| "command": "pnpm coverage", | ||
| "runAtStart": false | ||
| }, | ||
| "prepare": { | ||
| "name": "prepare", | ||
| "command": "pnpm prepare", | ||
| "runAtStart": false | ||
| } | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Create a report to help us improve | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| **Describe the bug** | ||
| A clear and concise description of what the bug is. | ||
|
|
||
| **To Reproduce** | ||
| Steps to reproduce the behavior: | ||
| 1. Go to '...' | ||
| 2. Click on '....' | ||
| 3. Scroll down to '....' | ||
| 4. See error | ||
|
|
||
| **Expected behavior** | ||
| A clear and concise description of what you expected to happen. | ||
|
|
||
| **Screenshots** | ||
| If applicable, add screenshots to help explain your problem. | ||
|
|
||
| **Desktop (please complete the following information):** | ||
| - OS: [e.g. iOS] | ||
| - Browser [e.g. chrome, safari] | ||
| - Version [e.g. 22] | ||
|
|
||
| **Smartphone (please complete the following information):** | ||
| - Device: [e.g. iPhone6] | ||
| - OS: [e.g. iOS8.1] | ||
| - Browser [e.g. stock browser, safari] | ||
| - Version [e.g. 22] | ||
|
|
||
| **Additional context** | ||
| Add any other context about the problem here. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| --- | ||
| name: Custom issue template | ||
| about: Describe this issue template's purpose here. | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
|
|
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Suggest an idea for this project | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| **Is your feature request related to a problem? Please describe.** | ||
| A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
|
||
| **Describe the solution you'd like** | ||
| A clear and concise description of what you want to happen. | ||
|
|
||
| **Describe alternatives you've considered** | ||
| A clear and concise description of any alternative solutions or features you've considered. | ||
|
|
||
| **Additional context** | ||
| Add any other context or screenshots about the feature request here. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
|
|
||
| ################################################################################################################################################ | ||
| # Fortify Application Security provides your team with solutions to empower DevSecOps practices, enable cloud transformation, and secure your # | ||
| # software supply chain. To learn more about Fortify, start a free trial or contact our sales team, visit fortify.com. # | ||
| # # | ||
| # Use this starter workflow as a basis for integrating Fortify Application Security Testing into your GitHub workflows. This template # | ||
| # demonstrates the steps to package the code+dependencies, initiate a scan, and optionally import SAST vulnerabilities into GitHub Security # | ||
| # Code Scanning Alerts. Additional information is available in the workflow comments and the Fortify AST Action / fcli / Fortify product # | ||
| # documentation. If you need additional assistance, please contact Fortify support. # | ||
| ################################################################################################################################################ | ||
|
|
||
| name: Fortify AST Scan | ||
|
|
||
| # Customize trigger events based on your DevSecOps process and/or policy | ||
| on: | ||
| push: | ||
| branches: [ "master" ] | ||
| pull_request: | ||
| # The branches below must be a subset of the branches above | ||
| branches: [ "master" ] | ||
| schedule: | ||
| - cron: '31 12 * * 4' | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| Fortify-AST-Scan: | ||
| # Use the appropriate runner for building your source code. Ensure dev tools required to build your code are present and configured appropriately (MSBuild, Python, etc). | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
|
|
||
| steps: | ||
| # Check out source code | ||
| - name: Check Out Source Code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| # Java is required to run the various Fortify utilities. Ensuring proper version is installed on the runner. | ||
| - name: Setup Java | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| distribution: 'temurin' | ||
|
|
||
| # Perform SAST and optionally SCA scan via Fortify on Demand/Fortify Hosted/Software Security Center, then | ||
| # optionally export SAST results to the GitHub code scanning dashboard. In case further customization is | ||
| # required, you can use sub-actions like fortify/github-action/setup@v1 to set up the various Fortify tools | ||
| # and run them directly from within your pipeline; see https://github.com/fortify/github-action#readme for | ||
| # details. | ||
| - name: Run FoD SAST Scan | ||
| uses: fortify/github-action@a92347297e02391b857e7015792cd1926a4cd418 | ||
| with: | ||
| sast-scan: true | ||
| env: | ||
| ### Required configuration when integrating with Fortify on Demand | ||
| FOD_URL: https://ams.fortify.com | ||
| FOD_TENANT: ${{secrets.FOD_TENANT}} | ||
| FOD_USER: ${{secrets.FOD_USER}} | ||
| FOD_PASSWORD: ${{secrets.FOD_PAT}} | ||
| ### Optional configuration when integrating with Fortify on Demand | ||
| # EXTRA_PACKAGE_OPTS: -oss # Extra 'scancentral package' options, like '-oss'' if | ||
| # Debricked SCA scan is enabled on Fortify on Demand | ||
| # EXTRA_FOD_LOGIN_OPTS: --socket-timeout=60s # Extra 'fcli fod session login' options | ||
| # FOD_RELEASE: MyApp:MyRelease # FoD release name, default: <org>/<repo>:<branch>; may | ||
| # replace app+release name with numeric release ID | ||
| # DO_WAIT: true # Wait for scan completion, implied if 'DO_EXPORT: true' | ||
| # DO_EXPORT: true # Export SAST results to GitHub code scanning dashboard | ||
| ### Required configuration when integrating with Fortify Hosted / Software Security Center & ScanCentral | ||
| # SSC_URL: ${{secrets.SSC_URL}} # SSC URL | ||
| # SSC_TOKEN: ${{secrets.SSC_TOKEN}} # SSC CIToken or AutomationToken | ||
| # SC_SAST_TOKEN: ${{secrets.SC_SAST_TOKEN}} # ScanCentral SAST client auth token | ||
| # SC_SAST_SENSOR_VERSION: ${{vars.SC_SAST_SENSOR_VERSION}} # Sensor version on which to run the scan; | ||
| # usually defined as organization or repo variable | ||
| ### Optional configuration when integrating with Fortify Hosted / Software Security Center & ScanCentral | ||
| # EXTRA_SC_SAST_LOGIN_OPTS: --socket-timeout=60s # Extra 'fcli sc-sast session login' options | ||
| # SSC_APPVERSION: MyApp:MyVersion # SSC application version, default: <org>/<repo>:<branch> | ||
| # EXTRA_PACKAGE_OPTS: -bv myCustomPom.xml # Extra 'scancentral package' options | ||
| # DO_WAIT: true # Wait for scan completion, implied if 'DO_EXPORT: true' | ||
| # DO_EXPORT: true # Export SAST results to GitHub code scanning dashboard |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| sequence.app |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # 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 to email security@example.com, and they can expect an initial response within 48 hours. We will provide regular updates on the status of the reported vulnerability. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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' | ||
Dargon789 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| displayName: 'Install Node.js' | ||
|
|
||
| - script: | | ||
| npm install | ||
| npm run build | ||
| displayName: 'npm install and build' | ||
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.