diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 000000000..48d5f81fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..8a6af0443 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,145 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +#Basic set up for three package managers + +version: 2 + +enable-beta-ecosystems: false + +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for Bundler + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Pip + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Pub + - package-ecosystem: "pub" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Docker + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + +# Use this YAML in your workflow file for each job +# runs-on: self-hosted diff --git a/.github/workflows/alibabacloud.yml b/.github/workflows/alibabacloud.yml new file mode 100644 index 000000000..94a15c484 --- /dev/null +++ b/.github/workflows/alibabacloud.yml @@ -0,0 +1,122 @@ +# This workflow will build and push a new container image to Alibaba Cloud Container Registry (ACR), +# and then will deploy it to Alibaba Cloud Container Service for Kubernetes (ACK), when there is a push to the "main" branch. +# +# To use this workflow, you will need to complete the following set-up steps: +# +# 1. Create an ACR repository to store your container images. +# You can use ACR EE instance for more security and better performance. +# For instructions see https://www.alibabacloud.com/help/doc-detail/142168.htm +# +# 2. Create an ACK cluster to run your containerized application. +# You can use ACK Pro cluster for more security and better performance. +# For instructions see https://www.alibabacloud.com/help/doc-detail/95108.htm +# +# 3. Store your AccessKey pair in GitHub Actions secrets named `ACCESS_KEY_ID` and `ACCESS_KEY_SECRET`. +# For instructions on setting up secrets see: https://developer.github.com/actions/managing-workflows/storing-secrets/ +# +# 4. Change the values for the REGION_ID, REGISTRY, NAMESPACE, IMAGE, ACK_CLUSTER_ID, and ACK_DEPLOYMENT_NAME. +# + +name: Build and Deploy to ACK + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow. +env: + REGION_ID: cn-hangzhou + REGISTRY: registry.cn-hangzhou.aliyuncs.com + NAMESPACE: namespace + IMAGE: repo + TAG: ${{ github.sha }} + ACK_CLUSTER_ID: clusterID + ACK_DEPLOYMENT_NAME: nginx-deployment + + ACR_EE_REGISTRY: myregistry.cn-hangzhou.cr.aliyuncs.com + ACR_EE_INSTANCE_ID: instanceID + ACR_EE_NAMESPACE: namespace + ACR_EE_IMAGE: repo + ACR_EE_TAG: ${{ github.sha }} + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + environment: production + + steps: + - name: Checkout + uses: actions/checkout@v4 + + # 1.1 Login to ACR + - name: Login to ACR with the AccessKey pair + uses: aliyun/acr-login@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + + # 1.2 Build and push image to ACR + - name: Build and push image to ACR + run: | + docker build --tag "$REGISTRY/$NAMESPACE/$IMAGE:$TAG" . + docker push "$REGISTRY/$NAMESPACE/$IMAGE:$TAG" + + # 1.3 Scan image in ACR + - name: Scan image in ACR + uses: aliyun/acr-scan@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + repository: "${{ env.NAMESPACE }}/${{ env.IMAGE }}" + tag: "${{ env.TAG }}" + + # 2.1 (Optional) Login to ACR EE + - uses: actions/checkout@v4 + - name: Login to ACR EE with the AccessKey pair + uses: aliyun/acr-login@v1 + with: + login-server: "https://${{ env.ACR_EE_REGISTRY }}" + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + instance-id: "${{ env.ACR_EE_INSTANCE_ID }}" + + # 2.2 (Optional) Build and push image ACR EE + - name: Build and push image to ACR EE + run: | + docker build -t "$ACR_EE_REGISTRY/$ACR_EE_NAMESPACE/$ACR_EE_IMAGE:$TAG" . + docker push "$ACR_EE_REGISTRY/$ACR_EE_NAMESPACE/$ACR_EE_IMAGE:$TAG" + # 2.3 (Optional) Scan image in ACR EE + - name: Scan image in ACR EE + uses: aliyun/acr-scan@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + instance-id: "${{ env.ACR_EE_INSTANCE_ID }}" + repository: "${{ env.ACR_EE_NAMESPACE}}/${{ env.ACR_EE_IMAGE }}" + tag: "${{ env.ACR_EE_TAG }}" + + # 3.1 Set ACK context + - name: Set K8s context + uses: aliyun/ack-set-context@v1 + with: + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + cluster-id: "${{ env.ACK_CLUSTER_ID }}" + + # 3.2 Deploy the image to the ACK cluster + - name: Set up Kustomize + run: |- + curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash /dev/stdin 3.8.6 + - name: Deploy + run: |- + ./kustomize edit set image REGISTRY/NAMESPACE/IMAGE:TAG=$REGISTRY/$NAMESPACE/$IMAGE:$TAG + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/$ACK_DEPLOYMENT_NAME + kubectl get services -o wide diff --git a/.github/workflows/apisec-scan.yml b/.github/workflows/apisec-scan.yml new file mode 100644 index 000000000..4983418a4 --- /dev/null +++ b/.github/workflows/apisec-scan.yml @@ -0,0 +1,73 @@ +# 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. + +# APIsec addresses the critical need to secure APIs before they reach production. +# APIsec provides the industry’s only automated and continuous API testing platform that uncovers security vulnerabilities and logic flaws in APIs. +# Clients rely on APIsec to evaluate every update and release, ensuring that no APIs go to production with vulnerabilities. + +# How to Get Started with APIsec.ai +# 1. Schedule a demo at https://www.apisec.ai/request-a-demo . +# +# 2. Register your account at https://cloud.apisec.ai/#/signup . +# +# 3. Register your API . See the video (https://www.youtube.com/watch?v=MK3Xo9Dbvac) to get up and running with APIsec quickly. +# +# 4. Get GitHub Actions scan attributes from APIsec Project -> Configurations -> Integrations -> CI-CD -> GitHub Actions +# +# apisec-run-scan +# +# This action triggers the on-demand scans for projects registered in APIsec. +# If your GitHub account allows code scanning alerts, you can then upload the sarif file generated by this action to show the scan findings. +# Else you can view the scan results from the project home page in APIsec Platform. +# The link to view the scan results is also displayed on the console on successful completion of action. + + +# This is a starter workflow to help you get started with APIsec-Scan Actions + +name: APIsec + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + # Customize trigger events based on your DevSecOps processes. + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '32 0 * * 6' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + + +permissions: + contents: read + +jobs: + + Trigger_APIsec_scan: + permissions: + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - name: APIsec scan + uses: apisec-inc/apisec-run-scan@025432089674a28ba8fb55f8ab06c10215e772ea + with: + # The APIsec username with which the scans will be executed + apisec-username: ${{ secrets.apisec_username }} + # The Password of the APIsec user with which the scans will be executed + apisec-password: ${{ secrets.apisec_password}} + # The name of the project for security scan + apisec-project: "VAmPI" + # The name of the sarif format result file The file is written only if this property is provided. + sarif-result-file: "apisec-results.sarif" + - name: Import results + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: ./apisec-results.sarif + #20250215 diff --git a/.github/workflows/appknox.yml b/.github/workflows/appknox.yml new file mode 100644 index 000000000..2481c4d6a --- /dev/null +++ b/.github/workflows/appknox.yml @@ -0,0 +1,54 @@ +# 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. +# +# Appknox: Leader in Mobile Application Security Testing Solutions +# +# To use this workflow, you must be an existing Appknox customer with GitHub Advanced Security (GHAS) enabled for your +# repository. +# +# If you *are not* an existing customer, click here to contact us for licensing and pricing details: +# . +# +# Instructions: +# +# 1. In your repository settings, navigate to 'Secrets' and click on 'New repository secret.' Name the +# secret APPKNOX_ACCESS_TOKEN and paste your appknox user token into the value field. If you don't have a appknox token +# or need to generate a new one for GitHub, visit the Appknox Platform, go to Account Settings->Developer Settings +# and create a token labeled GitHub +# +# 2. Refer to the detailed workflow below, make any required adjustments, and then save it to your repository. After the +# action executes, check the 'Security' tab for results + +name: Appknox + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + appknox: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Build the app + run: ./gradlew build # Update this to build your Android or iOS application + + - name: Appknox GitHub action + uses: appknox/appknox-github-action@b7d2bfb2321d5544e97bffcba48557234ab953a4 + with: + appknox_access_token: ${{ secrets.APPKNOX_ACCESS_TOKEN }} + file_path: app/build/outputs/apk/debug/app-debug.apk # Specify the path to your .ipa or .apk here + risk_threshold: MEDIUM # Update this to desired risk threshold [LOW, MEDIUM, HIGH, CRITICAL] + sarif: Enable + + - name: Upload SARIF to GHAS + if: always() + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: report.sarif diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 000000000..6a9c312e6 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml new file mode 100644 index 000000000..0ac33d90b --- /dev/null +++ b/.github/workflows/cmake-single-platform.yml @@ -0,0 +1,39 @@ +# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. +# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml +name: CMake on a single platform + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Configure CMake + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + # Build your program with the given configuration + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Test + working-directory: ${{github.workspace}}/build + # Execute tests defined by the CMake configuration. + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: ctest -C ${{env.BUILD_TYPE}} + diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml new file mode 100644 index 000000000..2f0aabaa2 --- /dev/null +++ b/.github/workflows/codacy.yml @@ -0,0 +1,61 @@ +# 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. + +# This workflow checks out code, performs a Codacy security scan +# and integrates the results with the +# GitHub Advanced Security code scanning feature. For more information on +# the Codacy security scan action usage and parameters, see +# https://github.com/codacy/codacy-analysis-cli-action. +# For more information on Codacy Analysis CLI in general, see +# https://github.com/codacy/codacy-analysis-cli. + +name: Codacy Security Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '22 10 * * 0' + +permissions: + contents: read + +jobs: + codacy-security-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: Codacy Security Scan + runs-on: ubuntu-latest + steps: + # Checkout the repository to the GitHub Actions runner + - name: Checkout code + uses: actions/checkout@v4 + + # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis + - name: Run Codacy Analysis CLI + uses: codacy/codacy-analysis-cli-action@d840f886c4bd4edc059706d09c6a1586111c540b + with: + # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository + # You can also omit the token and run the tools that support default configurations + project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} + verbose: true + output: results.sarif + format: sarif + # Adjust severity of non-security issues + gh-code-scanning-compat: true + # Force 0 exit code to allow SARIF file generation + # This will handover control about PR rejection to the GitHub side + max-allowed-issues: 2147483647 + + # Upload the SARIF file generated in the previous step + - name: Upload SARIF results file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..2263a37d4 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,93 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL Advanced" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '16 19 * * 0' + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners (GitHub.com only) + # Consider using larger runners or machines with greater resources for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + permissions: + # required for all workflows + security-events: write + + # required to fetch internal or private CodeQL packs + packages: read + + # only required for workflows in private repositories + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + include: + - language: javascript-typescript + build-mode: none + # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' + # Use `c-cpp` to analyze code written in C, C++ or both + # Use 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, + # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. + # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how + # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + # If the analyze step fails for one of the languages you are analyzing with + # "We were unable to automatically build your code", modify the matrix above + # to set the build mode to "manual" for that language. Then modify this step + # to build your code. + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - if: matrix.build-mode == 'manual' + shell: bash + run: | + echo 'If you are using a "manual" build mode for one or more of the' \ + 'languages you are analyzing, replace this with the commands to build' \ + 'your code, for example:' + echo ' make bootstrap' + echo ' make release' + exit 1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" + #20250210 diff --git a/.github/workflows/codescan.yml b/.github/workflows/codescan.yml new file mode 100644 index 000000000..3c46e88c9 --- /dev/null +++ b/.github/workflows/codescan.yml @@ -0,0 +1,50 @@ +# 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. + +# This workflow requires that you have an existing account with codescan.io +# For more information about configuring your workflow, +# read our documentation at https://github.com/codescan-io/codescan-scanner-action +name: CodeScan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '24 7 * * 2' + +permissions: + contents: read + +jobs: + CodeScan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Cache files + uses: actions/cache@v3 + with: + path: | + ~/.sonar + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Run Analysis + uses: codescan-io/codescan-scanner-action@6793740039071596c5e9445dd60dd3825238d290 + with: + login: ${{ secrets.CODESCAN_AUTH_TOKEN }} + organization: ${{ secrets.CODESCAN_ORGANIZATION_KEY }} + projectKey: ${{ secrets.CODESCAN_PROJECT_KEY }} + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: codescan.sarif + #20250218 diff --git a/.github/workflows/copilot-setup-steps.yaml b/.github/workflows/copilot-setup-steps.yaml new file mode 100644 index 000000000..fdb4ea409 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yaml @@ -0,0 +1,20 @@ + +on: + workflow_dispatch: +permissions: + id-token: write + contents: read +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + environment: copilot + steps: + - name: Azure login + uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} diff --git a/.github/workflows/crda.yml b/.github/workflows/crda.yml new file mode 100644 index 000000000..816db8376 --- /dev/null +++ b/.github/workflows/crda.yml @@ -0,0 +1,126 @@ +# 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. + +# This workflow performs a static analysis of your source code using +# Red Hat CodeReady Dependency Analytics. + +# Scans are triggered: +# 1. On every push to default and protected branches +# 2. On every Pull Request targeting the default branch +# 3. On a weekly schedule +# 4. Manually, on demand, via the "workflow_dispatch" event + +# 💁 The CRDA Starter workflow will: +# - Checkout your repository +# - Setup the required tool stack +# - Install the CRDA command line tool +# - Auto detect the manifest file and install the project's dependencies +# - Perform the security scan using CRDA +# - Upload the SARIF result to the GitHub Code Scanning which can be viewed under the security tab +# - Optionally upload the SARIF file as an artifact for the future reference + +# ℹ️ Configure your repository and the workflow with the following steps: +# 1. Setup the tool stack based on the project's requirement. +# Refer to: https://github.com/redhat-actions/crda/#1-set-up-the-tool-stack +# 2. (Optional) CRDA action attempt to detect the language and install the +# required dependencies for your project. If your project doesn't aligns +# with the default dependency installation command mentioned here +# https://github.com/redhat-actions/crda/#3-installing-dependencies. +# Use the required inputs to setup the same +# 3. (Optional) CRDA action attempts to detect the manifest file if it is +# present in the root of the project and named as per the default mentioned +# here https://github.com/redhat-actions/crda/#3-installing-dependencies. +# If it deviates from the default, use the required inputs to setup the same +# 4. Setup Authentication - Create the CRDA_KEY or SNYK_TOKEN. +# Refer to: https://github.com/redhat-actions/crda/#4-set-up-authentication +# 5. (Optional) Upload SARIF file as an Artifact to download and view +# 6. Commit and push the workflow file to your default branch to trigger a workflow run. + +# 👋 Visit our GitHub organization at https://github.com/redhat-actions/ to see our actions and provide feedback. + +name: CRDA Scan + +# Controls when the workflow will run +on: + # TODO: Customize trigger events based on your DevSecOps processes + # + # This workflow is made to run with OpenShift starter workflow + # https://github.com/actions/starter-workflows/blob/main/deployments/openshift.yml + # However, if you want to run this workflow as a standalone workflow, please + # uncomment the 'push' trigger below and configure it based on your requirements. + # + workflow_call: + secrets: + CRDA_KEY: + required: false + SNYK_TOKEN: + required: false + workflow_dispatch: + + # push: + # branches: [ "main" ] + + # pull_request_target is used to securely share secret to the PR's workflow run. + # For more info visit: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target + pull_request_target: + branches: [ "main" ] + types: [ assigned, opened, synchronize, reopened, labeled, edited ] + +permissions: + contents: read + +jobs: + crda-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for redhat-actions/crda to upload SARIF results + name: Scan project vulnerabilities with CRDA + runs-on: ubuntu-20.04 + steps: + + - name: Check out repository + uses: actions/checkout@v2 + + # ******************************************************************* + # Required: Instructions to setup project + # 1. Setup Go, Java, Node.js or Python depending on your project type + # 2. Setup Actions are listed below, choose one from them: + # - Go: https://github.com/actions/setup-go + # - Java: https://github.com/actions/setup-java + # - Node.js: https://github.com/actions/setup-node + # - Python: https://github.com/actions/setup-python + # + # Example: + # - name: Setup Node + # uses: actions/setup-node@v4 + # with: + # node-version: '20' + + # https://github.com/redhat-actions/openshift-tools-installer/blob/main/README.md + - name: Install CRDA CLI + uses: redhat-actions/openshift-tools-installer@v1 + with: + source: github + github_pat: ${{ github.token }} + # Choose the desired version of the CRDA CLI + crda: "latest" + + ###################################################################################### + # https://github.com/redhat-actions/crda/blob/main/README.md + # + # By default, CRDA will detect the manifest file and install the required dependencies + # using the standard command for the project type. + # If your project doesn't aligns with the defaults mentioned in this action, you will + # need to set few inputs that are described here: + # https://github.com/redhat-actions/crda/blob/main/README.md#3-installing-dependencies + # Visit https://github.com/redhat-actions/crda/#4-set-up-authentication to understand + # process to get a SNYK_TOKEN or a CRDA_KEY + - name: CRDA Scan + id: scan + uses: redhat-actions/crda@v1 + with: + crda_key: ${{ secrets.CRDA_KEY }} # Either use crda_key or snyk_token + # snyk_token: ${{ secrets.SNYK_TOKEN }} + # upload_artifact: false # Set this to false to skip artifact upload diff --git a/.github/workflows/d.yml b/.github/workflows/d.yml new file mode 100644 index 000000000..3978733a6 --- /dev/null +++ b/.github/workflows/d.yml @@ -0,0 +1,33 @@ +# 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. +name: D + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7 + + - name: 'Build & Test' + run: | + # Build the project, with its main file included, without unittests + dub build --compiler=$DC + # Build and run tests, as defined by `unittest` configuration + # In this mode, `mainSourceFile` is excluded and `version (unittest)` are included + # See https://dub.pm/package-format-json.html#configurations + dub test --compiler=$DC diff --git a/.github/workflows/datadog-synthetics.yml b/.github/workflows/datadog-synthetics.yml new file mode 100644 index 000000000..c3a3d3ce8 --- /dev/null +++ b/.github/workflows/datadog-synthetics.yml @@ -0,0 +1,38 @@ +# This workflow will trigger Datadog Synthetic tests within your Datadog organisation +# For more information on running Synthetic tests within your GitHub workflows see: https://docs.datadoghq.com/synthetics/cicd_integrations/github_actions/ + +# 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. + +# To get started: + +# 1. Add your Datadog API (DD_API_KEY) and Application Key (DD_APP_KEY) as secrets to your GitHub repository. For more information, see: https://docs.datadoghq.com/account_management/api-app-keys/. +# 2. Start using the action within your workflow + +name: Run Datadog Synthetic tests + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + # Run Synthetic tests within your GitHub workflow. + # For additional configuration options visit the action within the marketplace: https://github.com/marketplace/actions/datadog-synthetics-ci + - name: Run Datadog Synthetic tests + uses: DataDog/synthetics-ci-github-action@87b505388a22005bb8013481e3f73a367b9a53eb # v1.4.0 + with: + api_key: ${{secrets.DD_API_KEY}} + app_key: ${{secrets.DD_APP_KEY}} + test_search_query: 'tag:e2e-tests' #Modify this tag to suit your tagging strategy + + diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 000000000..782af35b4 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,42 @@ +# 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. + +# This workflow will install Deno then run `deno lint` and `deno test`. +# For more information see: https://github.com/denoland/setup-deno + +name: Deno + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Setup repo + uses: actions/checkout@v4 + + - name: Setup Deno + # uses: denoland/setup-deno@v1 + uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 + with: + deno-version: v1.x + + # Uncomment this step to verify the use of 'deno fmt' on each commit. + # - name: Verify formatting + # run: deno fmt --check + + - name: Run linter + run: deno lint + + - name: Run tests + run: deno test -A diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 000000000..d19e21b79 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,39 @@ +# Dependency Review Action +# +# This Action will scan dependency manifest files that change as part of a Pull Request, +# surfacing known-vulnerable versions of the packages declared or updated in the PR. +# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable +# packages will be blocked from merging. +# +# Source repository: https://github.com/actions/dependency-review-action +# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement +name: 'Dependency review' +on: + pull_request: + branches: [ "main" ] + +# If using a dependency submission action in this workflow this permission will need to be set to: +# +# permissions: +# contents: write +# +# https://docs.github.com/en/enterprise-cloud@latest/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api +permissions: + contents: read + # Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option + pull-requests: write + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout repository' + uses: actions/checkout@v4 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v4 + # Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options. + with: + comment-summary-in-pr: always + # fail-on-severity: moderate + # deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later + # retry-on-snapshot-warnings: true diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 000000000..3f53646d1 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 000000000..a67c4f3d7 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,99 @@ +name: Docker + +# 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. + +on: + schedule: + - cron: '27 11 * * *' + push: + branches: [ "main" ] + # Publish semver tags as releases. + tags: [ 'v*.*.*' ] + pull_request: + branches: [ "main" ] + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Install the cosign tool except on PR + # https://github.com/sigstore/cosign-installer + - name: Install cosign + if: github.event_name != 'pull_request' + uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0 + with: + cosign-release: 'v2.2.4' + + # Set up BuildKit Docker container builder to be able to build + # multi-platform images and export cache + # https://github.com/docker/setup-buildx-action + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + # Login against a Docker registry except on PR + # https://github.com/docker/login-action + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Extract metadata (tags, labels) for Docker + # https://github.com/docker/metadata-action + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Build and push Docker image with Buildx (don't push on PR) + # https://github.com/docker/build-push-action + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + + # Sign the resulting Docker image digest except on PRs. + # This will only write to the public Rekor transparency log when the Docker + # repository is public to avoid leaking data. If you would like to publish + # transparency data even for private images, pass --force to cosign below. + # https://github.com/sigstore/cosign + - name: Sign the published Docker image + if: ${{ github.event_name != 'pull_request' }} + env: + # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable + TAGS: ${{ steps.meta.outputs.tags }} + DIGEST: ${{ steps.build-and-push.outputs.digest }} + # This step uses the identity token to provision an ephemeral certificate + # against the sigstore community Fulcio instance. + run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} + #20250208 diff --git a/.github/workflows/docker-publish2.yml b/.github/workflows/docker-publish2.yml new file mode 100644 index 000000000..e086bee88 --- /dev/null +++ b/.github/workflows/docker-publish2.yml @@ -0,0 +1,98 @@ +name: Docker + +# 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. + +on: + schedule: + - cron: '44 16 * * *' + push: + branches: [ "main" ] + # Publish semver tags as releases. + tags: [ 'v*.*.*' ] + pull_request: + branches: [ "main" ] + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Install the cosign tool except on PR + # https://github.com/sigstore/cosign-installer + - name: Install cosign + if: github.event_name != 'pull_request' + uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0 + with: + cosign-release: 'v2.2.4' + + # Set up BuildKit Docker container builder to be able to build + # multi-platform images and export cache + # https://github.com/docker/setup-buildx-action + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + # Login against a Docker registry except on PR + # https://github.com/docker/login-action + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Extract metadata (tags, labels) for Docker + # https://github.com/docker/metadata-action + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Build and push Docker image with Buildx (don't push on PR) + # https://github.com/docker/build-push-action + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + + # Sign the resulting Docker image digest except on PRs. + # This will only write to the public Rekor transparency log when the Docker + # repository is public to avoid leaking data. If you would like to publish + # transparency data even for private images, pass --force to cosign below. + # https://github.com/sigstore/cosign + - name: Sign the published Docker image + if: ${{ github.event_name != 'pull_request' }} + env: + # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable + TAGS: ${{ steps.meta.outputs.tags }} + DIGEST: ${{ steps.build-and-push.outputs.digest }} + # This step uses the identity token to provision an ephemeral certificate + # against the sigstore community Fulcio instance. + run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml new file mode 100644 index 000000000..27d3326a0 --- /dev/null +++ b/.github/workflows/erlang.yml @@ -0,0 +1,26 @@ +name: Erlang CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + + build: + + runs-on: ubuntu-latest + + container: + image: erlang:22.0.7 + + steps: + - uses: actions/checkout@v4 + - name: Compile + run: rebar3 compile + - name: Run tests + run: rebar3 do eunit, ct diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 000000000..0e65e31ea --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,53 @@ +# 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. +# ESLint is a tool for identifying and reporting on patterns +# found in ECMAScript/JavaScript code. +# More details at https://github.com/eslint/eslint +# and https://eslint.org + +name: ESLint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '36 4 * * 6' + +jobs: + eslint: + name: Run eslint scanning + runs-on: ubuntu-latest + permissions: + contents: read + security-events: write + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install ESLint + run: | + npm install eslint@8.10.0 + npm install @microsoft/eslint-formatter-sarif@3.1.0 + + - name: Run ESLint + env: + SARIF_ESLINT_IGNORE_SUPPRESSED: "true" + run: npx eslint . + --config .eslintrc.js + --ext .js,.jsx,.ts,.tsx + --format @microsoft/eslint-formatter-sarif + --output-file eslint-results.sarif + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + #sarif_file: eslint-results.sarif + wait-for-processing: true + #20250222 diff --git a/.github/workflows/frogbot-scan-and-fix.yml b/.github/workflows/frogbot-scan-and-fix.yml new file mode 100644 index 000000000..e5bcd0796 --- /dev/null +++ b/.github/workflows/frogbot-scan-and-fix.yml @@ -0,0 +1,65 @@ +# 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. +# Frogbot Scan and Fix does the following: +# Automatically creates pull requests with fixes for vulnerable project dependencies. +# Uses JFrog Xray to scan the project. +# Read more about Frogbot here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot + +# Some projects require creating a frogbot-config.yml file. Read more about it here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/frogbot-configuration + +name: "Frogbot Scan and Fix" +on: + push: + branches: [ "main" ] +permissions: + contents: write + pull-requests: write + security-events: write +jobs: + create-fix-pull-requests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: jfrog/frogbot@5d9c42c30f1169d8be4ba5510b40e75ffcbbc2a9 # v2.21.2 + env: + # [Mandatory if the two conditions below are met] + # 1. The project uses npm, yarn 2, NuGet or .NET to download its dependencies + # 2. The `installCommand` variable isn't set in your frogbot-config.yml file. + # + # The command that installs the project dependencies (e.g "npm i", "nuget restore" or "dotnet restore") + # JF_INSTALL_DEPS_CMD: "" + + # [Mandatory] + # JFrog platform URL + JF_URL: ${{ secrets.JF_URL }} + + # [Mandatory if JF_USER and JF_PASSWORD are not provided] + # JFrog access token with 'read' permissions on Xray service + JF_ACCESS_TOKEN: ${{ secrets.JF_ACCESS_TOKEN }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog username with 'read' permissions for Xray. Must be provided with JF_PASSWORD + # JF_USER: ${{ secrets.JF_USER }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog password. Must be provided with JF_USER + # JF_PASSWORD: ${{ secrets.JF_PASSWORD }} + + # [Mandatory] + # The GitHub token automatically generated for the job + JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # [Optional] + # If the machine that runs Frogbot has no access to the internat, set the name of a remote repository + # in Artifactory, which proxies https://releases.jfrog.io/artifactory + # The 'frogbot' executable and other tools it needs will be downloaded through this repository. + # JF_RELEASES_REPO: "" + + # [Optional] + # Frogbot will download the project dependencies, if they're not cached locally. To download the + # dependencies from a virtual repository in Artifactory, set the name of of the repository. There's no + # need to set this value, if it is set in the frogbot-config.yml file. + # JF_DEPS_REPO: "" diff --git a/.github/workflows/frogbot-scan-pr.yml b/.github/workflows/frogbot-scan-pr.yml new file mode 100644 index 000000000..41a83f5c1 --- /dev/null +++ b/.github/workflows/frogbot-scan-pr.yml @@ -0,0 +1,70 @@ +# 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. +# Frogbot Scan Pull Request does the following: +# Automatically scans new pull requests for security vulnerabilities. +# Uses JFrog Xray to scan the project. +# Read more about Frogbot here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot + +# Some projects require creating a frogbot-config.yml file. Read more about it here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/frogbot-configuration + +name: "Frogbot Scan Pull Request" +on: + pull_request_target: + types: [ opened, synchronize ] +permissions: + pull-requests: write + contents: read +jobs: + scan-pull-request: + runs-on: ubuntu-latest + # A pull request needs to be approved, before Frogbot scans it. Any GitHub user who is associated with the + # "frogbot" GitHub environment can approve the pull request to be scanned. + # Read more here (Install Frogbot Using GitHub Actions): https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/setup-frogbot-using-github-actions + environment: frogbot + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - uses: jfrog/frogbot@5d9c42c30f1169d8be4ba5510b40e75ffcbbc2a9 # v2.21.2 + env: + # [Mandatory if the two conditions below are met] + # 1. The project uses npm, yarn 2, NuGet or .NET to download its dependencies + # 2. The `installCommand` variable isn't set in your frogbot-config.yml file. + # + # The command that installs the project dependencies (e.g "npm i", "nuget restore" or "dotnet restore") + # JF_INSTALL_DEPS_CMD: "" + + # [Mandatory] + # JFrog platform URL + JF_URL: ${{ secrets.JF_URL }} + + # [Mandatory if JF_USER and JF_PASSWORD are not provided] + # JFrog access token with 'read' permissions on Xray service + JF_ACCESS_TOKEN: ${{ secrets.JF_ACCESS_TOKEN }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog username with 'read' permissions for Xray. Must be provided with JF_PASSWORD + # JF_USER: ${{ secrets.JF_USER }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog password. Must be provided with JF_USER + # JF_PASSWORD: ${{ secrets.JF_PASSWORD }} + + # [Mandatory] + # The GitHub token automatically generated for the job + JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # [Optional] + # If the machine that runs Frogbot has no access to the internat, set the name of a remote repository + # in Artifactory, which proxies https://releases.jfrog.io/artifactory + # The 'frogbot' executable and other tools it needs will be downloaded through this repository. + # JF_RELEASES_REPO: "" + + # [Optional] + # Frogbot will download the project dependencies, if they're not cached locally. To download the + # dependencies from a virtual repository in Artifactory, set the name of of the repository. There's no + # need to set this value, if it is set in the frogbot-config.yml file. + # JF_DEPS_REPO: "" diff --git a/.github/workflows/gatsby.yml b/.github/workflows/gatsby.yml new file mode 100644 index 000000000..9aaecfe2d --- /dev/null +++ b/.github/workflows/gatsby.yml @@ -0,0 +1,97 @@ +# Sample workflow for building and deploying a Gatsby site to GitHub Pages +# +# To get started with Gatsby see: https://www.gatsbyjs.com/docs/quick-start/ +# +name: Deploy Gatsby site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Detect package manager + id: detect-package-manager + run: | + if [ -f "${{ github.workspace }}/yarn.lock" ]; then + echo "manager=yarn" >> $GITHUB_OUTPUT + echo "command=install" >> $GITHUB_OUTPUT + exit 0 + elif [ -f "${{ github.workspace }}/package.json" ]; then + echo "manager=npm" >> $GITHUB_OUTPUT + echo "command=ci" >> $GITHUB_OUTPUT + exit 0 + else + echo "Unable to determine package manager" + exit 1 + fi + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "20" + cache: ${{ steps.detect-package-manager.outputs.manager }} + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + with: + # Automatically inject pathPrefix in your Gatsby configuration file. + # + # You may remove this line if you want to manage the configuration yourself. + static_site_generator: gatsby + - name: Restore cache + uses: actions/cache@v4 + with: + path: | + public + .cache + key: ${{ runner.os }}-gatsby-build-${{ hashFiles('public') }} + restore-keys: | + ${{ runner.os }}-gatsby-build- + - name: Install dependencies + run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} + - name: Build with Gatsby + env: + PREFIX_PATHS: 'true' + run: ${{ steps.detect-package-manager.outputs.manager }} run build + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/generator-generic-ossf-slsa3-publish.yml b/.github/workflows/generator-generic-ossf-slsa3-publish.yml new file mode 100644 index 000000000..35c829b13 --- /dev/null +++ b/.github/workflows/generator-generic-ossf-slsa3-publish.yml @@ -0,0 +1,66 @@ +# 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. + +# This workflow lets you generate SLSA provenance file for your project. +# The generation satisfies level 3 for the provenance requirements - see https://slsa.dev/spec/v0.1/requirements +# The project is an initiative of the OpenSSF (openssf.org) and is developed at +# https://github.com/slsa-framework/slsa-github-generator. +# The provenance file can be verified using https://github.com/slsa-framework/slsa-verifier. +# For more information about SLSA and how it improves the supply-chain, visit slsa.dev. + +name: SLSA generic generator +on: + workflow_dispatch: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + outputs: + digests: ${{ steps.hash.outputs.digests }} + + steps: + - uses: actions/checkout@v4 + + # ======================================================== + # + # Step 1: Build your artifacts. + # + # ======================================================== + - name: Build artifacts + run: | + # These are some amazing artifacts. + echo "artifact1" > artifact1 + echo "artifact2" > artifact2 + + # ======================================================== + # + # Step 2: Add a step to generate the provenance subjects + # as shown below. Update the sha256 sum arguments + # to include all binaries that you generate + # provenance for. + # + # ======================================================== + - name: Generate subject for provenance + id: hash + run: | + set -euo pipefail + + # List the artifacts the provenance will refer to. + files=$(ls artifact*) + # Generate the subjects (base64 encoded). + echo "hashes=$(sha256sum $files | base64 -w0)" >> "${GITHUB_OUTPUT}" + + provenance: + needs: [build] + permissions: + actions: read # To read the workflow path. + id-token: write # To sign the provenance. + contents: write # To add assets to a release. + uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0 + with: + base64-subjects: "${{ needs.build.outputs.digests }}" + upload-assets: true # Optional: Upload to a new release diff --git a/.github/workflows/google.yml b/.github/workflows/google.yml new file mode 100644 index 000000000..0b5c7d12f --- /dev/null +++ b/.github/workflows/google.yml @@ -0,0 +1,116 @@ +# This workflow will build a docker container, publish it to Google Container +# Registry, and deploy it to GKE when there is a push to the "main" +# branch. +# +# To configure this workflow: +# +# 1. Enable the following Google Cloud APIs: +# +# - Artifact Registry (artifactregistry.googleapis.com) +# - Google Kubernetes Engine (container.googleapis.com) +# - IAM Credentials API (iamcredentials.googleapis.com) +# +# You can learn more about enabling APIs at +# https://support.google.com/googleapi/answer/6158841. +# +# 2. Ensure that your repository contains the necessary configuration for your +# Google Kubernetes Engine cluster, including deployment.yml, +# kustomization.yml, service.yml, etc. +# +# 3. Create and configure a Workload Identity Provider for GitHub: +# https://github.com/google-github-actions/auth#preferred-direct-workload-identity-federation. +# +# Depending on how you authenticate, you will need to grant an IAM principal +# permissions on Google Cloud: +# +# - Artifact Registry Administrator (roles/artifactregistry.admin) +# - Kubernetes Engine Developer (roles/container.developer) +# +# You can learn more about setting IAM permissions at +# https://cloud.google.com/iam/docs/manage-access-other-resources +# +# 5. Change the values in the "env" block to match your values. + +name: 'Build and Deploy to GKE' + +on: + push: + branches: + - '"main"' + +env: + PROJECT_ID: 'my-project' # TODO: update to your Google Cloud project ID + GAR_LOCATION: 'us-central1' # TODO: update to your region + GKE_CLUSTER: 'cluster-1' # TODO: update to your cluster name + GKE_ZONE: 'us-central1-c' # TODO: update to your cluster zone + DEPLOYMENT_NAME: 'gke-test' # TODO: update to your deployment name + REPOSITORY: 'samples' # TODO: update to your Artifact Registry docker repository name + IMAGE: 'static-site' + WORKLOAD_IDENTITY_PROVIDER: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' # TODO: update to your workload identity provider + +jobs: + setup-build-publish-deploy: + name: 'Setup, Build, Publish, and Deploy' + runs-on: 'ubuntu-latest' + environment: 'production' + + permissions: + contents: 'read' + id-token: 'write' + + steps: + - name: 'Checkout' + uses: 'actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332' # actions/checkout@v4 + + # Configure Workload Identity Federation and generate an access token. + # + # See https://github.com/google-github-actions/auth for more options, + # including authenticating via a JSON credentials file. + - id: 'auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@f112390a2df9932162083945e46d439060d66ec2' # google-github-actions/auth@v2 + with: + workload_identity_provider: '${{ env.WORKLOAD_IDENTITY_PROVIDER }}' + + # Authenticate Docker to Google Cloud Artifact Registry + - name: 'Docker Auth' + uses: 'docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567' # docker/login-action@v3 + with: + username: 'oauth2accesstoken' + password: '${{ steps.auth.outputs.auth_token }}' + registry: '${{ env.GAR_LOCATION }}-docker.pkg.dev' + + # Get the GKE credentials so we can deploy to the cluster + - name: 'Set up GKE credentials' + uses: 'google-github-actions/get-gke-credentials@6051de21ad50fbb1767bc93c11357a49082ad116' # google-github-actions/get-gke-credentials@v2 + with: + cluster_name: '${{ env.GKE_CLUSTER }}' + location: '${{ env.GKE_ZONE }}' + + # Build the Docker image + - name: 'Build and push Docker container' + run: |- + DOCKER_TAG="${GAR_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${REPOSITORY}/${IMAGE}:${GITHUB_SHA}" + + docker build \ + --tag "${DOCKER_TAG}" \ + --build-arg GITHUB_SHA="${GITHUB_SHA}" \ + --build-arg GITHUB_REF="${GITHUB_REF}" \ + . + + docker push "${DOCKER_TAG}" + + # Set up kustomize + - name: 'Set up Kustomize' + run: |- + curl -sfLo kustomize https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz + chmod u+x ./kustomize + + # Deploy the Docker image to the GKE cluster + - name: 'Deploy to GKE' + run: |- + # replacing the image name in the k8s template + ./kustomize edit set image LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE:TAG=$GAR_LOCATION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE:$GITHUB_SHA + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/$DEPLOYMENT_NAME + kubectl get services -o wide diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 000000000..87d5ecb55 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,67 @@ +# 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. +# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle + +name: Java CI with Gradle + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. + # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md + - name: Setup Gradle + uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + + - name: Build with Gradle Wrapper + run: ./gradlew build + + # NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html). + # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version. + # + # - name: Setup Gradle + # uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + # with: + # gradle-version: '8.9' + # + # - name: Build with Gradle 8.9 + # run: gradle build + + dependency-submission: + + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + # Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies. + # See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..46774343e --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request" diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml new file mode 100644 index 000000000..61f17e593 --- /dev/null +++ b/.github/workflows/hadolint.yml @@ -0,0 +1,48 @@ +# 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. +# hadoint is a Dockerfile linter written in Haskell +# that helps you build best practice Docker images. +# More details at https://github.com/hadolint/hadolint + +name: Hadolint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '44 0 * * 3' + +permissions: + contents: read + +jobs: + hadolint: + name: Run hadolint scanning + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run hadolint + uses: hadolint/hadolint-action@f988afea3da57ee48710a9795b6bb677cc901183 + with: + dockerfile: ./Dockerfile + format: sarif + output-file: hadolint-results.sarif + no-fail: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: hadolint-results.sarif + wait-for-processing: true + #20250219 diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml new file mode 100644 index 000000000..347afd27d --- /dev/null +++ b/.github/workflows/haskell.yml @@ -0,0 +1,43 @@ +name: Haskell CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-haskell@v1 + with: + ghc-version: '8.10.3' + cabal-version: '3.2' + + - name: Cache + uses: actions/cache@v3 + env: + cache-name: cache-cabal + with: + path: ~/.cabal + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- + + - name: Install dependencies + run: | + cabal update + cabal build --only-dependencies --enable-tests --enable-benchmarks + - name: Build + run: cabal build --enable-tests --enable-benchmarks all + - name: Run tests + run: cabal test all diff --git a/.github/workflows/ibm.yml b/.github/workflows/ibm.yml new file mode 100644 index 000000000..f5e8cd8e2 --- /dev/null +++ b/.github/workflows/ibm.yml @@ -0,0 +1,75 @@ +# This workflow will build a docker container, publish it to IBM Container Registry, and deploy it to IKS when there is a push to the "main" branch. +# +# To configure this workflow: +# +# 1. Ensure that your repository contains a Dockerfile +# 2. Setup secrets in your repository by going to settings: Create ICR_NAMESPACE and IBM_CLOUD_API_KEY +# 3. Change the values for the IBM_CLOUD_REGION, REGISTRY_HOSTNAME, IMAGE_NAME, IKS_CLUSTER, DEPLOYMENT_NAME, and PORT + +name: Build and Deploy to IKS + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow +env: + GITHUB_SHA: ${{ github.sha }} + IBM_CLOUD_API_KEY: ${{ secrets.IBM_CLOUD_API_KEY }} + IBM_CLOUD_REGION: us-south + ICR_NAMESPACE: ${{ secrets.ICR_NAMESPACE }} + REGISTRY_HOSTNAME: us.icr.io + IMAGE_NAME: iks-test + IKS_CLUSTER: example-iks-cluster-name-or-id + DEPLOYMENT_NAME: iks-test + PORT: 5001 + +jobs: + setup-build-publish-deploy: + name: Setup, Build, Publish, and Deploy + runs-on: ubuntu-latest + environment: production + steps: + + - name: Checkout + uses: actions/checkout@v4 + + # Download and Install IBM Cloud CLI + - name: Install IBM Cloud CLI + run: | + curl -fsSL https://clis.cloud.ibm.com/install/linux | sh + ibmcloud --version + ibmcloud config --check-version=false + ibmcloud plugin install -f kubernetes-service + ibmcloud plugin install -f container-registry + + # Authenticate with IBM Cloud CLI + - name: Authenticate with IBM Cloud CLI + run: | + ibmcloud login --apikey "${IBM_CLOUD_API_KEY}" -r "${IBM_CLOUD_REGION}" -g default + ibmcloud cr region-set "${IBM_CLOUD_REGION}" + ibmcloud cr login + + # Build the Docker image + - name: Build with Docker + run: | + docker build -t "$REGISTRY_HOSTNAME"/"$ICR_NAMESPACE"/"$IMAGE_NAME":"$GITHUB_SHA" \ + --build-arg GITHUB_SHA="$GITHUB_SHA" \ + --build-arg GITHUB_REF="$GITHUB_REF" . + + # Push the image to IBM Container Registry + - name: Push the image to ICR + run: | + docker push $REGISTRY_HOSTNAME/$ICR_NAMESPACE/$IMAGE_NAME:$GITHUB_SHA + + # Deploy the Docker image to the IKS cluster + - name: Deploy to IKS + run: | + ibmcloud ks cluster config --cluster $IKS_CLUSTER + kubectl config current-context + kubectl create deployment $DEPLOYMENT_NAME --image=$REGISTRY_HOSTNAME/$ICR_NAMESPACE/$IMAGE_NAME:$GITHUB_SHA --dry-run -o yaml > deployment.yaml + kubectl apply -f deployment.yaml + kubectl rollout status deployment/$DEPLOYMENT_NAME + kubectl create service loadbalancer $DEPLOYMENT_NAME --tcp=80:$PORT --dry-run -o yaml > service.yaml + kubectl apply -f service.yaml + kubectl get services -o wide diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 000000000..e31d81c58 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 000000000..68520b5ae --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,64 @@ +# 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. + +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Ruby + uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 + with: + ruby-version: '3.1' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + # Outputs to the './_site' directory by default + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + env: + JEKYLL_ENV: production + - name: Upload artifact + # Automatically uploads an artifact from the './_site' directory by default + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 000000000..461356907 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,22 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler + +name: Labeler +on: [pull_request_target] + +jobs: + label: + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml new file mode 100644 index 000000000..fd8c644e6 --- /dev/null +++ b/.github/workflows/laravel.yml @@ -0,0 +1,35 @@ +name: Laravel + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.0' + - uses: actions/checkout@v4 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: php artisan test diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 000000000..11b2e3558 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml new file mode 100644 index 000000000..64b848b61 --- /dev/null +++ b/.github/workflows/maven-publish.yml @@ -0,0 +1,34 @@ +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + +name: Maven Package + +on: + release: + types: [created] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: '11' + distribution: 'temurin' + server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + settings-path: ${{ github.workspace }} # location for the settings.xml file + + - name: Build with Maven + run: mvn -B package --file pom.xml + + - name: Publish to GitHub Packages Apache Maven + run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml + env: + GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/mobsf.yml b/.github/workflows/mobsf.yml new file mode 100644 index 000000000..6f1ea95bd --- /dev/null +++ b/.github/workflows/mobsf.yml @@ -0,0 +1,43 @@ +# 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. + +name: MobSF + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '18 12 * * 2' + +permissions: + contents: read + +jobs: + mobile-security: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup python + uses: actions/setup-python@v3 + with: + python-version: 3.8 + + - name: Run mobsfscan + uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65 + with: + args: . --sarif --output results.sarif || true + + - name: Upload mobsfscan report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/nodejs-ci.yml b/.github/workflows/nodejs-ci.yml new file mode 100644 index 000000000..275a68799 --- /dev/null +++ b/.github/workflows/nodejs-ci.yml @@ -0,0 +1,34 @@ +name: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' + cache: 'npm' + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Run tests if available + run: | + if npm run | grep -q "test"; then + npm test || true + else + echo "No test script defined, skipping tests." + fi diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml new file mode 100644 index 000000000..5ef7a9ae1 --- /dev/null +++ b/.github/workflows/npm-grunt.yml @@ -0,0 +1,28 @@ +name: NodeJS with Grunt + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + grunt diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml new file mode 100644 index 000000000..ea2d329fa --- /dev/null +++ b/.github/workflows/npm-publish-github-packages.yml @@ -0,0 +1,36 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 000000000..2a4766d38 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,33 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://registry.npmjs.org/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/.github/workflows/objective-c-xcode.yml b/.github/workflows/objective-c-xcode.yml new file mode 100644 index 000000000..add007bf1 --- /dev/null +++ b/.github/workflows/objective-c-xcode.yml @@ -0,0 +1,30 @@ +name: Xcode - Build and Analyze + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + name: Build and analyse default scheme using xcodebuild command + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set Default Scheme + run: | + scheme_list=$(xcodebuild -list -json | tr -d "\n") + default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]") + echo $default | cat >default + echo Using default scheme: $default + - name: Build + env: + scheme: ${{ 'default' }} + run: | + if [ $scheme = default ]; then scheme=$(cat default); fi + if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi + file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` + xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]} diff --git a/.github/workflows/octopusdeploy.yml b/.github/workflows/octopusdeploy.yml new file mode 100644 index 000000000..b8ddb6ddf --- /dev/null +++ b/.github/workflows/octopusdeploy.yml @@ -0,0 +1,112 @@ +# 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. +# +# This workflow will build and publish a Docker container which is then deployed through Octopus Deploy. +# +# The build job in this workflow currently assumes that there is a Dockerfile that generates the relevant application image. +# If required, this job can be modified to generate whatever alternative build artifact is required for your deployment. +# +# This workflow assumes you have already created a Project in Octopus Deploy. +# For instructions see https://octopus.com/docs/projects/setting-up-projects +# +# To configure this workflow: +# +# 1. Decide where you are going to host your image. +# This template uses the GitHub Registry for simplicity but if required you can update the relevant DOCKER_REGISTRY variables below. +# +# 2. Create and configure an OIDC credential for a service account in Octopus. +# This allows for passwordless authentication to your Octopus instance through a trust relationship configured between Octopus, GitHub and your GitHub Repository. +# https://octopus.com/docs/octopus-rest-api/openid-connect/github-actions +# +# 3. Configure your Octopus project details below: +# OCTOPUS_URL: update to your Octopus Instance Url +# OCTOPUS_SERVICE_ACCOUNT: update to your service account Id +# OCTOPUS_SPACE: update to the name of the space your project is configured in +# OCTOPUS_PROJECT: update to the name of your Octopus project +# OCTOPUS_ENVIRONMENT: update to the name of the environment to recieve the first deployment + + +name: 'Build and Deploy to Octopus Deploy' + +on: + push: + branches: + - '"main"' + +jobs: + build: + name: Build + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + env: + DOCKER_REGISTRY: ghcr.io # TODO: Update to your docker registry uri + DOCKER_REGISTRY_USERNAME: ${{ github.actor }} # TODO: Update to your docker registry username + DOCKER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} # TODO: Update to your docker registry password + outputs: + image_tag: ${{ steps.meta.outputs.version }} + steps: + - uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.DOCKER_REGISTRY }} + username: ${{ env.DOCKER_REGISTRY_USERNAME }} + password: ${{ env.DOCKER_REGISTRY_PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.DOCKER_REGISTRY }}/${{ github.repository }} + tags: type=semver,pattern={{version}},value=v1.0.0-{{sha}} + + - name: Build and push Docker image + id: push + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + deploy: + name: Deploy + permissions: + id-token: write + runs-on: ubuntu-latest + needs: [ build ] + env: + OCTOPUS_URL: 'https://your-octopus-url' # TODO: update to your Octopus Instance url + OCTOPUS_SERVICE_ACCOUNT: 'your-service-account-id' # TODO: update to your service account Id + OCTOPUS_SPACE: 'your-space' # TODO: update to the name of the space your project is configured in + OCTOPUS_PROJECT: 'your-project' # TODO: update to the name of your Octopus project + OCTOPUS_ENVIRONMENT: 'your-environment' # TODO: update to the name of the environment to recieve the first deployment + + steps: + - name: Log in to Octopus Deploy + uses: OctopusDeploy/login@34b6dcc1e86fa373c14e6a28c5507d221e4de629 #v1.0.2 + with: + server: '${{ env.OCTOPUS_URL }}' + service_account_id: '${{ env.OCTOPUS_SERVICE_ACCOUNT }}' + + - name: Create Release + id: create_release + uses: OctopusDeploy/create-release-action@fea7e7b45c38c021b6bc5a14bd7eaa2ed5269214 #v3.2.2 + with: + project: '${{ env.OCTOPUS_PROJECT }}' + space: '${{ env.OCTOPUS_SPACE }}' + packages: '*:${{ needs.build.outputs.image_tag }}' + + - name: Deploy Release + uses: OctopusDeploy/deploy-release-action@b10a606c903b0a5bce24102af9d066638ab429ac #v3.2.1 + with: + project: '${{ env.OCTOPUS_PROJECT }}' + space: '${{ env.OCTOPUS_SPACE }}' + release_number: '${{ steps.create_release.outputs.release_number }}' + environments: ${{ env.OCTOPUS_ENVIRONMENT }} diff --git a/.github/workflows/openshift.yml b/.github/workflows/openshift.yml new file mode 100644 index 000000000..f5de1669f --- /dev/null +++ b/.github/workflows/openshift.yml @@ -0,0 +1,202 @@ +# 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. + +# 💁 The OpenShift Starter workflow will: +# - Checkout your repository +# - Perform a container image build +# - Push the built image to the GitHub Container Registry (GHCR) +# - Log in to your OpenShift cluster +# - Create an OpenShift app from the image and expose it to the internet + +# ℹ️ Configure your repository and the workflow with the following steps: +# 1. Have access to an OpenShift cluster. Refer to https://www.openshift.com/try +# 2. Create the OPENSHIFT_SERVER and OPENSHIFT_TOKEN repository secrets. Refer to: +# - https://github.com/redhat-actions/oc-login#readme +# - https://docs.github.com/en/actions/reference/encrypted-secrets +# - https://cli.github.com/manual/gh_secret_set +# 3. (Optional) Edit the top-level 'env' section as marked with '🖊️' if the defaults are not suitable for your project. +# 4. (Optional) Edit the build-image step to build your project. +# The default build type is by using a Dockerfile at the root of the repository, +# but can be replaced with a different file, a source-to-image build, or a step-by-step buildah build. +# 5. Commit and push the workflow file to your default branch to trigger a workflow run. + +# 👋 Visit our GitHub organization at https://github.com/redhat-actions/ to see our actions and provide feedback. + +name: OpenShift + +env: + # 🖊️ EDIT your repository secrets to log into your OpenShift cluster and set up the context. + # See https://github.com/redhat-actions/oc-login#readme for how to retrieve these values. + # To get a permanent token, refer to https://github.com/redhat-actions/oc-login/wiki/Using-a-Service-Account-for-GitHub-Actions + OPENSHIFT_SERVER: ${{ secrets.OPENSHIFT_SERVER }} + OPENSHIFT_TOKEN: ${{ secrets.OPENSHIFT_TOKEN }} + # 🖊️ EDIT to set the kube context's namespace after login. Leave blank to use your user's default namespace. + OPENSHIFT_NAMESPACE: "" + + # 🖊️ EDIT to set a name for your OpenShift app, or a default one will be generated below. + APP_NAME: "" + + # 🖊️ EDIT with the port your application should be accessible on. + # If the container image exposes *exactly one* port, this can be left blank. + # Refer to the 'port' input of https://github.com/redhat-actions/oc-new-app + APP_PORT: "" + + # 🖊️ EDIT to change the image registry settings. + # Registries such as GHCR, Quay.io, and Docker Hub are supported. + IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} + IMAGE_REGISTRY_USER: ${{ github.actor }} + IMAGE_REGISTRY_PASSWORD: ${{ github.token }} + + # 🖊️ EDIT to specify custom tags for the container image, or default tags will be generated below. + IMAGE_TAGS: "" + +on: + # https://docs.github.com/en/actions/reference/events-that-trigger-workflows + workflow_dispatch: + push: + # Edit to the branch(es) you want to build and deploy on each push. + branches: [ "main" ] + +jobs: + # 🖊️ EDIT if you want to run vulnerability check on your project before deploying + # the application. Please uncomment the below CRDA scan job and configure to run it in + # your workflow. For details about CRDA action visit https://github.com/redhat-actions/crda/blob/main/README.md + # + # TODO: Make sure to add 'CRDA Scan' starter workflow from the 'Actions' tab. + # For guide on adding new starter workflow visit https://docs.github.com/en/github-ae@latest/actions/using-workflows/using-starter-workflows + + #crda-scan: + # uses: ./.github/workflows/crda.yml + # secrets: + # CRDA_KEY: ${{ secrets.CRDA_KEY }} + # # SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} # Either use SNYK_TOKEN or CRDA_KEY + + openshift-ci-cd: + # 🖊️ Uncomment this if you are using CRDA scan step above + # needs: crda-scan + name: Build and deploy to OpenShift + runs-on: ubuntu-latest + environment: production + + outputs: + ROUTE: ${{ steps.deploy-and-expose.outputs.route }} + SELECTOR: ${{ steps.deploy-and-expose.outputs.selector }} + + steps: + - name: Check for required secrets + uses: actions/github-script@v6 + with: + script: | + const secrets = { + OPENSHIFT_SERVER: `${{ secrets.OPENSHIFT_SERVER }}`, + OPENSHIFT_TOKEN: `${{ secrets.OPENSHIFT_TOKEN }}`, + }; + + const GHCR = "ghcr.io"; + if (`${{ env.IMAGE_REGISTRY }}`.startsWith(GHCR)) { + core.info(`Image registry is ${GHCR} - no registry password required`); + } + else { + core.info("A registry password is required"); + secrets["IMAGE_REGISTRY_PASSWORD"] = `${{ secrets.IMAGE_REGISTRY_PASSWORD }}`; + } + + const missingSecrets = Object.entries(secrets).filter(([ name, value ]) => { + if (value.length === 0) { + core.error(`Secret "${name}" is not set`); + return true; + } + core.info(`✔️ Secret "${name}" is set`); + return false; + }); + + if (missingSecrets.length > 0) { + core.setFailed(`❌ At least one required secret is not set in the repository. \n` + + "You can add it using:\n" + + "GitHub UI: https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository \n" + + "GitHub CLI: https://cli.github.com/manual/gh_secret_set \n" + + "Also, refer to https://github.com/redhat-actions/oc-login#getting-started-with-the-action-or-see-example"); + } + else { + core.info(`✅ All the required secrets are set`); + } + + - name: Check out repository + uses: actions/checkout@v4 + + - name: Determine app name + if: env.APP_NAME == '' + run: | + echo "APP_NAME=$(basename $PWD)" | tee -a $GITHUB_ENV + + - name: Determine image tags + if: env.IMAGE_TAGS == '' + run: | + echo "IMAGE_TAGS=latest ${GITHUB_SHA::12}" | tee -a $GITHUB_ENV + + # https://github.com/redhat-actions/buildah-build#readme + - name: Build from Dockerfile + id: build-image + uses: redhat-actions/buildah-build@v2 + with: + image: ${{ env.APP_NAME }} + tags: ${{ env.IMAGE_TAGS }} + + # If you don't have a Dockerfile/Containerfile, refer to https://github.com/redhat-actions/buildah-build#scratch-build-inputs + # Or, perform a source-to-image build using https://github.com/redhat-actions/s2i-build + # Otherwise, point this to your Dockerfile/Containerfile relative to the repository root. + dockerfiles: | + ./Dockerfile + + # https://github.com/redhat-actions/push-to-registry#readme + - name: Push to registry + id: push-image + uses: redhat-actions/push-to-registry@v2 + with: + image: ${{ steps.build-image.outputs.image }} + tags: ${{ steps.build-image.outputs.tags }} + registry: ${{ env.IMAGE_REGISTRY }} + username: ${{ env.IMAGE_REGISTRY_USER }} + password: ${{ env.IMAGE_REGISTRY_PASSWORD }} + + # The path the image was pushed to is now stored in ${{ steps.push-image.outputs.registry-path }} + + - name: Install oc + uses: redhat-actions/openshift-tools-installer@v1 + with: + oc: 4 + + # https://github.com/redhat-actions/oc-login#readme + - name: Log in to OpenShift + uses: redhat-actions/oc-login@v1 + with: + openshift_server_url: ${{ env.OPENSHIFT_SERVER }} + openshift_token: ${{ env.OPENSHIFT_TOKEN }} + insecure_skip_tls_verify: true + namespace: ${{ env.OPENSHIFT_NAMESPACE }} + + # This step should create a deployment, service, and route to run your app and expose it to the internet. + # https://github.com/redhat-actions/oc-new-app#readme + - name: Create and expose app + id: deploy-and-expose + uses: redhat-actions/oc-new-app@v1 + with: + app_name: ${{ env.APP_NAME }} + image: ${{ steps.push-image.outputs.registry-path }} + namespace: ${{ env.OPENSHIFT_NAMESPACE }} + port: ${{ env.APP_PORT }} + + - name: Print application URL + env: + ROUTE: ${{ steps.deploy-and-expose.outputs.route }} + SELECTOR: ${{ steps.deploy-and-expose.outputs.selector }} + run: | + [[ -n ${{ env.ROUTE }} ]] || (echo "Determining application route failed in previous step"; exit 1) + echo + echo "======================== Your application is available at: ========================" + echo ${{ env.ROUTE }} + echo "===================================================================================" + echo + echo "Your app can be taken down with: \"oc delete all --selector='${{ env.SELECTOR }}'\"" diff --git a/.github/workflows/prisma.yml b/.github/workflows/prisma.yml new file mode 100644 index 000000000..8ef921a3a --- /dev/null +++ b/.github/workflows/prisma.yml @@ -0,0 +1,62 @@ +# 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. + +# A sample workflow that checks for security issues using +# the Prisma Cloud Infrastructure as Code Scan Action on +# the IaC files present in the repository. +# The results are uploaded to GitHub Security Code Scanning +# +# For more details on the Action configuration see https://github.com/prisma-cloud-shiftleft/iac-scan-action + +name: Prisma Cloud IaC Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '37 9 * * 0' + +permissions: + contents: read + +jobs: + prisma_cloud_iac_scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + name: Run Prisma Cloud IaC Scan to check + steps: + - name: Checkout + uses: actions/checkout@v4 + - id: iac-scan + name: Run Scan on CFT files in the repository + uses: prisma-cloud-shiftleft/iac-scan-action@53278c231c438216d99b463308a3cbed351ba0c3 + with: + # You will need Prisma Cloud API Access Token + # More details in https://github.com/prisma-cloud-shiftleft/iac-scan-action + prisma_api_url: ${{ secrets.PRISMA_CLOUD_API_URL }} + access_key: ${{ secrets.PRISMA_CLOUD_ACCESS_KEY }} + secret_key: ${{ secrets.PRISMA_CLOUD_SECRET_KEY }} + # Scan sources on Prisma Cloud are uniquely identified by their name + asset_name: 'my-asset-name' + # The service need to know the type of IaC being scanned + template_type: 'CFT' + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + # Results are generated only on a success or failure + # this is required since GitHub by default won't run the next step + # when the previous one has failed. + # And alternative it to add `continue-on-error: true` to the previous step + if: success() || failure() + with: + # The SARIF Log file name is configurable on scan action + # therefore the file name is best read from the steps output + sarif_file: ${{ steps.iac-scan.outputs.iac_scan_result_sarif_path }} + #20250209 diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml new file mode 100644 index 000000000..6ff2b9ba1 --- /dev/null +++ b/.github/workflows/psalm.yml @@ -0,0 +1,39 @@ +# 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. + +name: Psalm Security Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '31 4 * * 6' + +permissions: + contents: read + +jobs: + php-security: + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Psalm Security Scan + uses: psalm/psalm-github-security-scan@f3e6fd9432bc3e44aec078572677ce9d2ef9c287 + + - name: Upload Security Analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/puppet-lint.yml b/.github/workflows/puppet-lint.yml new file mode 100644 index 000000000..41f197193 --- /dev/null +++ b/.github/workflows/puppet-lint.yml @@ -0,0 +1,56 @@ +# 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. +# Puppet Lint tests Puppet code against the recommended Puppet language style guide. +# https://puppet.com/docs/puppet/7/style_guide.html +# Puppet Lint validates only code style; it does not validate syntax. +# To test syntax, use Puppet's puppet parser validate command. +# More details at https://github.com/puppetlabs/puppet-lint/ + +name: puppet-lint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '40 22 * * 6' + +permissions: + contents: read + +jobs: + puppet-lint: + name: Run puppet-lint scanning + runs-on: ubuntu-latest + permissions: + contents: read # for checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: 2.7 + bundler-cache: true + + - name: Install puppet-lint + run: gem install puppet-lint + + - name: Run puppet-lint + run: puppet-lint . --sarif > puppet-lint-results.sarif + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: puppet-lint-results.sarif + wait-for-processing: true + #20250209 diff --git a/.github/workflows/pyre.yml b/.github/workflows/pyre.yml new file mode 100644 index 000000000..053f88a6f --- /dev/null +++ b/.github/workflows/pyre.yml @@ -0,0 +1,46 @@ +# 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. + +# This workflow integrates Pyre with GitHub's +# Code Scanning feature. +# +# Pyre is a performant type checker for Python compliant with +# PEP 484. Pyre can analyze codebases with millions of lines +# of code incrementally – providing instantaneous feedback +# to developers as they write code. +# +# See https://pyre-check.org + +name: Pyre + +on: + workflow_dispatch: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + pyre: + permissions: + actions: read + contents: read + security-events: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Run Pyre + uses: facebook/pyre-action@60697a7858f7cc8470d8cc494a3cf2ad6b06560d + with: + # To customize these inputs: + # See https://github.com/facebook/pyre-action#inputs + repo-directory: './' + requirements-path: 'requirements.txt' diff --git a/.github/workflows/pysa.yml b/.github/workflows/pysa.yml new file mode 100644 index 000000000..4f2c48314 --- /dev/null +++ b/.github/workflows/pysa.yml @@ -0,0 +1,51 @@ +# 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. + +# This workflow integrates Python Static Analyzer (Pysa) with +# GitHub's Code Scanning feature. +# +# Python Static Analyzer (Pysa) is a security-focused static +# analysis tool that tracks flows of data from where they +# originate to where they terminate in a dangerous location. +# +# See https://pyre-check.org/docs/pysa-basics/ + +name: Pysa + +on: + workflow_dispatch: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '16 6 * * 4' + +permissions: + contents: read + +jobs: + pysa: + permissions: + actions: read + contents: read + security-events: write + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Run Pysa + uses: facebook/pysa-action@f46a63777e59268613bd6e2ff4e29f144ca9e88b + with: + # To customize these inputs: + # See https://github.com/facebook/pysa-action#inputs + repo-directory: './' + requirements-path: 'requirements.txt' + infer-types: true + include-default-sapp-filters: true + #20250222 diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml new file mode 100644 index 000000000..1168bd9ad --- /dev/null +++ b/.github/workflows/python-app.yml @@ -0,0 +1,39 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml new file mode 100644 index 000000000..f3586044a --- /dev/null +++ b/.github/workflows/python-package-conda.yml @@ -0,0 +1,34 @@ +name: Python Package using Conda + +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: '3.10' + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda env update --file environment.yml --name base + - name: Lint with flake8 + run: | + conda install flake8 + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + conda install pytest + pytest diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml new file mode 100644 index 000000000..0373118d5 --- /dev/null +++ b/.github/workflows/rubocop.yml @@ -0,0 +1,54 @@ +# 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. + +# pulled from repo +name: "Rubocop" + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '41 2 * * 6' + +jobs: + rubocop: + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # If running on a self-hosted runner, check it meets the requirements + # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners + - name: Set up Ruby + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: 2.6 + + # This step is not necessary if you add the gem to your Gemfile + - name: Install Code Scanning integration + run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install + + - name: Install dependencies + run: bundle install + + - name: Rubocop run + run: | + bash -c " + bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif + [[ $? -ne 2 ]] + " + + - name: Upload Sarif output + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: rubocop.sarif + + #20250208 diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 000000000..5d80832d3 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,38 @@ +# 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. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby + +name: Ruby + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + test: + + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['2.6', '2.7', '3.0'] + + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, + # change this to (see https://github.com/ruby/setup-ruby#versioning): + # uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Run tests + run: bundle exec rake diff --git a/.github/workflows/rust-clippy.yml b/.github/workflows/rust-clippy.yml new file mode 100644 index 000000000..32297d6dd --- /dev/null +++ b/.github/workflows/rust-clippy.yml @@ -0,0 +1,56 @@ +# 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. +# rust-clippy is a tool that runs a bunch of lints to catch common +# mistakes in your Rust code and help improve your Rust code. +# More details at https://github.com/rust-lang/rust-clippy +# and https://rust-lang.github.io/rust-clippy/ + +name: rust-clippy analyze + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '17 13 * * 4' + +jobs: + rust-clippy-analyze: + name: Run rust-clippy analyzing + runs-on: ubuntu-latest + permissions: + contents: read + security-events: write + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 + with: + profile: minimal + toolchain: stable + components: clippy + override: true + + - name: Install required cargo + run: cargo install clippy-sarif sarif-fmt + + - name: Run rust-clippy + run: + cargo clippy + --all-features + --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: rust-clippy-results.sarif + wait-for-processing: true + #20250214 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 000000000..9fd45e090 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml new file mode 100644 index 000000000..1277165ce --- /dev/null +++ b/.github/workflows/scorecard.yml @@ -0,0 +1,74 @@ +# 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. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: '39 20 * * 3' + push: + branches: [ "main" ] + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: "Checkout code" + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action?tab=readme-ov-file#authentication-with-fine-grained-pat-optional. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: "Upload artifact" + uses: actions/upload-artifact@97a0fba1372883ab732affbe8f94b823f91727db # v3.pre.node20 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard (optional). + # Commenting out will disable upload of results to your repo's Code Scanning dashboard + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/securitycodescan.yml b/.github/workflows/securitycodescan.yml new file mode 100644 index 000000000..d1c347fc0 --- /dev/null +++ b/.github/workflows/securitycodescan.yml @@ -0,0 +1,43 @@ +# 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. + +# This workflow integrates SecurityCodeScan with GitHub's Code Scanning feature +# SecurityCodeScan is a vulnerability patterns detector for C# and VB.NET + +name: SecurityCodeScan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '27 20 * * 0' + +jobs: + SCS: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: nuget/setup-nuget@04b0c2b8d1b97922f67eca497d7cf0bf17b8ffe1 + - uses: microsoft/setup-msbuild@v1.0.2 + + - name: Set up projects for analysis + uses: security-code-scan/security-code-scan-add-action@f8ff4f2763ed6f229eded80b1f9af82ae7f32a0d + + - name: Restore dependencies + run: dotnet restore + + - name: Build + run: dotnet build --no-restore + + - name: Convert sarif for uploading to GitHub + uses: security-code-scan/security-code-scan-results-action@cdb3d5e639054395e45bf401cba8688fcaf7a687 + + - name: Upload sarif + uses: github/codeql-action/upload-sarif@v3 + + #20250210 diff --git a/.github/workflows/snyk-infrastructure.yml b/.github/workflows/snyk-infrastructure.yml new file mode 100644 index 000000000..fe6919728 --- /dev/null +++ b/.github/workflows/snyk-infrastructure.yml @@ -0,0 +1,55 @@ +# 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. + +# A sample workflow which checks out your Infrastructure as Code Configuration files, +# such as Kubernetes, Helm & Terraform and scans them for any security issues. +# The results are then uploaded to GitHub Security Code Scanning +# +# For more examples, including how to limit scans to only high-severity issues +# and fail PR checks, see https://github.com/snyk/actions/ + +name: Snyk Infrastructure as Code + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '37 11 * * 1' + +permissions: + contents: read + +jobs: + snyk: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run Snyk to check configuration files for security issues + # Snyk can be used to break the build when it detects security issues. + # In this case we want to upload the issues to GitHub Code Scanning + continue-on-error: true + uses: snyk/actions/iac@14818c4695ecc4045f33c9cee9e795a788711ca4 + env: + # In order to use the Snyk Action you will need to have a Snyk API token. + # More details in https://github.com/snyk/actions#getting-your-snyk-token + # or you can signup for free at https://snyk.io/login + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + with: + # Add the path to the configuration file that you would like to test. + # For example `deployment.yaml` for a Kubernetes deployment manifest + # or `main.tf` for a Terraform configuration file + file: your-file-to-test.yaml + - name: Upload result to GitHub Code Scanning + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: snyk.sarif + #20250218 diff --git a/.github/workflows/sobelow.yml b/.github/workflows/sobelow.yml new file mode 100644 index 000000000..a0eebd128 --- /dev/null +++ b/.github/workflows/sobelow.yml @@ -0,0 +1,42 @@ +# 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. +# +# Sobelow is a security-focused static analysis tool for the Phoenix framework. https://sobelow.io/ +# +# To use this workflow, you must have GitHub Advanced Security (GHAS) enabled for your repository. +# +# Instructions: +# 2. Follow the annotated workflow below and make any necessary modifications then save the workflow to your repository +# and review the "Security" tab once the action has run. +name: Sobelow + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '42 16 * * 6' + +permissions: + contents: read + +jobs: + security-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - id: run-action + uses: sobelow/action@1afd6d2cae70ae8bd900b58506f54487ed863912 + - name: Upload report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml new file mode 100644 index 000000000..07701bef6 --- /dev/null +++ b/.github/workflows/sonarcloud.yml @@ -0,0 +1,67 @@ +# 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. + +# This workflow helps you trigger a SonarCloud analysis of your code and populates +# GitHub Code Scanning alerts with the vulnerabilities found. +# Free for open source project. + +# 1. Login to SonarCloud.io using your GitHub account + +# 2. Import your project on SonarCloud +# * Add your GitHub organization first, then add your repository as a new project. +# * Please note that many languages are eligible for automatic analysis, +# which means that the analysis will start automatically without the need to set up GitHub Actions. +# * This behavior can be changed in Administration > Analysis Method. +# +# 3. Follow the SonarCloud in-product tutorial +# * a. Copy/paste the Project Key and the Organization Key into the args parameter below +# (You'll find this information in SonarCloud. Click on "Information" at the bottom left) +# +# * b. Generate a new token and add it to your Github repository's secrets using the name SONAR_TOKEN +# (On SonarCloud, click on your avatar on top-right > My account > Security +# or go directly to https://sonarcloud.io/account/security/) + +# Feel free to take a look at our documentation (https://docs.sonarcloud.io/getting-started/github/) +# or reach out to our community forum if you need some help (https://community.sonarsource.com/c/help/sc/9) + +name: SonarCloud analysis + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +permissions: + pull-requests: read # allows SonarCloud to decorate PRs with analysis results + +jobs: + Analysis: + runs-on: ubuntu-latest + + steps: + - name: Analyze with SonarCloud + + # You can pin the exact commit or the version. + # uses: SonarSource/sonarcloud-github-action@v2.2.0 + uses: SonarSource/sonarcloud-github-action@4006f663ecaf1f8093e8e4abb9227f6041f52216 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) + with: + # Additional arguments for the SonarScanner CLI + args: + # Unique keys of your project and organization. You can find them in SonarCloud > Information (bottom-left menu) + # mandatory + -Dsonar.projectKey= + -Dsonar.organization= + # Comma-separated paths to directories containing main source files. + #-Dsonar.sources= # optional, default is project base directory + # Comma-separated paths to directories containing test source files. + #-Dsonar.tests= # optional. For more info about Code Coverage, please refer to https://docs.sonarcloud.io/enriching/test-coverage/overview/ + # Adds more detail to both client and server-side analysis logs, activating DEBUG mode for the scanner, and adding client-side environment variables and system properties to the server-side log of analysis report processing. + #-Dsonar.verbose= # optional, default is false + # When you need the analysis to take place in a directory other than the one from which it was launched, default is . + projectBaseDir: . diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml new file mode 100644 index 000000000..d038d1f65 --- /dev/null +++ b/.github/workflows/sonarqube.yml @@ -0,0 +1,66 @@ +# 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. + +# This workflow helps you trigger a SonarQube analysis of your code and populates +# GitHub Code Scanning alerts with the vulnerabilities found. +# (this feature is available starting from SonarQube 9.7, Developer Edition and above) + +# 1. Make sure you add a valid GitHub configuration to your SonarQube (Administration > DevOps platforms > GitHub) + +# 2. Import your project on SonarQube +# * Add your repository as a new project by clicking "Create project" from your homepage. +# +# 3. Select GitHub Actions as your CI and follow the tutorial +# * a. Generate a new token and add it to your GitHub repository's secrets using the name SONAR_TOKEN +# (On SonarQube, click on your avatar on top-right > My account > Security or ask your administrator) +# +# * b. Copy/paste your SonarQube host URL to your GitHub repository's secrets using the name SONAR_HOST_URL +# +# * c. Copy/paste the project Key into the args parameter below +# (You'll find this information in SonarQube by following the tutorial or by clicking on Project Information at the top-right of your project's homepage) + +# Feel free to take a look at our documentation (https://docs.sonarqube.org/latest/analysis/github-integration/) +# or reach out to our community forum if you need some help (https://community.sonarsource.com/c/sq/10) + +name: SonarQube analysis + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +permissions: + pull-requests: read # allows SonarQube to decorate PRs with analysis results + +jobs: + Analysis: + runs-on: ubuntu-latest + + steps: + - name: Analyze with SonarQube + + # You can pin the exact commit or the version. + # uses: SonarSource/sonarqube-scan-action@v1.1.0 + uses: SonarSource/sonarqube-scan-action@884b79409bbd464b2a59edc326a4b77dc56b2195 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on SonarQube, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} # add the URL of your instance to the secrets of this repo with the name SONAR_HOST_URL (Settings > Secrets > Actions > add new repository secret) + with: + # Additional arguments for the sonarcloud scanner + args: + # Unique key of your project. You can find it in SonarQube > [my project] > Project Information (top-right menu) + # mandatory + -Dsonar.projectKey= + # Comma-separated paths to directories containing main source files. + #-Dsonar.sources= # optional, default is project base directory + # When you need the analysis to take place in a directory other than the one from which it was launched + #-Dsonar.projectBaseDir= # optional, default is . + # Comma-separated paths to directories containing test source files. + #-Dsonar.tests= # optional. For more info about Code Coverage, please refer to https://docs.sonarcloud.io/enriching/test-coverage/overview/ + # Adds more detail to both client and server-side analysis logs, activating DEBUG mode for the scanner, and adding client-side environment variables and system properties to the server-side log of analysis report processing. + #-Dsonar.verbose= # optional, default is false diff --git a/.github/workflows/soos-dast-scan.yml b/.github/workflows/soos-dast-scan.yml new file mode 100644 index 000000000..10d020205 --- /dev/null +++ b/.github/workflows/soos-dast-scan.yml @@ -0,0 +1,50 @@ +# 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. +# +# SOOS is the easy-to-integrate and affordable software security solution for your whole team. +# +# Learn more at https://soos.io/ +# +# To use this action, perform the following steps: +# +# 1. Create an account on https://app.soos.io. SOOS offers a free 30 day trial for our SCA, DAST, and SBOM products. +# +# 2. Navigate to the "Integrate" page in the SOOS app (https://app.soos.io/integrate/dast/). Note the "API Credentials" section of this page; the keys you will need for the next step are here. +# +# 3. Set up your SOOS API Key and SOOS Client Id as Github Secrets named SOOS_API_KEY and SOOS_CLIENT_ID. +# +# 4. (Optional) If you'd like to upload SARIF results of DAST scans to GitHub, set SOOS_GITHUB_PAT with your Github Personal Access Token. +# +# Check for the latest version here: https://github.com/marketplace/actions/soos-dast + +name: "SOOS DAST Scan" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + soos: + permissions: + security-events: write # for uploading code scanning alert info + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: SOOS DAST Analysis + runs-on: ubuntu-latest + steps: + - name: Run SOOS DAST Analysis + uses: soos-io/soos-dast-github-action@65d9878d77c8993f3db9e86a92bc2ad3a6e060af + with: + client_id: ${{ secrets.SOOS_CLIENT_ID }} + api_key: ${{ secrets.SOOS_API_KEY }} + project_name: "" + scan_mode: "baseline" + target_url: "https://www.example.com/" + output_format: "sarif" + - name: Upload SOOS DAST SARIF Report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..2a2fc6fbd --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,27 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '45 5 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Stale issue message' + stale-pr-message: 'Stale pull request message' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 000000000..f2c9e97c9 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/summary.yml b/.github/workflows/summary.yml new file mode 100644 index 000000000..9b07bb8f8 --- /dev/null +++ b/.github/workflows/summary.yml @@ -0,0 +1,34 @@ +name: Summarize new issues + +on: + issues: + types: [opened] + +jobs: + summary: + runs-on: ubuntu-latest + permissions: + issues: write + models: read + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run AI inference + id: inference + uses: actions/ai-inference@v1 + with: + prompt: | + Summarize the following GitHub issue in one paragraph: + Title: ${{ github.event.issue.title }} + Body: ${{ github.event.issue.body }} + + - name: Comment with AI summary + run: | + gh issue comment $ISSUE_NUMBER --body '${{ steps.inference.outputs.response }}' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ISSUE_NUMBER: ${{ github.event.issue.number }} + RESPONSE: ${{ steps.inference.outputs.response }} diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 000000000..af6a923ba --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,29 @@ +# This workflow executes several linters on changed files based on languages used in your code base whenever +# you push a code or open a pull request. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/github/super-linter +name: Lint Code Base + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + run-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: "main" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 000000000..21ae770fb --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Swift + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v diff --git a/.github/workflows/tencent.yml b/.github/workflows/tencent.yml new file mode 100644 index 000000000..9032a26b4 --- /dev/null +++ b/.github/workflows/tencent.yml @@ -0,0 +1,79 @@ +# This workflow will build a docker container, publish and deploy it to Tencent Kubernetes Engine (TKE) when there is a push to the "main" branch. +# +# To configure this workflow: +# +# 1. Ensure that your repository contains the necessary configuration for your Tencent Kubernetes Engine cluster, +# including deployment.yml, kustomization.yml, service.yml, etc. +# +# 2. Set up secrets in your workspace: +# - TENCENT_CLOUD_SECRET_ID with Tencent Cloud secret id +# - TENCENT_CLOUD_SECRET_KEY with Tencent Cloud secret key +# - TENCENT_CLOUD_ACCOUNT_ID with Tencent Cloud account id +# - TKE_REGISTRY_PASSWORD with TKE registry password +# +# 3. Change the values for the TKE_IMAGE_URL, TKE_REGION, TKE_CLUSTER_ID and DEPLOYMENT_NAME environment variables (below). + +name: Tencent Kubernetes Engine + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow +env: + TKE_IMAGE_URL: ccr.ccs.tencentyun.com/demo/mywebapp + TKE_REGION: ap-guangzhou + TKE_CLUSTER_ID: cls-mywebapp + DEPLOYMENT_NAME: tke-test + +permissions: + contents: read + +jobs: + setup-build-publish-deploy: + name: Setup, Build, Publish, and Deploy + runs-on: ubuntu-latest + environment: production + steps: + + - name: Checkout + uses: actions/checkout@v4 + + # Build + - name: Build Docker image + run: | + docker build -t ${TKE_IMAGE_URL}:${GITHUB_SHA} . + + - name: Login TKE Registry + run: | + docker login -u ${{ secrets.TENCENT_CLOUD_ACCOUNT_ID }} -p '${{ secrets.TKE_REGISTRY_PASSWORD }}' ${TKE_IMAGE_URL} + + # Push the Docker image to TKE Registry + - name: Publish + run: | + docker push ${TKE_IMAGE_URL}:${GITHUB_SHA} + + - name: Set up Kustomize + run: | + curl -o kustomize --location https://github.com/kubernetes-sigs/kustomize/releases/download/v3.1.0/kustomize_3.1.0_linux_amd64 + chmod u+x ./kustomize + + - name: Set up ~/.kube/config for connecting TKE cluster + uses: TencentCloud/tke-cluster-credential-action@v1 + with: + secret_id: ${{ secrets.TENCENT_CLOUD_SECRET_ID }} + secret_key: ${{ secrets.TENCENT_CLOUD_SECRET_KEY }} + tke_region: ${{ env.TKE_REGION }} + cluster_id: ${{ env.TKE_CLUSTER_ID }} + + - name: Switch to TKE context + run: | + kubectl config use-context ${TKE_CLUSTER_ID}-context-default + + # Deploy the Docker image to the TKE cluster + - name: Deploy + run: | + ./kustomize edit set image ${TKE_IMAGE_URL}:${GITHUB_SHA} + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/${DEPLOYMENT_NAME} + kubectl get services -o wide diff --git a/.github/workflows/tfsec.yml b/.github/workflows/tfsec.yml new file mode 100644 index 000000000..2da320b07 --- /dev/null +++ b/.github/workflows/tfsec.yml @@ -0,0 +1,38 @@ +# 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. + +name: tfsec + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '24 5 * * 1' + +jobs: + tfsec: + name: Run tfsec sarif report + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Clone repo + uses: actions/checkout@v4 + + - name: Run tfsec + uses: aquasecurity/tfsec-sarif-action@21ded20e8ca120cd9d3d6ab04ef746477542a608 + with: + sarif_file: tfsec.sarif + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + # Path to SARIF file relative to the root of the repository + sarif_file: tfsec.sarif diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml new file mode 100644 index 000000000..525ee2120 --- /dev/null +++ b/.github/workflows/trivy.yml @@ -0,0 +1,49 @@ +# 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. + +name: trivy + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '38 3 * * 5' + +permissions: + contents: read + +jobs: + build: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: Build + runs-on: "ubuntu-20.04" + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build an image from Dockerfile + run: | + docker build -t docker.io/my-organization/my-app:${{ github.sha }} . + + - name: Run Trivy vulnerability scanner + uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe + with: + image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}' + format: 'template' + template: '@/contrib/sarif.tpl' + output: 'trivy-results.sarif' + severity: 'CRITICAL,HIGH' + + - name: Upload Trivy scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: 'trivy-results.sarif' + #20250214 diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 000000000..9626ff6d3 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,28 @@ +name: NodeJS with Webpack + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + npx webpack diff --git a/.github/workflows/zscaler-iac-scan.yml b/.github/workflows/zscaler-iac-scan.yml new file mode 100644 index 000000000..8ebfe9664 --- /dev/null +++ b/.github/workflows/zscaler-iac-scan.yml @@ -0,0 +1,57 @@ +#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. + +#This workflow runs the Zscaler Infrastructure as Code (IaC) Scan app, +#which detects security misconfigurations in IaC templates and publishes the findings +#under the code scanning alerts section within the repository. + +#Log into the Zscaler Posture Control(ZPC) Portal to begin the onboarding process. +#Copy the client ID and client secret key generated during the onboarding process and configure. +#GitHub secrets (ZSCANNER_CLIENT_ID, ZSCANNER_CLIENT_SECRET). + +#Refer https://github.com/marketplace/actions/zscaler-iac-scan for additional details on setting up this workflow. +#Any issues with this workflow, please raise it on https://github.com/ZscalerCWP/Zscaler-IaC-Action/issues for further investigation. + +name: Zscaler IaC Scan +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '27 18 * * 4' + +permissions: + contents: read + +jobs: + zscaler-iac-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + runs-on: ubuntu-latest + steps: + - name : Code Checkout + uses: actions/checkout@v4 + - name : Zscaler IAC Scan + uses : ZscalerCWP/Zscaler-IaC-Action@8d2afb33b10b4bd50e2dc2c932b37c6e70ac1087 + id : zscaler-iac-scan + with: + client_id : ${{ secrets.ZSCANNER_CLIENT_ID }} + client_secret : ${{ secrets.ZSCANNER_CLIENT_SECRET }} + #This is the user region specified during the onboarding process within the ZPC Admin Portal. + region : 'US' + iac_dir : #Enter the IaC directory path from root. + iac_file : #Enter the IaC file path from root. + output_format : #(Optional) By default, the output is provided in a human readable format. However, if you require a different format, you can specify it here. + #To fail the build based on policy violations identified in the IaC templates, set the input value (fail_build) to true. + fail_build : #Enter true/false + #Ensure that the following step is included in order to post the scan results under the code scanning alerts section within the repository. + - name: Upload SARIF file + if: ${{ success() || failure() && (steps.zscaler-iac-scan.outputs.sarif_file_path != '') }} + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: ${{ steps.zscaler-iac-scan.sarif_file_path }} + #20250214 diff --git a/.github/workflows/zscan.yml b/.github/workflows/zscan.yml new file mode 100644 index 000000000..0c35e1714 --- /dev/null +++ b/.github/workflows/zscan.yml @@ -0,0 +1,60 @@ +# 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. +# +# The zimperium-zscan GitHub action scans your mobile app binary (iOS or Android) +# and identifies security, privacy, and compliance-related vulnerabilities. ​ +# +# Prerequisites: +# * An active Zimperium zScan account is required. If you are not an existing Zimperium +# zScan customer, please request a zSCAN demo by visiting https://www.zimperium.com/contact-us. +# * Either GitHub Advanced Security (GHAS) or a public repository is required to display +# issues and view the remediation information inside of GitHub code scanning alerts.​ +# +# For additional information and setup instructions +# please visit: https://github.com/Zimperium/zScanMarketplace#readme + +name: "Zimperium zScan" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + zscan: + name: zScan + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Execute gradle build + run: ./gradlew build # Change this to build your mobile application + + - name: Run Zimperium zScan + uses: zimperium/zscanmarketplace@bfc6670f6648d796098c251ccefcfdb98983174d + timeout-minutes: 60 + with: + # REPLACE: Zimperium Client Environment Name + client_env: env_string + # REPLACE: Zimperium Client ID + client_id: id_string + # REPLACE: Zimperium Client Secret + client_secret: ${{ secrets.ZSCAN_CLIENT_SECRET }} + # REPLACE: The path to an .ipa or .apk + app_file: app-release-unsigned.apk + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: Zimperium.sarif diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..a4fbe9c1c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,36 @@ +FROM mcr.microsoft.com/dotnet/runtime-deps:6.0 as build + +# Replace value with the latest runner release version +# source: https://github.com/actions/runner/releases +# ex: 2.303.0 +ARG RUNNER_VERSION="" +ARG RUNNER_ARCH="x64" +# Replace value with the latest runner-container-hooks release version +# source: https://github.com/actions/runner-container-hooks/releases +# ex: 0.3.1 +ARG RUNNER_CONTAINER_HOOKS_VERSION="" + +ENV DEBIAN_FRONTEND=noninteractive +ENV RUNNER_MANUALLY_TRAP_SIG=1 +ENV ACTIONS_RUNNER_PRINT_LOG_TO_STDOUT=1 + +RUN apt update -y && apt install curl unzip -y + +RUN adduser --disabled-password --gecos "" --uid 1001 runner \ + && groupadd docker --gid 123 \ + && usermod -aG sudo runner \ + && usermod -aG docker runner \ + && echo "%sudo ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers \ + && echo "Defaults env_keep += \"DEBIAN_FRONTEND\"" >> /etc/sudoers + +WORKDIR /home/runner + +RUN curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \ + && tar xzf ./runner.tar.gz \ + && rm runner.tar.gz + +RUN curl -f -L -o runner-container-hooks.zip https://github.com/actions/runner-container-hooks/releases/download/v${RUNNER_CONTAINER_HOOKS_VERSION}/actions-runner-hooks-k8s-${RUNNER_CONTAINER_HOOKS_VERSION}.zip \ + && unzip ./runner-container-hooks.zip -d ./k8s \ + && rm runner-container-hooks.zip + +USER runner diff --git a/FUNDING.yml b/FUNDING.yml new file mode 100644 index 000000000..e087d08f5 --- /dev/null +++ b/FUNDING.yml @@ -0,0 +1,16 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +thanks_dev: # Replace with a single thanks.dev username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] + diff --git a/Maskchain/chains.json b/Maskchain/chains.json deleted file mode 100644 index e0ae2128e..000000000 --- a/Maskchain/chains.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "MAK Chain", - "chainId": 69916, - "shortName": "mak", - "chain": "MAK", - "network": "mainnet", - "networkId": 69916, - "nativeCurrency": { - "name": "MAK", - "symbol": "MAK", - "decimals": 18 - }, - "rpc": [ - "https://node.mak.top" - ], - "faucets": [ ], - "infoURL": "https://makchain.com", - "https://scan.mak.top" - "app_resource": { - "ic_chain_select": "https://img10.360buyimg.com/imgzone/jfs/t1/111359/37/49767/89180/66f81196Fe870e85e/5ec853e27babde6e.png", - "ic_chain_unselect": "https://pic.rmb.bdstatic.com/bjh/240929/27a3c6b06fd47a57bac9888dcf74b81c9354.jpeg", - "ic_chain_unselect_dark": "", - "color_chain_bg": "0x000000", - "color_chain_text": "0xF8F8FF", - "ic_home_logo":"https://img10.360buyimg.com/imgzone/jfs/t1/111359/37/49767/89180/66f81196Fe870e85e/5ec853e27babde6e.png" - } -} \ No newline at end of file diff --git a/README.md b/README.md index f02f3316b..b12f3e33e 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,34 @@ -# Description -This is the repo for TokenPocket to add public chains according to the community requirements. Once the PR is merged, the chain will be included on TokenPocket's Easy Add feature. You can also visit the entrance of the custom network in **https://chainlist.tokenpocket.pro/**. For adding more network data, please read the following tutorials. +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). -## Listing and donation standard -https://help.tokenpocket.pro/developer-en/network/add-chain +## Getting Started -A donation is needed for your PR to be merged. If your PR is not compatible with the Review Rules, it won't be merged and the donation won't be refunded. Please be cautious. +First, run the development server: - -# 简介 -本仓库为TokenPocket根据社区需求进行自定义网络(公链)更新,只要PR被合并就可以在自定义网络--快捷加链的列表中收录,同时,你也可在 **https://chainlist.tokenpocket.pro/** 中查看自定义网络的添加入口。添加更多网络信息,请根据以下指引进行提交。 - -## 公链收录审核及捐赠标准 -https://help.tokenpocket.pro/developer-cn/public-chain/add-chain - -提交PR合并需要捐赠,如果不满足审核要求,则不进行合并,捐赠不会进行退回,请您按需进行提交。 - -## How to add a new chain - -Fork this repo and add your evm chain info into `chains.json` - -Example: - -```javascript -{ - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png",//network icon selected status - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png",//network icon unselected status in light mode - "ic_chain_unselect_dark": "",//network icon unselected status in dark mode - "color_chain_bg": "0x58B2AF",//wallet card backgroud color - "color_chain_text": "0xFFFFFF",//wallet card text color - "ic_home_logo":""//logo on top of asset page - } -} +```bash +npm run dev +# or +yarn dev ``` -## 如何添加一个新链 +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. -Fork该仓库并在`chains.json` 中加入您的EVM链信息 +You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. -示例: +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. -```javascript -{ - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", //链icon选中状态 - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", //链icon白天模式的未选择状态 - "ic_chain_unselect_dark": "", //链icon黑夜模式的未选择状态 - "color_chain_bg": "0x58B2AF", //选择钱包时,卡片的背景颜色 - "color_chain_text": "0xFFFFFF", //选择钱包时,卡片的文字颜色 - "ic_home_logo":"" //首页卡片显示的logo - } -} -``` +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. + +## Learn More +To learn more about Next.js, take a look at the following resources: +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. -`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below: +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! +## Deploy on Vercel -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-11.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-12.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-13.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-14.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-15.png) +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..034e84803 --- /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. diff --git a/Secret b/Secret new file mode 100644 index 000000000..53b38f21d --- /dev/null +++ b/Secret @@ -0,0 +1,3 @@ +# 使用Python 生成随机密钥 +import secrets +print(secrets.token_hex(20)) # 输出 40 位十六进制字符串 diff --git a/X-Hub-Signature-256 b/X-Hub-Signature-256 new file mode 100644 index 000000000..6179edd6b --- /dev/null +++ b/X-Hub-Signature-256 @@ -0,0 +1,8 @@ +# Python 示例 +import hmac +import hashlib + +signature = request.headers.get('X-Hub-Signature-256').split('=')[1] +digest = hmac.new(secret.encode(), request.data, hashlib.sha256).hexdigest() +if hmac.compare_digest(signature, digest): + # 验证通过 diff --git a/bots_000001.json b/bots_000001.json new file mode 100644 index 000000000..cf8795203 --- /dev/null +++ b/bots_000001.json @@ -0,0 +1,44 @@ +[ + { + "type": "user", + "url": "https://github.com/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "login": "github-actions[bot]", + "name": null, + "bio": null, + "company": null, + "website": null, + "location": null, + "emails": [ + { + "address": "41898282+github-actions[bot]@users.noreply.github.com", + "primary": true, + "verified": true + } + ], + "social_accounts": [], + "billing_plan": null, + "created_at": "2018-07-30T09:30:16Z" + }, + { + "type": "user", + "url": "https://github.com/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "login": "dependabot[bot]", + "name": null, + "bio": null, + "company": null, + "website": null, + "location": null, + "emails": [ + { + "address": "49699333+dependabot[bot]@users.noreply.github.com", + "primary": true, + "verified": true + } + ], + "social_accounts": [], + "billing_plan": null, + "created_at": "2019-04-16T22:34:25Z" + } +] \ No newline at end of file diff --git a/chains.json b/chains.json index af195da15..70f77f7e6 100644 --- a/chains.json +++ b/chains.json @@ -1,43160 +1,161 @@ -[ - { - "name": "Ethereum Mainnet", - "chainId": 1, - "shortName": "eth", - "chain": "ETH", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "https://api.mycryptoapi.com/eth", - "https://cloudflare-eth.com" - ], - "faucets": [], - "infoURL": "https://ethereum.org" - }, - { - "name": "Optimistic Ethereum", - "chainId": 10, - "shortName": "oeth", - "chain": "ETH", - "network": "mainnet", - "networkId": 10, - "nativeCurrency": { - "name": "Ether", - "symbol": "OETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", - "color_chain_bg": "0xF54B49" - } - }, - { - "name": "Polygon (Matic) Mainnet", - "chainId": 137, - "shortName": "matic", - "chain": "Matic", - "network": "mainnet", - "networkId": 137, - "nativeCurrency": { - "name": "Matic", - "symbol": "MATIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.matic.network", - "wss://ws-mainnet.matic.network" - ], - "faucets": [], - "infoURL": "https://matic.network/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png", - "color_chain_bg": "0x7F4CDE" - } - }, - { - "name": "Avalanche Mainnet", - "chainId": 43114, - "shortName": "Avalanche", - "chain": "AVAX", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "rpc": [ - "https://api.avax.network/ext/bc/C/rpc" - ], - "faucets": [], - "infoURL": "https://cchain.explorer.avax.network/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png", - "color_chain_bg": "0xE92734" - } - }, - { - "name": "Cronos Mainnet", - "chainId": 25, - "shortName": "CRO", - "chain": "CRO", - "network": "mainnet", - "networkId": 25, - "nativeCurrency": { - "name": "CRO", - "symbol": "CRO", - "decimals": 18 - }, - "rpc": [ - "https://evm.cronos.org", - "https://cronosrpc-1.xstaking.sg", - "https://evm-cronos.crypto.org", - "https://cronos-rpc.heavenswail.one", - "https://cronos-rpc.elk.finance" - ], - "faucets": [], - "infoURL": "https://cronos.crypto.org/explorer" - }, - { - "name": "Fusion Mainnet", - "chainId": 32659, - "shortName": "fsn", - "chain": "FSN", - "network": "mainnet", - "networkId": 32659, - "nativeCurrency": { - "name": "Fusion", - "symbol": "FSN", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.anyswap.exchange" - ], - "faucets": [], - "infoURL": "https://fsnex.com/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/2.png", - "color_chain_bg": "0x2E3B4A" - } - }, - { - "name": "ThunderCore Mainnet", - "chainId": 108, - "shortName": "TT", - "chain": "TT", - "network": "mainnet", - "networkId": 108, - "nativeCurrency": { - "name": "ThunderCore Mainnet Ether", - "symbol": "TT", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-rpc.thundercore.com" - ], - "faucets": [ - "https://faucet.thundercore.com" - ], - "infoURL": "https://thundercore.com", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/2.png", - "color_chain_bg": "0xEAC541" - } - }, - { - "name": "FON Smart Chain", - "chainId": 201022, - "shortName": "FON", - "chain": "FON", - "network": "mainnet", - "networkId": 201022, - "nativeCurrency": { - "name": "FON", - "symbol": "FON", - "decimals": 18 - }, - "rpc": [ - "https://fsc-dataseed2.fonscan.io" - ], - "faucets": [], - "explorers": [ - { - "name": "FONScan", - "url": "https://fonscan.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1698387395064.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1698387436381.png", - "color_chain_bg": "0x343434", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1675422074776.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1675422139280.png" - } - }, - { - "name": "Fraxtal", - "chain": "FRAX", - "rpc": [ - "https://rpc.frax.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 - }, - "infoURL": "https://mainnet.frax.com", - "shortName": "Fraxtal", - "chainId": 252, - "networkId": 252, - "explorers": [ - { - "name": "FraxScan", - "url": "https://fraxscan.com", - "icon": "Frax", - "standard": "EIP3091" - } - ], - "status": "active", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1710309559685.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1710309496700.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1710309512399.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1710309529426.png" - } - }, - { - "name": "Viction Mainnet", - "chainId": 88, - "shortName": "vic", - "chain": "VIC", - "network": "mainnet", - "networkId": 88, - "nativeCurrency": { - "name": "Viction Ether", - "symbol": "VIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tomochain.com" - ], - "faucets": [], - "infoURL": "https://www.vicscan.xyz/", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1701074390781.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1701074408625.png", - "color_chain_bg": "0xF5F2C4", - "color_chain_text": "0x1E1E1E", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1701074424755.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1701074444858.png" - } - }, - { - "name": "smartBCH Mainnet", - "chainId": 10000, - "shortName": "smartBCH", - "chain": "smartBCH", - "network": "mainnet", - "networkId": 10000, - "nativeCurrency": { - "name": "Bitcoin Cash", - "symbol": "BCH", - "decimals": 18 - }, - "rpc": [ - "https://smartbch.greyh.at", - "https://rpc-mainnet.smartbch.org", - "https://smartbch.fountainhead.cash/mainnet", - "https://smartbch.devops.cash/mainnet" - ], - "faucets": [], - "infoURL": "https://smartbch.org/", - "app_resource": { - "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", - "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", - "color_chain_bg": "0x4cc947" - } - }, - { - "name": "Aurora Mainnet", - "chainId": 1313161554, - "shortName": "Aurora", - "chain": "NEAR", - "network": "mainnet", - "networkId": 1313161554, - "nativeCurrency": { - "name": "Ether", - "symbol": "aETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.aurora.dev" - ], - "faucets": [], - "infoURL": "https://aurora.dev", - "app_resource": { - "ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png", - "ic_chain_select": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png", - "ic_all_whitelist_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png", - "color_chain_bg": "0x78d64b", - "color_chain_text": "0xFFFFFF" - } - }, - { - "name": "PulseChain Mainnet", - "shortName": "pls", - "chain": "PLS", - "chainId": 369, - "networkId": 369, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.pulsechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pulse", - "symbol": "PLS", - "decimals": 18 - }, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1684207110566.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1684207099184.png", - "color_chain_bg": "0x1A1A1A", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1684207056831.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1684207085917.png" - } - }, - { - "name": "Kortho Chain Mainnet", - "chainId": 2559, - "shortName": "KTO", - "chain": "KTO", - "network": "mainnet", - "networkId": 2559, - "nativeCurrency": { - "name": "KORTHO", - "symbol": "KTO", - "decimals": 18 - }, - "rpc": [ - "https://www.kortho-chain.com", - "https://www.kortho-chain.co", - "https://www.kortho-chain.org", - "https://www.kortho-chain.xyz" - ], - "faucets": [], - "infoURL": "https://www.kortho.io", - "app_resource": { - "ic_chain_select": "https://www.kortho.io/static/image/1.png", - "ic_chain_unselect": "https://www.kortho.io/static/image/0.png", - "color_chain_bg": "0x748ee3", - "txUrl": " https://www.kortho.io/" - } - }, - { - "name": "Endurance Smart Chain Mainnet", - "chain": "ACE", - "rpc": [ - "https://rpc-endurance.fusionist.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Endurance Chain Native Token", - "symbol": "ACE", - "decimals": 18 - }, - "infoURL": "https://ace.fusionist.io/", - "shortName": "ace", - "chainId": 648, - "networkId": 648, - "explorers": [ - { - "name": "Endurance Scan", - "url": "https://explorer.endurance.fusionist.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709886151485.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709886075208.png", - "color_chain_bg": "0x050504", - "color_chain_text": "0xFFC783", - "ic_home_logo": "hhttps://hk.tpstatic.net/token/tokenpocket-1709886106935.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709886092252.png" - } - }, - { - "name": "Zora", - "chain": "ETH", - "rpc": [ - "https://rpc.zora.energy/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "zora", - "infoURL": "https://zora.energy", - "shortName": "zora", - "chainId": 7777777, - "networkId": 7777777, - "explorers": [ - { - "name": "Zora Network Explorer", - "url": "https://explorer.zora.energy", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899028504.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899005184.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899016829.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899043712.png" - } - }, - { - "name": "Morph Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-testnet.morphl2.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://morphl2.io", - "shortName": "tmorph", - "chainId": 2710, - "networkId": 2710, - "slip44": 1, - "explorers": [ - { - "name": "Morph Testnet Explorer", - "url": "https://explorer-testnet.morphl2.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-testnet.morphl2.io" - } - ] - }, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709898729370.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709898717628.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0x6AF495", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709898740826.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709898759382.png" - } - }, - { - "name": "Mode", - "chain": "ETH", - "rpc": [ - "https://mainnet.mode.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.mode.network/", - "shortName": "mode", - "chainId": 34443, - "networkId": 34443, - "icon": "mode", - "explorers": [ - { - "name": "modescout", - "url": "https://explorer.mode.network", - "standard": "none" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899308595.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899325224.png", - "color_chain_bg": "0xD9F417", - "color_chain_text": "0x000000", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899339092.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899353868.png" - } - }, - { - "name": "Berachain Artio", - "chain": "Berachain Artio", - "rpc": [ - "https://artio.rpc.berachain.com", - "https://rpc.ankr.com/berachain_testnet" - ], - "faucets": [ - "https://artio.faucet.berachain.com" - ], - "nativeCurrency": { - "name": "BERA Token", - "symbol": "BERA", - "decimals": 18 - }, - "infoURL": "https://www.berachain.com", - "shortName": "berachainArtio", - "chainId": 80085, - "networkId": 80085, - "icon": "berachain", - "explorers": [ - { - "name": "Beratrail", - "url": "https://artio.beratrail.io", - "icon": "berachain", - "standard": "none" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709885929619.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709885915602.png", - "color_chain_bg": "0xEF821F", - "color_chain_text": "0x050504", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709885984851.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709885969274.png" - } - }, - { - "name": "BounceBit Testnet", - "chainId": 6000, - "shortName": "BBT", - "chain": "BounceBit Testnet", - "network": "testnet", - "networkId": 6000, - "nativeCurrency": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 - }, - "rpc": [ - "https://fullnode-testnet.bouncebitapi.com" - ], - "faucets": [], - "explorers": [ - { - "name": "BBScan", - "url": "https://bbscan.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901807789.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709901770114.png", - "color_chain_bg": "0xEDEAE4", - "color_chain_text": "0x000000", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709901795926.png" - } - }, - { - "name": "zkLink Nova Mainnet", - "chainId": 810180, - "shortName": "zkLink Nova", - "chain": "zkLink Nova Mainnet", - "network": "Mainnet", - "networkId": 810180, - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.zklink.io", - "wss://rpc.zklink.io" - ], - "faucets": [], - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://explorer.zklink.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711359675534.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711359694827.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xffffff", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711359711634.png" - } - }, - { - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", - "color_chain_bg": "0x58B2AF" - } - }, - { - "name": "zkSync Era Testnet", - "chain": "ETH", - "rpc": [ - "https://zksync2-testnet.zksync.dev" - ], - "faucets": [ - "https://goerli.portal.zksync.io/faucet" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://era.zksync.io/docs/", - "shortName": "zksync-goerli", - "chainId": 280, - "networkId": 280, - "icon": "zksync-era", - "explorers": [ - { - "name": "zkSync Era Block Explorer", - "url": "https://goerli.explorer.zksync.io", - "icon": "zksync-era", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://goerli.portal.zksync.io/bridge" - } - ] - } - }, - { - "name": "zkSync Era Mainnet", - "chain": "ETH", - "rpc": [ - "https://zksync2-mainnet.zksync.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zksync.io/", - "shortName": "zksync", - "chainId": 324, - "networkId": 324, - "icon": "zksync-era", - "explorers": [ - { - "name": "zkSync Era Block Explorer", - "url": "https://explorer.zksync.io", - "icon": "zksync-era", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.zksync.io/bridge" - } - ] - } - }, - { - "name": "Merlin Mainnet", - "chainId": 4200, - "shortName": "Merlin Mainnet", - "chain": "Merlin Mainnet", - "network": "mainnet", - "networkId": 4200, - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.merlinchain.io" - ], - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.merlinchain.io/" - } - ] - }, - { - "name": "BTA Chain", - "chainId": 1657, - "shortName": "btachain", - "chain": "BTA", - "network": "mainnet", - "networkId": 1657, - "nativeCurrency": { - "name": "btachain", - "symbol": "BTA", - "decimals": 18 - }, - "rpc": [ - "https://dataseed1.btachain.com", - "https://dataseed2.btachain.com", - "wss://dataseed1.btachain.com/wss", - "wss://dataseed2.btachain.com/wss", - "ws://dataseed1.btachain.com:8861" - ], - "faucets": [], - "infoURL": "https://btachain.com", - "app_resource": { - "ic_chain_select": "https://btachain.com/images/favicon/logo.png", - "ic_chain_unselect": "https://btachain.com/images/favicon/logo-0x.png", - "color_chain_bg": "0x0777cf" - } - }, - { - "name": "Cycle StarFish Testnet", - "chain": "ETH", - "status": "active", - "icon": "Cycle", - "network": "testnet", - "rpc": [ - "https://rpc-testnet.cyclenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://cycle-network.gitbook.io/cycle-network-docs/welcome/testnet-starfish", - "shortName": "Cycle StarFish Testnet", - "chainId": 1221, - "networkId": 1221, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711525328453.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711564983535.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711565004213.png" - } - }, - { - "name": "Arbitrum One", - "chainId": 42161, - "shortName": "Arbitrum", - "chain": "Arbitrum", - "network": "mainnet", - "networkId": 42161, - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://arb1.arbitrum.io/rpc" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/" - }, - { - "name": "Fuse Mainnet", - "chainId": 122, - "shortName": "fuse", - "chain": "FUSE", - "network": "mainnet", - "networkId": 122, - "nativeCurrency": { - "name": "Fuse", - "symbol": "FUSE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.fuse.io" - ], - "faucets": [], - "infoURL": "https://fuse.io/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/2.png", - "color_chain_bg": "0x62D970" - } - }, - { - "name": "Fantom Opera", - "chainId": 250, - "shortName": "ftm", - "chain": "FTM", - "network": "mainnet", - "networkId": 250, - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 - }, - "rpc": [ - "https://rpcapi.fantom.network", - "https://fantomscan.io/rpc" - ], - "faucets": [], - "infoURL": "https://fantom.foundation", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png", - "color_chain_bg": "0x1969FF" - } - }, - { - "name": "Ethereum Classic Mainnet", - "chainId": 61, - "shortName": "etc", - "chain": "ETC", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ethereum Classic Ether", - "symbol": "ETC", - "decimals": 18 - }, - "rpc": [ - "https://www.ethercluster.com/etc" - ], - "faucets": [], - "infoURL": "https://ethereumclassic.org", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/2.png", - "color_chain_bg": "0x3CBA3B" - } - }, - { - "name": "MVS", - "chainId": 23, - "shortName": "MVS", - "chain": "MVS", - "network": "mainnet", - "networkId": 23, - "nativeCurrency": { - "name": "ETP", - "symbol": "ETP", - "decimals": 18 - }, - "rpc": [ - "https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Catecoin Chain Mainnet", - "chainId": 1618, - "shortName": "cate", - "chain": "Catechain", - "network": "mainnet", - "networkId": 1618, - "nativeCurrency": { - "name": "Catecoin", - "symbol": "CATE", - "decimals": 18 - }, - "rpc": [ - "https://send.catechain.com" - ], - "faucets": [], - "infoURL": "https://catechain.com" - }, - { - "name": "Ethereum Testnet Ropsten", - "chainId": 3, - "shortName": "rop", - "chain": "ETH", - "network": "ropsten", - "networkId": 3, - "nativeCurrency": { - "name": "Ropsten Ether", - "symbol": "ROP", - "decimals": 18 - }, - "rpc": [ - "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" - ], - "faucets": [ - "https://faucet.ropsten.be?${ADDRESS}" - ], - "infoURL": "https://github.com/ethereum/ropsten" - }, - { - "name": "Ethereum Testnet Kovan", - "chainId": 42, - "shortName": "kov", - "chain": "ETH", - "network": "kovan", - "networkId": 42, - "nativeCurrency": { - "name": "Kovan Ether", - "symbol": "KOV", - "decimals": 18 - }, - "rpc": [ - "https://kovan.poa.network", - "http://kovan.poa.network:8545", - "https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "ws://kovan.poa.network:8546" - ], - "faucets": [ - "https://faucet.kovan.network", - "https://gitter.im/kovan-testnet/faucet" - ], - "infoURL": "https://kovan-testnet.github.io/website" - }, - { - "name": "Ethereum Testnet Rinkeby", - "chainId": 4, - "shortName": "rin", - "chain": "ETH", - "network": "rinkeby", - "networkId": 4, - "nativeCurrency": { - "name": "Rinkeby Ether", - "symbol": "RIN", - "decimals": 18 - }, - "rpc": [ - "https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" - ], - "faucets": [ - "https://faucet.rinkeby.io" - ], - "infoURL": "https://www.rinkeby.io" - }, - { - "name": "Ethereum Testnet Goerli", - "chainId": 5, - "shortName": "gor", - "chain": "ETH", - "network": "goerli", - "networkId": 5, - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli ", - "https://goerli.prylabs.net/" - ], - "faucets": [ - "https://goerli-faucet.slock.it/?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "infoURL": "https://goerli.net/#about" - }, - { - "name": "Klaytn Testnet Baobab", - "chainId": 1001, - "shortName": "Baobab", - "chain": "KLAY", - "network": "baobab", - "networkId": 1001, - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" - ], - "faucets": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" - ], - "infoURL": "https://www.klaytn.com/" - }, - { - "name": "Arbitrum Testnet V5", - "chainId": 144545313136048, - "shortName": "Arbitrum Test", - "chain": "Arbitrum Test", - "network": "testnet", - "networkId": 144545313136048, - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://kovan5.arbitrum.io/rpc" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Zenith Smart Chain", - "chainId": 20212, - "shortName": "ZSC", - "chain": "ZSC", - "network": "mainnet", - "networkId": 20212, - "nativeCurrency": { - "name": "ZTB", - "symbol": "ZTB", - "decimals": 18 - }, - "rpc": [ - "https://zsc.one/rpc" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Newton Testnet", - "chainId": 1007, - "shortName": "tnew", - "chain": "NEW", - "network": "testnet", - "networkId": 1007, - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "rpc": [ - "https://rpc1.newchain.newtonproject.org" - ], - "faucets": [], - "infoURL": "https://www.newtonproject.org/" - }, - { - "name": "EtherInc", - "chainId": 101, - "shortName": "eti", - "chain": "ETI", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "EtherInc Ether", - "symbol": "ETI", - "decimals": 18 - }, - "rpc": [ - "https://api.einc.io/jsonrpc/mainnet" - ], - "faucets": [], - "infoURL": "https://einc.io" - }, - { - "name": "Evrice Network", - "chainId": 1010, - "shortName": "EVC", - "chain": "EVC", - "network": "Evrice", - "networkId": 1010, - "nativeCurrency": { - "name": "Evrice", - "symbol": "EVC", - "decimals": 18 - }, - "rpc": [ - "https://meta.evrice.com" - ], - "faucets": [], - "infoURL": "https://evrice.com" - }, - { - "name": "Newton", - "chainId": 1012, - "shortName": "new", - "chain": "NEW", - "network": "mainnet", - "networkId": 1012, - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "rpc": [ - "https://global.rpc.mainnet.newtonproject.org" - ], - "faucets": [], - "infoURL": "https://www.newtonproject.org/" - }, - { - "name": "Web3Games Testnet", - "chainId": 102, - "shortName": "w3g", - "chain": "Web3Games", - "network": "Web3Games testnet", - "networkId": 102, - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "rpc": [ - "https://substrate.org.cn" - ], - "faucets": [], - "infoURL": "https://web3games.org/", - "app_resource": { - "ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png", - "ic_chain_unselect": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png", - "color_chain_bg": "0x2A31FB" - } - }, - { - "name": "Clover Testnet", - "chainId": 1023, - "shortName": "tclv", - "chain": "Clover", - "network": "clover testnet", - "networkId": 1023, - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://clover.finance" - }, - { - "name": "Clover Mainnet", - "chainId": 1024, - "shortName": "clv", - "chain": "Clover", - "network": "clover mainnet", - "networkId": 1024, - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://clover.finance" - }, - { - "name": "Metadium Mainnet", - "chainId": 11, - "shortName": "meta", - "chain": "META", - "network": "mainnet", - "networkId": 11, - "nativeCurrency": { - "name": "Metadium Mainnet Ether", - "symbol": "META", - "decimals": 18 - }, - "rpc": [ - "https://api.metadium.com/prod" - ], - "faucets": [], - "infoURL": "https://metadium.com" - }, - { - "name": "IPOS Network", - "chainId": 1122334455, - "shortName": "ipos", - "chain": "IPOS", - "network": "mainnet", - "networkId": 1122334455, - "nativeCurrency": { - "name": "IPOS Network Ether", - "symbol": "IPOS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.iposlab.com", - "https://rpc2.iposlab.com" - ], - "faucets": [], - "infoURL": "https://iposlab.com" - }, - { - "name": "MathChain", - "chainId": 1139, - "shortName": "MATH", - "chain": "MATH", - "network": "mainnet", - "networkId": 1139, - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://mathwallet.org" - }, - { - "name": "MathChain Testnet", - "chainId": 1140, - "shortName": "tMATH", - "chain": "MATH", - "network": "testnet", - "networkId": 1140, - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://mathwallet.org/" - }, - { - "name": "Metadium Testnet", - "chainId": 12, - "shortName": "kal", - "chain": "META", - "network": "testnet", - "networkId": 12, - "nativeCurrency": { - "name": "Metadium Testnet Ether", - "symbol": "KAL", - "decimals": 18 - }, - "rpc": [ - "https://api.metadium.com/dev" - ], - "faucets": [], - "infoURL": "https://metadium.com" - }, - { - "name": "Huobi ECO Chain Mainnet", - "chainId": 128, - "shortName": "heco", - "chain": "Heco", - "network": "mainnet", - "networkId": 128, - "nativeCurrency": { - "name": "Huobi ECO Chain Native Token", - "symbol": "HT", - "decimals": 18 - }, - "rpc": [ - "https://http-mainnet.hecochain.com", - "wss://ws-mainnet.hecochain.com" - ], - "faucets": [], - "infoURL": "https://www.hecochain.com" - }, - { - "name": "Moonbeam Polkadot", - "chainId": 1284, - "shortName": "mbeam", - "chain": "MOON", - "network": "moonbeam", - "networkId": 1284, - "nativeCurrency": { - "name": "Glimmer", - "symbol": "GLMR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://moonbeam.network/networks/moonbeam/" - }, - { - "name": "Moonriver", - "chainId": 1285, - "shortName": "Moonriver", - "chain": "MOVR", - "network": "MOVR", - "networkId": 1285, - "nativeCurrency": { - "name": "MOVR", - "symbol": "MOVR", - "decimals": 18 - }, - "rpc": [ - "https://rpc.moonriver.moonbeam.network" - ], - "faucets": [], - "infoURL": "https://moonbeam.network/networks/moonriver/" - }, - { - "name": "Moonrock Rococo", - "chainId": 1286, - "shortName": "mrock", - "chain": "MOON", - "network": "moonrock", - "networkId": 1286, - "nativeCurrency": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "" - }, - { - "name": "Moonbeam Testnet Moonbase Alpha", - "chainId": 1287, - "shortName": "mbase", - "chain": "MOON", - "network": "moonbase", - "networkId": 1287, - "nativeCurrency": { - "name": "Dev", - "symbol": "DEV", - "decimals": 18 - }, - "rpc": [ - "https://rpc.testnet.moonbeam.network", - "wss://wss.testnet.moonbeam.network" - ], - "faucets": [], - "infoURL": "https://docs.moonbeam.network/networks/testnet/" - }, - { - "name": "Diode Testnet Staging", - "chainId": 13, - "shortName": "dstg", - "chain": "DIODE", - "network": "testnet", - "networkId": 13, - "nativeCurrency": { - "name": "Staging Diodes", - "symbol": "sDIODE", - "decimals": 18 - }, - "rpc": [ - "https://staging.diode.io:8443/", - "wss://staging.diode.io:8443/ws" - ], - "faucets": [], - "infoURL": "https://diode.io/staging" - }, - { - "name": "Ether-1", - "chainId": 1313114, - "shortName": "etho", - "chain": "ETHO", - "network": "mainnet", - "networkId": 1313114, - "nativeCurrency": { - "name": "Ether-1 Ether", - "symbol": "ETHO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.ether1.org" - ], - "faucets": [], - "infoURL": "https://ether1.org" - }, - { - "name": "NEAR TestNet", - "chainId": 1313161555, - "shortName": "neart", - "chain": "NEAR", - "network": "testnet", - "networkId": 1313161555, - "nativeCurrency": { - "name": "NEAR", - "symbol": "tNEAR", - "decimals": 24 - }, - "rpc": [], - "faucets": [ - "https://wallet.testnet.near.org" - ], - "infoURL": "https://near.org/" - }, - { - "name": "NEAR BetaNet", - "chainId": 1313161556, - "shortName": "nearb", - "chain": "NEAR", - "network": "betanet", - "networkId": 1313161556, - "nativeCurrency": { - "name": "NEAR", - "symbol": "bNEAR", - "decimals": 24 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://near.org/" - }, - { - "name": "Xerom", - "chainId": 1313500, - "shortName": "xero", - "chain": "XERO", - "network": "mainnet", - "networkId": 1313500, - "nativeCurrency": { - "name": "Xerom Ether", - "symbol": "XERO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xerom.org" - ], - "faucets": [], - "infoURL": "https://xerom.org" - }, - { - "name": "PepChain Churchill", - "chainId": 13371337, - "shortName": "tpep", - "chain": "PEP", - "network": "testnet", - "networkId": 13371337, - "nativeCurrency": { - "name": "PepChain Churchill Ether", - "symbol": "TPEP", - "decimals": 18 - }, - "rpc": [ - "https://churchill-rpc.pepchain.io" - ], - "faucets": [], - "infoURL": "https://pepchain.io" - }, - { - "name": "Flare Mainnet", - "chainId": 14, - "shortName": "flr", - "chain": "FLR", - "network": "flare", - "networkId": 14, - "nativeCurrency": { - "name": "Spark", - "symbol": "FLR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://flare.xyz" - }, - { - "name": "Diode Prenet", - "chainId": 15, - "shortName": "diode", - "chain": "DIODE", - "network": "mainnet", - "networkId": 15, - "nativeCurrency": { - "name": "Diodes", - "symbol": "DIODE", - "decimals": 18 - }, - "rpc": [ - "https://prenet.diode.io:8443/", - "wss://prenet.diode.io:8443/ws" - ], - "faucets": [], - "infoURL": "https://diode.io/prenet" - }, - { - "name": "Flare Testnet Coston", - "chainId": 16, - "shortName": "cflr", - "chain": "FLR", - "network": "coston", - "networkId": 16, - "nativeCurrency": { - "name": "Coston Spark", - "symbol": "CFLR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://github.com/flare-eng/coston" - }, - { - "name": "Lightstreams Testnet", - "chainId": 162, - "shortName": "tpht", - "chain": "PHT", - "network": "sirius", - "networkId": 162, - "nativeCurrency": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 - }, - "rpc": [ - "https://node.sirius.lightstreams.io" - ], - "faucets": [ - "https://discuss.lightstreams.network/t/request-test-tokens" - ], - "infoURL": "https://explorer.sirius.lightstreams.io" - }, - { - "name": "Atheios", - "chainId": 1620, - "shortName": "ath", - "chain": "ATH", - "network": "mainnet", - "networkId": 11235813, - "nativeCurrency": { - "name": "Atheios Ether", - "symbol": "ATH", - "decimals": 18 - }, - "rpc": [ - "https://wallet.atheios.com:8797" - ], - "faucets": [], - "infoURL": "https://atheios.com" - }, - { - "name": "Lightstreams Mainnet", - "chainId": 163, - "shortName": "pht", - "chain": "PHT", - "network": "mainnet", - "networkId": 163, - "nativeCurrency": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 - }, - "rpc": [ - "https://node.mainnet.lightstreams.io" - ], - "faucets": [], - "infoURL": "https://explorer.lightstreams.io" - }, - { - "name": "Harmony Mainnet Shard 0", - "chainId": 1666600000, - "shortName": "hmy-s0", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600000, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s0.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 1", - "chainId": 1666600001, - "shortName": "hmy-s1", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600001, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s1.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 2", - "chainId": 1666600002, - "shortName": "hmy-s2", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600002, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s2.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 3", - "chainId": 1666600003, - "shortName": "hmy-s3", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600003, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s3.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "ThaiChain 2.0 ThaiFi", - "chainId": 17, - "shortName": "tfi", - "chain": "TCH", - "network": "thaifi", - "networkId": 17, - "nativeCurrency": { - "name": "Thaifi Ether", - "symbol": "TFI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.thaifi.com" - ], - "faucets": [], - "infoURL": "https://exp.thaifi.com" - }, - { - "name": "ThunderCore Testnet", - "chainId": 18, - "shortName": "TST", - "chain": "TST", - "network": "testnet", - "networkId": 18, - "nativeCurrency": { - "name": "ThunderCore Testnet Ether", - "symbol": "TST", - "decimals": 18 - }, - "rpc": [ - "https://testnet-rpc.thundercore.com" - ], - "faucets": [ - "https://faucet-testnet.thundercore.com" - ], - "infoURL": "https://thundercore.com" - }, - { - "name": "IOLite", - "chainId": 18289463, - "shortName": "ilt", - "chain": "ILT", - "network": "mainnet", - "networkId": 18289463, - "nativeCurrency": { - "name": "IOLite Ether", - "symbol": "ILT", - "decimals": 18 - }, - "rpc": [ - "https://net.iolite.io" - ], - "faucets": [], - "infoURL": "https://iolite.io" - }, - { - "name": "Teslafunds", - "chainId": 1856, - "shortName": "tsf", - "chain": "TSF", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Teslafunds Ether", - "symbol": "TSF", - "decimals": 18 - }, - "rpc": [ - "https://tsfapi.europool.me" - ], - "faucets": [], - "infoURL": "https://teslafunds.io" - }, - { - "name": "EtherGem", - "chainId": 1987, - "shortName": "egem", - "chain": "EGEM", - "network": "mainnet", - "networkId": 1987, - "nativeCurrency": { - "name": "EtherGem Ether", - "symbol": "EGEM", - "decimals": 18 - }, - "rpc": [ - "https://jsonrpc.egem.io/custom" - ], - "faucets": [], - "infoURL": "https://egem.io" - }, - { - "name": "Expanse Network", - "chainId": 2, - "shortName": "exp", - "chain": "EXP", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Expanse Network Ether", - "symbol": "EXP", - "decimals": 18 - }, - "rpc": [ - "https://node.expanse.tech" - ], - "faucets": [], - "infoURL": "https://expanse.tech" - }, - { - "name": "ELA-ETH-Sidechain Mainnet", - "chainId": 20, - "shortName": "elaeth", - "chain": "ETH", - "network": "mainnet", - "networkId": 20, - "nativeCurrency": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 - }, - "rpc": [ - "https://mainrpc.elaeth.io" - ], - "faucets": [], - "infoURL": "https://www.elastos.org/" - }, - { - "name": "Akroma", - "chainId": 200625, - "shortName": "aka", - "chain": "AKA", - "network": "mainnet", - "networkId": 200625, - "nativeCurrency": { - "name": "Akroma Ether", - "symbol": "AKA", - "decimals": 18 - }, - "rpc": [ - "https://remote.akroma.io" - ], - "faucets": [], - "infoURL": "https://akroma.io" - }, - { - "name": "420coin", - "chainId": 2020, - "shortName": "420", - "chain": "420", - "network": "mainnet", - "networkId": 2020, - "nativeCurrency": { - "name": "Fourtwenty", - "symbol": "420", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://420integrated.com" - }, - { - "name": "Edgeware Mainnet", - "chainId": 2021, - "shortName": "edg", - "chain": "EDG", - "network": "mainnet", - "networkId": 2021, - "nativeCurrency": { - "name": "Edge", - "symbol": "EDG", - "decimals": 18 - }, - "rpc": [ - "https://mainnet1.edgewa.re" - ], - "faucets": [], - "infoURL": "http://edgewa.re" - }, - { - "name": "Beresheet Testnet", - "chainId": 2022, - "shortName": "edgt", - "chain": "EDG", - "network": "beresheet", - "networkId": 2022, - "nativeCurrency": { - "name": "Testnet Edge", - "symbol": "tEDG", - "decimals": 18 - }, - "rpc": [ - "https://beresheet1.edgewa.re" - ], - "faucets": [], - "infoURL": "http://edgewa.re" - }, - { - "name": "ELA-ETH-Sidechain Testnet", - "chainId": 21, - "shortName": "elaetht", - "chain": "ETH", - "network": "testnet", - "networkId": 21, - "nativeCurrency": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.elaeth.io" - ], - "faucets": [ - "https://faucet.elaeth.io/" - ], - "infoURL": "https://elaeth.io/" - }, - { - "name": "Freight Trust Network", - "chainId": 211, - "shortName": "EDI", - "chain": "EDI", - "network": "freight & trade network", - "networkId": 0, - "nativeCurrency": { - "name": "Freight Trust Native", - "symbol": "0xF", - "decimals": 18 - }, - "rpc": [ - "http://13.57.207.168:3435", - "https://app.freighttrust.net/ftn/${API_KEY}" - ], - "faucets": [ - "http://faucet.freight.sh" - ], - "infoURL": "https://freighttrust.com" - }, - { - "name": "Webchain", - "chainId": 24484, - "shortName": "web", - "chain": "WEB", - "network": "mainnet", - "networkId": 37129, - "nativeCurrency": { - "name": "Webchain Ether", - "symbol": "WEB", - "decimals": 18 - }, - "rpc": [ - "https://node1.webchain.network" - ], - "faucets": [], - "infoURL": "https://webchain.network" - }, - { - "name": "Energy Web Chain", - "chainId": 246, - "shortName": "ewt", - "chain": "Energy Web Chain", - "network": "mainnet", - "networkId": 246, - "nativeCurrency": { - "name": "Energy Web Token", - "symbol": "EWT", - "decimals": 18 - }, - "rpc": [ - "https://rpc.energyweb.org", - "wss://rpc.energyweb.org/ws" - ], - "faucets": [], - "infoURL": "https://energyweb.org" - }, - { - "name": "ARTIS sigma1", - "chainId": 246529, - "shortName": "ats", - "chain": "ARTIS", - "network": "sigma1", - "networkId": 246529, - "nativeCurrency": { - "name": "ARTIS sigma1 Ether", - "symbol": "ATS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.sigma1.artis.network" - ], - "faucets": [], - "infoURL": "https://artis.eco" - }, - { - "name": "ARTIS Testnet tau1", - "chainId": 246785, - "shortName": "atstau", - "chain": "ARTIS", - "network": "tau1", - "networkId": 246785, - "nativeCurrency": { - "name": "ARTIS tau1 Ether", - "symbol": "tATS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tau1.artis.network" - ], - "faucets": [], - "infoURL": "https://artis.network" - }, - { - "name": "Huobi ECO Chain Testnet", - "chainId": 256, - "shortName": "hecot", - "chain": "Heco", - "network": "testnet", - "networkId": 256, - "nativeCurrency": { - "name": "Huobi ECO Chain Test Native Token", - "symbol": "htt", - "decimals": 18 - }, - "rpc": [ - "https://http-testnet.hecochain.com", - "wss://ws-testnet.hecochain.com" - ], - "faucets": [ - "https://scan-testnet.hecochain.com/faucet" - ], - "infoURL": "https://www.hecochain.com" - }, - { - "name": "Auxilium Network Mainnet", - "chainId": 28945486, - "shortName": "auxi", - "chain": "AUX", - "network": "mainnet", - "networkId": 28945486, - "nativeCurrency": { - "name": "Auxilium coin", - "symbol": "AUX", - "decimals": 18 - }, - "rpc": [ - "https://rpc.auxilium.global" - ], - "faucets": [], - "infoURL": "https://auxilium.global" - }, - { - "name": "RSK Mainnet", - "chainId": 30, - "shortName": "rsk", - "chain": "RSK", - "network": "mainnet", - "networkId": 30, - "nativeCurrency": { - "name": "RSK Mainnet Ether", - "symbol": "RBTC", - "decimals": 18 - }, - "rpc": [ - "https://public-node.rsk.co", - "https://mycrypto.rsk.co" - ], - "faucets": [], - "infoURL": "https://rsk.co" - }, - { - "name": "RSK Testnet", - "chainId": 31, - "shortName": "trsk", - "chain": "RSK", - "network": "testnet", - "networkId": 31, - "nativeCurrency": { - "name": "RSK Testnet Ether", - "symbol": "tRBTC", - "decimals": 18 - }, - "rpc": [ - "https://public-node.testnet.rsk.co", - "https://mycrypto.testnet.rsk.co" - ], - "faucets": [ - "https://faucet.testnet.rsk.co" - ], - "infoURL": "https://rsk.co" - }, - { - "name": "Ethersocial Network", - "chainId": 31102, - "shortName": "esn", - "chain": "ESN", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ethersocial Network Ether", - "symbol": "ESN", - "decimals": 18 - }, - "rpc": [ - "https://api.esn.gonspool.com" - ], - "faucets": [], - "infoURL": "https://ethersocial.org" - }, - { - "name": "Pirl", - "chainId": 3125659152, - "shortName": "pirl", - "chain": "PIRL", - "network": "mainnet", - "networkId": 3125659152, - "nativeCurrency": { - "name": "Pirl Ether", - "symbol": "PIRL", - "decimals": 18 - }, - "rpc": [ - "https://wallrpc.pirl.io" - ], - "faucets": [], - "infoURL": "https://pirl.io" - }, - { - "name": "GoodData Mainnet", - "chainId": 33, - "shortName": "GooD", - "chain": "GooD", - "network": "mainnet", - "networkId": 33, - "nativeCurrency": { - "name": "GoodData Mainnet Ether", - "symbol": "GooD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.goodata.io" - ], - "faucets": [], - "infoURL": "https://www.goodata.org" - }, - { - "name": "TBWG Chain", - "chainId": 35, - "shortName": "tbwg", - "chain": "TBWG", - "network": "mainnet", - "networkId": 35, - "nativeCurrency": { - "name": "TBWG Ether", - "symbol": "TBG", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tbwg.io" - ], - "faucets": [], - "infoURL": "https://tbwg.io" - }, - { - "name": "Joys Digital Mainnet", - "chainId": 35855456, - "shortName": "JOYS", - "chain": "JOYS", - "network": "mainnet", - "networkId": 35855456, - "nativeCurrency": { - "name": "JOYS", - "symbol": "JOYS", - "decimals": 18 - }, - "rpc": [ - "https://node.joys.digital" - ], - "faucets": [], - "infoURL": "https://joys.digital" - }, - { - "name": "Valorbit", - "chainId": 38, - "shortName": "val", - "chain": "VAL", - "network": "mainnet", - "networkId": 38, - "nativeCurrency": { - "name": "Valorbit", - "symbol": "VAL", - "decimals": 18 - }, - "rpc": [ - "https://rpc.valorbit.com/v2" - ], - "faucets": [], - "infoURL": "https://valorbit.com" - }, - { - "name": "Lisinski", - "chainId": 385, - "shortName": "lisinski", - "chain": "CRO", - "network": "mainnet", - "networkId": 385, - "nativeCurrency": { - "name": "Lisinski Ether", - "symbol": "LISINSKI", - "decimals": 18 - }, - "rpc": [ - "https://rpc-bitfalls1.lisinski.online" - ], - "faucets": [ - "https://pipa.lisinski.online" - ], - "infoURL": "https://lisinski.online" - }, - { - "name": "Energi Mainnet", - "chainId": 39797, - "shortName": "nrg", - "chain": "NRG", - "network": "mainnet", - "networkId": 39797, - "nativeCurrency": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 - }, - "rpc": [ - "https://nodeapi.gen3.energi.network" - ], - "faucets": [], - "infoURL": "https://www.energi.world/" - }, - { - "name": "Telos EVM Mainnet", - "chainId": 40, - "shortName": "Telos EVM", - "chain": "TLOS", - "network": "mainnet", - "networkId": 40, - "nativeCurrency": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.telos.net/evm" - ], - "faucets": [], - "infoURL": "https://telos.net" - }, - { - "name": "Telos EVM Testnet", - "chainId": 41, - "shortName": "Telos EVM Testnet", - "chain": "TLOS", - "network": "testnet", - "networkId": 41, - "nativeCurrency": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 - }, - "rpc": [ - "https://testnet.telos.net/evm" - ], - "faucets": [ - "https://app.telos.net/testnet/developers" - ], - "infoURL": "https://telos.net" - }, - { - "name": "Optimistic Ethereum Testnet Goerli", - "chainId": 420, - "shortName": "ogor", - "chain": "ETH", - "network": "goerli", - "networkId": 420, - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io" - }, - { - "name": "pegglecoin", - "chainId": 42069, - "shortName": "PC", - "chain": "42069", - "network": "mainnet", - "networkId": 42069, - "nativeCurrency": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://teampeggle.com" - }, - { - "name": "Celo Mainnet", - "chainId": 42220, - "shortName": "CELO", - "chain": "CELO", - "network": "Mainnet", - "networkId": 42220, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://forno.celo.org", - "wss://forno.celo.org/ws" - ], - "faucets": [], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Darwinia Pangolin Testnet", - "chainId": 43, - "shortName": "darwinia", - "chain": "pangolin", - "network": "free testnet", - "networkId": 43, - "nativeCurrency": { - "name": "Pangolin RING", - "symbol": "PRING", - "decimals": 9 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://darwinia.network/" - }, - { - "name": "Athereum", - "chainId": 43110, - "shortName": "avaeth", - "chain": "ATH", - "network": "athereum", - "networkId": 43110, - "nativeCurrency": { - "name": "Athereum Ether", - "symbol": "ATH", - "decimals": 18 - }, - "rpc": [ - "https://ava.network:21015/ext/evm/rpc" - ], - "faucets": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], - "infoURL": "https://athereum.ava.network" - }, - { - "name": "Avalanche Fuji Testnet", - "chainId": 43113, - "shortName": "Fuji", - "chain": "AVAX", - "network": "testnet", - "networkId": 1, - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "rpc": [ - "https://api.avax-test.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://faucet.avax-test.network/" - ], - "infoURL": "https://cchain.explorer.avax-test.network" - }, - { - "name": "Celo Alfajores Testnet", - "chainId": 44787, - "shortName": "ALFA", - "chain": "CELO", - "network": "Alfajores", - "networkId": 44787, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://alfajores-forno.celo-testnet.org", - "wss://alfajores-forno.celo-testnet.org/ws" - ], - "faucets": [ - "https://celo.org/developers/faucet", - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" - ], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Energi Testnet", - "chainId": 49797, - "shortName": "tnrg", - "chain": "NRG", - "network": "testnet", - "networkId": 49797, - "nativeCurrency": { - "name": "Energi", - "symbol": "tNRG", - "decimals": 18 - }, - "rpc": [ - "https://nodeapi.test3.energi.network" - ], - "faucets": [], - "infoURL": "https://www.energi.world/" - }, - { - "name": "Rupaya", - "chainId": 499, - "shortName": "rupx", - "chain": "RUPX", - "network": "mainnet", - "networkId": 499, - "nativeCurrency": { - "name": "Rupaya", - "symbol": "RUPX", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://www.rupx.io" - }, - { - "name": "XinFin Network Mainnet", - "chainId": 50, - "shortName": "xdc", - "chain": "XDC", - "network": "mainnet", - "networkId": 50, - "nativeCurrency": { - "name": "XinFin", - "symbol": "XDC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xinfin.network" - ], - "faucets": [], - "infoURL": "https://xinfin.org" - }, - { - "name": "XinFin Apothem Testnet", - "chainId": 51, - "shortName": "TXDC", - "chain": "TXDC", - "network": "testnet", - "networkId": 51, - "nativeCurrency": { - "name": "XinFinTest", - "symbol": "TXDC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.apothem.network" - ], - "faucets": [], - "infoURL": "https://xinfin.org" - }, - { - "name": "CoinEx Smart Chain Mainnet", - "chainId": 52, - "shortName": "cet", - "chain": "CSC", - "network": "mainnet", - "networkId": 52, - "nativeCurrency": { - "name": "CoinEx Chain Native Token", - "symbol": "cet", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.coinex.net" - ], - "faucets": [], - "infoURL": "http://www.coinex.org/" - }, - { - "name": "CoinEx Smart Chain Testnet", - "chainId": 53, - "shortName": "tcet", - "chain": "CSC", - "network": "testnet", - "networkId": 53, - "nativeCurrency": { - "name": "CoinEx Chain Test Native Token", - "symbol": "cett", - "decimals": 18 - }, - "rpc": [ - "https://rpc-testnet.coinex.net" - ], - "faucets": [], - "infoURL": "http://www.coinex.org/" - }, - { - "name": "Tao Network", - "chainId": 558, - "shortName": "tao", - "chain": "TAO", - "network": "core", - "networkId": 558, - "nativeCurrency": { - "name": "Tao", - "symbol": "TAO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.testnet.tao.network", - "http://rpc.testnet.tao.network:8545", - "https://rpc.tao.network", - "wss://rpc.tao.network" - ], - "faucets": [], - "infoURL": "https://tao.network" - }, - { - "name": "Binance Smart Chain Mainnet", - "chainId": 56, - "shortName": "bnb", - "chain": "BSC", - "network": "mainnet", - "networkId": 56, - "nativeCurrency": { - "name": "Binance Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "rpc": [ - "https://bsc-dataseed1.binance.org", - "https://bsc-dataseed2.binance.org", - "https://bsc-dataseed3.binance.org", - "https://bsc-dataseed4.binance.org", - "https://bsc-dataseed1.defibit.io", - "https://bsc-dataseed2.defibit.io", - "https://bsc-dataseed3.defibit.io", - "https://bsc-dataseed4.defibit.io", - "https://bsc-dataseed1.ninicoin.io", - "https://bsc-dataseed2.ninicoin.io", - "https://bsc-dataseed3.ninicoin.io", - "https://bsc-dataseed4.ninicoin.io", - "wss://bsc-ws-node.nariox.org" - ], - "faucets": [], - "infoURL": "https://www.binance.org" - }, - { - "name": "Wegochain Rubidium Mainnet", - "chainId": 5869, - "shortName": "rbd", - "chain": "RBD", - "network": "mainnet", - "networkId": 5869, - "nativeCurrency": { - "name": "Rubid", - "symbol": "RBD", - "decimals": 18 - }, - "rpc": [ - "https://proxy.wegochain.io", - "http://wallet.wegochain.io:7764" - ], - "faucets": [], - "infoURL": "http://wegochain.io" - }, - { - "name": "Acala Mandala Testnet", - "chainId": 595, - "shortName": "maca", - "chain": "mACA", - "network": "testnet", - "networkId": 595, - "nativeCurrency": { - "name": "Acala Mandala Token", - "symbol": "mACA", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://acala.network" - }, - { - "name": "Ethereum Classic Testnet Kotti", - "chainId": 6, - "shortName": "kot", - "chain": "ETC", - "network": "kotti", - "networkId": 6, - "nativeCurrency": { - "name": "Kotti Ether", - "symbol": "KOT", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://explorer.jade.builders/?network=kotti" - }, - { - "name": "GoChain", - "chainId": 60, - "shortName": "go", - "chain": "GO", - "network": "mainnet", - "networkId": 60, - "nativeCurrency": { - "name": "GoChain Ether", - "symbol": "GO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.gochain.io" - ], - "faucets": [], - "infoURL": "https://gochain.io" - }, - { - "name": "Aquachain", - "chainId": 61717561, - "shortName": "aqua", - "chain": "AQUA", - "network": "mainnet", - "networkId": 61717561, - "nativeCurrency": { - "name": "Aquachain Ether", - "symbol": "AQUA", - "decimals": 18 - }, - "rpc": [ - "https://c.onical.org", - "https://tx.aquacha.in/api" - ], - "faucets": [ - "https://aquacha.in/faucet" - ], - "infoURL": "https://aquachain.github.io" - }, - { - "name": "Ethereum Classic Testnet Morden", - "chainId": 62, - "shortName": "tetc", - "chain": "ETC", - "network": "testnet", - "networkId": 2, - "nativeCurrency": { - "name": "Ethereum Classic Testnet Ether", - "symbol": "TETC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://ethereumclassic.org" - }, - { - "name": "Celo Baklava Testnet", - "chainId": 62320, - "shortName": "BKLV", - "chain": "CELO", - "network": "Baklava", - "networkId": 62320, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://baklava-forno.celo-testnet.org" - ], - "faucets": [ - "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" - ], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Ethereum Classic Testnet Mordor", - "chainId": 63, - "shortName": "metc", - "chain": "ETC", - "network": "testnet", - "networkId": 7, - "nativeCurrency": { - "name": "Mordor Classic Testnet Ether", - "symbol": "METC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://github.com/eth-classic/mordor/" - }, - { - "name": "Ellaism", - "chainId": 64, - "shortName": "ella", - "chain": "ELLA", - "network": "mainnet", - "networkId": 64, - "nativeCurrency": { - "name": "Ellaism Ether", - "symbol": "ELLA", - "decimals": 18 - }, - "rpc": [ - "https://jsonrpc.ellaism.org" - ], - "faucets": [], - "infoURL": "https://ellaism.org" - }, - { - "name": "OKExChain Testnet", - "chainId": 65, - "shortName": "tokt", - "chain": "okexchain", - "network": "testnet", - "networkId": 65, - "nativeCurrency": { - "name": "OKExChain Global Utility Token in testnet", - "symbol": "OKT", - "decimals": 18 - }, - "rpc": [ - "https://exchaintestrpc.okex.org" - ], - "faucets": [ - "https://www.okex.com/drawdex" - ], - "infoURL": "https://www.okex.com/okexchain", - "app_resource": { - "ic_home_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png", - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png", - "ic_all_whitelist_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png", - "color_chain_bg": "0x1E2D5D", - "color_chain_text": "0xFFFFFF" - } - }, - { - "name": "OKExChain Mainnet", - "chainId": 66, - "shortName": "okt", - "chain": "okexchain", - "network": "mainnet", - "networkId": 66, - "nativeCurrency": { - "name": "OKExChain Global Utility Token", - "symbol": "OKT", - "decimals": 18 - }, - "rpc": [ - "https://exchain.okexcn.com" - ], - "faucets": [], - "infoURL": "https://www.okex.com/okexchain" - }, - { - "name": "DBChain Testnet", - "chainId": 67, - "shortName": "dbm", - "chain": "DBM", - "network": "testnet", - "networkId": 67, - "nativeCurrency": { - "name": "DBChain Testnet", - "symbol": "DBM", - "decimals": 18 - }, - "rpc": [ - "http://test-rpc.dbmbp.com" - ], - "faucets": [], - "infoURL": "http://test.dbmbp.com" - }, - { - "name": "SoterOne Mainnet", - "chainId": 68, - "shortName": "SO1", - "chain": "SOTER", - "network": "mainnet", - "networkId": 68, - "nativeCurrency": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 - }, - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [], - "infoURL": "https://www.soterone.com" - }, - { - "name": "Karura Network", - "chainId": 686, - "shortName": "kar", - "chain": "KAR", - "network": "mainnet", - "networkId": 686, - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://karura.network" - }, - { - "name": "Optimistic Ethereum Testnet Kovan", - "chainId": 69, - "shortName": "okov", - "chain": "ETH", - "network": "kovan", - "networkId": 69, - "nativeCurrency": { - "name": "Kovan Ether", - "symbol": "KOR", - "decimals": 18 - }, - "rpc": [ - "https://kovan.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io" - }, - { - "name": "ThaiChain", - "chainId": 7, - "shortName": "tch", - "chain": "TCH", - "network": "mainnet", - "networkId": 7, - "nativeCurrency": { - "name": "ThaiChain Ether", - "symbol": "TCH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.dome.cloud" - ], - "faucets": [], - "infoURL": "https://thaichain.io" - }, - { - "name": "Energy Web Volta Testnet", - "chainId": 73799, - "shortName": "vt", - "chain": "Volta", - "network": "testnet", - "networkId": 73799, - "nativeCurrency": { - "name": "Volta Token", - "symbol": "VT", - "decimals": 18 - }, - "rpc": [ - "https://volta-rpc.energyweb.org", - "wss://volta-rpc.energyweb.org/ws" - ], - "faucets": [ - "https://voltafaucet.energyweb.org" - ], - "infoURL": "https://energyweb.org" - }, - { - "name": "Mix", - "chainId": 76, - "shortName": "mix", - "chain": "MIX", - "network": "mainnet", - "networkId": 76, - "nativeCurrency": { - "name": "Mix Ether", - "symbol": "MIX", - "decimals": 18 - }, - "rpc": [ - "https://rpc2.mix-blockchain.org:8647" - ], - "faucets": [], - "infoURL": "https://mix-blockchain.org" - }, - { - "name": "POA Network Sokol", - "chainId": 77, - "shortName": "poa", - "chain": "POA", - "network": "sokol", - "networkId": 77, - "nativeCurrency": { - "name": "POA Sokol Ether", - "symbol": "POA", - "decimals": 18 - }, - "rpc": [ - "https://sokol.poa.network", - "wss://sokol.poa.network/wss", - "ws://sokol.poa.network:8546" - ], - "faucets": [ - "https://faucet-sokol.herokuapp.com" - ], - "infoURL": "https://poa.network" - }, - { - "name": "Musicoin", - "chainId": 7762959, - "shortName": "music", - "chain": "MUSIC", - "network": "mainnet", - "networkId": 7762959, - "nativeCurrency": { - "name": "Musicoin", - "symbol": "MUSIC", - "decimals": 18 - }, - "rpc": [ - "https://mewapi.musicoin.tw" - ], - "faucets": [], - "infoURL": "https://musicoin.tw" - }, - { - "name": "Mint Testnet", - "chain": "ETH", - "rpc": [ - "https://testnet-rpc.mintchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "minttest", - "chainId": 1686, - "networkId": 1686, - "icon": "mintTestnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://testnet-bridge.mintchain.io" - } - ] - } - }, - { - "name": "Mint Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-testnet-rpc.mintchain.io" - ], - "nativeCurrency": { - "name": "Mint Sepolia Testnet", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "Mint Testnet", - "chainId": 1687, - "networkId": 1687, - "icon": "mintTestnet", - "explorers": [ - { - "name": "blockscout", - "url": "hhttps://sepolia-testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://sepolia-testnet-bridge.mintchain.io" - } - ] - }, - "faucets": [ - "http://mintchain.io/faucet" - ] - }, - { - "name": "Ethermint Testnet", - "chainId": 777, - "shortName": "emint", - "chain": "ETHERMINT", - "network": "testnet", - "networkId": 777, - "nativeCurrency": { - "name": "Photon", - "symbol": "Photon", - "decimals": 18 - }, - "rpc": [ - "http://54.210.246.165:8545" - ], - "faucets": [], - "infoURL": "https://docs.ethermint.zone" - }, - { - "name": "PrimusChain mainnet", - "chainId": 78, - "shortName": "primuschain", - "chain": "PC", - "network": "mainnet", - "networkId": 78, - "nativeCurrency": { - "name": "Primus Ether", - "symbol": "PETH", - "decimals": 18 - }, - "rpc": [ - "https://ethnode.primusmoney.com/mainnet" - ], - "faucets": [], - "infoURL": "https://primusmoney.com" - }, - { - "name": "Firenze test network", - "chainId": 78110, - "shortName": "firenze", - "chain": "ETH", - "network": "testnet", - "networkId": 78110, - "nativeCurrency": { - "name": "Firenze Ether", - "symbol": "FIN", - "decimals": 18 - }, - "rpc": [ - "https://ethnode.primusmoney.com/firenze" - ], - "faucets": [], - "infoURL": "https://primusmoney.com" - }, - { - "name": "Acala Network", - "chainId": 787, - "shortName": "aca", - "chain": "ACA", - "network": "mainnet", - "networkId": 787, - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://acala.network" - }, - { - "name": "GateChain Mainnet", - "chainId": 86, - "shortName": "gt", - "chain": "GT", - "network": "mainnet", - "networkId": 86, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://evm.gatenode.cc", - "https://evm-cn1.gatenode.cc:6061" - ], - "faucets": [ - "https://www.gatescan.org/faucet" - ], - "infoURL": "https://www.gatechain.io" - }, - { - "name": "Ubiq Network Mainnet", - "chainId": 8, - "shortName": "ubq", - "chain": "UBQ", - "network": "mainnet", - "networkId": 88, - "nativeCurrency": { - "name": "Ubiq Ether", - "symbol": "UBQ", - "decimals": 18 - }, - "rpc": [ - "https://rpc.octano.dev", - "https://pyrus2.ubiqscan.io" - ], - "faucets": [], - "infoURL": "https://ubiqsmart.com" - }, - { - "name": "Matic Testnet Mumbai", - "chainId": 80001, - "shortName": "maticmum", - "chain": "Matic", - "network": "testnet", - "networkId": 80001, - "nativeCurrency": { - "name": "Matic", - "symbol": "tMATIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mumbai.matic.today", - "wss://ws-mumbai.matic.today" - ], - "faucets": [ - "https://faucet.matic.network/" - ], - "infoURL": "https://matic.network/" - }, - { - "name": "Meter Mainnet", - "chainId": 82, - "shortName": "Meter", - "chain": "METER", - "network": "mainnet", - "networkId": 82, - "nativeCurrency": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 - }, - "rpc": [ - "https://rpc.meter.io" - ], - "faucets": [], - "infoURL": "https://www.meter.io" - }, - { - "name": "Callisto Mainnet", - "chainId": 820, - "shortName": "clo", - "chain": "CLO", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Callisto Mainnet Ether", - "symbol": "CLO", - "decimals": 18 - }, - "rpc": [ - "https://clo-geth.0xinfra.com" - ], - "faucets": [], - "infoURL": "https://callisto.network" - }, - { - "name": "Callisto Testnet", - "chainId": 821, - "shortName": "tclo", - "chain": "CLO", - "network": "testnet", - "networkId": 2, - "nativeCurrency": { - "name": "Callisto Testnet Ether", - "symbol": "TCLO", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://callisto.network" - }, - { - "name": "Klaytn Mainnet Cypress", - "chainId": 8217, - "shortName": "Cypress", - "chain": "KLAY", - "network": "cypress", - "networkId": 8217, - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" - ], - "faucets": [], - "infoURL": "https://www.klaytn.com/" - }, - { - "name": "Wanchain", - "chainId": 888, - "shortName": "wan", - "chain": "WAN", - "network": "mainnet", - "networkId": 888, - "nativeCurrency": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 - }, - "rpc": [ - "https://gwan-ssl.wandevs.org:56891/" - ], - "faucets": [], - "infoURL": "https://www.wanscan.org" - }, - { - "name": "bloxberg", - "chainId": 8995, - "shortName": "berg", - "chain": "bloxberg", - "network": "mainnet", - "networkId": 8995, - "nativeCurrency": { - "name": "BERG", - "symbol": "U+25B3", - "decimals": 18 - }, - "rpc": [ - "https://core.bloxberg.org" - ], - "faucets": [ - "https://faucet.bloxberg.org/" - ], - "infoURL": "https://bloxberg.org" - }, - { - "name": "Ubiq Network Testnet", - "chainId": 9, - "shortName": "tubq", - "chain": "UBQ", - "network": "mainnet", - "networkId": 2, - "nativeCurrency": { - "name": "Ubiq Testnet Ether", - "symbol": "TUBQ", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://ethersocial.org" - }, - { - "name": "Binance Smart Chain Testnet", - "chainId": 97, - "shortName": "bnbt", - "chain": "BSC", - "network": "Chapel", - "networkId": 97, - "nativeCurrency": { - "name": "Binance Chain Native Token", - "symbol": "tBNB", - "decimals": 18 - }, - "rpc": [ - "https://data-seed-prebsc-1-s1.binance.org:8545", - "https://data-seed-prebsc-2-s1.binance.org:8545", - "https://data-seed-prebsc-1-s2.binance.org:8545", - "https://data-seed-prebsc-2-s2.binance.org:8545", - "https://data-seed-prebsc-1-s3.binance.org:8545", - "https://data-seed-prebsc-2-s3.binance.org:8545" - ], - "faucets": [ - "https://testnet.binance.org/faucet-smart" - ], - "infoURL": "https://testnet.binance.org/" - }, - { - "name": "Nepal Blockchain Network", - "chainId": 977, - "shortName": "yeti", - "chain": "YETI", - "network": "mainnet", - "networkId": 977, - "nativeCurrency": { - "name": "Nepal Blockchain Network Ether", - "symbol": "YETI", - "decimals": 18 - }, - "rpc": [ - "https://api.nepalblockchain.dev", - "https://api.nepalblockchain.network" - ], - "faucets": [ - "https://faucet.nepalblockchain.network" - ], - "infoURL": "https://nepalblockchain.network" - }, - { - "name": "POA Network Core", - "chainId": 99, - "shortName": "skl", - "chain": "POA", - "network": "core", - "networkId": 99, - "nativeCurrency": { - "name": "POA Network Core Ether", - "symbol": "SKL", - "decimals": 18 - }, - "rpc": [ - "https://core.poanetwork.dev", - "http://core.poanetwork.dev:8545", - "https://core.poa.network", - "ws://core.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://poa.network" - }, - { - "name": "Joys Digital TestNet", - "chainId": 99415706, - "shortName": "TOYS", - "chain": "TOYS", - "network": "testnet", - "networkId": 99415706, - "nativeCurrency": { - "name": "TOYS", - "symbol": "TOYS", - "decimals": 18 - }, - "rpc": [ - "https://toys.joys.cash/" - ], - "faucets": [ - "https://faucet.joys.digital/" - ], - "infoURL": "https://joys.digital" - }, - { - "name": "Wanchain Testnet", - "chainId": 999, - "shortName": "twan", - "chain": "WAN", - "network": "testnet", - "networkId": 999, - "nativeCurrency": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 - }, - "rpc": [ - "https://gwan-ssl.wandevs.org:46891/" - ], - "faucets": [], - "infoURL": "https://testnet.wanscan.org" - }, - { - "name": "HPB Mainnet", - "chainId": 269, - "shortName": "HPB", - "chain": "HPB", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "HPB", - "symbol": "HPB", - "decimals": 18 - }, - "rpc": [ - "https://hpbnode.com" - ], - "faucets": [], - "infoURL": "https://hpb.io" - }, - { - "name": "KCC Mainnet", - "chainId": 321, - "shortName": "kcc", - "chain": "KCC", - "network": "mainnet", - "networkId": 321, - "nativeCurrency": { - "name": "KuCoin Token", - "symbol": "KCS", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.kcc.network", - "wss://rpc-ws-mainnet.kcc.network" - ], - "faucets": [], - "infoURL": "https://kcc.io", - "app_resource": { - "ic_chain_select": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-0.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-1.png", - "color_chain_bg": "0x27CD96" - }, - "explorers": [ - { - "name": "KCC Scan (Blockscout)", - "url": "https://scan.kcc.io", - "standard": "EIP3091" - }, - { - "name": "KCC Explorer", - "url": "https://explorer.kcc.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "HALO Mainnet", - "chainId": 1280, - "shortName": "HO", - "chain": "HALO", - "network": "mainnet", - "networkId": 1280, - "nativeCurrency": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 - }, - "rpc": [ - "https://nodes.halo.land" - ], - "faucets": [], - "infoURL": "https://halo.land/#/", - "app_resource": { - "ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png", - "color_chain_bg": "0xB1232C" - } - }, - { - "name": "UN Chain", - "chainId": 1681681688, - "shortName": "un", - "chain": "UN", - "network": "mainnet", - "networkId": 1681681688, - "nativeCurrency": { - "name": "UN", - "symbol": "UN", - "decimals": 18 - }, - "rpc": [ - "http://116.62.244.90:50121", - "ws://116.62.244.90:60121" - ], - "faucets": [], - "infoURL": "http://www.untokencan.com/#/", - "app_resource": { - "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", - "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", - "color_chain_bg": "0x58B2AF" - } - }, - { - "name": "Vision Mainnet", - "chainId": 888888, - "shortName": "Vision", - "chain": "Vision - Mainnet", - "network": "mainnet", - "networkId": 888888, - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "rpc": [ - "https://infragrid.v.network/ethereum/compatible" - ], - "faucets": [], - "infoURL": "https://visionscan.org", - "app_resource": { - "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", - "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", - "color_chain_bg": "0x000000" - } - }, - { - "name": "Vision - Vpioneer Testnet", - "chainId": 666666, - "shortName": "Vpioneer", - "chain": "Vision - Vpioneer", - "network": "Vpioneer", - "networkId": 666666, - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "rpc": [ - "https://vpioneer.infragrid.v.network/ethereum/compatible" - ], - "faucets": [ - "https://vpioneerfaucet.visionscan.org" - ], - "infoURL": "https://visionscan.org", - "app_resource": { - "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", - "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", - "color_chain_bg": "0x000000" - } - }, - { - "name": "SAT L2 Chain", - "chainId": 123778899, - "shortName": "SL2", - "chain": "SL2", - "network": "testnet", - "networkId": 123778899, - "nativeCurrency": { - "name": "SL2", - "symbol": "SL2", - "decimals": 18 - }, - "rpc": [ - "http://123.58.210.13:8546" - ], - "faucets": [], - "infoURL": "", - "app_resource": { - "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", - "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", - "color_chain_bg": "0x8250df" - } - }, - { - "name": "Evmos Testnet", - "chain": "Evmos", - "rpc": [ - "https://evmos-archive-testnet.api.bdnodes.net:8545" - ], - "faucets": [ - "https://faucet.evmos.dev" - ], - "nativeCurrency": { - "name": "test-Evmos", - "symbol": "tEVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos-testnet", - "chainId": 9000, - "networkId": 9000, - "icon": "evmos", - "explorers": [ - { - "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.dev", - "standard": "none", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer", - "url": "https://explorer.evmos.dev", - "standard": "none", - "icon": "evmos" - } - ] - }, - { - "name": "Evmos", - "chain": "Evmos", - "rpc": [ - "https://eth.bd.evmos.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evmos", - "symbol": "EVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos", - "chainId": 9001, - "networkId": 9001, - "icon": "evmos", - "explorers": [ - { - "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.org", - "standard": "none", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer (Mintscan)", - "url": "https://www.mintscan.io/evmos", - "standard": "none", - "icon": "evmos" - } - ] - }, - { - "name": "Songbird Canary-Network", - "chain": "SGB", - "icon": "songbird", - "rpc": [ - "https://songbird.towolabs.com/rpc", - "https://sgb.ftso.com.au/ext/bc/C/rpc", - "https://sgb.lightft.so/rpc", - "https://sgb-rpc.ftso.eu" - ], - "faucets": [], - "nativeCurrency": { - "name": "Songbird", - "symbol": "SGB", - "decimals": 18 - }, - "infoURL": "https://flare.xyz", - "shortName": "sgb", - "chainId": 19, - "networkId": 19, - "explorers": [ - { - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "ELA-DID-Sidechain Mainnet", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 - }, - "infoURL": "https://www.elastos.org/", - "shortName": "eladid", - "chainId": 22, - "networkId": 22 - }, - { - "name": "Dithereum Mainnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-mainnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], - "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", - "decimals": 18 - }, - "infoURL": "https://dithereum.org", - "shortName": "dthmainnet", - "chainId": 24, - "networkId": 24 - }, - { - "name": "Genesis L1 testnet", - "chain": "genesis", - "rpc": [ - "https://testrpc.genesisl1.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 testcoin", - "symbol": "L1test", - "decimals": 18 - }, - "infoURL": "https://www.genesisl1.com", - "shortName": "L1test", - "chainId": 26, - "networkId": 26, - "explorers": [ - { - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - } - ] - }, - { - "name": "ShibaChain", - "chain": "SHIB", - "rpc": [ - "https://rpc.shibachain.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "SHIBA INU COIN", - "symbol": "SHIB", - "decimals": 18 - }, - "infoURL": "https://www.shibachain.net", - "shortName": "shib", - "chainId": 27, - "networkId": 27, - "explorers": [ - { - "name": "Shiba Explorer", - "url": "https://exp.shibachain.net", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Rinkeby Testnet", - "chain": "ETH", - "rpc": [ - "https://rinkeby.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Boba Rinkeby", - "chainId": 28, - "networkId": 28, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.rinkeby.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://gateway.rinkeby.boba.network" - } - ] - } - }, - { - "name": "Genesis L1", - "chain": "genesis", - "rpc": [ - "https://rpc.genesisl1.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 coin", - "symbol": "L1", - "decimals": 18 - }, - "infoURL": "https://www.genesisl1.com", - "shortName": "L1", - "chainId": 29, - "networkId": 29, - "explorers": [ - { - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - } - ] - }, - { - "name": "GoodData Testnet", - "chain": "GooD", - "rpc": [ - "https://test2.goodata.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoodData Testnet Ether", - "symbol": "GooD", - "decimals": 18 - }, - "infoURL": "https://www.goodata.org", - "shortName": "GooDT", - "chainId": 32, - "networkId": 32 - }, - { - "name": "Dithereum Testnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-testnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], - "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", - "decimals": 18 - }, - "infoURL": "https://dithereum.org", - "shortName": "dth", - "chainId": 34, - "networkId": 34 - }, - { - "name": "Darwinia Crab Network", - "chain": "crab", - "rpc": [ - "http://crab-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crab Network Native Token", - "symbol": "CRAB", - "decimals": 18 - }, - "infoURL": "https://crab.network/", - "shortName": "crab", - "chainId": 44, - "networkId": 44, - "explorers": [ - { - "name": "subscan", - "url": "https://crab.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Darwinia Pangoro Testnet", - "chain": "pangoro", - "rpc": [ - "http://pangoro-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pangoro Network Native Token”", - "symbol": "ORING", - "decimals": 18 - }, - "infoURL": "https://darwinia.network/", - "shortName": "pangoro", - "chainId": 45, - "networkId": 45, - "explorers": [ - { - "name": "subscan", - "url": "https://pangoro.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Zyx Mainnet", - "chain": "ZYX", - "rpc": [ - "https://rpc-1.zyx.network/", - "https://rpc-2.zyx.network/", - "https://rpc-3.zyx.network/", - "https://rpc-4.zyx.network/", - "https://rpc-5.zyx.network/", - "https://rpc-6.zyx.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zyx", - "symbol": "ZYX", - "decimals": 18 - }, - "infoURL": "https://zyx.network/", - "shortName": "ZYX", - "chainId": 55, - "networkId": 55, - "explorers": [ - { - "name": "zyxscan", - "url": "https://zyxscan.com", - "standard": "none" - } - ] - }, - { - "name": "Syscoin Mainnet", - "chain": "SYS", - "rpc": [ - "https://rpc.syscoin.org", - "wss://rpc.syscoin.org/wss" - ], - "faucets": [ - "https://faucet.syscoin.org" - ], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://www.syscoin.org", - "shortName": "sys", - "chainId": 57, - "networkId": 57, - "explorers": [ - { - "name": "Syscoin Block Explorer", - "url": "https://explorer.syscoin.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ontology Mainnet", - "chain": "Ontology", - "rpc": [ - "https://dappnode1.ont.io:20339", - "https://dappnode2.ont.io:20339", - "https://dappnode3.ont.io:20339", - "https://dappnode4.ont.io:20339" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONG", - "symbol": "ONG", - "decimals": 9 - }, - "infoURL": "https://ont.io/", - "shortName": "Ontology Mainnet", - "chainId": 58, - "networkId": 58, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.ont.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "EOS Mainnet", - "chain": "EOS", - "rpc": [ - "https://api.eosargentina.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eoscommunity.org/", - "shortName": "EOS Mainnet", - "chainId": 59, - "networkId": 59, - "explorers": [ - { - "name": "bloks", - "url": "https://bloks.eosargentina.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Conflux eSpace (Testnet)", - "chain": "Conflux", - "network": "testnet", - "rpc": [ - "https://evmtestnet.confluxrpc.com" - ], - "faucets": [ - "https://faucet.confluxnetwork.org" - ], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfxtest", - "chainId": 71, - "networkId": 71, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } - ] - }, - { - "name": "IDChain Mainnet", - "chain": "IDChain", - "network": "mainnet", - "rpc": [ - "https://idchain.one/rpc/", - "wss://idchain.one/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EIDI", - "symbol": "EIDI", - "decimals": 18 - }, - "infoURL": "https://idchain.one/begin/", - "shortName": "idchain", - "chainId": 74, - "networkId": 74, - "icon": "idchain", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.idchain.one", - "icon": "etherscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "GeneChain", - "chain": "GeneChain", - "rpc": [ - "https://rpc.genechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RNA", - "symbol": "RNA", - "decimals": 18 - }, - "infoURL": "https://scan.genechain.io/", - "shortName": "GeneChain", - "chainId": 80, - "networkId": 80, - "explorers": [ - { - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Meter Testnet", - "chain": "METER Testnet", - "rpc": [ - "https://rpctest.meter.io" - ], - "faucets": [ - "https://faucet-warringstakes.meter.io" - ], - "nativeCurrency": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 - }, - "infoURL": "https://www.meter.io", - "shortName": "MeterTest", - "chainId": 83, - "networkId": 83, - "explorers": [ - { - "name": "Meter Testnet Scan", - "url": "https://scan-warringstakes.meter.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GateChain Testnet", - "chainId": 85, - "shortName": "gttest", - "chain": "GTTEST", - "networkId": 85, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://testnet.gatenode.cc" - ], - "faucets": [ - "https://www.gatescan.org/testnet/faucet" - ], - "explorers": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.gatechain.io" - }, - { - "name": "Nova Network", - "chain": "NNW", - "icon": "novanetwork", - "rpc": [ - "https://rpc.novanetwork.io:9070", - "http://nova.genyrpc.info:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Supernova", - "symbol": "SNT", - "decimals": 18 - }, - "infoURL": "https://novanetwork.io", - "shortName": "nnw", - "chainId": 87, - "networkId": 87, - "explorers": [ - { - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "TomoChain Testnet", - "chain": "TOMO", - "rpc": [ - "https://rpc.testnet.tomochain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "TomoChain", - "symbol": "TOMO", - "decimals": 18 - }, - "infoURL": "https://tomochain.com", - "shortName": "tomot", - "chainId": 89, - "networkId": 89, - "slip44": 889 - }, - { - "name": "Garizon Stage0", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s0.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s0", - "chainId": 90, - "networkId": 90, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Garizon Stage1", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s1.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s1", - "chainId": 91, - "networkId": 91, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "Garizon Stage2", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s2.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s2", - "chainId": 92, - "networkId": 92, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "Garizon Stage3", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s3.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s3", - "chainId": 93, - "networkId": 93, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "CryptoKylin Testnet", - "chain": "EOS", - "rpc": [ - "https://kylin.eosargentina.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://www.cryptokylin.io/", - "shortName": "Kylin Testnet", - "chainId": 95, - "networkId": 95, - "explorers": [ - { - "name": "eosq", - "url": "https://kylin.eosargentina.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "NEXT Smart Chain", - "chain": "NSC", - "rpc": [ - "https://rpc.nextsmartchain.com" - ], - "faucets": [ - "https://faucet.nextsmartchain.com" - ], - "nativeCurrency": { - "name": "NEXT", - "symbol": "NEXT", - "decimals": 18 - }, - "infoURL": "https://www.nextsmartchain.com/", - "shortName": "nsc", - "chainId": 96, - "networkId": 96, - "explorers": [ - { - "name": "Next Smart Chain Explorer", - "url": "https://explorer.nextsmartchain.com", - "standard": "none" - } - ] - }, - { - "name": "Velas EVM Mainnet", - "chain": "Velas", - "icon": "velas", - "rpc": [ - "https://evmexplorer.velas.com/rpc", - "https://explorer.velas.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Velas", - "symbol": "VLX", - "decimals": 18 - }, - "infoURL": "https://velas.com", - "shortName": "vlx", - "chainId": 106, - "networkId": 106, - "explorers": [ - { - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Testnet", - "chain": "NTN", - "icon": "nebulatestnet", - "rpc": [ - "https://testnet.rpc.novanetwork.io:9070", - "http://testnet.rpc.novanetwork.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nebula X", - "symbol": "NBX", - "decimals": 18 - }, - "infoURL": "https://novanetwork.io", - "shortName": "ntn", - "chainId": 107, - "networkId": 107, - "explorers": [ - { - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proton Testnet", - "chain": "XPR", - "rpc": [ - "https://protontestnet.greymass.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Proton", - "symbol": "XPR", - "decimals": 4 - }, - "infoURL": "https://protonchain.com", - "shortName": "xpr", - "chainId": 110, - "networkId": 110 - }, - { - "name": "Fuse Sparknet", - "chain": "fuse", - "rpc": [ - "https://rpc.fusespark.io" - ], - "faucets": [ - "https://get.fusespark.io" - ], - "nativeCurrency": { - "name": "Spark", - "symbol": "SPARK", - "decimals": 18 - }, - "infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet", - "shortName": "spark", - "chainId": 123, - "networkId": 123 - }, - { - "name": "Decentralized Web Mainnet", - "shortName": "dwu", - "chain": "DWU", - "chainId": 124, - "networkId": 124, - "rpc": [ - "https://decentralized-web.tech/dw_rpc.php" - ], - "faucets": [], - "infoURL": "https://decentralized-web.tech/dw_chain.php", - "nativeCurrency": { - "name": "Decentralized Web Utility", - "symbol": "DWU", - "decimals": 18 - } - }, - { - "name": "OYchain Testnet", - "chain": "OYchain", - "rpc": [ - "https://rpc.testnet.oychain.io" - ], - "faucets": [ - "https://faucet.oychain.io" - ], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain testnet", - "chainId": 125, - "networkId": 125, - "slip44": 125, - "explorers": [ - { - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - } - ] - }, - { - "name": "OYchain Mainnet", - "chain": "OYchain", - "icon": "oychain", - "rpc": [ - "https://rpc.mainnet.oychain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain mainnet", - "chainId": 126, - "networkId": 126, - "slip44": 126, - "explorers": [ - { - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - } - ] - }, - { - "name": "Factory 127 Mainnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "feth", - "chainId": 127, - "networkId": 127, - "slip44": 127 - }, - { - "name": "DAX CHAIN", - "chain": "DAX", - "rpc": [ - "https://rpc.prodax.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Prodax", - "symbol": "DAX", - "decimals": 18 - }, - "infoURL": "https://prodax.io/", - "shortName": "dax", - "chainId": 142, - "networkId": 142 - }, - { - "name": "Latam-Blockchain Resil Testnet", - "chain": "Resil", - "rpc": [ - "https://rpc.latam-blockchain.com", - "wss://ws.latam-blockchain.com" - ], - "faucets": [ - "https://faucet.latam-blockchain.com" - ], - "nativeCurrency": { - "name": "Latam-Blockchain Resil Test Native Token", - "symbol": "usd", - "decimals": 18 - }, - "infoURL": "https://latam-blockchain.com", - "shortName": "resil", - "chainId": 172, - "networkId": 172 - }, - { - "name": "Seele Mainnet", - "chain": "Seele", - "rpc": [ - "https://rpc.seelen.pro/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Seele", - "symbol": "Seele", - "decimals": 18 - }, - "infoURL": "https://seelen.pro/", - "shortName": "Seele", - "chainId": 186, - "networkId": 186, - "explorers": [ - { - "name": "seeleview", - "url": "https://seeleview.net", - "standard": "none" - } - ] - }, - { - "name": "BMC Mainnet", - "chain": "BMC", - "rpc": [ - "https://mainnet.bmcchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 - }, - "infoURL": "https://bmc.bytom.io/", - "shortName": "BMC", - "chainId": 188, - "networkId": 188, - "explorers": [ - { - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - } - ] - }, - { - "name": "BMC Testnet", - "chain": "BMC", - "rpc": [ - "https://testnet.bmcchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 - }, - "infoURL": "https://bmc.bytom.io/", - "shortName": "BMCT", - "chainId": 189, - "networkId": 189, - "explorers": [ - { - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - } - ] - }, - { - "name": "BitTorrent Chain Mainnet", - "chain": "BTTC", - "rpc": [ - "https://rpc.bittorrentchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 - }, - "infoURL": "https://bittorrentchain.io/", - "shortName": "BTT", - "chainId": 199, - "networkId": 199, - "explorers": [ - { - "name": "bttcscan", - "url": "https://scan.bittorrentchain.io", - "standard": "none" - } - ] - }, - { - "name": "Arbitrum on xDai", - "chain": "AOX", - "rpc": [ - "https://arbitrum.xdaichain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://xdaichain.com", - "shortName": "aox", - "chainId": 200, - "networkId": 200, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-100", - "type": "L2" - } - }, - { - "name": "Permission", - "chain": "ASK", - "rpc": [ - "https://blockchain-api-mainnet.permission.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "ASK", - "symbol": "ASK", - "decimals": 18 - }, - "infoURL": "https://permission.io/", - "shortName": "ASK", - "chainId": 222, - "networkId": 2221, - "slip44": 2221 - }, - { - "name": "SUR Blockchain Network", - "chain": "SUR", - "rpc": [ - "https://sur.nilin.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Suren", - "symbol": "SRN", - "decimals": 18 - }, - "infoURL": "https://surnet.org", - "shortName": "SUR", - "chainId": 262, - "networkId": 1, - "icon": "SUR", - "explorers": [ - { - "name": "Surnet Explorer", - "url": "https://explorer.surnet.org", - "icon": "SUR", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba Network", - "chain": "ETH", - "rpc": [ - "https://mainnet.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Boba", - "chainId": 288, - "networkId": 288, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - } - }, - { - "name": "KCC Testnet", - "chain": "KCC", - "rpc": [ - "https://rpc-testnet.kcc.network", - "wss://rpc-ws-testnet.kcc.network" - ], - "faucets": [ - "https://faucet-testnet.kcc.network" - ], - "nativeCurrency": { - "name": "KuCoin Testnet Token", - "symbol": "tKCS", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.kcc.network", - "shortName": "kcst", - "chainId": 322, - "networkId": 322, - "explorers": [ - { - "name": "kcc-scan", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Web3Q Mainnet", - "chain": "Web3Q", - "rpc": [ - "https://mainnet.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://web3q.io/home.w3q/", - "shortName": "w3q", - "chainId": 333, - "networkId": 333, - "explorers": [ - { - "name": "w3q-mainnet", - "url": "https://explorer.mainnet.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shiden", - "chain": "SDN", - "rpc": [ - "https://rpc.shiden.astar.network:8545", - "wss://shiden.api.onfinality.io/public-ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shiden", - "symbol": "SDN", - "decimals": 18 - }, - "infoURL": "https://shiden.astar.network/", - "shortName": "sdn", - "chainId": 336, - "networkId": 336, - "explorers": [ - { - "name": "subscan", - "url": "https://shiden.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Cronos Testnet", - "chain": "CRO", - "rpc": [ - "https://cronos-testnet-3.crypto.org:8545", - "wss://cronos-testnet-3.crypto.org:8546" - ], - "faucets": [ - "https://cronos.crypto.org/faucet" - ], - "nativeCurrency": { - "name": "Crypto.org Test Coin", - "symbol": "TCRO", - "decimals": 18 - }, - "infoURL": "https://cronos.crypto.org", - "shortName": "tcro", - "chainId": 338, - "networkId": 338, - "explorers": [ - { - "name": "Cronos Testnet Explorer", - "url": "https://cronos.crypto.org/explorer/testnet3", - "standard": "none" - } - ] - }, - { - "name": "Theta Mainnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-mainnet", - "chainId": 361, - "networkId": 361, - "explorers": [ - { - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Sapphire Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-sapphire.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-sapphire", - "chainId": 363, - "networkId": 363, - "explorers": [ - { - "name": "Theta Sapphire Testnet Explorer", - "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Amber Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-amber.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-amber", - "chainId": 364, - "networkId": 364, - "explorers": [ - { - "name": "Theta Amber Testnet Explorer", - "url": "https://guardian-testnet-amber-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-testnet.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-testnet", - "chainId": 365, - "networkId": 365, - "explorers": [ - { - "name": "Theta Testnet Explorer", - "url": "https://testnet-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vela1 Chain Mainnet", - "chain": "VELA1", - "rpc": [ - "https://rpc.velaverse.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "CLASS COIN", - "symbol": "CLASS", - "decimals": 18 - }, - "infoURL": "https://velaverse.io", - "shortName": "CLASS", - "chainId": 555, - "networkId": 555, - "explorers": [ - { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metis Stardust Testnet", - "chain": "ETH", - "rpc": [ - "https://stardust.metis.io/?owner=588" - ], - "faucets": [], - "nativeCurrency": { - "name": "tMetis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-stardust", - "chainId": 588, - "networkId": 588, - "explorers": [ - { - "name": "blockscout", - "url": "https://stardust-explorer.metis.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://bridge.metis.io" - } - ] - } - }, - { - "name": "Meshnyan testnet", - "chain": "MeshTestChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mesh-chain-testnet", - "chainId": 600, - "networkId": 600 - }, - { - "name": "Pixie Chain Testnet", - "chain": "PixieChain", - "rpc": [ - "https://http-testnet.chain.pixie.xyz", - "wss://ws-testnet.chain.pixie.xyz" - ], - "faucets": [ - "https://chain.pixie.xyz/faucet" - ], - "nativeCurrency": { - "name": "Pixie Chain Testnet Native Token", - "symbol": "PCTT", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.chain.pixie.xyz", - "shortName": "pixie-chain-testnet", - "chainId": 666, - "networkId": 666 - }, - { - "name": "BlockChain Station Mainnet", - "chain": "BCS", - "rpc": [ - "https://rpc-mainnet.bcsdev.io", - "wss://rpc-ws-mainnet.bcsdev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BCS Token", - "symbol": "BCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "bcs", - "chainId": 707, - "networkId": 707, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlockChain Station Testnet", - "chain": "BCS", - "rpc": [ - "https://rpc-testnet.bcsdev.io", - "wss://rpc-ws-testnet.bcsdev.io" - ], - "faucets": [ - "https://faucet.bcsdev.io" - ], - "nativeCurrency": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "tbcs", - "chainId": 708, - "networkId": 708, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Factory 127 Testnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "tfeth", - "chainId": 721, - "networkId": 721, - "slip44": 721 - }, - { - "name": "Haic", - "chain": "Haic", - "rpc": [ - "https://orig.haichain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 - }, - "infoURL": "https://www.haichain.io/", - "shortName": "haic", - "chainId": 803, - "networkId": 803 - }, - { - "name": "Ambros Chain Mainnet", - "chain": "ambroschain", - "rpc": [ - "https://mainnet.ambroschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBR", - "decimals": 18 - }, - "infoURL": "https://bcmhunt.com/", - "shortName": "ambros", - "chainId": 880, - "networkId": 880, - "explorers": [ - { - "name": "Ambros Chain Explorer", - "url": "https://explorer.ambroschain.com", - "standard": "none" - } - ] - }, - { - "name": "Garizon Testnet Stage0", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s0-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s0", - "chainId": 900, - "networkId": 900, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Garizon Testnet Stage1", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s1-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s1", - "chainId": 901, - "networkId": 901, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "Garizon Testnet Stage2", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s2-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s2", - "chainId": 902, - "networkId": 902, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "Garizon Testnet Stage3", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s3-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s3", - "chainId": 903, - "networkId": 903, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "PulseChain Testnet", - "shortName": "tpls", - "chain": "tPLS", - "chainId": 940, - "networkId": 940, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}", - "wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "Lucky Network", - "chain": "LN", - "rpc": [ - "https://rpc.luckynetwork.org", - "wss://ws.lnscan.org", - "https://rpc.lnscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 - }, - "infoURL": "https://luckynetwork.org", - "shortName": "ln", - "chainId": 998, - "networkId": 998, - "icon": "lucky", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } - ] - }, - { - "name": "Sakura", - "chain": "Sakura", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 - }, - "infoURL": "https://clover.finance/sakura", - "shortName": "sku", - "chainId": 1022, - "networkId": 1022 - }, - { - "name": "BitTorrent Chain Testnet", - "chain": "BTTC", - "rpc": [ - "https://testrpc.bittorrentchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 - }, - "infoURL": "https://bittorrentchain.io/", - "shortName": "tbtt", - "chainId": 1028, - "networkId": 1028, - "explorers": [ - { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } - ] - }, - { - "name": "Conflux eSpace", - "chain": "Conflux", - "network": "mainnet", - "rpc": [ - "https://evm.confluxrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfx", - "chainId": 1030, - "networkId": 1030, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } - ] - }, - { - "name": "Metis Andromeda Mainnet", - "chain": "ETH", - "rpc": [ - "https://andromeda.metis.io/?owner=1088" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-andromeda", - "chainId": 1088, - "networkId": 1088, - "explorers": [ - { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.metis.io" - } - ] - } - }, - { - "name": "Iora Chain", - "chain": "IORA", - "network": "iorachain", - "icon": "iorachain", - "rpc": [ - "https://dataseed.iorachain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Iora", - "symbol": "IORA", - "decimals": 18 - }, - "infoURL": "https://iorachain.com", - "shortName": "iora", - "chainId": 1197, - "networkId": 1197, - "explorers": [ - { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evanesco Testnet", - "chain": "Evanesco Testnet", - "network": "avis", - "rpc": [ - "https://seed5.evanesco.org:8547" - ], - "faucets": [], - "nativeCurrency": { - "name": "AVIS", - "symbol": "AVIS", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "avis", - "chainId": 1201, - "networkId": 1201 - }, - { - "name": "World Trade Technical Chain Mainnet", - "chain": "WTT", - "rpc": [ - "https://rpc.cadaut.com", - "wss://rpc.cadaut.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "World Trade Token", - "symbol": "WTT", - "decimals": 18 - }, - "infoURL": "http://www.cadaut.com", - "shortName": "wtt", - "chainId": 1202, - "networkId": 2048, - "explorers": [ - { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Popcateum Mainnet", - "chain": "POPCATEUM", - "rpc": [ - "https://dataseed.popcateum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Popcat", - "symbol": "POP", - "decimals": 18 - }, - "infoURL": "https://popcateum.org", - "shortName": "popcat", - "chainId": 1213, - "networkId": 1213, - "explorers": [ - { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } - ] - }, - { - "name": "EnterChain Mainnet", - "chain": "ENTER", - "network": "mainnet", - "rpc": [ - "https://tapi.entercoin.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 - }, - "infoURL": "https://entercoin.net", - "shortName": "enter", - "chainId": 1214, - "networkId": 1214, - "icon": "enter", - "explorers": [ - { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - } - ] - }, - { - "name": "Moonrock", - "chain": "MOON", - "rpc": [ - "https://rpc.api.moonrock.moonbeam.network", - "wss://wss.api.moonrock.moonbeam.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 - }, - "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/", - "shortName": "mrock", - "chainId": 1288, - "networkId": 1288 - }, - { - "name": "Rangers Protocol Mainnet", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://mainnet.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "RPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "rpg", - "chainId": 2025, - "networkId": 2025, - "slip44": 1008, - "explorers": [ - { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "Ecoball Mainnet", - "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/ecoball/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ecoball Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "eco", - "chainId": 2100, - "networkId": 2100, - "explorers": [ - { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ecoball Testnet Espuma", - "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/espuma/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Espuma Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "esp", - "chainId": 2101, - "networkId": 2101, - "explorers": [ - { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evanesco Mainnet", - "chain": "EVA", - "network": "mainnet", - "rpc": [ - "https://seed4.evanesco.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "EVA", - "symbol": "EVA", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "evanesco", - "chainId": 2213, - "networkId": 2213, - "icon": "evanesco", - "explorers": [ - { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" - } - ] - }, - { - "name": "ZCore Testnet", - "chain": "Beach", - "icon": "zcore", - "rpc": [ - "https://rpc-testnet.zcore.cash" - ], - "faucets": [ - "https://faucet.zcore.cash" - ], - "nativeCurrency": { - "name": "ZCore", - "symbol": "ZCR", - "decimals": 18 - }, - "infoURL": "https://zcore.cash", - "shortName": "zcrbeach", - "chainId": 3331, - "networkId": 3331 - }, - { - "name": "Web3Q Testnet", - "chain": "Web3Q", - "rpc": [ - "https://testnet.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://web3q.io/home.w3q/", - "shortName": "w3q-t", - "chainId": 3333, - "networkId": 3333, - "explorers": [ - { - "name": "w3q-testnet", - "url": "https://explorer.testnet.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bittex Mainnet", - "chain": "BTX", - "rpc": [ - "https://rpc1.bittexscan.info", - "https://rpc2.bittexscan.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bittex", - "symbol": "BTX", - "decimals": 18 - }, - "infoURL": "https://bittexscan.com", - "shortName": "btx", - "chainId": 3690, - "networkId": 3690, - "icon": "ethereum", - "explorers": [ - { - "name": "bittexscan", - "url": "https://bittexscan.com", - "icon": "etherscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fantom Testnet", - "chain": "FTM", - "rpc": [ - "https://rpc.testnet.fantom.network" - ], - "faucets": [ - "https://faucet.fantom.network" - ], - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 - }, - "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", - "shortName": "tftm", - "chainId": 4002, - "networkId": 4002, - "icon": "fantom", - "explorers": [ - { - "name": "ftmscan", - "url": "https://testnet.ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "IoTeX Network Mainnet", - "chain": "iotex.io", - "rpc": [ - "https://babel-api.mainnet.iotex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-mainnet", - "chainId": 4689, - "networkId": 4689, - "explorers": [ - { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "IoTeX Network Testnet", - "chain": "iotex.io", - "rpc": [ - "https://babel-api.testnet.iotex.io" - ], - "faucets": [ - "https://faucet.iotex.io/" - ], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-testnet", - "chainId": 4690, - "networkId": 4690, - "explorers": [ - { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "EraSwap Mainnet", - "chain": "ESN", - "icon": "eraswap", - "rpc": [ - "https://mainnet.eraswap.network", - "https://rpc-mumbai.mainnet.eraswap.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "EraSwap", - "symbol": "ES", - "decimals": 18 - }, - "infoURL": "https://eraswap.info/", - "shortName": "es", - "chainId": 5197, - "networkId": 5197 - }, - { - "name": "Uzmi Network Mainnet", - "chain": "UZMI", - "rpc": [ - "https://network.uzmigames.com.br/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 - }, - "infoURL": "https://uzmigames.com.br/", - "shortName": "UZMI", - "chainId": 5315, - "networkId": 5315 - }, - { - "name": "Syscoin Tanenbaum Testnet", - "chain": "SYS", - "rpc": [ - "https://rpc.tanenbaum.io", - "wss://rpc.tanenbaum.io/wss" - ], - "faucets": [ - "https://faucet.tanenbaum.io" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "tSYS", - "decimals": 18 - }, - "infoURL": "https://syscoin.org", - "shortName": "tsys", - "chainId": 5700, - "networkId": 5700, - "explorers": [ - { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ontology Testnet", - "chain": "Ontology", - "rpc": [ - "https://polaris1.ont.io:20339", - "https://polaris2.ont.io:20339", - "https://polaris3.ont.io:20339", - "https://polaris4.ont.io:20339" - ], - "faucets": [ - "https://developer.ont.io/" - ], - "nativeCurrency": { - "name": "ONG", - "symbol": "ONG", - "decimals": 9 - }, - "infoURL": "https://ont.io/", - "shortName": "Ontology Testnet", - "chainId": 5851, - "networkId": 5851, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Pixie Chain Mainnet", - "chain": "PixieChain", - "rpc": [ - "https://http-mainnet.chain.pixie.xyz", - "wss://ws-mainnet.chain.pixie.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pixie Chain Native Token", - "symbol": "PIX", - "decimals": 18 - }, - "infoURL": "https://chain.pixie.xyz", - "shortName": "pixie-chain", - "chainId": 6626, - "networkId": 6626, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - } - ] - }, - { - "name": "Shyft Mainnet", - "chain": "SHYFT", - "icon": "shyft", - "rpc": [ - "https://rpc.shyft.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shyft", - "symbol": "SHYFT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyft", - "chainId": 7341, - "networkId": 7341, - "slip44": 2147490989, - "explorers": [ - { - "name": "Shyft BX", - "url": "https://bx.shyft.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hazlor Testnet", - "chain": "SCAS", - "rpc": [ - "https://hatlas.rpc.hazlor.com:8545", - "wss://hatlas.rpc.hazlor.com:8546" - ], - "faucets": [ - "https://faucet.hazlor.com" - ], - "nativeCurrency": { - "name": "Hazlor Test Coin", - "symbol": "TSCAS", - "decimals": 18 - }, - "infoURL": "https://hazlor.com", - "shortName": "tscas", - "chainId": 7878, - "networkId": 7878, - "explorers": [ - { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - } - ] - }, - { - "name": "Teleport", - "chain": "Teleport", - "rpc": [ - "https://evm-rpc.teleport.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport", - "chainId": 8000, - "networkId": 8000, - "icon": "teleport", - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.teleport.network", - "standard": "none", - "icon": "teleport" - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": "teleport" - } - ] - }, - { - "name": "Teleport Testnet", - "chain": "Teleport", - "rpc": [ - "https://evm-rpc.testnet.teleport.network" - ], - "faucets": [ - "https://chain-docs.teleport.network/testnet/faucet.html" - ], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport-testnet", - "chainId": 8001, - "networkId": 8001, - "icon": "teleport", - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - } - ] - }, - { - "name": "MDGL Testnet", - "chain": "MDGL", - "rpc": [ - "https://testnet.mdgl.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MDGL Token", - "symbol": "MDGLT", - "decimals": 18 - }, - "infoURL": "https://mdgl.io", - "shortName": "mdgl", - "chainId": 8029, - "networkId": 8029 - }, - { - "name": "GeneChain Adenine Testnet", - "chain": "GeneChain", - "rpc": [ - "https://rpc-testnet.genechain.io" - ], - "faucets": [ - "https://faucet.genechain.io" - ], - "nativeCurrency": { - "name": "Testnet RNA", - "symbol": "tRNA", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.genechain.io/", - "shortName": "GeneChainAdn", - "chainId": 8080, - "networkId": 8080, - "explorers": [ - { - "name": "GeneChain Adenine Testnet Scan", - "url": "https://scan-testnet.genechain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "TOOL Global Mainnet", - "chain": "OLO", - "rpc": [ - "https://mainnet-web3.wolot.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://ibdt.io", - "shortName": "olo", - "chainId": 8723, - "networkId": 8723, - "slip44": 479, - "explorers": [ - { - "name": "OLO Block Explorer", - "url": "https://www.olo.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "TOOL Global Testnet", - "chain": "OLO", - "rpc": [ - "https://testnet-web3.wolot.io" - ], - "faucets": [ - "https://testnet-explorer.wolot.io" - ], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.wolot.io", - "shortName": "tolo", - "chainId": 8724, - "networkId": 8724, - "slip44": 479 - }, - { - "name": "Ambros Chain Testnet", - "chain": "ambroschain", - "rpc": [ - "https://testnet.ambroschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBR", - "decimals": 18 - }, - "infoURL": "https://bcmhunt.com/", - "shortName": "ambrostestnet", - "chainId": 8888, - "networkId": 8888, - "explorers": [ - { - "name": "Ambros Chain Explorer", - "url": "https://testexplorer.ambroschain.com", - "standard": "none" - } - ] - }, - { - "name": "Genesis Coin", - "chain": "Genesis", - "rpc": [ - "https://genesis-gn.com", - "wss://genesis-gn.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GN Coin", - "symbol": "GNC", - "decimals": 18 - }, - "infoURL": "https://genesis-gn.com", - "shortName": "GENEC", - "chainId": 9100, - "networkId": 9100 - }, - { - "name": "Rangers Protocol Testnet Robin", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://robin.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [ - "https://robin-faucet.rangersprotocol.com" - ], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "tRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "trpg", - "chainId": 9527, - "networkId": 9527, - "explorers": [ - { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "myOwn Testnet", - "chain": "myOwn", - "rpc": [ - "https://geth.dev.bccloud.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "MYN", - "symbol": "MYN", - "decimals": 18 - }, - "infoURL": "https://docs.bccloud.net/", - "shortName": "myn", - "chainId": 9999, - "networkId": 9999 - }, - { - "name": "Blockchain Genesis Mainnet", - "chain": "GEN", - "rpc": [ - "https://eu.mainnet.xixoio.com", - "https://us.mainnet.xixoio.com", - "https://asia.mainnet.xixoio.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GEN", - "symbol": "GEN", - "decimals": 18 - }, - "infoURL": "https://www.xixoio.com/", - "shortName": "GEN", - "chainId": 10101, - "networkId": 10101 - }, - { - "name": "WAGMI", - "chain": "WAGMI", - "icon": "wagmi", - "rpc": [ - "https://api.trywagmi.xyz/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "WAGMI", - "symbol": "WGM", - "decimals": 18 - }, - "infoURL": "https://trywagmi.xyz", - "shortName": "WAGMI", - "chainId": 11111, - "networkId": 11111, - "explorers": [ - { - "name": "WAGMI Explorer", - "url": "https://trywagmi.xyz", - "standard": "none" - } - ] - }, - { - "name": "Shyft Testnet", - "chain": "SHYFTT", - "icon": "shyft", - "rpc": [ - "https://rpc.testnet.shyft.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shyft Test Token", - "symbol": "SHYFTT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyftt", - "chainId": 11437, - "networkId": 11437, - "explorers": [ - { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Singularity ZERO Testnet", - "chain": "ZERO", - "rpc": [ - "https://betaenv.singularity.gold:18545" - ], - "faucets": [ - "https://nft.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "tZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "tZERO", - "chainId": 12051, - "networkId": 12051, - "explorers": [ - { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - } - ] - }, - { - "name": "Singularity ZERO Mainnet", - "chain": "ZERO", - "rpc": [ - "https://zerorpc.singularity.gold" - ], - "faucets": [ - "https://zeroscan.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "ZERO", - "chainId": 12052, - "networkId": 12052, - "slip44": 621, - "explorers": [ - { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - } - ] - }, - { - "name": "Phoenix Mainnet", - "chain": "Phoenix", - "network": "mainnet", - "rpc": [ - "https://rpc.phoenixplorer.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Phoenix", - "symbol": "PHX", - "decimals": 18 - }, - "infoURL": "https://cryptophoenix.org/phoenix", - "shortName": "Phoenix", - "chainId": 13381, - "networkId": 13381, - "icon": "phoenix", - "explorers": [ - { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "icon": "phoenixplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaDot Mainnet", - "chain": "MTT", - "rpc": [ - "https://mainnet.metadot.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtt", - "chainId": 16000, - "networkId": 16000 - }, - { - "name": "MetaDot Testnet", - "chain": "MTTTest", - "rpc": [ - "https://testnet.metadot.network" - ], - "faucets": [ - "https://faucet.metadot.network/" - ], - "nativeCurrency": { - "name": "MetaDot Token TestNet", - "symbol": "MTT-test", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtttest", - "chainId": 16001, - "networkId": 16001 - }, - { - "name": "BTCIX Network", - "chain": "BTCIX", - "rpc": [ - "https://seed.btcix.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTCIX Network", - "symbol": "BTCIX", - "decimals": 18 - }, - "infoURL": "https://bitcolojix.org", - "shortName": "btcix", - "chainId": 19845, - "networkId": 19845, - "explorers": [ - { - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - } - ] - }, - { - "name": "MintMe.com Coin", - "chain": "MINTME", - "rpc": [ - "https://node1.mintme.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MintMe.com Coin", - "symbol": "MINTME", - "decimals": 18 - }, - "infoURL": "https://www.mintme.com", - "shortName": "mintme", - "chainId": 24734, - "networkId": 37480 - }, - { - "name": "GoChain Testnet", - "chain": "GO", - "rpc": [ - "https://testnet-rpc.gochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoChain Coin", - "symbol": "GO", - "decimals": 18 - }, - "infoURL": "https://gochain.io", - "shortName": "got", - "chainId": 31337, - "networkId": 31337, - "slip44": 6060, - "explorers": [ - { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emerald Paratime Testnet", - "chain": "Emerald", - "icon": "oasis", - "rpc": [ - "https://testnet.emerald.oasis.dev/", - "wss://testnet.emerald.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "emerald", - "chainId": 42261, - "networkId": 42261, - "explorers": [ - { - "name": "Emerald Paratime Testnet Explorer", - "url": "https://testnet.explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emerald Paratime Mainnet", - "chain": "Emerald", - "icon": "oasis", - "rpc": [ - "https://emerald.oasis.dev", - "wss://emerald.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "oasis", - "chainId": 42262, - "networkId": 42262, - "explorers": [ - { - "name": "Emerald Paratime Mainnet Explorer", - "url": "https://explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "REI Network", - "chain": "REI", - "rpc": [ - "https://rpc.rei.network", - "wss://rpc.rei.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "REI", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://rei.network/", - "shortName": "REI", - "chainId": 47805, - "networkId": 47805, - "explorers": [ - { - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - } - ] - }, - { - "name": "REI Chain Mainnet", - "chain": "REI", - "icon": "reichain", - "rpc": [ - "https://rei-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55555" - ], - "nativeCurrency": { - "name": "Rei", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "rei", - "chainId": 55555, - "networkId": 55555, - "explorers": [ - { - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "REI Chain Testnet", - "chain": "REI", - "icon": "reichain", - "rpc": [ - "https://rei-testnet-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55556" - ], - "nativeCurrency": { - "name": "tRei", - "symbol": "tREI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "trei", - "chainId": 55556, - "networkId": 55556, - "explorers": [ - { - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://test.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test0", - "chainId": 60000, - "networkId": 60000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://test1.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test1", - "chainId": 60001, - "networkId": 60001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://test2.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test2", - "chainId": 60002, - "networkId": 60002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://test103.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test103", - "chainId": 60103, - "networkId": 60103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "eCredits Mainnet", - "chain": "ECS", - "network": "mainnet", - "rpc": [ - "https://rpc.ecredits.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs", - "chainId": 63000, - "networkId": 63000, - "explorers": [ - { - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "eCredits Testnet", - "chain": "ECS", - "network": "testnet", - "rpc": [ - "https://rpc.tst.ecredits.com" - ], - "faucets": [ - "https://faucet.tst.ecredits.com" - ], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs-testnet", - "chainId": 63001, - "networkId": 63001, - "explorers": [ - { - "name": "eCredits TestNet Explorer", - "url": "https://explorer.tst.ecredits.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://proxy.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM0", - "chainId": 70000, - "networkId": 70000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://proxy1.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM1", - "chainId": 70001, - "networkId": 70001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://proxy2.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM2", - "chainId": 70002, - "networkId": 70002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://proxy103.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM103", - "chainId": 70103, - "networkId": 70103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polyjuice Testnet", - "chain": "CKB", - "icon": "polyjuice", - "rpc": [ - "https://godwoken-testnet-web3-rpc.ckbapp.dev", - "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" - ], - "faucets": [ - "https://faucet.nervos.org/" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 - }, - "infoURL": "https://github.com/nervosnetwork/godwoken", - "shortName": "ckb", - "chainId": 71393, - "networkId": 1 - }, - { - "name": "UB Smart Chain(testnet)", - "chain": "USC", - "network": "testnet", - "rpc": [ - "https://testnet.rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site", - "shortName": "usctest", - "chainId": 99998, - "networkId": 99998 - }, - { - "name": "UB Smart Chain", - "chain": "USC", - "network": "mainnet", - "rpc": [ - "https://rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site/", - "shortName": "usc", - "chainId": 99999, - "networkId": 99999 - }, - { - "name": "QuarkChain Mainnet Root", - "chain": "QuarkChain", - "rpc": [ - "http://jrpc.mainnet.quarkchain.io:38391/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-r", - "chainId": 100000, - "networkId": 100000 - }, - { - "name": "QuarkChain Mainnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39000/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s0", - "chainId": 100001, - "networkId": 100001, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39001/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s1", - "chainId": 100002, - "networkId": 100002, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39002/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s2", - "chainId": 100003, - "networkId": 100003, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39003/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s3", - "chainId": 100004, - "networkId": 100004, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39004/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s4", - "chainId": 100005, - "networkId": 100005, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39005/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s5", - "chainId": 100006, - "networkId": 100006, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39006/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s6", - "chainId": 100007, - "networkId": 100007, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39007/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s7", - "chainId": 100008, - "networkId": 100008, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - } - ] - }, - { - "name": "BROChain Mainnet", - "chain": "BRO", - "network": "mainnet", - "rpc": [ - "https://rpc.brochain.org", - "http://rpc.brochain.org", - "https://rpc.brochain.org/mainnet", - "http://rpc.brochain.org/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Brother", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://brochain.org", - "shortName": "bro", - "chainId": 108801, - "networkId": 108801, - "explorers": [ - { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Root", - "chain": "QuarkChain", - "rpc": [ - "http://jrpc.devnet.quarkchain.io:38391/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-r", - "chainId": 110000, - "networkId": 110000 - }, - { - "name": "QuarkChain Devnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39900/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s0", - "chainId": 110001, - "networkId": 110001, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39901/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s1", - "chainId": 110002, - "networkId": 110002, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39902/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s2", - "chainId": 110003, - "networkId": 110003, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39903/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s3", - "chainId": 110004, - "networkId": 110004, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39904/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s4", - "chainId": 110005, - "networkId": 110005, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39905/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s5", - "chainId": 110006, - "networkId": 110006, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39906/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s6", - "chainId": 110007, - "networkId": 110007, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39907/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s7", - "chainId": 110008, - "networkId": 110008, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alaya Mainnet", - "chain": "Alaya", - "rpc": [ - "https://openapi.alaya.network/rpc", - "wss://openapi.alaya.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alaya", - "chainId": 201018, - "networkId": 1, - "icon": "alaya", - "explorers": [ - { - "name": "alaya explorer", - "url": "https://scan.alaya.network", - "standard": "none" - } - ] - }, - { - "name": "Alaya Dev Testnet", - "chain": "Alaya", - "rpc": [ - "https://devnetopenapi.alaya.network/rpc", - "wss://devnetopenapi.alaya.network/ws" - ], - "faucets": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" - ], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alayadev", - "chainId": 201030, - "networkId": 1, - "icon": "alaya", - "explorers": [ - { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" - } - ] - }, - { - "name": "PlatON Dev Testnet", - "chain": "PlatON", - "rpc": [ - "https://devnetopenapi.platon.network/rpc", - "wss://devnetopenapi.platon.network/ws" - ], - "faucets": [ - "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev", - "chainId": 210309, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnetscan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "PlatON Mainnet", - "chain": "PlatON", - "network": "mainnet", - "rpc": [ - "https://openapi2.platon.network/rpc", - "https://openapi.platon.network/rpc", - "wss://openapi.platon.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platon", - "chainId": 210425, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "Social Smart Chain Mainnet", - "chain": "SoChain", - "rpc": [ - "https://socialsmartchain.digitalnext.business" - ], - "faucets": [], - "nativeCurrency": { - "name": "SoChain", - "symbol": "$OC", - "decimals": 18 - }, - "infoURL": "https://digitalnext.business/SocialSmartChain", - "shortName": "SoChain", - "chainId": 281121, - "networkId": 281121, - "explorers": [] - }, - { - "name": "Polis Testnet", - "chain": "Sparta", - "icon": "polis", - "rpc": [ - "https://sparta-rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "tPolis", - "symbol": "tPOLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "sparta", - "chainId": 333888, - "networkId": 333888 - }, - { - "name": "Polis Mainnet", - "chain": "Olympus", - "icon": "polis", - "rpc": [ - "https://rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "Polis", - "symbol": "POLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "olympus", - "chainId": 333999, - "networkId": 333999 - }, - { - "name": "Arbitrum Rinkeby", - "title": "Arbitrum Testnet Rinkeby", - "chainId": 421611, - "shortName": "arb-rinkeby", - "chain": "ETH", - "networkId": 421611, - "nativeCurrency": { - "name": "Arbitrum Rinkeby Ether", - "symbol": "ARETH", - "decimals": 18 - }, - "rpc": [ - "https://rinkeby.arbitrum.io/rpc", - "wss://rinkeby.arbitrum.io/ws" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], - "infoURL": "https://arbitrum.io", - "explorers": [ - { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "Eluvio Content Fabric", - "chain": "Eluvio", - "rpc": [ - "https://host-76-74-28-226.contentfabric.io/eth/", - "https://host-76-74-28-232.contentfabric.io/eth/", - "https://host-76-74-29-2.contentfabric.io/eth/", - "https://host-76-74-29-8.contentfabric.io/eth/", - "https://host-76-74-29-34.contentfabric.io/eth/", - "https://host-76-74-29-35.contentfabric.io/eth/", - "https://host-154-14-211-98.contentfabric.io/eth/", - "https://host-154-14-192-66.contentfabric.io/eth/", - "https://host-60-240-133-202.contentfabric.io/eth/", - "https://host-64-235-250-98.contentfabric.io/eth/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ELV", - "symbol": "ELV", - "decimals": 18 - }, - "infoURL": "https://eluv.io", - "shortName": "elv", - "chainId": 955305, - "networkId": 955305, - "slip44": 1011, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kintsugi", - "title": "Kintsugi merge testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.kintsugi.themerge.dev" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", - "https://faucet.kintsugi.themerge.dev" - ], - "nativeCurrency": { - "name": "kintsugi Ethere", - "symbol": "kiETH", - "decimals": 18 - }, - "infoURL": "https://kintsugi.themerge.dev/", - "shortName": "kintsugi", - "chainId": 1337702, - "networkId": 1337702, - "explorers": [ - { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sepolia", - "title": "Ethereum Testnet Sepolia", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "SEP", - "decimals": 18 - }, - "infoURL": "https://sepolia.otterscan.io", - "shortName": "sep", - "chainId": 11155111, - "networkId": 11155111, - "explorers": [ - { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "quarkblockchain", - "chain": "QKI", - "rpc": [ - "https://hz.rpc.qkiscan.cn", - "https://rpc1.qkiscan.cn", - "https://rpc2.qkiscan.cn", - "https://rpc3.qkiscan.cn", - "https://rpc1.qkiscan.io", - "https://rpc2.qkiscan.io", - "https://rpc3.qkiscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 - }, - "infoURL": "https://qkiscan.io", - "shortName": "qki", - "chainId": 20181205, - "networkId": 20181205 - }, - { - "name": "Gather Mainnet Network", - "chain": "GTH", - "rpc": [ - "https://mainnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "GTH", - "chainId": 192837465, - "networkId": 192837465, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Neon EVM DevNet", - "chain": "Solana", - "rpc": [ - "https://proxy.devnet.neonlabs.org/solana" - ], - "faucets": [ - "https://neonswap.live/#/get-tokens" - ], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-devnet", - "chainId": 245022926, - "networkId": 245022926 - }, - { - "name": "Neon EVM MainNet", - "chain": "Solana", - "rpc": [ - "https://proxy.mainnet.neonlabs.org/solana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-mainnet", - "chainId": 245022934, - "networkId": 245022934 - }, - { - "name": "Neon EVM TestNet", - "chain": "Solana", - "rpc": [ - "https://proxy.testnet.neonlabs.org/solana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-testnet", - "chainId": 245022940, - "networkId": 245022940 - }, - { - "name": "OneLedger Mainnet", - "chain": "OLT", - "icon": "oneledger", - "rpc": [ - "https://mainnet-rpc.oneledger.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "oneledger", - "chainId": 311752642, - "networkId": 311752642, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://mainnet-explorer.oneledger.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gather Tesnet Network", - "chain": "GTH", - "rpc": [ - "https://testnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "tGTH", - "chainId": 356256156, - "networkId": 356256156, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Gather Devnet Network", - "chain": "GTH", - "rpc": [ - "https://devnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "dGTH", - "chainId": 486217935, - "networkId": 486217935, - "explorers": [ - { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Harmony Testnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://api.s0.b.hmny.io" - ], - "faucets": [ - "https://faucet.pops.one" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s0", - "chainId": 1666700000, - "networkId": 1666700000, - "explorers": [ - { - "name": "Harmony Testnet Block Explorer", - "url": "https://explorer.pops.one", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Testnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://api.s1.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s1", - "chainId": 1666700001, - "networkId": 1666700001 - }, - { - "name": "Harmony Testnet Shard 2", - "chain": "Harmony", - "rpc": [ - "https://api.s2.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s2", - "chainId": 1666700002, - "networkId": 1666700002 - }, - { - "name": "Harmony Testnet Shard 3", - "chain": "Harmony", - "rpc": [ - "https://api.s3.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s3", - "chainId": 1666700003, - "networkId": 1666700003 - }, - { - "name": "DataHopper", - "chain": "HOP", - "rpc": [ - "https://23.92.21.121:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "DataHoppers", - "symbol": "HOP", - "decimals": 18 - }, - "infoURL": "https://www.DataHopper.com", - "shortName": "hop", - "chainId": 2021121117, - "networkId": 2021121117 - }, - { - "name": "OneLedger Testnet Frankenstein", - "chain": "OLT", - "icon": "oneledger", - "rpc": [ - "https://frankenstein-rpc.oneledger.network" - ], - "faucets": [ - "https://frankenstein-faucet.oneledger.network" - ], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "frankenstein", - "chainId": 4216137055, - "networkId": 4216137055, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://frankenstein-explorer.oneledger.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Palm Testnet", - "chain": "Palm", - "icon": "palm", - "rpc": [ - "https://palm-testnet.infura.io/v3/{INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "tpalm", - "chainId": 11297108099, - "networkId": 11297108099, - "explorers": [ - { - "name": "Palm Testnet Explorer", - "url": "https://explorer.palm-uat.xyz", - "standard": "EIP3091", - "icon": "palm" - } - ] - }, - { - "name": "Palm", - "chain": "Palm", - "icon": "palm", - "rpc": [ - "https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "palm", - "chainId": 11297108109, - "networkId": 11297108109, - "explorers": [ - { - "name": "Palm Explorer", - "url": "https://explorer.palm.io", - "standard": "EIP3091", - "icon": "palm" - } - ] - }, - { - "name": "Ntity Mainnet", - "chain": "Ntity", - "rpc": [ - "https://rpc.ntity.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt", - "chainId": 197710212030, - "networkId": 197710212030, - "icon": "ntity", - "explorers": [ - { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": "ntity", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haradev Testnet", - "chain": "Ntity", - "rpc": [ - "https://blockchain.haradev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt-haradev", - "chainId": 197710212031, - "networkId": 197710212031, - "icon": "ntity", - "explorers": [ - { - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": "ntity", - "standard": "EIP3091" - } - ] - }, - { - "name": "Molereum Network", - "chain": "ETH", - "rpc": [ - "https://molereum.jdubedition.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Molereum Ether", - "symbol": "MOLE", - "decimals": 18 - }, - "infoURL": "https://github.com/Jdubedition/molereum", - "shortName": "mole", - "chainId": 6022140761023, - "networkId": 6022140761023 - }, - { - "name": "Trust Network Testnet Preview", - "chainId": 15555, - "shortName": "Trust testnet", - "chain": "Trust testnet", - "network": "testnet", - "networkId": 15555, - "nativeCurrency": { - "name": "EVM", - "symbol": "EVM", - "decimals": 18 - }, - "rpc": [ - "https://api.testnet-dev.trust.one" - ], - "explorers": [ - { - "name": "TRUST Explorer", - "url": "https://trustscan.one", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain", - "chainId": 20028, - "shortName": "MTC", - "chain": "MetaChain", - "network": "mainnet", - "networkId": 20028, - "shortName": "meta", - "nativeCurrency": { - "name": "MTC", - "symbol": "MTC", - "decimals": 18 - }, - "rpc": [ - "https://seed1.metachain1.com", - "https://seed2.metachain1.com", - "https://seed3.metachain1.com" - ], - "faucets": [], - "infoURL": "http://www.metachain1.com/", - "app_resource": { - "ic_chain_select": "https://block.metachain1.com/tokenmetas/meta1.png", - "ic_chain_unselect": "https://block.metachain1.com/tokenmetas/meta0.png", - "color_chain_bg": "0xf3d275" - } - }, - { - "name": "Openpiece Mainnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "mainnet", - "rpc": [ - "https://mainnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OP", - "chainId": 54, - "networkId": 54, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } - ] - }, - { - "name": "Hoo Smart Chain", - "chain": "HSC", - "rpc": [ - "https://http-mainnet.hoosmartchain.com", - "https://http-mainnet2.hoosmartchain.com", - "wss://ws-mainnet.hoosmartchain.com", - "wss://ws-mainnet2.hoosmartchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hoo Smart Chain Native Token", - "symbol": "HOO", - "decimals": 18 - }, - "infoURL": "https://www.hoosmartchain.com", - "shortName": "hsc", - "chainId": 70, - "networkId": 70, - "slip44": 1170, - "explorers": [ - { - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zenith Mainnet", - "chain": "Zenith", - "rpc": [ - "https://dataserver-us-1.zenithchain.co/", - "https://dataserver-asia-3.zenithchain.co/", - "https://dataserver-asia-4.zenithchain.co/", - "https://dataserver-asia-2.zenithchain.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ZENITH", - "symbol": "ZENITH", - "decimals": 18 - }, - "infoURL": "https://www.zenithchain.co/", - "chainId": 79, - "networkId": 79, - "shortName": "zenith", - "explorers": [ - { - "name": "zenith scan", - "url": "https://scan.zenithchain.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zenith Testnet (Vilnius)", - "chain": "Zenith", - "rpc": [ - "https://vilnius.zenithchain.co/http" - ], - "faucets": [ - "https://faucet.zenithchain.co/" - ], - "nativeCurrency": { - "name": "Vilnius", - "symbol": "VIL", - "decimals": 18 - }, - "infoURL": "https://www.zenithchain.co/", - "chainId": 81, - "networkId": 81, - "shortName": "VIL", - "explorers": [ - { - "name": "vilnius scan", - "url": "https://vilnius.scan.zenithchain.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Web3Games Devnet", - "chain": "Web3Games", - "icon": "web3games", - "rpc": [ - "https://devnet.web3games.org/evm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "infoURL": "https://web3games.org/", - "shortName": "dw3g", - "chainId": 105, - "networkId": 105, - "explorers": [ - { - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - } - ] - }, - { - "name": "Openpiece Testnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "testnet", - "rpc": [ - "https://testnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OPtest", - "chainId": 141, - "networkId": 141, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } - ] - }, - { - "name": "AIOZ Network", - "chain": "AIOZ", - "network": "mainnet", - "icon": "aioz", - "rpc": [ - "https://eth-dataseed.aioz.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "AIOZ", - "symbol": "AIOZ", - "decimals": 18 - }, - "infoURL": "https://aioz.network", - "shortName": "aioz", - "chainId": 168, - "networkId": 168, - "slip44": 60, - "explorers": [ - { - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "SoterOne Mainnet old", - "chain": "SOTER", - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 - }, - "infoURL": "https://www.soterone.com", - "shortName": "SO1-old", - "chainId": 218, - "networkId": 218, - "status": "deprecated" - }, - { - "name": "LACHAIN Mainnet", - "chain": "LA", - "icon": "lachain", - "rpc": [ - "https://rpc-mainnet.lachain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "LA", - "symbol": "LA", - "decimals": 18 - }, - "infoURL": "https://lachain.io", - "shortName": "LA", - "chainId": 225, - "networkId": 225, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.lachain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "LACHAIN Testnet", - "chain": "TLA", - "icon": "lachain", - "rpc": [ - "https://rpc-testnet.lachain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLA", - "symbol": "TLA", - "decimals": 18 - }, - "infoURL": "https://lachain.io", - "shortName": "TLA", - "chainId": 226, - "networkId": 226, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan-test.lachain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Setheum", - "chain": "Setheum", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Setheum", - "symbol": "SETM", - "decimals": 18 - }, - "infoURL": "https://setheum.xyz", - "shortName": "setm", - "chainId": 258, - "networkId": 258 - }, - { - "name": "Optimism on Gnosis Chain", - "chain": "OGC", - "rpc": [ - "https://optimism.gnosischain.com", - "wss://optimism.gnosischain.com/wss" - ], - "faucets": [ - "https://faucet.gimlu.com/gnosis" - ], - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc", - "shortName": "ogc", - "chainId": 300, - "networkId": 300, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/xdai/optimism", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "DFK Chain Test", - "chain": "DFK", - "icon": "dfk", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 - }, - "infoURL": "https://defikingdoms.com", - "shortName": "DFKTEST", - "chainId": 335, - "networkId": 335, - "explorers": [ - { - "name": "ethernal", - "url": "https://explorer-test.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } - ] - }, - { - "name": "Double-A Chain Mainnet", - "chain": "AAC", - "rpc": [ - "https://rpc.acuteangle.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aac", - "chainId": 512, - "networkId": 512, - "slip44": 1512, - "explorers": [ - { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } - ], - "icon": "aac" - }, - { - "name": "Double-A Chain Testnet", - "chain": "AAC", - "icon": "aac", - "rpc": [ - "https://rpc-testnet.acuteangle.com" - ], - "faucets": [ - "https://scan-testnet.acuteangle.com/faucet" - ], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aact", - "chainId": 513, - "networkId": 513, - "explorers": [ - { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Candle Mainnet", - "chain": "Candle", - "rpc": [ - "https://candle-rpc.com/", - "https://rpc.cndlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 - }, - "infoURL": "https://candlelabs.org/", - "shortName": "CNDL", - "chainId": 534, - "networkId": 534, - "slip44": 674, - "explorers": [ - { - "name": "candlescan", - "url": "https://cndlchain.com", - "standard": "none" - } - ] - }, - { - "name": "Astar", - "chain": "ASTR", - "rpc": [ - "https://rpc.astar.network:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astar", - "symbol": "ASTR", - "decimals": 18 - }, - "infoURL": "https://astar.network/", - "shortName": "astr", - "chainId": 592, - "networkId": 592, - "icon": "astar", - "explorers": [ - { - "name": "subscan", - "url": "https://astar.subscan.io", - "standard": "none", - "icon": "subscan" - } - ] - }, - { - "name": "Karura Network Testnet", - "chain": "KAR", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "infoURL": "https://karura.network", - "shortName": "tkar", - "chainId": 596, - "networkId": 596, - "slip44": 596 - }, - { - "name": "Acala Network Testnet", - "chain": "ACA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "infoURL": "https://acala.network", - "shortName": "taca", - "chainId": 597, - "networkId": 597, - "slip44": 597 - }, - { - "name": "Star Social Testnet", - "chain": "SNS", - "rpc": [ - "https://avastar.cc/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 - }, - "infoURL": "https://info.avastar.cc", - "shortName": "SNS", - "chainId": 700, - "networkId": 700, - "explorers": [ - { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpenChain Testnet", - "chain": "OpenChain Testnet", - "rpc": [ - "http://mainnet.openchain.info:8545", - "https://mainnet1.openchain.info" - ], - "faucets": [ - "https://faucet.openchain.info/" - ], - "nativeCurrency": { - "name": "Openchain Testnet", - "symbol": "TOPC", - "decimals": 18 - }, - "infoURL": "https://testnet.openchain.info/", - "shortName": "opc", - "chainId": 776, - "networkId": 776, - "explorers": [ - { - "name": "OPEN CHAIN TESTNET", - "url": "https://testnet.openchain.info", - "standard": "none" - } - ] - }, - { - "name": "Aerochain Testnet", - "chain": "Aerochain", - "network": "testnet", - "rpc": [ - "https://testnet-rpc.aerochain.id/" - ], - "faucets": [ - "https://faucet.aerochain.id/" - ], - "nativeCurrency": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 - }, - "infoURL": "https://aerochaincoin.org/", - "shortName": "taero", - "chainId": 788, - "networkId": 788, - "explorers": [ - { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } - ] - }, - { - "name": "PulseChain Testnet v2b", - "shortName": "t2bpls", - "chain": "t2bPLS", - "network": "testnet-2b", - "chainId": 941, - "networkId": 941, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.v2b.testnet.pulsechain.com/", - "wss://rpc.v2b.testnet.pulsechain.com/" - ], - "faucets": [ - "https://faucet.v2b.testnet.pulsechain.com/" - ], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "PulseChain Testnet v3", - "shortName": "t3pls", - "chain": "t3PLS", - "network": "testnet-3", - "chainId": 942, - "networkId": 942, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.v3.testnet.pulsechain.com/", - "wss://rpc.v3.testnet.pulsechain.com/" - ], - "faucets": [ - "https://faucet.v3.testnet.pulsechain.com/" - ], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "Eurus Mainnet", - "chain": "EUN", - "network": "eurus", - "rpc": [ - "https://mainnet.eurus.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "eun", - "chainId": 1008, - "networkId": 1008, - "icon": "eurus", - "explorers": [ - { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": "eurus", - "standard": "none" - } - ] - }, - { - "name": "CENNZnet old", - "chain": "CENNZnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-old", - "chainId": 1337, - "networkId": 1337, - "status": "deprecated" - }, - { - "name": "Sherpax Mainnet", - "chain": "Sherpax Mainnet", - "rpc": [ - "https://mainnet.sherpax.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "Sherpax", - "chainId": 1506, - "networkId": 1506, - "explorers": [ - { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } - ] - }, - { - "name": "Sherpax Testnet", - "chain": "Sherpax Testnet", - "rpc": [ - "https://sherpax-testnet.chainx.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "Sherpax Testnet", - "chainId": 1507, - "networkId": 1507, - "explorers": [ - { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } - ] - }, - { - "name": "LUDAN Mainnet", - "chain": "LUDAN", - "rpc": [ - "https://rpc.ludan.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "LUDAN", - "symbol": "LUDAN", - "decimals": 18 - }, - "infoURL": "https://www.ludan.org/", - "shortName": "LUDAN", - "icon": "ludan", - "chainId": 1688, - "networkId": 1688 - }, - { - "name": "BON Network", - "chain": "BON", - "network": "testnet", - "rpc": [ - "http://rpc.boyanet.org:8545", - "ws://rpc.boyanet.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOYACoin", - "symbol": "BOY", - "decimals": 18 - }, - "infoURL": "https://boyanet.org", - "shortName": "boya", - "chainId": 1898, - "networkId": 1, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eurus Testnet", - "chain": "EUN", - "network": "eurus-testnet", - "rpc": [ - "https://testnet.eurus.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "euntest", - "chainId": 1984, - "networkId": 1984, - "icon": "eurus", - "explorers": [ - { - "name": "testnetexplorer", - "url": "https://testnetexplorer.eurus.network", - "icon": "eurus", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda C1 Mainnet", - "chain": "milkAda", - "icon": "milkomeda", - "network": "mainnet", - "rpc": [ - "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkAda", - "symbol": "mADA", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkAda", - "chainId": 2001, - "networkId": 2001, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "CloudWalk Testnet", - "chain": "CloudWalk Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_testnet", - "chainId": 2008, - "networkId": 2008, - "explorers": [ - { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", - "standard": "none" - } - ] - }, - { - "name": "CloudWalk Mainnet", - "chain": "CloudWalk Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_mainnet", - "chainId": 2009, - "networkId": 2009, - "explorers": [ - { - "name": "CloudWalk Mainnet Explorer", - "url": "https://explorer.mainnet.cloudwalk.io", - "standard": "none" - } - ] - }, - { - "name": "Taycan Testnet", - "chain": "Taycan", - "rpc": [ - "https://test-taycan.hupayx.io" - ], - "faucets": [ - "https://ttaycan-faucet.hupayx.io/" - ], - "nativeCurrency": { - "name": "test-Shuffle", - "symbol": "tSFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "taycan-testnet", - "chainId": 2023, - "networkId": 2023, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://evmscan-test.hupayx.io", - "standard": "none" - }, - { - "name": "Taycan Cosmos Explorer", - "url": "https://cosmoscan-test.hupayx.io", - "standard": "none" - } - ] - }, - { - "name": "Findora Mainnet", - "chain": "Findora", - "network": "mainnet", - "rpc": [ - "https://prod-mainnet.prod.findora.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "fra", - "chainId": 2152, - "networkId": 2152, - "explorers": [ - { - "name": "findorascan", - "url": "https://evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Findora Testnet", - "chain": "Testnet-anvil", - "network": "testnet", - "rpc": [ - "https://prod-testnet.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-testnet", - "chainId": 2153, - "networkId": 2153, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kava EVM Testnet", - "chain": "KAVA", - "network": "testnet", - "rpc": [ - "https://evm.evm-alpha.kava.io", - "wss://evm-ws.evm-alpha.kava.io" - ], - "faucets": [ - "https://faucet.kava.io" - ], - "nativeCurrency": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "kava", - "chainId": 2221, - "networkId": 2221, - "icon": "kava", - "explorers": [ - { - "name": "Kava Testnet Explorer", - "url": "https://explorer.evm-alpha.kava.io", - "standard": "EIP3091", - "icon": "kava" - } - ] - }, - { - "name": "VChain Mainnet", - "chain": "VChain", - "rpc": [ - "https://bc.vcex.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "VNDT", - "symbol": "VNDT", - "decimals": 18 - }, - "infoURL": "https://bo.vcex.xyz/", - "shortName": "VChain", - "chainId": 2223, - "networkId": 2223, - "explorers": [ - { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "TechPay Mainnet", - "chain": "TPC", - "network": "mainnet", - "rpc": [ - "https://api.techpay.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TechPay", - "symbol": "TPC", - "decimals": 18 - }, - "infoURL": "https://techpay.io/", - "shortName": "tpc", - "chainId": 2569, - "networkId": 2569, - "icon": "techpay", - "explorers": [ - { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", - "standard": "EIP3091" - } - ] - }, - { - "name": "EZChain C-Chain Mainnet", - "chain": "EZC", - "rpc": [ - "https://api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "EZChain", - "chainId": 2612, - "networkId": 2612, - "icon": "ezchain", - "explorers": [ - { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "EZChain C-Chain Testnet", - "chain": "EZC", - "rpc": [ - "https://testnet-api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [ - "https://testnet-faucet.ezchain.com" - ], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "Fuji-EZChain", - "chainId": 2613, - "networkId": 2613, - "icon": "ezchain", - "explorers": [ - { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CENNZnet Rata", - "chain": "CENNZnet", - "network": "rata", - "rpc": [ - "https://rata.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-r", - "chainId": 3000, - "networkId": 3000, - "icon": "cennz" - }, - { - "name": "CENNZnet Nikau", - "chain": "CENNZnet", - "network": "nikau", - "rpc": [ - "https://nikau.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-n", - "chainId": 3001, - "networkId": 3001, - "icon": "cennz", - "explorers": [ - { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" - } - ] - }, - { - "name": "Web3Q Galileo", - "chain": "Web3Q", - "rpc": [ - "https://galileo.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://galileo.web3q.io/home.w3q/", - "shortName": "w3q-g", - "chainId": 3334, - "networkId": 3334, - "explorers": [ - { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Paribu Net Mainnet", - "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.paribu.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prb", - "chainId": 3400, - "networkId": 3400, - "icon": "prb", - "explorers": [ - { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Paribu Net Testnet", - "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.testnet.paribuscan.com" - ], - "faucets": [ - "https://faucet.paribuscan.com" - ], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prbtestnet", - "chainId": 3500, - "networkId": 3500, - "icon": "prb", - "explorers": [ - { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "DYNO Mainnet", - "chain": "DYNO", - "rpc": [ - "https://api.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "DYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "dyno", - "chainId": 3966, - "networkId": 3966, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DYNO Testnet", - "chain": "DYNO", - "rpc": [ - "https://tapi.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "tDYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "tdyno", - "chainId": 3967, - "networkId": 3967, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIOZ Network Testnet", - "chain": "AIOZ", - "network": "testnet", - "icon": "aioz", - "rpc": [ - "https://eth-ds.testnet.aioz.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "testAIOZ", - "symbol": "AIOZ", - "decimals": 18 - }, - "infoURL": "https://aioz.network", - "shortName": "aioz-testnet", - "chainId": 4102, - "networkId": 4102, - "slip44": 60, - "explorers": [ - { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PHI Network", - "chain": "PHI", - "network": "mainnet", - "rpc": [ - "https://rpc1.phi.network", - "https://rpc2.phi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 - }, - "infoURL": "https://phi.network", - "shortName": "PHI", - "chainId": 4181, - "networkId": 4181, - "icon": "phi", - "explorers": [ - { - "name": "PHI Explorer", - "url": "https://explorer.phi.network", - "icon": "phi", - "standard": "none" - } - ] - }, - { - "name": "Venidium Testnet", - "chain": "XVM", - "rpc": [ - "https://rpc-evm-testnet.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4918, - "networkId": 4918, - "explorers": [ - { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nahmii Mainnet", - "chain": "Nahmii", - "network": "mainnet", - "rpc": [ - "https://l2.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii", - "chainId": 5551, - "networkId": 5551, - "icon": "nahmii", - "explorers": [ - { - "name": "Nahmii mainnet explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Nahmii Testnet", - "chain": "Nahmii", - "network": "testnet", - "rpc": [ - "https://l2.testnet.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii testnet", - "chainId": 5553, - "networkId": 5553, - "icon": "nahmii", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.testnet.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Digest Swarm Chain", - "chain": "DSC", - "icon": "swarmchain", - "rpc": [ - "https://rpc.digestgroup.ltd" - ], - "faucets": [], - "nativeCurrency": { - "name": "DigestCoin", - "symbol": "DGCC", - "decimals": 18 - }, - "infoURL": "https://digestgroup.ltd", - "shortName": "dgcc", - "chainId": 5777, - "networkId": 5777, - "explorers": [ - { - "name": "swarmexplorer", - "url": "https://explorer.digestgroup.ltd", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mammoth Mainnet", - "title": "Mammoth Chain", - "chain": "MMT", - "rpc": [ - "https://dataseed.mmtscan.io", - "https://dataseed1.mmtscan.io", - "https://dataseed2.mmtscan.io" - ], - "faucets": [ - "https://faucet.mmtscan.io/" - ], - "nativeCurrency": { - "name": "Mammoth Token", - "symbol": "MMT", - "decimals": 18 - }, - "infoURL": "https://mmtchain.io/", - "shortName": "mmt", - "chainId": 8898, - "networkId": 8898, - "icon": "mmt", - "explorers": [ - { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" - } - ] - }, - { - "name": "CryptoCoinPay", - "chain": "CCP", - "rpc": [ - "http://node106.cryptocoinpay.info:8545", - "ws://node106.cryptocoinpay.info:8546" - ], - "faucets": [], - "icon": "ccp", - "nativeCurrency": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 - }, - "infoURL": "https://www.cryptocoinpay.co", - "shortName": "CCP", - "chainId": 10823, - "networkId": 10823, - "explorers": [ - { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quadrans Blockchain", - "chain": "QDC", - "network": "mainnet", - "icon": "quadrans", - "rpc": [ - "https://rpc.quadrans.io", - "https://rpcna.quadrans.io", - "https://explorer.quadrans.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quadrans Coin", - "symbol": "QDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadrans", - "chainId": 10946, - "networkId": 10946, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quadrans Blockchain Testnet", - "chain": "tQDC", - "network": "testnet", - "icon": "quadrans", - "rpc": [ - "https://rpctest.quadrans.io", - "https://explorer.testnet.quadrans.io" - ], - "faucets": [ - "https://faucetpage.quadrans.io" - ], - "nativeCurrency": { - "name": "Quadrans Testnet Coin", - "symbol": "tQDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadranstestnet", - "chainId": 10947, - "networkId": 10947, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } - ] - }, - { - "name": "CENNZnet Azalea", - "chain": "CENNZnet", - "network": "azalea", - "rpc": [ - "https://cennznet.unfrastructure.io/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-a", - "chainId": 21337, - "networkId": 21337, - "icon": "cennz", - "explorers": [ - { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" - } - ] - }, - { - "name": "omChain Mainnet", - "chain": "OML", - "icon": "omlira", - "rpc": [ - "https://seed.omchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "omChain", - "symbol": "OMC", - "decimals": 18 - }, - "infoURL": "https://omchain.io", - "shortName": "omc", - "chainId": 21816, - "networkId": 21816, - "explorers": [ - { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taycan", - "chain": "Taycan", - "network": "mainnet", - "rpc": [ - "https://taycan-rpc.hupayx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "shuffle", - "symbol": "SFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "SFL", - "chainId": 22023, - "networkId": 22023, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://taycan-evmscan.hupayx.io", - "standard": "none" - }, - { - "name": "Taycan Cosmos Explorer(BigDipper)", - "url": "https://taycan-cosmoscan.hupayx.io", - "standard": "none" - } - ] - }, - { - "name": "OasisChain Mainnet", - "chain": "OasisChain", - "rpc": [ - "https://rpc1.oasischain.io", - "https://rpc2.oasischain.io", - "https://rpc3.oasischain.io" - ], - "faucets": [ - "http://faucet.oasischain.io" - ], - "nativeCurrency": { - "name": "OAC", - "symbol": "OAC", - "decimals": 18 - }, - "infoURL": "https://scan.oasischain.io", - "shortName": "OAC", - "chainId": 26863, - "networkId": 26863, - "explorers": [ - { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Piece testnet", - "chain": "PieceNetwork", - "icon": "piecechain", - "rpc": [ - "https://testnet-rpc0.piecenetwork.com" - ], - "faucets": [ - "https://piecenetwork.com/faucet" - ], - "nativeCurrency": { - "name": "ECE", - "symbol": "ECE", - "decimals": 18 - }, - "infoURL": "https://piecenetwork.com", - "shortName": "Piece", - "chainId": 30067, - "networkId": 30067, - "explorers": [ - { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitgert Mainnet", - "chain": "Brise", - "rpc": [ - "https://mainnet-rpc.brisescan.com", - "https://chainrpc.com", - "https://serverrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitrise Token", - "symbol": "Brise", - "decimals": 18 - }, - "infoURL": "https://bitgert.com/", - "shortName": "Brise", - "chainId": 32520, - "networkId": 32520, - "icon": "brise", - "explorers": [ - { - "name": "Brise Scan", - "url": "https://brisescan.com", - "icon": "brise", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autobahn Network", - "chain": "TXL", - "network": "mainnet", - "rpc": [ - "https://rpc.autobahn.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "TXL", - "symbol": "TXL", - "decimals": 18 - }, - "infoURL": "https://autobahn.network", - "shortName": "Autobahn Network", - "chainId": 45000, - "networkId": 45000, - "icon": "autobahn", - "explorers": [ - { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", - "standard": "EIP3091" - } - ] - }, - { - "name": "DFK Chain", - "chain": "DFK", - "icon": "dfk", - "network": "mainnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 - }, - "infoURL": "https://defikingdoms.com", - "shortName": "DFK", - "chainId": 53935, - "networkId": 53935, - "explorers": [ - { - "name": "ethernal", - "url": "https://explorer.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } - ] - }, - { - "name": "MultiVAC Mainnet", - "chain": "MultiVAC", - "icon": "multivac", - "rpc": [ - "https://rpc.mtv.ac", - "https://rpc-eu.mtv.ac" - ], - "faucets": [], - "nativeCurrency": { - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 18 - }, - "infoURL": "https://mtv.ac", - "shortName": "mtv", - "chainId": 62621, - "networkId": 62621, - "explorers": [ - { - "name": "MultiVAC Explorer", - "url": "https://e.mtv.ac", - "standard": "none" - } - ] - }, - { - "name": "Condrieu", - "title": "Ethereum Verkle Testnet Condrieu", - "chain": "ETH", - "rpc": [ - "https://rpc.condrieu.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.condrieu.ethdevops.io" - ], - "nativeCurrency": { - "name": "Condrieu Testnet Ether", - "symbol": "CTE", - "decimals": 18 - }, - "infoURL": "https://condrieu.ethdevops.io", - "shortName": "cndr", - "chainId": 69420, - "networkId": 69420, - "explorers": [ - { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - } - ] - }, - { - "name": "Godwoken Testnet (V1.1)", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-testnet-v1", - "chainId": 71401, - "networkId": 71401, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Godwoken Mainnet", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-mainnet-v1", - "chainId": 71402, - "networkId": 71402, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda C1 Testnet", - "chain": "milkTAda", - "icon": "milkomeda", - "network": "testnet", - "rpc": [ - "https://rpc-devnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAda", - "symbol": "mTAda", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAda", - "chainId": 200101, - "networkId": 200101, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "Haymo Testnet", - "chain": "tHYM", - "network": "testnet", - "rpc": [ - "https://testnet1.haymo.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAYMO", - "symbol": "HYM", - "decimals": 18 - }, - "infoURL": "https://haymoswap.web.app/", - "shortName": "hym", - "chainId": 234666, - "networkId": 234666 - }, - { - "name": "Dexalot Testnet", - "chain": "DEXALOT", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/dexalot/testnet/rpc" - ], - "faucets": [ - "https://sfaucet.dexalot-test.com" - ], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "Dexalot", - "chainId": 432201, - "networkId": 432201, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot/testnet/explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Weelink Testnet", - "chain": "WLK", - "rpc": [ - "https://weelinknode1c.gw002.oneitfarm.com" - ], - "faucets": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], - "nativeCurrency": { - "name": "Weelink Chain Token", - "symbol": "tWLK", - "decimals": 18 - }, - "infoURL": "https://weelink.cloud", - "shortName": "wlkt", - "chainId": 444900, - "networkId": 444900, - "explorers": [ - { - "name": "weelink-testnet", - "url": "https://weelink.cloud/#/blockView/overview", - "standard": "none" - } - ] - }, - { - "name": "OpenChain Mainnet", - "chain": "OpenChain", - "rpc": [ - "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" - ], - "faucets": [], - "nativeCurrency": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 - }, - "infoURL": "https://www.openchain.live", - "shortName": "oc", - "chainId": 474142, - "networkId": 474142, - "explorers": [ - { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - } - ] - }, - { - "name": "CMP-Testnet", - "chain": "CMP", - "network": "testnet", - "rpc": [ - "https://galaxy.block.caduceus.foundation", - "wss://galaxy.block.caduceus.foundation" - ], - "faucets": [ - "https://dev.caduceus.foundation/testNetwork" - ], - "nativeCurrency": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp", - "chainId": 512512, - "networkId": 512512, - "explorers": [ - { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", - "standard": "none" - } - ] - }, - { - "name": "Kiln", - "chain": "ETH", - "network": "testnet", - "rpc": [ - "https://rpc.kiln.themerge.dev" - ], - "faucets": [ - "https://faucet.kiln.themerge.dev", - "https://kiln-faucet.pk910.de", - "https://kilnfaucet.com" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kiln.themerge.dev/", - "shortName": "kiln", - "chainId": 1337802, - "networkId": 1337802, - "icon": "ethereum", - "explorers": [ - { - "name": "Kiln Explorer", - "url": "https://explorer.kiln.themerge.dev", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlatON Dev Testnet", - "chain": "PlatON", - "rpc": [ - "https://devnetopenapi2.platon.network/rpc", - "wss://devnetopenapi2.platon.network/ws" - ], - "faucets": [ - "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev", - "chainId": 2203181, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnetscan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "SmartMesh Mainnet", - "chain": "Spectrum", - "rpc": [ - "https://jsonapi1.smartmesh.cn" - ], - "faucets": [], - "nativeCurrency": { - "name": "SmartMesh Native Token", - "symbol": "SMT", - "decimals": 18 - }, - "infoURL": "https://smartmesh.io", - "shortName": "spectrum", - "chainId": 20180430, - "networkId": 1, - "explorers": [ - { - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - } - ] - }, - { - "name": "Cube Chain Mainnet", - "chain": "Cube", - "icon": "cube", - "rpc": [ - "https://http-mainnet.cube.network", - "wss://ws-mainnet.cube.network", - "https://http-mainnet-sg.cube.network", - "wss://ws-mainnet-sg.cube.network", - "https://http-mainnet-us.cube.network", - "wss://ws-mainnet-us.cube.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cube Chain Native Token", - "symbol": "CUBE", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cube", - "chainId": 1818, - "networkId": 1818, - "slip44": 1818, - "explorers": [ - { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/2.png", - "color_chain_bg": "0x3FC3C3" - } - }, - { - "name": "Cube Chain Testnet", - "chain": "Cube", - "rpc": [ - "https://http-testnet.cube.network", - "wss://ws-testnet.cube.network", - "https://http-testnet-sg.cube.network", - "wss://ws-testnet-sg.cube.network", - "https://http-testnet-jp.cube.network", - "wss://ws-testnet-jp.cube.network", - "https://http-testnet-us.cube.network", - "wss://ws-testnet-us.cube.network" - ], - "faucets": [ - "https://faucet.cube.network" - ], - "nativeCurrency": { - "name": "Cube Chain Test Native Token", - "symbol": "CUBET", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cubet", - "chainId": 1819, - "networkId": 1819, - "slip44": 1819, - "explorers": [ - { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Godwoken Testnet (V1)", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-web3-v1-rpc.ckbapp.dev" - ], - "faucets": [ - "https://homura.github.io/light-godwoken" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-testnet-v1-deprecated", - "chainId": 868455272153094, - "networkId": 868455272153094, - "status": "deprecated", - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Dxchain Mainnet", - "chain": "Dxchain", - "rpc": [ - "https://mainnet.dxchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dxchain", - "symbol": "DX", - "decimals": 18 - }, - "infoURL": "https://www.dxchain.com/", - "shortName": "dx", - "chainId": 36, - "networkId": 36 - }, - { - "name": "Darwinia Network", - "chain": "darwinia", - "network": "darwinia network", - "rpc": [ - "https://darwinia-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Darwinia Network Native Token", - "symbol": "RING", - "decimals": 18 - }, - "infoURL": "https://darwinia.network/", - "shortName": "darwinia", - "chainId": 46, - "networkId": 46, - "explorers": [ - { - "name": "subscan", - "url": "https://darwinia.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "DxChain Testnet", - "chain": "DxChain", - "rpc": [ - "https://testnet-http.dxchain.com" - ], - "faucets": [ - "https://faucet.dxscan.io" - ], - "nativeCurrency": { - "name": "DxChain Testnet", - "symbol": "DX", - "decimals": 18 - }, - "infoURL": "https://testnet.dxscan.io/", - "shortName": "dxc", - "chainId": 72, - "networkId": 72 - }, - { - "name": "Kaiba Lightning Chain Testnet", - "chain": "tKLC", - "network": "testnet", - "rpc": [ - "https://klc.live/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kaiba Testnet Token", - "symbol": "tKAIBA", - "decimals": 18 - }, - "infoURL": "https://kaibadefi.com", - "shortName": "tklc", - "chainId": 104, - "networkId": 104, - "icon": "kaiba", - "explorers": [ - { - "name": "kaibascan", - "url": "https://kaibascan.io", - "icon": "kaibascan", - "standard": "EIP3091" - } - ] - }, - { - "name": "AME Chain Mainnet", - "chain": "AME", - "rpc": [ - "https://node1.amechain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "AME", - "symbol": "AME", - "decimals": 18 - }, - "infoURL": "https://amechain.io/", - "shortName": "ame", - "chainId": 180, - "networkId": 180, - "explorers": [ - { - "name": "AME Scan", - "url": "https://amescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crypto Emergency", - "chain": "CEM", - "rpc": [ - "https://cemchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crypto Emergency", - "symbol": "CEM", - "decimals": 18 - }, - "infoURL": "https://cemblockchain.com/", - "shortName": "cem", - "chainId": 193, - "networkId": 193, - "explorers": [ - { - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SX Network Mainnet", - "chain": "SX", - "icon": "SX", - "network": "mainnet", - "rpc": [ - "https://rpc.sx.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 - }, - "infoURL": "https://www.sx.technology", - "shortName": "SX", - "chainId": 416, - "networkId": 416, - "explorers": [ - { - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "XT Smart Chain Mainnet", - "chain": "XSC", - "icon": "xsc", - "rpc": [ - "https://datarpc1.xsc.pub", - "https://datarpc2.xsc.pub", - "https://datarpc3.xsc.pub" - ], - "faucets": [ - "https://xsc.pub/faucet" - ], - "nativeCurrency": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 - }, - "infoURL": "https://xsc.pub/", - "shortName": "xt", - "chainId": 520, - "networkId": 1024, - "explorers": [ - { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } - ] - }, - { - "name": "F(x)Core Mainnet Network", - "chain": "Fxcore", - "network": "mainnet", - "rpc": [ - "https://fx-json-web3.functionx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 - }, - "infoURL": "https://functionx.io/", - "shortName": "f(x)Core", - "chainId": 530, - "networkId": 530, - "icon": "fxcore", - "explorers": [ - { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "SX Network Testnet", - "chain": "SX", - "icon": "SX", - "network": "testnet", - "rpc": [ - "https://rpc.toronto.sx.technology" - ], - "faucets": [ - "https://faucet.toronto.sx.technology" - ], - "nativeCurrency": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 - }, - "infoURL": "https://www.sx.technology", - "shortName": "SX-Testnet", - "chainId": 647, - "networkId": 647, - "explorers": [ - { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "Portal Fantasy Chain Test", - "chain": "PF", - "icon": "pf", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/portal-fantasy/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PFTEST", - "chainId": 808, - "networkId": 808, - "explorers": [] - }, - { - "name": "Portal Fantasy Chain", - "chain": "PF", - "icon": "pf", - "network": "mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PF", - "chainId": 909, - "networkId": 909, - "explorers": [], - "status": "incubating" - }, - { - "name": "TOP Mainnet EVM", - "chain": "TOP", - "icon": "top", - "rpc": [ - "ethapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top_evm", - "chainId": 980, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] - }, - { - "name": "TOP Mainnet", - "chain": "TOP", - "icon": "top", - "rpc": [ - "topapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top", - "chainId": 989, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] - }, - { - "name": "GTON Mainnet", - "chain": "GTON", - "rpc": [ - "https://rpc.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "gton", - "chainId": 1000, - "networkId": 1000, - "explorers": [ - { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "OM Platform Mainnet", - "chain": "omplatform", - "network": "mainnet", - "rpc": [ - "https://rpc-cnx.omplatform.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OMCOIN", - "symbol": "OM", - "decimals": 18 - }, - "infoURL": "https://omplatform.com/", - "shortName": "om", - "chainId": 1246, - "networkId": 1246, - "explorers": [ - { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Bobabase", - "chain": "Bobabase", - "rpc": [ - "https://bobabase.boba.network", - "wss://wss.bobabase.boba.network", - "https://replica.bobabase.boba.network", - "wss://replica-wss.bobabase.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabase", - "chainId": 1297, - "networkId": 1297, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.bobabase.boba.network", - "standard": "none" - } - ] - }, - { - "name": "AIA Mainnet", - "chainId": 1319, - "shortName": "aia", - "chain": "AIA Chain", - "network": "mainnet", - "networkId": 1319, - "nativeCurrency": { - "name": "AIA Mainnet", - "symbol": "AIA", - "decimals": 18 - }, - "rpc": [ - "https://aia-dataseed1.aiachain.org", - "https://aia-dataseed2.aiachain.org", - "https://aia-dataseed3.aiachain.org", - "https://aia-dataseed4.aiachain.org" - ], - "faucets": [], - "infoURL": "https://www.aiachain.org", - "app_resource": { - "ic_chain_select": "https://images.aiachain.org/AIA/AIA1.png", - "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2.png", - "color_chain_bg": "0x080134" - }, - "explorers": [ - { - "name": "AIA Chain Explorer Mainnet", - "url": "https://aiascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIA Testnet", - "chainId": 1320, - "shortName": "aiatestnet", - "chain": "AIA Chain", - "network": "testnet", - "networkId": 1320, - "nativeCurrency": { - "name": "AIA Testnet", - "symbol": "AIA", - "decimals": 18 - }, - "rpc": [ - "https://aia-dataseed1-testnet.aiachain.org" - ], - "faucets": [ - "https://aia-faucet-testnet.aiachain.org" - ], - "infoURL": "https://www.aiachain.org", - "app_resource": { - "ic_chain_select": "https://images.aiachain.org/AIA/AIA1-test.png", - "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2-test.png", - "color_chain_bg": "0xA1473B" - }, - "explorers": [ - { - "name": "AIA Chain Explorer Testnet", - "url": "https://testnet.aiascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kava EVM", - "chain": "KAVA", - "network": "mainnet", - "rpc": [ - "https://evm.kava.io", - "https://evm2.kava.io", - "wss://wevm.kava.io", - "wss://wevm2.kava.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "kava", - "chainId": 2222, - "networkId": 2222, - "icon": "kava", - "explorers": [ - { - "name": "Kava EVM Explorer", - "url": "https://explorer.kava.io", - "standard": "EIP3091", - "icon": "kava" - } - ] - }, - { - "name": "JFIN Chain", - "chain": "JFIN", - "rpc": [ - "https://rpc.jfinchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "JFIN Coin", - "symbol": "jfin", - "decimals": 18 - }, - "infoURL": "https://jfinchain.com", - "shortName": "jfin", - "chainId": 3501, - "networkId": 3501, - "explorers": [ - { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crossbell", - "chain": "Crossbell", - "network": "mainnet", - "rpc": [ - "https://rpc.crossbell.io" - ], - "faucets": [ - "https://faucet.crossbell.io" - ], - "nativeCurrency": { - "name": "Crossbell Token", - "symbol": "CSB", - "decimals": 18 - }, - "infoURL": "https://crossbell.io", - "shortName": "csb", - "chainId": 3737, - "networkId": 3737, - "icon": "crossbell", - "explorers": [ - { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "YuanChain Mainnet", - "chain": "YCC", - "network": "mainnet", - "rpc": [ - "https://mainnet.yuan.org/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "YCC", - "symbol": "YCC", - "decimals": 18 - }, - "infoURL": "https://www.yuan.org", - "shortName": "ycc", - "chainId": 3999, - "networkId": 3999, - "icon": "ycc", - "explorers": [ - { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Bobaopera Testnet", - "chain": "Bobaopera Testnet", - "rpc": [ - "https://testnet.bobaopera.boba.network", - "wss://wss.testnet.bobaopera.boba.network", - "https://replica.testnet.bobaopera.boba.network", - "wss://replica-wss.testnet.bobaopera.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobaopera Testnet", - "chainId": 4051, - "networkId": 4051, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.testnet.bobaopera.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Venidium Mainnet", - "chain": "XVM", - "icon": "venidium", - "rpc": [ - "https://rpc.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4919, - "networkId": 4919, - "explorers": [ - { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TLChain Network Mainnet", - "chain": "TLC", - "icon": "tlc", - "rpc": [ - "https://mainnet-rpc.tlxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 - }, - "infoURL": "https://tlchain.network/", - "shortName": "tlc", - "chainId": 5177, - "networkId": 5177, - "explorers": [ - { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } - ] - }, - { - "name": "Tomb Chain Mainnet", - "chain": "Tomb Chain", - "rpc": [ - "https://rpc.tombchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tomb", - "symbol": "TOMB", - "decimals": 18 - }, - "infoURL": "https://tombchain.com/", - "shortName": "tombchain", - "chainId": 6969, - "networkId": 6969, - "explorers": [ - { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-250", - "bridges": [ - { - "url": "https://beta-bridge.lif3.com/" - } - ] - } - }, - { - "name": "Ella the heart", - "chain": "ella", - "icon": "ella", - "rpc": [ - "https://rpc.ella.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ella", - "symbol": "ELLA", - "decimals": 18 - }, - "infoURL": "https://ella.network", - "shortName": "ELLA", - "chainId": 7027, - "networkId": 7027, - "explorers": [ - { - "name": "Ella", - "url": "https://ella.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rise of the Warbots Testnet", - "chain": "nmactest", - "rpc": [ - "https://testnet1.riseofthewarbots.com", - "https://testnet2.riseofthewarbots.com", - "https://testnet3.riseofthewarbots.com", - "https://testnet4.riseofthewarbots.com", - "https://testnet5.riseofthewarbots.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 - }, - "infoURL": "https://riseofthewarbots.com/", - "shortName": "Rise of the Warbots Testnet", - "chainId": 7777, - "networkId": 7777, - "explorers": [ - { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } - ] - }, - { - "name": "BerylBit Mainnet", - "chain": "BRB", - "rpc": [ - "https://mainnet.berylbit.io" - ], - "faucets": [ - "https://t.me/BerylBit" - ], - "nativeCurrency": { - "name": "BerylBit Chain Native Token", - "symbol": "BRB", - "decimals": 18 - }, - "infoURL": "https://www.beryl-bit.com", - "shortName": "brb", - "chainId": 9012, - "networkId": 9012, - "icon": "berylbit", - "explorers": [ - { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "IVAR Chain Testnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://testnet-rpc.ivarex.com" - ], - "faucets": [ - "https://tfaucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "tIvar", - "symbol": "tIVAR", - "decimals": 18 - }, - "infoURL": "https://ivarex.com", - "shortName": "tivar", - "chainId": 16888, - "networkId": 16888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Q Mainnet", - "chain": "Q", - "network": "mainnet", - "rpc": [ - "https://rpc.q.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org", - "shortName": "q", - "chainId": 35441, - "networkId": 35441, - "icon": "q", - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.q.org", - "icon": "q", - "standard": "EIP3091" - } - ] - }, - { - "name": "Q Testnet", - "chain": "Q", - "network": "testnet", - "rpc": [ - "https://rpc.qtestnet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org/", - "shortName": "q-testnet", - "chainId": 35443, - "networkId": 35443, - "icon": "q", - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.qtestnet.org", - "icon": "q", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arbitrum Nova", - "chainId": 42170, - "shortName": "arb-nova", - "chain": "ETH", - "networkId": 42170, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://nova.arbitrum.io/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Arbitrum Nova Chain Explorer", - "url": "https://nova-explorer.arbitrum.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "infoURL": "https://arbitrum.io", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "GTON Testnet", - "chain": "GTON Testnet", - "rpc": [ - "https://testnet.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "tgton", - "chainId": 50021, - "networkId": 50021, - "explorers": [ - { - "name": "GTON Testnet Network Explorer", - "url": "https://explorer.testnet.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3" - } - }, - { - "name": "Mixin Virtual Machine", - "chain": "MVM", - "network": "mainnet", - "rpc": [ - "https://geth.mvm.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://mvm.dev", - "shortName": "mvm", - "chainId": 73927, - "networkId": 73927, - "icon": "mvm", - "explorers": [ - { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", - "standard": "EIP3091" - } - ] - }, - { - "name": "ResinCoin Mainnet", - "chain": "RESIN", - "rpc": [ - "https://mainnet.resincoin.ml" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "RESIN", - "decimals": 18 - }, - "infoURL": "https://resincoin.ml", - "shortName": "resin", - "chainId": 75000, - "networkId": 75000, - "explorers": [ - { - "name": "ResinScan", - "url": "https://explorer.resincoin.ml", - "standard": "none" - } - ] - }, - { - "name": "IVAR Chain Mainnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://mainnet-rpc.ivarex.com" - ], - "faucets": [ - "https://faucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "Ivar", - "symbol": "IVAR", - "decimals": 18 - }, - "infoURL": "https://ivarex.com", - "shortName": "ivar", - "chainId": 88888, - "networkId": 88888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://ivarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crystaleum", - "chain": "crystal", - "network": "mainnet", - "rpc": [ - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "CRFI", - "symbol": "◈", - "decimals": 18 - }, - "infoURL": "https://crystaleum.org", - "shortName": "CRFI", - "chainId": 103090, - "networkId": 1, - "icon": "crystal", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", - "standard": "EIP3091" - } - ] - }, - { - "name": "ETND Chain Mainnets", - "chain": "ETND", - "network": "mainnet", - "rpc": [ - "https://rpc.node1.etnd.pro/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETND", - "symbol": "ETND", - "decimals": 18 - }, - "infoURL": "https://www.etnd.pro", - "shortName": "ETND", - "chainId": 131419, - "networkId": 131419, - "icon": "ETND", - "explorers": [ - { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": "ETND", - "standard": "none" - } - ] - }, - { - "name": "Arbitrum Görli", - "title": "Arbitrum Görli Rollup Testnet", - "chainId": 421613, - "shortName": "arb-goerli", - "chain": "ETH", - "networkId": 421613, - "nativeCurrency": { - "name": "Arbitrum Görli Ether", - "symbol": "AGOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli-rollup.arbitrum.io/rpc/" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/", - "explorers": [ - { - "name": "Arbitrum Görli Rollup Explorer", - "url": "https://goerli-rollup-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.arbitrum.io/" - } - ] - } - }, - { - "name": "4GoodNetwork", - "chain": "4GN", - "rpc": [ - "https://chain.deptofgood.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "APTA", - "symbol": "APTA", - "decimals": 18 - }, - "infoURL": "https://bloqs4good.com", - "shortName": "bloqs4good", - "chainId": 846000, - "networkId": 846000 - }, - { - "name": "PlatON Dev Testnet2", - "chain": "PlatON", - "rpc": [ - "https://devnet2openapi.platon.network/rpc", - "wss://devnet2openapi.platon.network/ws" - ], - "faucets": [ - "https://devnet2faucet.platon.network/faucet" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev2", - "chainId": 2206132, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "CANTO", - "chain": "CANTO", - "rpc": [ - "https://canto.evm.chandrastation.com", - "https://canto.slingshot.finance", - "https://jsonrpc.canto.nodestake.top" - ], - "nativeCurrency": { - "name": "CANTO", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io/", - "shortName": "CANTO", - "chainId": 7700, - "networkId": 7700, - "icon": "CANTO", - "explorers": [ - { - "name": "CANTO explorer", - "url": "https://evm.explorer.canto.io", - "standard": "none" - } - ] - }, - { - "name": "EthereumFair ETHF", - "chainId": 513100, - "shortName": "ETHF", - "chain": "ETHF", - "network": "mainnet", - "networkId": 513100, - "nativeCurrency": { - "name": "ETHF", - "symbol": "ETHF", - "decimals": 18 - }, - "rpc": [ - "https://rpc.etherfair.org" - ], - "faucets": [], - "infoURL": "", - "explorers": [ - { - "name": "ETHF scan", - "url": "https://explorer.etherfair.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "ETHW Mainnet", - "chainId": 10001, - "shortName": "ETHW", - "chain": "ETHW", - "network": "mainnet", - "networkId": 10001, - "nativeCurrency": { - "name": "ETHW", - "symbol": "ETHW", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.ethereumpow.org" - ], - "faucets": [], - "infoURL": "https://ethereumpow.org/", - "explorers": [ - { - "name": "ETHW Scan", - "url": "https://mainnet.ethwscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Core Blockchain", - "chainId": 1116, - "shortName": "CORE", - "chain": "CORE", - "network": "mainnet", - "networkId": 1116, - "nativeCurrency": { - "name": "CORE", - "symbol": "CORE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.coredao.org/" - ], - "faucets": [], - "explorers": [ - { - "name": "Core Scan", - "url": "https://scan.coredao.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SeedCoin-Network", - "chain": "SeedCoin-Network", - "rpc": [ - "https://node.seedcoin.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SeedCoin", - "symbol": "SEED", - "decimals": 18 - }, - "infoURL": "https://www.seedcoin.network/", - "shortName": "SEED", - "icon": "seedcoin", - "chainId": 37, - "networkId": 37 - }, - { - "name": "Unicorn Ultra Testnet", - "chain": "u2u", - "rpc": [ - "https://rpc-testnet.uniultra.xyz" - ], - "faucets": [ - "https://faucet.uniultra.xyz" - ], - "nativeCurrency": { - "name": "Unicorn Ultra", - "symbol": "U2U", - "decimals": 18 - }, - "infoURL": "https://uniultra.xyz", - "shortName": "u2u", - "chainId": 39, - "networkId": 39, - "icon": "u2u", - "explorers": [ - { - "icon": "u2u", - "name": "U2U Explorer", - "url": "https://testnet.uniultra.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ennothem Mainnet Proterozoic", - "chain": "ETMP", - "rpc": [ - "https://rpc.etm.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 - }, - "infoURL": "https://etm.network", - "shortName": "etmp", - "chainId": 48, - "networkId": 48, - "icon": "etmp", - "explorers": [ - { - "name": "etmpscan", - "url": "https://etmscan.network", - "icon": "etmp", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ennothem Testnet Pioneer", - "chain": "ETMP", - "rpc": [ - "https://rpc.pioneer.etm.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 - }, - "infoURL": "https://etm.network", - "shortName": "etmpTest", - "chainId": 49, - "networkId": 49, - "icon": "etmp", - "explorers": [ - { - "name": "etmp", - "url": "https://pioneer.etmscan.network", - "icon": "etmpscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "FNCY", - "chain": "FNCY", - "rpc": [ - "https://fncy-seed1.fncy.world" - ], - "faucets": [ - "https://faucet-testnet.fncy.world" - ], - "nativeCurrency": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 - }, - "infoURL": "https://fncyscan.fncy.world", - "shortName": "FNCY", - "chainId": 73, - "networkId": 73, - "icon": "fncy", - "explorers": [ - { - "name": "fncy scan", - "url": "https://fncyscan.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } - ] - }, - { - "name": "Decimal Smart Chain Mainnet", - "chain": "DSC", - "rpc": [ - "https://node.decimalchain.com/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decimal", - "symbol": "DEL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://decimalchain.com", - "shortName": "DSC", - "chainId": 75, - "networkId": 75, - "icon": "dsc", - "explorers": [ - { - "name": "DSC Explorer Mainnet", - "url": "https://explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dehvo", - "chain": "Dehvo", - "rpc": [ - "https://connect.dehvo.com", - "https://rpc.dehvo.com", - "https://rpc1.dehvo.com", - "https://rpc2.dehvo.com" - ], - "faucets": [ - "https://buy.dehvo.com" - ], - "nativeCurrency": { - "name": "Dehvo", - "symbol": "Deh", - "decimals": 18 - }, - "infoURL": "https://dehvo.com", - "shortName": "deh", - "chainId": 113, - "networkId": 113, - "slip44": 714, - "explorers": [ - { - "name": "Dehvo Explorer", - "url": "https://explorer.dehvo.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flare Testnet Coston2", - "chain": "FLR", - "icon": "coston2", - "rpc": [ - "https://coston2-api.flare.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://coston2-faucet.towolabs.com" - ], - "nativeCurrency": { - "name": "Coston2 Flare", - "symbol": "C2FLR", - "decimals": 18 - }, - "infoURL": "https://flare.xyz", - "shortName": "c2flr", - "chainId": 114, - "networkId": 114, - "explorers": [ - { - "name": "blockscout", - "url": "https://coston2-explorer.flare.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeBank Testnet", - "chain": "DeBank", - "rpc": [], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "debank-testnet", - "chainId": 115, - "networkId": 115, - "explorers": [] - }, - { - "name": "DeBank Mainnet", - "chain": "DeBank", - "rpc": [], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "debank-mainnet", - "chainId": 116, - "networkId": 116, - "explorers": [] - }, - { - "name": "Arcology Testnet", - "chain": "Arcology", - "icon": "acolicon", - "rpc": [ - "https://testnet.arcology.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arcology Coin", - "symbol": "Acol", - "decimals": 18 - }, - "infoURL": "https://arcology.network/", - "shortName": "arcology", - "chainId": 118, - "networkId": 118, - "explorers": [ - { - "name": "arcology", - "url": "https://testnet.arcology.network/explorer", - "standard": "none" - } - ] - }, - { - "name": "ENULS Mainnet", - "chain": "ENULS", - "rpc": [ - "https://evmapi.nuls.io", - "https://evmapi2.nuls.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 - }, - "infoURL": "https://nuls.io", - "shortName": "enuls", - "chainId": 119, - "networkId": 119, - "icon": "enuls", - "explorers": [ - { - "name": "enulsscan", - "url": "https://evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } - ] - }, - { - "name": "ENULS Testnet", - "chain": "ENULS", - "rpc": [ - "https://beta.evmapi.nuls.io", - "https://beta.evmapi2.nuls.io" - ], - "faucets": [ - "http://faucet.nuls.io" - ], - "nativeCurrency": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 - }, - "infoURL": "https://nuls.io", - "shortName": "enulst", - "chainId": 120, - "networkId": 120, - "icon": "enuls", - "explorers": [ - { - "name": "enulsscan", - "url": "https://beta.evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } - ] - }, - { - "name": "Realchain Mainnet", - "chain": "REAL", - "rpc": [ - "https://rcl-dataseed1.rclsidechain.com", - "https://rcl-dataseed2.rclsidechain.com", - "https://rcl-dataseed3.rclsidechain.com", - "https://rcl-dataseed4.rclsidechain.com", - "wss://rcl-dataseed1.rclsidechain.com/v1/", - "wss://rcl-dataseed2.rclsidechain.com/v1/", - "wss://rcl-dataseed3.rclsidechain.com/v1/", - "wss://rcl-dataseed4.rclsidechain.com/v1/" - ], - "faucets": [ - "https://faucet.rclsidechain.com" - ], - "nativeCurrency": { - "name": "Realchain", - "symbol": "REAL", - "decimals": 18 - }, - "infoURL": "https://www.rclsidechain.com/", - "shortName": "REAL", - "chainId": 121, - "networkId": 121, - "slip44": 714, - "explorers": [ - { - "name": "realscan", - "url": "https://rclscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alyx Chain Testnet", - "chain": "Alyx Chain Testnet", - "rpc": [ - "https://testnet-rpc.alyxchain.com" - ], - "faucets": [ - "https://faucet.alyxchain.com" - ], - "nativeCurrency": { - "name": "Alyx Testnet Native Token", - "symbol": "ALYX", - "decimals": 18 - }, - "infoURL": "https://www.alyxchain.com", - "shortName": "AlyxTestnet", - "chainId": 135, - "networkId": 135, - "explorers": [ - { - "name": "alyx testnet scan", - "url": "https://testnet.alyxscan.com", - "standard": "EIP3091" - } - ], - "icon": "alyx" - }, - { - "name": "PHI Network v2", - "chain": "PHI", - "rpc": [ - "https://connect.phi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 - }, - "infoURL": "https://phi.network", - "shortName": "PHI", - "chainId": 144, - "networkId": 144, - "icon": "phi", - "explorers": [ - { - "name": "Phiscan", - "url": "https://phiscan.com", - "icon": "phi", - "standard": "none" - } - ] - }, - { - "name": "Armonia Eva Chain Mainnet", - "chain": "Eva", - "rpc": [ - "https://evascan.io/api/eth-rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 - }, - "infoURL": "https://amax.network", - "shortName": "eva", - "chainId": 160, - "networkId": 160, - "status": "incubating" - }, - { - "name": "Armonia Eva Chain Testnet", - "chain": "Wall-e", - "rpc": [ - "https://testnet.evascan.io/api/eth-rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 - }, - "infoURL": "https://amax.network", - "shortName": "wall-e", - "chainId": 161, - "networkId": 161, - "explorers": [ - { - "name": "blockscout - evascan", - "url": "https://testnet.evascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Atoshi Testnet", - "chain": "ATOSHI", - "icon": "atoshi", - "rpc": [ - "https://node.atoshi.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATOSHI", - "symbol": "ATOS", - "decimals": 18 - }, - "infoURL": "https://atoshi.org", - "shortName": "atoshi", - "chainId": 167, - "networkId": 167, - "explorers": [ - { - "name": "atoshiscan", - "url": "https://scan.atoverse.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "MOAC testnet", - "chain": "MOAC", - "rpc": [ - "https://gateway.moac.io/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 - }, - "infoURL": "https://moac.io", - "shortName": "moactest", - "chainId": 201, - "networkId": 201, - "explorers": [ - { - "name": "moac testnet explorer", - "url": "https://testnet.moac.io", - "standard": "none" - } - ] - }, - { - "name": "MAPO Makalu", - "title": "MAPO Testnet Makalu", - "chain": "MAPO", - "rpc": [ - "https://testnet-rpc.maplabs.io" - ], - "faucets": [ - "https://faucet.mapprotocol.io" - ], - "nativeCurrency": { - "name": "Makalu MAPO", - "symbol": "MAPO", - "decimals": 18 - }, - "infoURL": "https://mapprotocol.io/", - "shortName": "makalu", - "chainId": 212, - "networkId": 212, - "explorers": [ - { - "name": "maposcan", - "url": "https://testnet.maposcan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "SiriusNet V2", - "chain": "SIN2", - "faucets": [], - "rpc": [ - "https://rpc2.siriusnet.io" - ], - "icon": "siriusnet", - "nativeCurrency": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 - }, - "infoURL": "https://siriusnet.io", - "shortName": "SIN2", - "chainId": 217, - "networkId": 217, - "explorers": [ - { - "name": "siriusnet explorer", - "url": "https://scan.siriusnet.io", - "standard": "none" - } - ] - }, - { - "name": "Oasys Mainnet", - "chain": "Oasys", - "icon": "oasys", - "rpc": [ - "https://rpc.mainnet.oasys.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://oasys.games", - "shortName": "OAS", - "chainId": 248, - "networkId": 248, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.oasys.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hedera Mainnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://mainnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-mainnet", - "chainId": 295, - "networkId": 295, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/mainnet/dashboard", - "standard": "none" - }, - { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" - }, - { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" - }, - { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" - }, - { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } - ] - }, - { - "name": "Hedera Testnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://testnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://portal.hedera.com" - ], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-testnet", - "chainId": 296, - "networkId": 296, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/testnet/dashboard", - "standard": "none" - }, - { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" - }, - { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" - }, - { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" - }, - { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } - ] - }, - { - "name": "Hedera Previewnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://previewnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://portal.hedera.com" - ], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-previewnet", - "chainId": 297, - "networkId": 297, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/previewnet/dashboard", - "standard": "none" - } - ] - }, - { - "name": "Hedera Localnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-localnet", - "chainId": 298, - "networkId": 298, - "slip44": 3030, - "explorers": [] - }, - { - "name": "Bobaopera", - "chain": "Bobaopera", - "rpc": [ - "https://bobaopera.boba.network", - "wss://wss.bobaopera.boba.network", - "https://replica.bobaopera.boba.network", - "wss://replica-wss.bobaopera.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobaopera", - "chainId": 301, - "networkId": 301, - "explorers": [ - { - "name": "Bobaopera block explorer", - "url": "https://blockexplorer.bobaopera.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Omax Mainnet", - "chain": "OMAX Chain", - "rpc": [ - "https://mainapi.omaxray.com" - ], - "faucets": [ - "https://faucet.omaxray.com/" - ], - "nativeCurrency": { - "name": "OMAX COIN", - "symbol": "OMAX", - "decimals": 18 - }, - "infoURL": "https://www.omaxcoin.com/", - "shortName": "omax", - "chainId": 311, - "networkId": 311, - "icon": "omaxchain", - "explorers": [ - { - "name": "Omax Chain Explorer", - "url": "https://omaxray.com", - "icon": "omaxray", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Mainnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.node.glif.io/", - "https://rpc.ankr.com/filecoin" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin", - "chainId": 314, - "networkId": 314, - "slip44": 461, - "explorers": [ - { - "name": "Filfox", - "url": "https://filfox.info/en", - "standard": "none" - }, - { - "name": "Filscan", - "url": "https://filscan.io", - "standard": "none" - }, - { - "name": "Filscout", - "url": "https://filscout.io/en", - "standard": "none" - } - ] - }, - { - "name": "Consta Testnet", - "chain": "tCNT", - "rpc": [ - "https://rpc-testnet.theconsta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tCNT", - "symbol": "tCNT", - "decimals": 18 - }, - "infoURL": "http://theconsta.com", - "shortName": "tCNT", - "chainId": 371, - "networkId": 371, - "icon": "constachain", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-testnet.theconsta.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HyperonChain TestNet", - "chain": "HPN", - "icon": "hyperonchain", - "rpc": [ - "https://testnet-rpc.hyperonchain.com" - ], - "faucets": [ - "https://faucet.hyperonchain.com" - ], - "nativeCurrency": { - "name": "HyperonChain", - "symbol": "HPN", - "decimals": 18 - }, - "infoURL": "https://docs.hyperonchain.com", - "shortName": "hpn", - "chainId": 400, - "networkId": 400, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.hyperonchain.com", - "icon": "hyperonchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zeeth Chain", - "chain": "ZeethChain", - "rpc": [ - "https://rpc.zeeth.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "zeeth", - "chainId": 427, - "networkId": 427, - "explorers": [ - { - "name": "Zeeth Explorer", - "url": "https://explorer.zeeth.io", - "standard": "none" - } - ] - }, - { - "name": "Frenchain Testnet", - "chain": "tfren", - "rpc": [ - "https://rpc-01tn.frenchain.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "tFREN", - "symbol": "FtREN", - "decimals": 18 - }, - "infoURL": "https://frenchain.app", - "shortName": "tFREN", - "chainId": 444, - "networkId": 444, - "icon": "fren", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.frenscan.io", - "icon": "fren", - "standard": "EIP3091" - } - ] - }, - { - "name": "Camino C-Chain", - "chain": "CAM", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.foundation/", - "shortName": "Camino", - "chainId": 500, - "networkId": 1000, - "icon": "camino", - "explorers": [ - { - "name": "blockexplorer", - "url": "https://explorer.camino.foundation/mainnet", - "standard": "none" - } - ] - }, - { - "name": "Columbus Test Network", - "chain": "CAM", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.foundation/", - "shortName": "Columbus", - "chainId": 501, - "networkId": 1001, - "icon": "camino", - "explorers": [ - { - "name": "blockexplorer", - "url": "https://explorer.camino.foundation", - "standard": "none" - } - ] - }, - { - "name": "Gear Zero Network Mainnet", - "chain": "GearZero", - "rpc": [ - "https://gzn.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/mainnet", - "shortName": "gz-mainnet", - "chainId": 516, - "networkId": 516, - "slip44": 516, - "explorers": [] - }, - { - "name": "Firechain Mainnet", - "chain": "FIRE", - "icon": "firechain", - "rpc": [ - "https://mainnet.rpc1.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "fire", - "chainId": 529, - "networkId": 529, - "explorers": [], - "status": "incubating" - }, - { - "name": "Dogechain Testnet", - "chain": "DC", - "icon": "dogechain", - "rpc": [ - "https://rpc-testnet.dogechain.dog" - ], - "faucets": [ - "https://faucet.dogechain.dog" - ], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dct", - "chainId": 568, - "networkId": 568, - "explorers": [ - { - "name": "dogechain testnet explorer", - "url": "https://explorer-testnet.dogechain.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metis Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.gateway.metisdevops.link" - ], - "faucets": [ - "https://goerli.faucet.metisdevops.link" - ], - "nativeCurrency": { - "name": "Goerli Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-goerli", - "chainId": 599, - "networkId": 599, - "explorers": [ - { - "name": "blockscout", - "url": "https://goerli.explorer.metisdevops.link", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://testnet-bridge.metis.io" - } - ] - } - }, - { - "name": "Graphlinq Blockchain Mainnet", - "chain": "GLQ Blockchain", - "rpc": [ - "https://glq-dataseed.graphlinq.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GLQ", - "symbol": "GLQ", - "decimals": 18 - }, - "infoURL": "https://graphlinq.io", - "shortName": "glq", - "chainId": 614, - "networkId": 614, - "explorers": [ - { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } - ] - }, - { - "name": "Canto Testnet", - "chain": "Canto Tesnet", - "rpc": [ - "https://eth.plexnode.wtf/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "tcanto", - "chainId": 740, - "networkId": 740, - "explorers": [ - { - "name": "Canto Tesnet Explorer (Neobase)", - "url": "http://testnet-explorer.canto.neobase.one", - "standard": "none" - } - ] - }, - { - "name": "Vention Smart Chain Testnet", - "chain": "VSCT", - "icon": "ventionTestnet", - "rpc": [ - "https://node-testnet.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://testnet.ventionscan.io", - "shortName": "vsct", - "chainId": 741, - "networkId": 741, - "explorers": [ - { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "QL1", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://rpc.qom.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "qom", - "chainId": 766, - "networkId": 766, - "icon": "qom", - "explorers": [ - { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lucid Blockchain", - "chain": "Lucid Blockchain", - "icon": "lucid", - "rpc": [ - "https://rpc.lucidcoin.io" - ], - "faucets": [ - "https://faucet.lucidcoin.io" - ], - "nativeCurrency": { - "name": "LUCID", - "symbol": "LUCID", - "decimals": 18 - }, - "infoURL": "https://lucidcoin.io", - "shortName": "LUCID", - "chainId": 800, - "networkId": 800, - "explorers": [ - { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } - ] - }, - { - "name": "Qitmeer", - "chain": "MEER", - "rpc": [ - "https://qng.rpc.qitmeer.io", - "https://rpc.woowow.io", - "https://mainnet.meerlabs.com", - "https://rpc.dimai.ai", - "https://evm-dataseed1.meerscan.io", - "https://evm-dataseed2.meerscan.io", - "https://evm-dataseed3.meerscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meer", - "chainId": 813, - "networkId": 813, - "slip44": 813, - "icon": "meer", - "explorers": [ - { - "name": "meerscan", - "url": "https://qng.meerscan.io", - "standard": "none" - }, - { - "name": "QNG Mainnet Qitmeer Explorer", - "url": "https://qng.qitmneer.io", - "standard": "none" - } - ] - }, - { - "name": "Taraxa Mainnet", - "chain": "Tara", - "icon": "taraxa", - "rpc": [ - "https://rpc.mainnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "tara", - "chainId": 841, - "networkId": 841, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } - ] - }, - { - "name": "Taraxa Testnet", - "chain": "Tara", - "icon": "taraxa", - "rpc": [ - "https://rpc.testnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "taratest", - "chainId": 842, - "networkId": 842, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } - ] - }, - { - "name": "Zeeth Chain Dev", - "chain": "ZeethChainDev", - "rpc": [ - "https://rpc.dev.zeeth.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "zeethdev", - "chainId": 859, - "networkId": 859, - "explorers": [ - { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } - ] - }, - { - "name": "Fantasia Chain Mainnet", - "chain": "FSC", - "rpc": [ - "https://mainnet-data1.fantasiachain.com/", - "https://mainnet-data2.fantasiachain.com/", - "https://mainnet-data3.fantasiachain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FST", - "symbol": "FST", - "decimals": 18 - }, - "infoURL": "https://fantasia.technology/", - "shortName": "FSCMainnet", - "chainId": 868, - "networkId": 868, - "explorers": [ - { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bandai Namco Research Verse Mainnet", - "chain": "Bandai Namco Research Verse", - "icon": "bnken", - "rpc": [ - "https://rpc.main.oasvrs.bnken.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.bandainamco-mirai.com/en/", - "shortName": "BNKEN", - "chainId": 876, - "networkId": 876, - "explorers": [ - { - "name": "Bandai Namco Research Verse Explorer", - "url": "https://explorer.main.oasvrs.bnken.net", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Dexit Network", - "chain": "DXT", - "rpc": [ - "https://dxt.dexit.network" - ], - "faucets": [ - "https://faucet.dexit.network" - ], - "nativeCurrency": { - "name": "Dexit network", - "symbol": "DXT", - "decimals": 18 - }, - "infoURL": "https://dexit.network", - "shortName": "DXT", - "chainId": 877, - "networkId": 877, - "explorers": [ - { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rinia Testnet", - "chain": "FIRE", - "icon": "rinia", - "rpc": [ - "https://rinia.rpc1.thefirechain.com" - ], - "faucets": [ - "https://faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "tfire", - "chainId": 917, - "networkId": 917, - "explorers": [], - "status": "incubating" - }, - { - "name": "muNode Testnet", - "chain": "munode", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://munode.dev/", - "shortName": "munode", - "chainId": 956, - "networkId": 956 - }, - { - "name": "Oort Mainnet", - "chain": "Oort Mainnet", - "rpc": [ - "https://rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "ccn", - "chainId": 970, - "networkId": 970, - "icon": "ccn" - }, - { - "name": "Oort Huygens", - "chain": "Huygens", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Huygens", - "chainId": 971, - "networkId": 971, - "icon": "ccn" - }, - { - "name": "Oort Ascraeus", - "title": "Oort Ascraeus", - "chain": "Ascraeus", - "rpc": [ - "https://ascraeus-rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCNA", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Ascraeus", - "chainId": 972, - "networkId": 972, - "icon": "ccn" - }, - { - "name": "Memo Smart Chain Mainnet", - "chain": "MEMO", - "rpc": [ - "https://chain.metamemo.one:8501", - "wss://chain.metamemo.one:16801" - ], - "faucets": [ - "https://faucet.metamemo.one/" - ], - "nativeCurrency": { - "name": "Memo", - "symbol": "CMEMO", - "decimals": 18 - }, - "infoURL": "www.memolabs.org", - "shortName": "memochain", - "chainId": 985, - "networkId": 985, - "icon": "memo", - "explorers": [ - { - "name": "Memo Mainnet Explorer", - "url": "https://scan.metamemo.one:8080", - "icon": "memoscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "T-EKTA", - "title": "EKTA Testnet T-EKTA", - "chain": "T-EKTA", - "rpc": [ - "https://test.ekta.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "T-EKTA", - "symbol": "T-EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "t-ekta", - "chainId": 1004, - "networkId": 1004, - "icon": "ekta", - "explorers": [ - { - "name": "test-ektascan", - "url": "https://test.ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proxy Network Testnet", - "chain": "Proxy Network", - "rpc": [ - "http://128.199.94.183:8041" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRX", - "symbol": "PRX", - "decimals": 18 - }, - "infoURL": "https://theproxy.network", - "shortName": "prx", - "chainId": 1031, - "networkId": 1031, - "explorers": [ - { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bronos Testnet", - "chain": "Bronos", - "rpc": [ - "https://evm-testnet.bronos.org" - ], - "faucets": [ - "https://faucet.bronos.org" - ], - "nativeCurrency": { - "name": "tBRO", - "symbol": "tBRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-testnet", - "chainId": 1038, - "networkId": 1038, - "icon": "bronos", - "explorers": [ - { - "name": "Bronos Testnet Explorer", - "url": "https://tbroscan.bronos.org", - "standard": "none", - "icon": "bronos" - } - ] - }, - { - "name": "Bronos Mainnet", - "chain": "Bronos", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "BRO", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-mainnet", - "chainId": 1039, - "networkId": 1039, - "icon": "bronos", - "explorers": [ - { - "name": "Bronos Explorer", - "url": "https://broscan.bronos.org", - "standard": "none", - "icon": "bronos" - } - ] - }, - { - "name": "MOAC mainnet", - "chain": "MOAC", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 - }, - "infoURL": "https://moac.io", - "shortName": "moac", - "chainId": 1099, - "networkId": 1099, - "slip44": 314, - "explorers": [ - { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } - ] - }, - { - "name": "WEMIX3.0 Mainnet", - "chain": "WEMIX", - "rpc": [ - "https://api.wemix.com", - "wss://ws.wemix.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "WEMIX", - "symbol": "WEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "wemix", - "chainId": 1111, - "networkId": 1111, - "explorers": [ - { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "WEMIX3.0 Testnet", - "chain": "TWEMIX", - "rpc": [ - "https://api.test.wemix.com", - "wss://ws.test.wemix.com" - ], - "faucets": [ - "https://wallet.test.wemix.com/faucet" - ], - "nativeCurrency": { - "name": "TestnetWEMIX", - "symbol": "tWEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "twemix", - "chainId": 1112, - "networkId": 1112, - "explorers": [ - { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Core Blockchain Testnet", - "chain": "Core", - "icon": "core", - "rpc": [ - "https://rpc.test.btcs.network/" - ], - "faucets": [ - "https://scan.test.btcs.network/faucet" - ], - "nativeCurrency": { - "name": "Core Blockchain Testnet Native Token", - "symbol": "tCORE", - "decimals": 18 - }, - "infoURL": "https://www.coredao.org", - "shortName": "tcore", - "chainId": 1115, - "networkId": 1115, - "explorers": [ - { - "name": "Core Scan Testnet", - "url": "https://scan.test.btcs.network", - "icon": "core", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogcoin Mainnet", - "chain": "DOGS", - "icon": "dogs", - "rpc": [ - "https://mainnet-rpc.dogcoin.network" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSm", - "chainId": 1117, - "networkId": 1117, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiChain EVM Network Mainnet", - "chain": "defichain-evm", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI", - "chainId": 1130, - "networkId": 1130, - "slip44": 1130, - "icon": "defichain-network", - "explorers": [] - }, - { - "name": "DeFiChain EVM Network Testnet", - "chain": "defichain-evm-testnet", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI-T", - "chainId": 1131, - "networkId": 1131, - "icon": "defichain-network", - "explorers": [] - }, - { - "name": "AmStar Testnet", - "chain": "AmStar", - "icon": "amstar", - "rpc": [ - "https://testnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASARt", - "chainId": 1138, - "networkId": 1138, - "explorers": [ - { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Host Teknoloji TESTNET", - "chain": "SHT", - "rpc": [ - "https://s2.tl.web.tr:4041" - ], - "faucets": [], - "nativeCurrency": { - "name": "Smart Host Teknoloji TESTNET", - "symbol": "tSHT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://smart-host.com.tr", - "shortName": "sht", - "chainId": 1177, - "networkId": 1177, - "icon": "smarthost", - "explorers": [ - { - "name": "Smart Host Teknoloji TESTNET Explorer", - "url": "https://s2.tl.web.tr:4000", - "icon": "smarthost", - "standard": "EIP3091" - } - ] - }, - { - "name": "Exzo Network Mainnet", - "chain": "EXZO", - "icon": "exzo", - "rpc": [ - "https://mainnet.exzo.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exzo", - "symbol": "XZO", - "decimals": 18 - }, - "infoURL": "https://exzo.network", - "shortName": "xzo", - "chainId": 1229, - "networkId": 1229, - "explorers": [ - { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ultron Testnet", - "chain": "Ultron", - "icon": "ultron", - "rpc": [ - "https://ultron-dev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UltronTestnet", - "chainId": 1230, - "networkId": 1230, - "explorers": [ - { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": "ultron", - "standard": "none" - } - ] - }, - { - "name": "Ultron Mainnet", - "chain": "Ultron", - "icon": "ultron", - "rpc": [ - "https://ultron-rpc.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UtronMainnet", - "chainId": 1231, - "networkId": 1231, - "explorers": [ - { - "name": "Ultron Explorer", - "url": "https://ulxscan.com", - "icon": "ultron", - "standard": "none" - } - ] - }, - { - "name": "Step Network", - "title": "Step Main Network", - "chain": "STEP", - "icon": "step", - "rpc": [ - "https://rpc.step.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "step", - "chainId": 1234, - "networkId": 1234, - "explorers": [ - { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": "step", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43114", - "bridges": [ - { - "url": "https://bridge.step.network" - } - ] - } - }, - { - "name": "CIC Chain Testnet", - "chain": "CICT", - "rpc": [ - "https://testapi.cicscan.com" - ], - "faucets": [ - "https://cicfaucet.com" - ], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CICT", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CICT", - "chainId": 1252, - "networkId": 1252, - "icon": "cicchain", - "explorers": [ - { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bobabeam", - "chain": "Bobabeam", - "rpc": [ - "https://bobabeam.boba.network", - "wss://wss.bobabeam.boba.network", - "https://replica.bobabeam.boba.network", - "wss://replica-wss.bobabeam.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabeam", - "chainId": 1294, - "networkId": 1294, - "explorers": [ - { - "name": "Bobabeam block explorer", - "url": "https://blockexplorer.bobabeam.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Dos Fuji Subnet", - "chain": "DOS", - "rpc": [ - "https://test.doschain.com/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dos Native Token", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "DOS", - "chainId": 1311, - "networkId": 1311, - "explorers": [ - { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alyx Mainnet", - "chain": "ALYX", - "rpc": [ - "https://rpc.alyxchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alyx Chain Native Token", - "symbol": "ALYX", - "decimals": 18 - }, - "infoURL": "https://www.alyxchain.com", - "shortName": "alyx", - "chainId": 1314, - "networkId": 1314, - "explorers": [ - { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } - ], - "icon": "alyx" - }, - { - "name": "Elysium Testnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium-test-rpc.vulcanforged.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELST", - "chainId": 1338, - "networkId": 1338, - "explorers": [ - { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } - ] - }, - { - "name": "Elysium Mainnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium-rpc.vulcanforged.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELSM", - "chainId": 1339, - "networkId": 1339, - "explorers": [ - { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } - ] - }, - { - "name": "CIC Chain Mainnet", - "chain": "CIC", - "rpc": [ - "https://xapi.cicscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CIC", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CIC", - "chainId": 1353, - "networkId": 1353, - "icon": "cicchain", - "explorers": [ - { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "AmStar Mainnet", - "chain": "AmStar", - "icon": "amstar", - "rpc": [ - "https://mainnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASAR", - "chainId": 1388, - "networkId": 1388, - "explorers": [ - { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon zkEVM Testnet old", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "zkevmtest", - "chainId": 1402, - "networkId": 1402, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "Polygon zkEVM Testnet", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.public.zkevm-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "testnet-zkEVM-mango", - "chainId": 1422, - "networkId": 1422, - "explorers": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ctex Scan Blockchain", - "chain": "Ctex Scan Blockchain", - "icon": "ctex", - "rpc": [ - "https://mainnet-rpc.ctexscan.com/" - ], - "faucets": [ - "https://faucet.ctexscan.com" - ], - "nativeCurrency": { - "name": "CTEX", - "symbol": "CTEX", - "decimals": 18 - }, - "infoURL": "https://ctextoken.io", - "shortName": "CTEX", - "chainId": 1455, - "networkId": 1455, - "explorers": [ - { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } - ] - }, - { - "name": "Beagle Messaging Chain", - "chain": "BMC", - "rpc": [ - "https://beagle.chat/eth" - ], - "faucets": [ - "https://faucet.beagle.chat/" - ], - "nativeCurrency": { - "name": "Beagle", - "symbol": "BG", - "decimals": 18 - }, - "infoURL": "https://beagle.chat/", - "shortName": "beagle", - "chainId": 1515, - "networkId": 1515, - "explorers": [ - { - "name": "Beagle Messaging Chain Explorer", - "url": "https://eth.beagle.chat", - "standard": "EIP3091" - } - ] - }, - { - "name": "Horizen Yuma Testnet", - "shortName": "Yuma", - "chain": "Yuma", - "icon": "eon", - "rpc": [ - "https://yuma-testnet.horizenlabs.io/ethv1" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://yuma-testnet-faucet.horizen.io" - ], - "nativeCurrency": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 1662, - "networkId": 1662, - "slip44": 121, - "explorers": [ - { - "name": "Yuma Testnet Block Explorer", - "url": "https://yuma-explorer.horizen.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Anytype EVM Chain", - "chain": "ETH", - "icon": "any", - "rpc": [ - "https://geth.anytype.io" - ], - "faucets": [ - "https://evm.anytype.io/faucet" - ], - "nativeCurrency": { - "name": "ANY", - "symbol": "ANY", - "decimals": 18 - }, - "infoURL": "https://evm.anytype.io", - "shortName": "AnytypeChain", - "chainId": 1701, - "networkId": 1701, - "explorers": [ - { - "name": "Anytype Explorer", - "url": "https://explorer.anytype.io", - "icon": "any", - "standard": "EIP3091" - } - ] - }, - { - "name": "TBSI Mainnet", - "title": "Thai Blockchain Service Infrastructure Mainnet", - "chain": "TBSI", - "rpc": [ - "https://rpc.blockchain.or.th" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "TBSI", - "chainId": 1707, - "networkId": 1707 - }, - { - "name": "TBSI Testnet", - "title": "Thai Blockchain Service Infrastructure Testnet", - "chain": "TBSI", - "rpc": [ - "https://rpc.testnet.blockchain.or.th" - ], - "faucets": [ - "https://faucet.blockchain.or.th" - ], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "tTBSI", - "chainId": 1708, - "networkId": 1708 - }, - { - "name": "Kerleano", - "title": "Proof of Carbon Reduction testnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://cacib-saturn-test.francecentral.cloudapp.azure.com", - "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" - ], - "faucets": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" - ], - "nativeCurrency": { - "name": "Carbon Reduction Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/kerleano", - "shortName": "kerleano", - "chainId": 1804, - "networkId": 1804, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/kerleano", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rabbit Analog Testnet Chain", - "chain": "rAna", - "icon": "rabbit", - "rpc": [ - "https://rabbit.analog-rpc.com" - ], - "faucets": [ - "https://analogfaucet.com" - ], - "nativeCurrency": { - "name": "Rabbit Analog Test Chain Native Token ", - "symbol": "rAna", - "decimals": 18 - }, - "infoURL": "https://rabbit.analogscan.com", - "shortName": "rAna", - "chainId": 1807, - "networkId": 1807, - "explorers": [ - { - "name": "blockscout", - "url": "https://rabbit.analogscan.com", - "standard": "none" - } - ] - }, - { - "name": "Gitshock Cartenz Testnet", - "chain": "Gitshock Cartenz", - "icon": "gitshockchain", - "rpc": [ - "https://rpc.cartenz.works" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Gitshock Cartenz", - "symbol": "tGTFX", - "decimals": 18 - }, - "infoURL": "https://gitshock.com", - "shortName": "gitshockchain", - "chainId": 1881, - "networkId": 1881, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcichain Mainnet", - "chain": "BITCI", - "icon": "bitci", - "rpc": [ - "https://rpc.bitci.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitci", - "symbol": "BITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "bitci", - "chainId": 1907, - "networkId": 1907, - "explorers": [ - { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcichain Testnet", - "chain": "TBITCI", - "icon": "bitci", - "rpc": [ - "https://testnet.bitcichain.com" - ], - "faucets": [ - "https://faucet.bitcichain.com" - ], - "nativeCurrency": { - "name": "Test Bitci", - "symbol": "TBITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "tbitci", - "chainId": 1908, - "networkId": 1908, - "explorers": [ - { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "ONUS Chain Testnet", - "title": "ONUS Chain Testnet", - "chain": "onus", - "rpc": [ - "https://rpc-testnet.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-testnet", - "chainId": 1945, - "networkId": 1945, - "explorers": [ - { - "name": "Onus explorer testnet", - "url": "https://explorer-testnet.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } - ] - }, - { - "name": "D-Chain Mainnet", - "chain": "D-Chain", - "rpc": [ - "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" - ], - "nativeCurrency": { - "name": "DOINX", - "symbol": "DOINX", - "decimals": 18 - }, - "shortName": "dchain-mainnet", - "chainId": 1951, - "networkId": 1951, - "icon": "dchain", - "faucets": [], - "infoURL": "" - }, - { - "name": "Atelier", - "title": "Atelier Test Network", - "chain": "ALTR", - "rpc": [ - "https://1971.network/atlr", - "wss://1971.network/atlr" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATLR", - "symbol": "ATLR", - "decimals": 18 - }, - "infoURL": "https://1971.network/", - "shortName": "atlr", - "chainId": 1971, - "networkId": 1971, - "icon": "atlr" - }, - { - "name": "ONUS Chain Mainnet", - "title": "ONUS Chain Mainnet", - "chain": "onus", - "rpc": [ - "https://rpc.onuschain.io", - "wss://ws.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-mainnet", - "chainId": 1975, - "networkId": 1975, - "explorers": [ - { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ekta", - "chain": "EKTA", - "rpc": [ - "https://main.ekta.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EKTA", - "symbol": "EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "ekta", - "chainId": 1994, - "networkId": 1994, - "icon": "ekta", - "explorers": [ - { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } - ] - }, - { - "name": "edeXa Testnet", - "chain": "edeXa TestNetwork", - "rpc": [ - "https://testnet.edexa.com/rpc", - "https://io-dataseed1.testnet.edexa.io-market.com/rpc" - ], - "faucets": [ - "https://faucet.edexa.com/" - ], - "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 - }, - "infoURL": "https://edexa.com/", - "shortName": "edx", - "chainId": 1995, - "networkId": 1995, - "icon": "edexa", - "explorers": [ - { - "name": "edexa-testnet", - "url": "https://explorer.edexa.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogechain Mainnet", - "chain": "DC", - "icon": "dogechain", - "rpc": [ - "https://rpc.dogechain.dog", - "https://rpc-us.dogechain.dog", - "https://rpc01.dogechain.dog" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dc", - "chainId": 2000, - "networkId": 2000, - "explorers": [ - { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Milkomeda A1 Mainnet", - "chain": "milkALGO", - "icon": "milkomeda", - "rpc": [ - "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", - "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkALGO", - "symbol": "mALGO", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkALGO", - "chainId": 2002, - "networkId": 2002, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "MainnetZ Mainnet", - "chain": "NetZ", - "icon": "mainnetz", - "rpc": [ - "https://mainnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://mainnetz.io", - "shortName": "NetZm", - "chainId": 2016, - "networkId": 2016, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PublicMint Devnet", - "title": "Public Mint Devnet", - "chain": "PublicMint", - "rpc": [ - "https://rpc.dev.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_dev", - "chainId": 2018, - "networkId": 2018, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PublicMint Testnet", - "title": "Public Mint Testnet", - "chain": "PublicMint", - "rpc": [ - "https://rpc.tst.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_test", - "chainId": 2019, - "networkId": 2019, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "OriginTrail Parachain", - "chain": "OTP", - "rpc": [ - "https://astrosat.origintrail.network", - "wss://parachain-rpc.origin-trail.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OriginTrail Parachain Token", - "symbol": "OTP", - "decimals": 12 - }, - "infoURL": "https://parachain.origintrail.io", - "shortName": "otp", - "chainId": 2043, - "networkId": 2043 - }, - { - "name": "Stratos Testnet", - "chain": "STOS", - "rpc": [ - "https://web3-testnet-rpc.thestratos.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-testnet", - "chainId": 2047, - "networkId": 2047, - "explorers": [ - { - "name": "Stratos EVM Explorer (Blockscout)", - "url": "https://web3-testnet-explorer.thestratos.org", - "standard": "none" - }, - { - "name": "Stratos Cosmos Explorer (BigDipper)", - "url": "https://big-dipper-dev.thestratos.org", - "standard": "none" - } - ] - }, - { - "name": "Stratos Mainnet", - "chain": "STOS", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-mainnet", - "chainId": 2048, - "networkId": 2048, - "status": "incubating" - }, - { - "name": "Quokkacoin Mainnet", - "chain": "Qkacoin", - "rpc": [ - "https://rpc.qkacoin.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qkacoin", - "symbol": "QKA", - "decimals": 18 - }, - "infoURL": "https://qkacoin.org", - "shortName": "QKA", - "chainId": 2077, - "networkId": 2077, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Exosama Network", - "chain": "EXN", - "rpc": [ - "https://rpc.exosama.com", - "wss://rpc.exosama.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "exn", - "chainId": 2109, - "networkId": 2109, - "slip44": 2109, - "icon": "exn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metaplayerone Mainnet", - "chain": "METAD", - "icon": "metad", - "rpc": [ - "https://rpc.metaplayer.one/" - ], - "faucets": [], - "nativeCurrency": { - "name": "METAD", - "symbol": "METAD", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "Metad", - "chainId": 2122, - "networkId": 2122, - "explorers": [ - { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": "metad", - "standard": "EIP3091" - } - ] - }, - { - "name": "BOSagora Mainnet", - "chain": "ETH", - "rpc": [ - "https://mainnet.bosagora.org", - "https://rpc.bosagora.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOSAGORA", - "symbol": "BOA", - "decimals": 18 - }, - "infoURL": "https://docs.bosagora.org", - "shortName": "boa", - "chainId": 2151, - "networkId": 2151, - "icon": "agora", - "explorers": [ - { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": "agora", - "standard": "EIP3091" - } - ] - }, - { - "name": "Findora Forge", - "chain": "Testnet-forge", - "rpc": [ - "https://prod-forge.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-forge", - "chainId": 2154, - "networkId": 2154, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcoin EVM", - "chain": "Bitcoin EVM", - "rpc": [ - "https://connect.bitcoinevm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "eBTC", - "decimals": 18 - }, - "infoURL": "https://bitcoinevm.com", - "shortName": "eBTC", - "chainId": 2203, - "networkId": 2203, - "icon": "ebtc", - "explorers": [ - { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": "ebtc", - "standard": "none" - } - ] - }, - { - "name": "BOMB Chain", - "chain": "BOMB", - "rpc": [ - "https://rpc.bombchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "BOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombchain.com", - "shortName": "bomb", - "chainId": 2300, - "networkId": 2300, - "icon": "bomb", - "explorers": [ - { - "name": "bombscan", - "icon": "bomb", - "url": "https://bombscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arevia", - "chain": "Arevia", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Arev", - "symbol": "ARÉV", - "decimals": 18 - }, - "infoURL": "", - "shortName": "arevia", - "chainId": 2309, - "networkId": 2309, - "explorers": [], - "status": "incubating" - }, - { - "name": "Altcoinchain", - "chain": "mainnet", - "rpc": [ - "https://rpc0.altcoinchain.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Altcoin", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://altcoinchain.org", - "shortName": "alt", - "chainId": 2330, - "networkId": 2330, - "icon": "altcoinchain", - "status": "active", - "explorers": [ - { - "name": "expedition", - "url": "http://expedition.altcoinchain.org", - "icon": "altcoinchain", - "standard": "none" - } - ] - }, - { - "name": "BOMB Chain Testnet", - "chain": "BOMB", - "rpc": [ - "https://bombchain-testnet.ankr.com/bas_full_rpc_1" - ], - "faucets": [ - "https://faucet.bombchain-testnet.ankr.com/" - ], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "tBOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombmoney.com", - "shortName": "bombt", - "chainId": 2399, - "networkId": 2399, - "icon": "bomb", - "explorers": [ - { - "name": "bombscan-testnet", - "icon": "bomb", - "url": "https://explorer.bombchain-testnet.ankr.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TCG Verse Mainnet", - "chain": "TCG Verse", - "icon": "tcg_verse", - "rpc": [ - "https://rpc.tcgverse.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://tcgverse.xyz/", - "shortName": "TCGV", - "chainId": 2400, - "networkId": 2400, - "explorers": [ - { - "name": "TCG Verse Explorer", - "url": "https://explorer.tcgverse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "XODEX", - "chain": "XODEX", - "rpc": [ - "https://mainnet.xo-dex.com/rpc", - "https://xo-dex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "XODEX Native Token", - "symbol": "XODEX", - "decimals": 18 - }, - "infoURL": "https://xo-dex.com", - "shortName": "xodex", - "chainId": 2415, - "networkId": 10, - "icon": "xodex", - "explorers": [ - { - "name": "XODEX Explorer", - "url": "https://explorer.xo-dex.com", - "standard": "EIP3091", - "icon": "xodex" - } - ] - }, - { - "name": "PoCRNet", - "title": "Proof of Carbon Reduction mainnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://pocrnet.westeurope.cloudapp.azure.com/http", - "wss://pocrnet.westeurope.cloudapp.azure.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Carbon Reduction Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/pocrnet", - "shortName": "pocrnet", - "chainId": 2606, - "networkId": 2606, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/pocrnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redlight Chain Mainnet", - "chain": "REDLC", - "rpc": [ - "https://dataseed2.redlightscan.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "Redlight Coin", - "symbol": "REDLC", - "decimals": 18 - }, - "infoURL": "https://redlight.finance/", - "shortName": "REDLC", - "chainId": 2611, - "networkId": 2611, - "explorers": [ - { - "name": "REDLC Explorer", - "url": "https://redlightscan.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba Network Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobagoerli", - "chainId": 2888, - "networkId": 2888, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet.bobascan.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.goerli.boba.network" - } - ] - } - }, - { - "name": "BitYuan Mainnet", - "chain": "BTY", - "rpc": [ - "https://mainnet.bityuan.com/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTY", - "symbol": "BTY", - "decimals": 18 - }, - "infoURL": "https://www.bityuan.com", - "shortName": "bty", - "chainId": 2999, - "networkId": 2999, - "icon": "bty", - "explorers": [ - { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", - "standard": "none" - } - ] - }, - { - "name": "Orlando Chain", - "chain": "ORL", - "rpc": [ - "https://rpc-testnet.orlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Orlando", - "symbol": "ORL", - "decimals": 18 - }, - "infoURL": "https://orlchain.com", - "shortName": "ORL", - "chainId": 3031, - "networkId": 3031, - "icon": "orl", - "explorers": [ - { - "name": "Orlando (ORL) Explorer", - "url": "https://orlscan.com", - "icon": "orl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bifrost Mainnet", - "title": "The Bifrost Mainnet network", - "chain": "BFC", - "rpc": [ - "https://public-01.mainnet.thebifrost.io/rpc", - "https://public-02.mainnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "bfc", - "chainId": 3068, - "networkId": 3068, - "icon": "bifrost", - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.mainnet.thebifrost.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Hyperspace testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.hyperspace.node.glif.io/rpc/v1", - "https://filecoin-hyperspace.chainstacklabs.com/rpc/v1" - ], - "faucets": [ - "https://hyperspace.yoga/#faucet" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-hyperspace", - "chainId": 3141, - "networkId": 3141, - "slip44": 1, - "explorers": [ - { - "name": "Filfox - Hyperspace", - "url": "https://hyperspace.filfox.info/en", - "standard": "none" - }, - { - "name": "Glif Explorer - Hyperspace", - "url": "https://explorer.glif.io/?network=hyperspace", - "standard": "none" - }, - { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" - }, - { - "name": "Filmine", - "url": "https://explorer.filmine.io", - "standard": "none" - }, - { - "name": "Filscan - Hyperspace", - "url": "https://hyperspace.filscan.io", - "standard": "none" - } - ] - }, - { - "name": "Debounce Subnet Testnet", - "chain": "Debounce Network", - "icon": "debounce", - "rpc": [ - "https://dev-rpc.debounce.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Debounce Network", - "symbol": "DB", - "decimals": 18 - }, - "infoURL": "https://debounce.network", - "shortName": "debounce-devnet", - "chainId": 3306, - "networkId": 3306, - "explorers": [ - { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PandoProject Mainnet", - "chain": "PandoProject", - "icon": "pando", - "rpc": [ - "https://eth-rpc-api.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-mainnet", - "chainId": 3601, - "networkId": 3601, - "explorers": [ - { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" - } - ] - }, - { - "name": "PandoProject Testnet", - "chain": "PandoProject", - "icon": "pando", - "rpc": [ - "https://testnet.ethrpc.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-testnet", - "chainId": 3602, - "networkId": 3602, - "explorers": [ - { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", - "standard": "none" - } - ] - }, - { - "name": "Metacodechain", - "chain": "metacode", - "rpc": [ - "https://j.blockcoach.com:8503" - ], - "faucets": [], - "nativeCurrency": { - "name": "J", - "symbol": "J", - "decimals": 18 - }, - "infoURL": "https://j.blockcoach.com:8089", - "shortName": "metacode", - "chainId": 3666, - "networkId": 3666, - "explorers": [ - { - "name": "meta", - "url": "https://j.blockcoach.com:8089", - "standard": "EIP3091" - } - ] - }, - { - "name": "Empire Network", - "chain": "EMPIRE", - "rpc": [ - "https://rpc.empirenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Empire", - "symbol": "EMPIRE", - "decimals": 18 - }, - "infoURL": "https://www.empirenetwork.io/", - "shortName": "empire", - "chainId": 3693, - "networkId": 3693, - "explorers": [ - { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", - "standard": "none" - } - ] - }, - { - "name": "DRAC Network", - "chain": "DRAC", - "rpc": [ - "https://www.dracscan.com/rpc" - ], - "faucets": [ - "https://www.dracscan.io/faucet" - ], - "nativeCurrency": { - "name": "DRAC", - "symbol": "DRAC", - "decimals": 18 - }, - "infoURL": "https://drac.io/", - "shortName": "drac", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "chainId": 3912, - "networkId": 3912, - "icon": "drac", - "explorers": [ - { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", - "icon": "DRAC", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitindi Testnet", - "chain": "BNI", - "icon": "bitindiTestnet", - "rpc": [ - "https://testnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIt", - "chainId": 4096, - "networkId": 4096, - "explorers": [ - { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitindi Mainnet", - "chain": "BNI", - "icon": "bitindi", - "rpc": [ - "https://mainnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIm", - "chainId": 4099, - "networkId": 4099, - "explorers": [ - { - "name": "Bitindi", - "url": "https://bitindiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bobafuji Testnet", - "chain": "Bobafuji Testnet", - "rpc": [ - "https://testnet.avax.boba.network", - "wss://wss.testnet.avax.boba.network", - "https://replica.testnet.avax.boba.network", - "wss://replica-wss.testnet.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaFujiTestnet", - "chainId": 4328, - "networkId": 4328, - "explorers": [ - { - "name": "Bobafuji Testnet block explorer", - "url": "https://blockexplorer.testnet.avax.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Htmlcoin Mainnet", - "chain": "mainnet", - "rpc": [ - "https://janus.htmlcoin.com/api/" - ], - "faucets": [ - "https://gruvin.me/htmlcoin" - ], - "nativeCurrency": { - "name": "Htmlcoin", - "symbol": "HTML", - "decimals": 8 - }, - "infoURL": "https://htmlcoin.com", - "shortName": "html", - "chainId": 4444, - "networkId": 4444, - "icon": "htmlcoin", - "status": "active", - "explorers": [ - { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": "htmlcoin", - "standard": "none" - } - ] - }, - { - "name": "BlackFort Exchange Network Testnet", - "chain": "TBXN", - "rpc": [ - "https://testnet.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Testnet Token", - "symbol": "TBXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "TBXN", - "chainId": 4777, - "networkId": 4777, - "icon": "bxn", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlackFort Exchange Network", - "chain": "BXN", - "rpc": [ - "https://mainnet.blackfort.network/rpc", - "https://mainnet-1.blackfort.network/rpc", - "https://mainnet-2.blackfort.network/rpc", - "https://mainnet-3.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Token", - "symbol": "BXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "BXN", - "chainId": 4999, - "networkId": 4999, - "icon": "bxn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantle", - "chain": "ETH", - "rpc": [ - "https://rpc.mantle.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitDAO", - "symbol": "BIT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle", - "chainId": 5000, - "networkId": 5000, - "explorers": [ - { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantle Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.testnet.mantle.xyz" - ], - "faucets": [ - "https://faucet.testnet.mantle.xyz" - ], - "nativeCurrency": { - "name": "Testnet BitDAO", - "symbol": "BIT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle-testnet", - "chainId": 5001, - "networkId": 5001, - "explorers": [ - { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humanode Mainnet", - "chain": "HMND", - "rpc": [ - "https://explorer-rpc-http.mainnet.stages.humanode.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "HMND", - "symbol": "HMND", - "decimals": 18 - }, - "infoURL": "https://humanode.io", - "shortName": "hmnd", - "chainId": 5234, - "networkId": 5234, - "explorers": [] - }, - { - "name": "Firechain Mainnet Old", - "chain": "FIRE", - "icon": "firechain", - "rpc": [ - "https://mainnet.rpc1.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "_old_fire", - "chainId": 5290, - "networkId": 5290, - "explorers": [], - "status": "deprecated" - }, - { - "name": "Chain Verse Mainnet", - "chain": "CVERSE", - "icon": "chain_verse", - "rpc": [ - "https://rpc.chainverse.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://chainverse.info", - "shortName": "cverse", - "chainId": 5555, - "networkId": 5555, - "explorers": [ - { - "name": "Chain Verse Explorer", - "url": "https://explorer.chainverse.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hika Network Testnet", - "title": "Hika Network Testnet", - "chain": "HIK", - "icon": "hik", - "rpc": [ - "https://rpc-testnet.hika.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hik Token", - "symbol": "HIK", - "decimals": 18 - }, - "infoURL": "https://hika.network/", - "shortName": "hik", - "chainId": 5729, - "networkId": 5729, - "explorers": [ - { - "name": "Hika Network Testnet Explorer", - "url": "https://scan-testnet.hika.network", - "standard": "none" - } - ] - }, - { - "name": "Tres Testnet", - "chain": "TresLeches", - "rpc": [ - "https://rpc-test.tresleches.finance/" - ], - "faucets": [ - "http://faucet.tresleches.finance:8080" - ], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESTEST", - "chainId": 6065, - "networkId": 6065, - "icon": "tresleches", - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tres Mainnet", - "chain": "TresLeches", - "rpc": [ - "https://rpc.tresleches.finance/", - "https://rpc.treschain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESMAIN", - "chainId": 6066, - "networkId": 6066, - "icon": "tresleches", - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Smart Chain Mainnet", - "chain": "STAND", - "icon": "stand", - "rpc": [ - "https://rpc-mainnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDm", - "chainId": 6789, - "networkId": 6789, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "PolySmartChain", - "chain": "PSC", - "rpc": [ - "https://seed0.polysmartchain.com/", - "https://seed1.polysmartchain.com/", - "https://seed2.polysmartchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PSC", - "symbol": "PSC", - "decimals": 18 - }, - "infoURL": "https://www.polysmartchain.com/", - "shortName": "psc", - "chainId": 6999, - "networkId": 6999 - }, - { - "name": "ZetaChain Mainnet", - "chain": "ZetaChain", - "icon": "zetachain", - "rpc": [ - "https://api.mainnet.zetachain.com/evm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 - }, - "infoURL": "https://docs.zetachain.com/", - "shortName": "zetachain-mainnet", - "chainId": 7000, - "networkId": 7000, - "status": "incubating", - "explorers": [ - { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.mainnet.zetachain.com", - "standard": "none" - } - ] - }, - { - "name": "ZetaChain Athens Testnet", - "chain": "ZetaChain", - "icon": "zetachain", - "rpc": [ - "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", - "https://rpc.ankr.com/zetachain_evm_athens_testnet" - ], - "faucets": [ - "https://labs.zetachain.com/get-zeta" - ], - "nativeCurrency": { - "name": "ZETA", - "symbol": "tZETA", - "decimals": 18 - }, - "infoURL": "https://zetachain.com/docs", - "shortName": "zetachain-athens", - "chainId": 7001, - "networkId": 7001, - "status": "active", - "explorers": [ - { - "name": "ZetaChain Athens Testnet Explorer", - "url": "https://explorer.zetachain.com", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1695111759609.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1695111789559.png", - "color_chain_bg": "0x005741", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1695181451439.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1695181482445.png" - } - }, - { - "name": "Planq Mainnet", - "chain": "Planq", - "icon": "planq", - "rpc": [ - "https://evm-rpc.planq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Planq", - "symbol": "PLQ", - "decimals": 18 - }, - "infoURL": "https://planq.network", - "shortName": "planq", - "chainId": 7070, - "networkId": 7070, - "explorers": [ - { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" - }, - { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" - } - ] - }, - { - "name": "Shardeum Liberty 2.X", - "chain": "Shardeum", - "icon": "shardeum", - "rpc": [ - "https://liberty20.shardeum.org/" - ], - "faucets": [ - "https://faucet.liberty20.shardeum.org" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Liberty20", - "chainId": 8081, - "networkId": 8081, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-liberty20.shardeum.org", - "standard": "none" - } - ], - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "Shardeum Sphinx 1.X", - "chain": "Shardeum", - "icon": "shardeum", - "rpc": [ - "https://sphinx.shardeum.org/" - ], - "faucets": [ - "https://faucet-sphinx.shardeum.org/" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Sphinx10", - "chainId": 8082, - "networkId": 8082, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "none" - } - ], - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "StreamuX Blockchain", - "chain": "StreamuX", - "rpc": [ - "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "StreamuX", - "symbol": "SmuX", - "decimals": 18 - }, - "infoURL": "https://www.streamux.cloud", - "shortName": "StreamuX", - "chainId": 8098, - "networkId": 8098 - }, - { - "name": "Qitmeer Network Testnet", - "chain": "MEER", - "rpc": [ - "https://testnet-qng.rpc.qitmeer.io", - "https://testnet.meerlabs.com", - "https://meer.testnet.meerfans.club" - ], - "faucets": [ - "https://faucet.qitmeer.io" - ], - "nativeCurrency": { - "name": "Qitmeer Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meertest", - "chainId": 8131, - "networkId": 8131, - "icon": "meer", - "explorers": [ - { - "name": "meerscan testnet", - "url": "https://testnet.qng.meerscan.io", - "standard": "none" - } - ] - }, - { - "name": "BeOne Chain Testnet", - "chain": "BOC", - "rpc": [ - "https://pre-boc1.beonechain.com", - "https://pre-boc2.beonechain.com", - "https://pre-boc3.beonechain.com" - ], - "faucets": [ - "https://testnet.beonescan.com/faucet" - ], - "nativeCurrency": { - "name": "BeOne Chain Testnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://testnet.beonescan.com", - "shortName": "tBOC", - "chainId": 8181, - "networkId": 8181, - "icon": "beonechain", - "explorers": [ - { - "name": "BeOne Chain Testnet", - "url": "https://testnet.beonescan.com", - "icon": "beonechain", - "standard": "none" - } - ] - }, - { - "name": "Blockton Blockchain", - "chain": "Blockton Blockchain", - "icon": "bton", - "rpc": [ - "https://rpc.blocktonscan.com/" - ], - "faucets": [ - "https://faucet.blocktonscan.com/" - ], - "nativeCurrency": { - "name": "BLOCKTON", - "symbol": "BTON", - "decimals": 18 - }, - "infoURL": "https://blocktoncoin.com", - "shortName": "BTON", - "chainId": 8272, - "networkId": 8272, - "explorers": [ - { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", - "standard": "none" - } - ] - }, - { - "name": "KorthoTest", - "chain": "Kortho", - "rpc": [ - "https://www.krotho-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kortho Test", - "symbol": "KTO", - "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "Kortho", - "chainId": 8285, - "networkId": 8285 - }, - { - "name": "Base", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "base", - "chainId": 8453, - "networkId": 8453, - "status": "incubating" - }, - { - "name": "Toki Network", - "chain": "TOKI", - "rpc": [ - "https://mainnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki", - "chainId": 8654, - "networkId": 8654, - "icon": "toki", - "explorers": [] - }, - { - "name": "Toki Testnet", - "chain": "TOKI", - "rpc": [ - "https://testnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki-testnet", - "chainId": 8655, - "networkId": 8655, - "icon": "toki", - "explorers": [] - }, - { - "name": "Alph Network", - "chain": "ALPH", - "rpc": [ - "https://rpc.alph.network", - "wss://rpc.alph.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alph Network", - "symbol": "ALPH", - "decimals": 18 - }, - "infoURL": "https://alph.network", - "shortName": "alph", - "chainId": 8738, - "networkId": 8738, - "explorers": [ - { - "name": "alphscan", - "url": "https://explorer.alph.network", - "icon": "alphscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "TMY Chain", - "chain": "TMY", - "icon": "ethereum", - "rpc": [ - "https://node1.tmyblockchain.org/rpc" - ], - "faucets": [ - "https://faucet.tmychain.org/" - ], - "nativeCurrency": { - "name": "TMY", - "symbol": "TMY", - "decimals": 18 - }, - "infoURL": "https://tmychain.org/", - "shortName": "tmy", - "chainId": 8768, - "networkId": 8768 - }, - { - "name": "MARO Blockchain Mainnet", - "chain": "MARO Blockchain", - "icon": "MARO", - "rpc": [ - "https://rpc-mainnet.ma.ro" - ], - "faucets": [], - "nativeCurrency": { - "name": "MARO", - "symbol": "MARO", - "decimals": 18 - }, - "infoURL": "https://ma.ro/", - "shortName": "maro", - "chainId": 8848, - "networkId": 8848, - "explorers": [ - { - "name": "MARO Scan", - "url": "https://scan.ma.ro/#", - "standard": "none" - } - ] - }, - { - "name": "Unique", - "icon": "unique", - "chain": "UNQ", - "rpc": [ - "https://rpc.unique.network", - "https://eu-rpc.unique.network", - "https://asia-rpc.unique.network", - "https://us-rpc.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Unique", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "unq", - "chainId": 8880, - "networkId": 8880, - "explorers": [ - { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" - } - ] - }, - { - "name": "Quartz by Unique", - "icon": "quartz", - "chain": "UNQ", - "rpc": [ - "https://rpc-quartz.unique.network", - "https://quartz.api.onfinality.io/public-ws", - "https://eu-rpc-quartz.unique.network", - "https://asia-rpc-quartz.unique.network", - "https://us-rpc-quartz.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "qtz", - "chainId": 8881, - "networkId": 8881, - "explorers": [ - { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" - } - ] - }, - { - "name": "Opal testnet by Unique", - "icon": "opal", - "chain": "UNQ", - "rpc": [ - "https://rpc-opal.unique.network", - "https://us-rpc-opal.unique.network", - "https://eu-rpc-opal.unique.network", - "https://asia-rpc-opal.unique.network" - ], - "faucets": [ - "https://t.me/unique2faucet_opal_bot" - ], - "nativeCurrency": { - "name": "Opal", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "opl", - "chainId": 8882, - "networkId": 8882, - "explorers": [ - { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", - "standard": "none" - } - ] - }, - { - "name": "Sapphire by Unique", - "icon": "sapphire", - "chain": "UNQ", - "rpc": [ - "https://rpc-sapphire.unique.network", - "https://us-rpc-sapphire.unique.network", - "https://eu-rpc-sapphire.unique.network", - "https://asia-rpc-sapphire.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "sph", - "chainId": 8883, - "networkId": 8883, - "explorers": [ - { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" - } - ] - }, - { - "name": "Vyvo Smart Chain", - "chain": "VSC", - "rpc": [ - "https://vsc-dataseed.vyvo.org:8889" - ], - "faucets": [], - "nativeCurrency": { - "name": "VSC", - "symbol": "VSC", - "decimals": 18 - }, - "infoURL": "https://vsc-dataseed.vyvo.org", - "shortName": "vsc", - "chainId": 8889, - "networkId": 8889 - }, - { - "name": "JIBCHAIN L1", - "chain": "JBC", - "rpc": [ - "https://rpc-l1.jibchain.net" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "JIBCOIN", - "symbol": "JBC", - "decimals": 18 - }, - "infoURL": "https://jibchain.net", - "shortName": "jbc", - "chainId": 8899, - "networkId": 8899, - "explorers": [ - { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Giant Mammoth Mainnet", - "title": "Giant Mammoth Chain", - "chain": "GMMT", - "rpc": [ - "https://rpc-asia.gmmtchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Giant Mammoth Coin", - "symbol": "GMMT", - "decimals": 18 - }, - "infoURL": "https://gmmtchain.io/", - "shortName": "gmmt", - "chainId": 8989, - "networkId": 8989, - "icon": "gmmt", - "explorers": [ - { - "name": "gmmtscan", - "url": "https://scan.gmmtchain.io", - "standard": "EIP3091", - "icon": "gmmt" - } - ] - }, - { - "name": "Rinia Testnet Old", - "chain": "FIRE", - "icon": "rinia", - "rpc": [], - "faucets": [ - "https://faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "_old_tfire", - "chainId": 9170, - "networkId": 9170, - "explorers": [], - "status": "deprecated" - }, - { - "name": "Dogcoin Testnet", - "chain": "DOGS", - "icon": "dogs", - "rpc": [ - "https://testnet-rpc.dogcoin.network" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSt", - "chainId": 9339, - "networkId": 9339, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "QEasyWeb3 Testnet", - "chain": "QET", - "rpc": [ - "https://qeasyweb3.com" - ], - "faucets": [ - "http://faucet.qeasyweb3.com" - ], - "nativeCurrency": { - "name": "QET", - "symbol": "QET", - "decimals": 18 - }, - "infoURL": "https://www.qeasyweb3.com", - "shortName": "QETTest", - "chainId": 9528, - "networkId": 9528, - "explorers": [ - { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", - "icon": "qetscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oort MainnetDev", - "title": "Oort MainnetDev", - "chain": "MainnetDev", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "MainnetDev", - "chainId": 9700, - "networkId": 9700, - "icon": "ccn" - }, - { - "name": "Boba BNB Testnet", - "chain": "Boba BNB Testnet", - "rpc": [ - "https://testnet.bnb.boba.network", - "wss://wss.testnet.bnb.boba.network", - "https://replica.testnet.bnb.boba.network", - "wss://replica-wss.testnet.bnb.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnbTestnet", - "chainId": 9728, - "networkId": 9728, - "explorers": [ - { - "name": "Boba BNB Testnet block explorer", - "url": "https://blockexplorer.testnet.bnb.boba.network", - "standard": "none" - } - ] - }, - { - "name": "MainnetZ Testnet", - "chain": "NetZ", - "icon": "mainnetzTestnet", - "rpc": [ - "https://testnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://testnet.mainnetz.io", - "shortName": "NetZt", - "chainId": 9768, - "networkId": 9768, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gon Chain", - "chain": "GonChain", - "icon": "gonchain", - "rpc": [ - "https://node1.testnet.gaiaopen.network", - "http://database1.gaiaopen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gon Token", - "symbol": "GT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "gon", - "chainId": 10024, - "networkId": 10024, - "explorers": [ - { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" - } - ] - }, - { - "name": "SJATSH", - "chain": "ETH", - "rpc": [ - "http://geth.free.idcfengye.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://sjis.me", - "shortName": "SJ", - "chainId": 10086, - "networkId": 10086 - }, - { - "name": "Chiado Testnet", - "chain": "CHI", - "icon": "gnosis", - "rpc": [ - "https://rpc.chiadochain.net", - "https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi", - "chainId": 10200, - "networkId": 10200, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.chiadochain.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "0XTade", - "chain": "0XTade Chain", - "rpc": [ - "https://node.0xtchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "0XT", - "symbol": "0XT", - "decimals": 18 - }, - "infoURL": "https://www.0xtrade.finance/", - "shortName": "0xt", - "chainId": 10248, - "networkId": 10248, - "explorers": [ - { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", - "standard": "none" - } - ] - }, - { - "name": "Numbers Mainnet", - "chain": "NUM", - "icon": "num", - "rpc": [ - "https://mainnetrpc.num.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Jade", - "chainId": 10507, - "networkId": 10507, - "explorers": [ - { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Numbers Testnet", - "chain": "NUM", - "icon": "num", - "rpc": [ - "https://testnetrpc.num.network" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" - ], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Snow", - "chainId": 10508, - "networkId": 10508, - "explorers": [ - { - "name": "ethernal", - "url": "https://testnet.num.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Astra", - "chain": "Astra", - "rpc": [ - "https://rpc.astranaut.io", - "https://rpc1.astranaut.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astra", - "symbol": "ASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra", - "chainId": 11110, - "networkId": 11110, - "icon": "astra", - "explorers": [ - { - "name": "Astra EVM Explorer (Blockscout)", - "url": "https://explorer.astranaut.io", - "standard": "none", - "icon": "astra" - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": "astra" - } - ] - }, - { - "name": "Astra Testnet", - "chain": "Astra", - "rpc": [ - "https://rpc.astranaut.dev" - ], - "faucets": [ - "https://faucet.astranaut.dev" - ], - "nativeCurrency": { - "name": "test-Astra", - "symbol": "tASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra-testnet", - "chainId": 11115, - "networkId": 11115, - "icon": "astra", - "explorers": [ - { - "name": "Astra EVM Explorer", - "url": "https://explorer.astranaut.dev", - "standard": "EIP3091", - "icon": "astra" - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": "astra" - } - ] - }, - { - "name": "Haqq Network", - "chain": "Haqq", - "rpc": [ - "https://rpc.eth.haqq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLM", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLM", - "chainId": 11235, - "networkId": 11235, - "explorers": [ - { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sardis Testnet", - "chain": "SRDX", - "icon": "sardisTestnet", - "rpc": [ - "https://testnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXt", - "chainId": 11612, - "networkId": 11612, - "explorers": [ - { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SanR Chain", - "chain": "SanRChain", - "rpc": [ - "https://sanrchain-node.santiment.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "nSAN", - "symbol": "nSAN", - "decimals": 18 - }, - "infoURL": "https://sanr.app", - "shortName": "SAN", - "chainId": 11888, - "networkId": 11888, - "icon": "sanrchain", - "parent": { - "chain": "eip155-1", - "type": "L2", - "bridges": [ - { - "url": "https://sanr.app" - } - ] - }, - "explorers": [ - { - "name": "SanR Chain Explorer", - "url": "https://sanrchain-explorer.santiment.net", - "standard": "none" - } - ] - }, - { - "name": "BLG Testnet", - "chain": "BLG", - "icon": "blg", - "rpc": [ - "https://rpc.blgchain.com" - ], - "faucets": [ - "https://faucet.blgchain.com" - ], - "nativeCurrency": { - "name": "Blg", - "symbol": "BLG", - "decimals": 18 - }, - "infoURL": "https://blgchain.com", - "shortName": "blgchain", - "chainId": 12321, - "networkId": 12321 - }, - { - "name": "Step Testnet", - "title": "Step Test Network", - "chain": "STEP", - "icon": "step", - "rpc": [ - "https://rpc.testnet.step.network" - ], - "faucets": [ - "https://faucet.step.network" - ], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "steptest", - "chainId": 12345, - "networkId": 12345, - "explorers": [ - { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": "step", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43113" - } - }, - { - "name": "SPS", - "chain": "SPS", - "rpc": [ - "https://rpc.ssquad.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS", - "chainId": 13000, - "networkId": 13000, - "explorers": [ - { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Credit Smartchain Mainnet", - "chain": "CREDIT", - "rpc": [ - "https://mainnet-rpc.cscscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://creditsmartchain.com", - "shortName": "Credit", - "chainId": 13308, - "networkId": 1, - "icon": "credit", - "explorers": [ - { - "name": "CSC Scan", - "url": "https://explorer.cscscan.io", - "icon": "credit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Susono", - "chain": "SUS", - "rpc": [ - "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Susono", - "symbol": "OPN", - "decimals": 18 - }, - "infoURL": "", - "shortName": "sus", - "chainId": 13812, - "networkId": 13812, - "explorers": [ - { - "name": "Susono", - "url": "http://explorer.opn.network", - "standard": "none" - } - ] - }, - { - "name": "SPS Testnet", - "chain": "SPS-Testnet", - "rpc": [ - "https://www.3sps.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS-Test", - "chainId": 14000, - "networkId": 14000, - "explorers": [ - { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "AirDAO Mainnet", - "chain": "ambnet", - "icon": "airdao", - "rpc": [ - "https://network.ambrosus.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://airdao.io", - "shortName": "airdao", - "chainId": 16718, - "networkId": 16718, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://airdao.io/explorer", - "standard": "none" - } - ] - }, - { - "name": "Frontier of Dreams Testnet", - "chain": "Game Network", - "rpc": [ - "https://rpc.fod.games/" - ], - "nativeCurrency": { - "name": "ZKST", - "symbol": "ZKST", - "decimals": 18 - }, - "faucets": [], - "shortName": "ZKST", - "chainId": 18000, - "networkId": 18000, - "infoURL": "https://goexosphere.com", - "explorers": [ - { - "name": "Game Network", - "url": "https://explorer.fod.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proof Of Memes", - "title": "Proof Of Memes Mainnet", - "chain": "POM", - "icon": "pom", - "rpc": [ - "https://mainnet-rpc.memescan.io", - "https://mainnet-rpc2.memescan.io", - "https://mainnet-rpc3.memescan.io", - "https://mainnet-rpc4.memescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Proof Of Memes", - "symbol": "POM", - "decimals": 18 - }, - "infoURL": "https://proofofmemes.org", - "shortName": "pom", - "chainId": 18159, - "networkId": 18159, - "explorers": [ - { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "HOME Verse Mainnet", - "chain": "HOME Verse", - "icon": "home_verse", - "rpc": [ - "https://rpc.mainnet.oasys.homeverse.games/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.homeverse.games/", - "shortName": "HMV", - "chainId": 19011, - "networkId": 19011, - "explorers": [ - { - "name": "HOME Verse Explorer", - "url": "https://explorer.oasys.homeverse.games", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Callisto Testnet", - "chain": "CLO", - "rpc": [ - "https://testnet-rpc.callisto.network/" - ], - "faucets": [ - "https://faucet.callisto.network/" - ], - "nativeCurrency": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 - }, - "infoURL": "https://callisto.network", - "shortName": "CLOTestnet", - "chainId": 20729, - "networkId": 79 - }, - { - "name": "P12 Chain", - "chain": "P12", - "icon": "p12", - "rpc": [ - "https://rpc-chain.p12.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hooked P2", - "symbol": "hP2", - "decimals": 18 - }, - "infoURL": "https://p12.network", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "shortName": "p12", - "chainId": 20736, - "networkId": 20736, - "explorers": [ - { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "AirDAO Testnet", - "chain": "ambnet-test", - "icon": "airdao", - "rpc": [ - "https://network.ambrosus-test.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://testnet.airdao.io", - "shortName": "airdao-test", - "chainId": 22040, - "networkId": 22040, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://testnet.airdao.io/explorer", - "standard": "none" - } - ] - }, - { - "name": "MAP Protocol", - "chain": "MAPO", - "icon": "map", - "rpc": [ - "https://rpc.maplabs.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAPO", - "symbol": "MAPO", - "decimals": 18 - }, - "infoURL": "https://mapprotocol.io/", - "shortName": "mapo", - "chainId": 22776, - "networkId": 22776, - "slip44": 60, - "explorers": [ - { - "name": "maposcan", - "url": "https://maposcan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Opside Testnet", - "chain": "Opside", - "rpc": [ - "https://testrpc.opside.network" - ], - "faucets": [ - "https://faucet.opside.network" - ], - "nativeCurrency": { - "name": "IDE", - "symbol": "IDE", - "decimals": 18 - }, - "infoURL": "https://opside.network", - "shortName": "opside", - "chainId": 23118, - "networkId": 23118, - "icon": "opside", - "explorers": [ - { - "name": "opsideInfo", - "url": "https://opside.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oasis Sapphire", - "chain": "Sapphire", - "icon": "oasis", - "rpc": [ - "https://sapphire.oasis.io", - "wss://sapphire.oasis.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire", - "chainId": 23294, - "networkId": 23294, - "explorers": [ - { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.sapphire.oasis.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oasis Sapphire Testnet", - "chain": "Sapphire", - "icon": "oasis", - "rpc": [ - "https://testnet.sapphire.oasis.dev", - "wss://testnet.sapphire.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Test Rose", - "symbol": "TEST", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire-testnet", - "chainId": 23295, - "networkId": 23295, - "explorers": [ - { - "name": "Oasis Sapphire Testnet Explorer", - "url": "https://testnet.explorer.sapphire.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hammer Chain Mainnet", - "chain": "HammerChain", - "rpc": [ - "https://www.hammerchain.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "GOLDT", - "symbol": "GOLDT", - "decimals": 18 - }, - "infoURL": "https://www.hammerchain.io", - "shortName": "GOLDT", - "chainId": 25888, - "networkId": 25888, - "explorers": [ - { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", - "standard": "none" - } - ] - }, - { - "name": "Bitkub Chain Testnet", - "chain": "BKC", - "icon": "bkc", - "rpc": [ - "https://rpc-testnet.bitkubchain.io", - "wss://wss-testnet.bitkubchain.io" - ], - "faucets": [ - "https://faucet.bitkubchain.com" - ], - "nativeCurrency": { - "name": "Bitkub Coin", - "symbol": "tKUB", - "decimals": 18 - }, - "infoURL": "https://www.bitkubchain.com/", - "shortName": "bkct", - "chainId": 25925, - "networkId": 25925, - "explorers": [ - { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": "bkc" - } - ] - }, - { - "name": "Hertz Network Mainnet", - "chain": "HTZ", - "rpc": [ - "https://mainnet-rpc.hertzscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hertz", - "symbol": "HTZ", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.hertz-network.com", - "shortName": "HTZ", - "chainId": 26600, - "networkId": 26600, - "icon": "hertz-network", - "explorers": [ - { - "name": "Hertz Scan", - "url": "https://hertzscan.com", - "icon": "hertz-network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Optimism Bedrock (Goerli Alpha Testnet)", - "chain": "ETH", - "rpc": [ - "https://alpha-1-replica-0.bedrock-goerli.optimism.io", - "https://alpha-1-replica-1.bedrock-goerli.optimism.io", - "https://alpha-1-replica-2.bedrock-goerli.optimism.io", - "https://alpha-1-replica-2.bedrock-goerli.optimism.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://community.optimism.io/docs/developers/bedrock", - "shortName": "obgor", - "chainId": 28528, - "networkId": 28528, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", - "standard": "EIP3091" - } - ] - }, - { - "name": "CloudTx Mainnet", - "chain": "CLD", - "icon": "cloudtx", - "rpc": [ - "https://mainnet-rpc.cloudtx.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance", - "shortName": "CLDTX", - "chainId": 31223, - "networkId": 31223, - "explorers": [ - { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "CloudTx Testnet", - "chain": "CloudTx", - "icon": "cloudtx", - "rpc": [ - "https://testnet-rpc.cloudtx.finance" - ], - "faucets": [ - "https://faucet.cloudtx.finance" - ], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance/", - "shortName": "CLD", - "chainId": 31224, - "networkId": 31224, - "explorers": [ - { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Wallaby testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://wallaby.node.glif.io/rpc/v1" - ], - "faucets": [ - "https://wallaby.yoga/#faucet" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-wallaby", - "chainId": 31415, - "networkId": 31415, - "slip44": 1, - "explorers": [] - }, - { - "name": "Aves Mainnet", - "chain": "AVS", - "rpc": [ - "https://rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aves", - "symbol": "AVS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://avescoin.io", - "shortName": "avs", - "chainId": 33333, - "networkId": 33333, - "icon": "aves", - "explorers": [ - { - "name": "avescan", - "url": "https://avescan.io", - "icon": "avescan", - "standard": "EIP3091" - } - ] - }, - { - "name": "J2O Taro", - "chain": "TARO", - "rpc": [ - "https://rpc.j2o.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "TARO Coin", - "symbol": "taro", - "decimals": 18 - }, - "infoURL": "https://j2o.io", - "shortName": "j2o", - "chainId": 35011, - "networkId": 35011, - "explorers": [ - { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": "j2otaro", - "standard": "EIP3091" - } - ] - }, - { - "name": "OHO Mainnet", - "chain": "OHO", - "rpc": [ - "https://mainnet.oho.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "OHO", - "symbol": "OHO", - "decimals": 18 - }, - "infoURL": "https://oho.ai", - "shortName": "oho", - "chainId": 39815, - "networkId": 39815, - "icon": "oho", - "explorers": [ - { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": "ohoscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Opulent-X BETA", - "chainId": 41500, - "shortName": "ox-beta", - "chain": "Opulent-X", - "networkId": 41500, - "nativeCurrency": { - "name": "Oxyn Gas", - "symbol": "OXYN", - "decimals": 18 - }, - "rpc": [ - "https://connect.opulent-x.com" - ], - "faucets": [], - "infoURL": "https://beta.opulent-x.com", - "explorers": [ - { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", - "standard": "none" - } - ] - }, - { - "name": "Boba Avax", - "chain": "Boba Avax", - "rpc": [ - "https://avax.boba.network", - "wss://wss.avax.boba.network", - "https://replica.avax.boba.network", - "wss://replica-wss.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://docs.boba.network/for-developers/network-avalanche", - "shortName": "bobaavax", - "chainId": 43288, - "networkId": 43288, - "explorers": [ - { - "name": "Boba Avax Explorer", - "url": "https://blockexplorer.avax.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Frenchain", - "chain": "fren", - "rpc": [ - "https://rpc-02.frenscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "FREN", - "symbol": "FREN", - "decimals": 18 - }, - "infoURL": "https://frenchain.app", - "shortName": "FREN", - "chainId": 44444, - "networkId": 44444, - "icon": "fren", - "explorers": [ - { - "name": "blockscout", - "url": "https://frenscan.io", - "icon": "fren", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fusion Testnet", - "chain": "FSN", - "icon": "fusion", - "rpc": [ - "https://testnet.fusionnetwork.io", - "wss://testnet.fusionnetwork.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Fusion", - "symbol": "T-FSN", - "decimals": 18 - }, - "infoURL": "https://fusion.org", - "shortName": "tfsn", - "chainId": 46688, - "networkId": 46688, - "slip44": 288, - "explorers": [ - { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Floripa", - "title": "Wireshape Testnet Floripa", - "chain": "Wireshape", - "rpc": [ - "https://rpc-floripa.wireshape.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "WIRE", - "symbol": "WIRE", - "decimals": 18 - }, - "infoURL": "https://wireshape.org", - "shortName": "floripa", - "chainId": 49049, - "networkId": 49049, - "explorers": [ - { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bifrost Testnet", - "title": "The Bifrost Testnet network", - "chain": "BFC", - "rpc": [ - "https://public-01.testnet.thebifrost.io/rpc", - "https://public-02.testnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "tbfc", - "chainId": 49088, - "networkId": 49088, - "icon": "bifrost", - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.testnet.thebifrost.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Liveplex OracleEVM", - "chain": "Liveplex OracleEVM Network", - "rpc": [ - "https://rpc.oracle.liveplex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "LOE", - "chainId": 50001, - "networkId": 50001, - "explorers": [] - }, - { - "name": "Sardis Mainnet", - "chain": "SRDX", - "icon": "sardis", - "rpc": [ - "https://mainnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXm", - "chainId": 51712, - "networkId": 51712, - "explorers": [ - { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haqq Chain Testnet", - "chain": "TestEdge2", - "rpc": [ - "https://rpc.eth.testedge2.haqq.network" - ], - "faucets": [ - "https://testedge2.haqq.network" - ], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLMT", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLMT", - "chainId": 54211, - "networkId": 54211, - "explorers": [ - { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba BNB Mainnet", - "chain": "Boba BNB Mainnet", - "rpc": [ - "https://bnb.boba.network", - "wss://wss.bnb.boba.network", - "https://replica.bnb.boba.network", - "wss://replica-wss.bnb.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnb", - "chainId": 56288, - "networkId": 56288, - "explorers": [ - { - "name": "Boba BNB block explorer", - "url": "https://blockexplorer.bnb.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Etica Mainnet", - "chain": "Etica Protocol (ETI/EGAZ)", - "icon": "etica", - "rpc": [ - "https://eticamainnet.eticascan.org", - "https://eticamainnet.eticaprotocol.org" - ], - "faucets": [ - "http://faucet.etica-stats.org/" - ], - "nativeCurrency": { - "name": "EGAZ", - "symbol": "EGAZ", - "decimals": 18 - }, - "infoURL": "https://eticaprotocol.org", - "shortName": "Etica", - "chainId": 61803, - "networkId": 61803, - "explorers": [ - { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" - }, - { - "name": "eticastats", - "url": "http://explorer.etica-stats.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "DoKEN Super Chain Mainnet", - "chain": "DoKEN Super Chain", - "rpc": [ - "https://sgrpc.doken.dev", - "https://nyrpc.doken.dev", - "https://ukrpc.doken.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "DoKEN", - "symbol": "DKN", - "decimals": 18 - }, - "infoURL": "https://doken.dev/", - "shortName": "DoKEN", - "chainId": 61916, - "networkId": 61916, - "icon": "doken", - "explorers": [ - { - "name": "DSC Scan", - "url": "https://explore.doken.dev", - "icon": "doken", - "standard": "EIP3091" - } - ] - }, - { - "name": "SiriusNet", - "chain": "SIN", - "status": "deprecated", - "rpc": [ - "https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 - }, - "infoURL": "https://macaucasinolisboa.xyz", - "shortName": "mcl", - "chainId": 67390, - "networkId": 67390, - "explorers": [ - { - "name": "siriusnetscan", - "url": "https://siriusnet.tryethernal.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vention Smart Chain Mainnet", - "chain": "VSC", - "icon": "vention", - "rpc": [ - "https://mainnet-rpc.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://ventionscan.io", - "shortName": "vscm", - "chainId": 77612, - "networkId": 77612, - "explorers": [ - { - "name": "ventionscan", - "url": "https://ventionscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Smart Chain Testnet", - "chain": "STAND", - "icon": "standTestnet", - "rpc": [ - "https://rpc-testnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDt", - "chainId": 79879, - "networkId": 79879, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://testnet.goldsmartchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Base Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.base.org" - ], - "faucets": [ - "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" - ], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "basegor", - "chainId": 84531, - "networkId": 84531, - "explorers": [ - { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" - }, - { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "standard": "none" - } - ] - }, - { - "name": "Chiliz Scoville Testnet", - "chain": "CHZ", - "rpc": [ - "https://scoville-rpc.chiliz.com" - ], - "faucets": [ - "https://scoville-faucet.chiliz.com" - ], - "nativeCurrency": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 - }, - "icon": "chiliz", - "infoURL": "https://www.chiliz.com/en/chain", - "shortName": "chz", - "chainId": 88880, - "networkId": 88880, - "explorers": [ - { - "name": "scoville-explorer", - "url": "https://scoville-explorer.chiliz.com", - "standard": "none" - } - ] - }, - { - "name": "Beverly Hills", - "title": "Ethereum multi-client Verkle Testnet Beverly Hills", - "chain": "ETH", - "rpc": [ - "https://rpc.beverlyhills.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.beverlyhills.ethdevops.io" - ], - "nativeCurrency": { - "name": "Beverly Hills Testnet Ether", - "symbol": "BVE", - "decimals": 18 - }, - "infoURL": "https://beverlyhills.ethdevops.io", - "shortName": "bvhl", - "chainId": 90210, - "networkId": 90210, - "status": "incubating", - "explorers": [ - { - "name": "Beverly Hills explorer", - "url": "https://explorer.beverlyhills.ethdevops.io", - "standard": "none" - } - ] - }, - { - "name": "Lambda Testnet", - "chain": "Lambda", - "rpc": [ - "https://evm.lambda.top/" - ], - "faucets": [ - "https://faucet.lambda.top" - ], - "nativeCurrency": { - "name": "test-Lamb", - "symbol": "LAMB", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "lambda-testnet", - "chainId": 92001, - "networkId": 92001, - "icon": "lambda", - "explorers": [ - { - "name": "Lambda EVM Explorer", - "url": "https://explorer.lambda.top", - "standard": "EIP3091", - "icon": "lambda" - } - ] - }, - { - "name": "Boba BNB Mainnet Old", - "chain": "Boba BNB Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnbOld", - "chainId": 97288, - "networkId": 97288, - "explorers": [ - { - "name": "Boba BNB block explorer", - "url": "https://blockexplorer.bnb.boba.network", - "standard": "none" - } - ], - "status": "deprecated" - }, - { - "name": "VeChain", - "chain": "VeChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain", - "chainId": 100009, - "networkId": 100009, - "explorers": [ - { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" - }, - { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", - "standard": "none" - } - ] - }, - { - "name": "VeChain Testnet", - "chain": "VeChain", - "rpc": [], - "faucets": [ - "https://faucet.vecha.in" - ], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain-testnet", - "chainId": 100010, - "networkId": 100010, - "explorers": [ - { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", - "standard": "none" - } - ] - }, - { - "name": "Deprecated Chiado Testnet", - "chain": "CHI1", - "icon": "gnosis", - "rpc": [ - "https://rpc-chiado.gnosistestnet.com" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi1", - "chainId": 100100, - "networkId": 100100, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout-chiado.gnosistestnet.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "Soverun Testnet", - "chain": "SVRN", - "icon": "soverunTestnet", - "rpc": [ - "https://testnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNt", - "chainId": 101010, - "networkId": 101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://testnet.soverun.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Condor Test Network", - "chain": "CONDOR", - "icon": "condor", - "rpc": [ - "https://testnet.condor.systems/rpc" - ], - "faucets": [ - "https://faucet.condor.systems" - ], - "nativeCurrency": { - "name": "Condor Native Token", - "symbol": "CONDOR", - "decimals": 18 - }, - "infoURL": "https://condor.systems", - "shortName": "condor", - "chainId": 188881, - "networkId": 188881, - "explorers": [ - { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda A1 Testnet", - "chain": "milkTAlgo", - "icon": "milkomeda", - "rpc": [ - "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAlgo", - "symbol": "mTAlgo", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAlgo", - "chainId": 200202, - "networkId": 200202, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "Mythical Chain", - "chain": "MYTH", - "rpc": [ - "https://chain-rpc.mythicalgames.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Mythos", - "symbol": "MYTH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://mythicalgames.com/", - "shortName": "myth", - "chainId": 201804, - "networkId": 201804, - "icon": "mythical", - "explorers": [ - { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": "mythical", - "standard": "EIP3091" - } - ] - }, - { - "name": "Decimal Smart Chain Testnet", - "chain": "tDSC", - "rpc": [ - "https://testnet-val.decimalchain.com/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decimal", - "symbol": "tDEL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://decimalchain.com", - "shortName": "tDSC", - "chainId": 202020, - "networkId": 202020, - "icon": "dsc", - "explorers": [ - { - "name": "DSC Explorer Testnet", - "url": "https://testnet.explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jellie", - "title": "Twala Testnet Jellie", - "shortName": "twl-jellie", - "chain": "ETH", - "chainId": 202624, - "networkId": 202624, - "icon": "twala", - "nativeCurrency": { - "name": "Twala Coin", - "symbol": "TWL", - "decimals": 18 - }, - "rpc": [ - "https://jellie-rpc.twala.io/", - "wss://jellie-rpc-wss.twala.io/" - ], - "faucets": [], - "infoURL": "https://twala.io/", - "explorers": [ - { - "name": "Jellie Blockchain Explorer", - "url": "https://jellie.twala.io", - "standard": "EIP3091", - "icon": "twala" - } - ] - }, - { - "name": "Mas Mainnet", - "chain": "MAS", - "rpc": [ - "http://node.masnet.ai:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Master Bank", - "symbol": "MAS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://masterbank.org", - "shortName": "mas", - "chainId": 220315, - "networkId": 220315, - "icon": "mas", - "explorers": [ - { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Saakuru Testnet", - "chain": "Saakuru", - "icon": "saakuru", - "rpc": [ - "https://rpc-testnet.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru-testnet", - "chainId": 247253, - "networkId": 247253, - "explorers": [ - { - "name": "saakuru-explorer-testnet", - "url": "https://explorer-testnet.saakuru.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "CMP-Mainnet", - "chain": "CMP", - "rpc": [ - "https://mainnet.block.caduceus.foundation", - "wss://mainnet.block.caduceus.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Caduceus Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp-mainnet", - "chainId": 256256, - "networkId": 256256, - "explorers": [ - { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" - } - ] - }, - { - "name": "Gear Zero Network Testnet", - "chain": "GearZero", - "rpc": [ - "https://gzn-test.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/testnet", - "shortName": "gz-testnet", - "chainId": 266256, - "networkId": 266256, - "slip44": 266256, - "explorers": [] - }, - { - "name": "Filecoin - Calibration testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.calibration.node.glif.io/rpc/v1" - ], - "faucets": [ - "https://faucet.calibration.fildev.network/" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-calibration", - "chainId": 314159, - "networkId": 314159, - "slip44": 1, - "explorers": [ - { - "name": "Filscan - Calibration", - "url": "https://calibration.filscan.io", - "standard": "none" - }, - { - "name": "Filscout - Calibration", - "url": "https://calibration.filscout.com/en", - "standard": "none" - } - ] - }, - { - "name": "Oone Chain Testnet", - "chain": "OONE", - "rpc": [ - "https://blockchain-test.adigium.world" - ], - "faucets": [ - "https://apps-test.adigium.com/faucet" - ], - "nativeCurrency": { - "name": "Oone", - "symbol": "tOONE", - "decimals": 18 - }, - "infoURL": "https://oone.world", - "shortName": "oonetest", - "chainId": 333777, - "networkId": 333777, - "explorers": [ - { - "name": "expedition", - "url": "https://explorer-test.adigium.world", - "standard": "none" - } - ] - }, - { - "name": "Metal C-Chain", - "chain": "Metal", - "rpc": [ - "https://api.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "metal", - "chainId": 381931, - "networkId": 381931, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal Tahoe C-Chain", - "chain": "Metal", - "rpc": [ - "https://tahoe.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "Tahoe", - "chainId": 381932, - "networkId": 381932, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kekchain", - "chain": "kek", - "rpc": [ - "https://mainnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KEK", - "symbol": "KEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "KEK", - "chainId": 420420, - "networkId": 103090, - "icon": "kek", - "explorers": [ - { - "name": "blockscout", - "url": "https://mainnet-explorer.kekchain.com", - "icon": "kek", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kekchain (kektest)", - "chain": "kek", - "rpc": [ - "https://testnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tKEK", - "symbol": "tKEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "tKEK", - "chainId": 420666, - "networkId": 1, - "icon": "kek", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.kekchain.com", - "icon": "kek", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fastex Chain testnet", - "chain": "FTN", - "title": "Fastex Chain testnet", - "rpc": [ - "https://rpc.testnet.fastexchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastex.com", - "shortName": "ftn", - "chainId": 424242, - "networkId": 424242, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "Dexalot Subnet", - "chain": "DEXALOT", - "icon": "dexalot", - "rpc": [ - "https://subnets.avax.network/dexalot/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "dexalot", - "chainId": 432204, - "networkId": 432204, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scroll", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr", - "chainId": 534352, - "networkId": 534352, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - } - }, - { - "name": "Scroll Alpha Testnet", - "chain": "ETH", - "status": "incubating", - "rpc": [ - "https://alpha-rpc.scroll.io/l2" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-alpha", - "chainId": 534353, - "networkId": 534353, - "explorers": [ - { - "name": "Scroll Alpha Testnet Block Explorer", - "url": "https://blockscout.scroll.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [] - } - }, - { - "name": "Scroll Pre-Alpha Testnet", - "chain": "ETH", - "rpc": [ - "https://prealpha-rpc.scroll.io/l2" - ], - "faucets": [ - "https://prealpha.scroll.io/faucet" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "TSETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-prealpha", - "chainId": 534354, - "networkId": 534354, - "explorers": [ - { - "name": "Scroll L2 Block Explorer", - "url": "https://l2scan.scroll.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bear Network Chain Mainnet", - "chain": "BRNKC", - "icon": "brnkc", - "rpc": [ - "https://brnkc-mainnet.bearnetwork.net", - "https://brnkc-mainnet1.bearnetwork.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bear Network Chain Native Token", - "symbol": "BRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKC", - "chainId": 641230, - "networkId": 641230, - "explorers": [ - { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bear Network Chain Testnet", - "chain": "BRNKCTEST", - "icon": "brnkc", - "rpc": [ - "https://brnkc-test.bearnetwork.net" - ], - "faucets": [ - "https://faucet.bearnetwork.net" - ], - "nativeCurrency": { - "name": "Bear Network Chain Testnet Token", - "symbol": "tBRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKCTEST", - "chainId": 751230, - "networkId": 751230, - "explorers": [ - { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "OctaSpace", - "chain": "OCTA", - "rpc": [ - "https://rpc.octa.space", - "wss://rpc.octa.space" - ], - "faucets": [], - "nativeCurrency": { - "name": "OctaSpace", - "symbol": "OCTA", - "decimals": 18 - }, - "infoURL": "https://octa.space", - "shortName": "octa", - "chainId": 800001, - "networkId": 800001, - "icon": "octaspace", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.octa.space", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Mainnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.posichain.org", - "https://api.s0.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-s0", - "chainId": 900000, - "networkId": 900000, - "explorers": [ - { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Testnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.s0.t.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-t-s0", - "chainId": 910000, - "networkId": 910000, - "explorers": [ - { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Devnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.s0.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s0", - "chainId": 920000, - "networkId": 920000, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Devnet Shard 1", - "chain": "PSC", - "rpc": [ - "https://api.s1.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s1", - "chainId": 920001, - "networkId": 920001, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "FNCY Testnet", - "chain": "FNCY", - "rpc": [ - "https://fncy-testnet-seed.fncy.world" - ], - "faucets": [ - "https://faucet-testnet.fncy.world" - ], - "nativeCurrency": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 - }, - "infoURL": "https://fncyscan-testnet.fncy.world", - "shortName": "tFNCY", - "chainId": 923018, - "networkId": 923018, - "icon": "fncy", - "explorers": [ - { - "name": "fncy scan testnet", - "url": "https://fncyscan-testnet.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zhejiang", - "chain": "ETH", - "rpc": [ - "https://rpc.zhejiang.ethpandaops.io" - ], - "faucets": [ - "https://faucet.zhejiang.ethpandaops.io", - "https://zhejiang-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zhejiang.ethpandaops.io", - "shortName": "zhejiang", - "chainId": 1337803, - "networkId": 1337803, - "icon": "ethereum", - "explorers": [ - { - "name": "Zhejiang Explorer", - "url": "https://zhejiang.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plian Mainnet Main", - "chain": "Plian", - "rpc": [ - "https://mainnet.plian.io/pchain" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-mainnet", - "chainId": 2099156, - "networkId": 2099156, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Butterfly testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [ - "https://faucet.butterfly.fildev.network" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-butterfly", - "icon": "filecoin", - "chainId": 3141592, - "networkId": 3141592, - "slip44": 1, - "explorers": [] - }, - { - "name": "Imversed Mainnet", - "chain": "Imversed", - "rpc": [ - "https://jsonrpc.imversed.network", - "https://ws-jsonrpc.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed", - "chainId": 5555555, - "networkId": 5555555, - "icon": "imversed", - "explorers": [ - { - "name": "Imversed EVM explorer (Blockscout)", - "url": "https://txe.imversed.network", - "icon": "imversed", - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": "imversed", - "standard": "none" - } - ] - }, - { - "name": "Imversed Testnet", - "chain": "Imversed", - "rpc": [ - "https://jsonrpc-test.imversed.network", - "https://ws-jsonrpc-test.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed-testnet", - "chainId": 5555558, - "networkId": 5555558, - "icon": "imversed", - "explorers": [ - { - "name": "Imversed EVM Explorer (Blockscout)", - "url": "https://txe-test.imversed.network", - "icon": "imversed", - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": "imversed", - "standard": "none" - } - ] - }, - { - "name": "Saakuru Mainnet", - "chain": "Saakuru", - "icon": "saakuru", - "rpc": [ - "https://rpc.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru", - "chainId": 7225878, - "networkId": 7225878, - "explorers": [ - { - "name": "saakuru-explorer", - "url": "https://explorer.saakuru.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpenVessel", - "chain": "VSL", - "icon": "vsl", - "rpc": [ - "https://mainnet-external.openvessel.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Vessel ETH", - "symbol": "VETH", - "decimals": 18 - }, - "infoURL": "https://www.openvessel.io", - "shortName": "vsl", - "chainId": 7355310, - "networkId": 7355310, - "explorers": [ - { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" - } - ] - }, - { - "name": "QL1 Testnet", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://rpc.testnet.qom.one" - ], - "faucets": [ - "https://faucet.qom.one" - ], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "tqom", - "chainId": 7668378, - "networkId": 7668378, - "icon": "qom", - "explorers": [ - { - "name": "QL1 Testnet Explorer", - "url": "https://testnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plian Mainnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://mainnet.plian.io/child_0" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-mainnet-l2", - "chainId": 8007736, - "networkId": 8007736, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-2099156", - "type": "L2" - } - }, - { - "name": "Plian Testnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://testnet.plian.io/child_test" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-testnet-l2", - "chainId": 10067275, - "networkId": 10067275, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/child_test", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-16658437", - "type": "L2" - } - }, - { - "name": "Soverun Mainnet", - "chain": "SVRN", - "icon": "soverun", - "rpc": [ - "https://mainnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNm", - "chainId": 10101010, - "networkId": 10101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://explorer.soverun.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Anduschain Mainnet", - "chain": "anduschain", - "rpc": [ - "https://rpc.anduschain.io/rpc", - "wss://rpc.anduschain.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "DAON", - "symbol": "DEB", - "decimals": 18 - }, - "infoURL": "https://anduschain.io/", - "shortName": "anduschain-mainnet", - "chainId": 14288640, - "networkId": 14288640, - "explorers": [ - { - "name": "anduschain explorer", - "url": "https://explorer.anduschain.io", - "icon": "daon", - "standard": "none" - } - ] - }, - { - "name": "Plian Testnet Main", - "chain": "Plian", - "rpc": [ - "https://testnet.plian.io/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Testnet Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-testnet", - "chainId": 16658437, - "networkId": 16658437, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excelon Mainnet", - "chain": "XLON", - "icon": "xlon", - "rpc": [ - "https://edgewallet1.xlon.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Excelon", - "symbol": "xlon", - "decimals": 18 - }, - "infoURL": "https://xlon.org", - "shortName": "xlon", - "chainId": 22052002, - "networkId": 22052002, - "explorers": [ - { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excoincial Chain Volta-Testnet", - "chain": "TEXL", - "icon": "exl", - "rpc": [ - "https://testnet-rpc.exlscan.com" - ], - "faucets": [ - "https://faucet.exlscan.com" - ], - "nativeCurrency": { - "name": "TExlcoin", - "symbol": "TEXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exlvolta", - "chainId": 27082017, - "networkId": 27082017, - "explorers": [ - { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excoincial Chain Mainnet", - "chain": "EXL", - "icon": "exl", - "rpc": [ - "https://rpc.exlscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exlcoin", - "symbol": "EXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exl", - "chainId": 27082022, - "networkId": 27082022, - "explorers": [ - { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flachain Mainnet", - "chain": "FLX", - "icon": "flacoin", - "rpc": [ - "https://flachain.flaexchange.top/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Flacoin", - "symbol": "FLA", - "decimals": 18 - }, - "infoURL": "https://www.flaexchange.top", - "shortName": "fla", - "chainId": 29032022, - "networkId": 29032022, - "explorers": [ - { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Local testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-local", - "icon": "filecoin", - "chainId": 31415926, - "networkId": 31415926, - "slip44": 1, - "explorers": [] - }, - { - "name": "maistestsubnet", - "chain": "MAI", - "rpc": [ - "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "maistestsubnet", - "symbol": "MAI", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mais", - "chainId": 43214913, - "networkId": 43214913, - "explorers": [ - { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", - "standard": "none" - } - ] - }, - { - "name": "Autonity Bakerloo (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-0", - "chainId": 65010000, - "networkId": 65010000, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-0", - "chainId": 65100000, - "networkId": 65100000, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Calypso NFT Hub (SKALE Testnet)", - "title": "Calypso NFT Hub Testnet", - "chain": "staging-utter-unripe-menkar", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-testnet", - "chainId": 344106930, - "networkId": 344106930, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", - "icon": "calypso", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Staging", - "chain": "staging-faint-slimy-achird", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", - "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-staging", - "chainId": 503129905, - "networkId": 503129905, - "explorers": [ - { - "name": "nebula", - "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", - "icon": "nebula", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Mainnet", - "chain": "green-giddy-denebola", - "rpc": [ - "https://mainnet.skalenodes.com/v1/green-giddy-denebola", - "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-mainnet", - "chainId": 1482601649, - "networkId": 1482601649, - "explorers": [ - { - "name": "nebula", - "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", - "icon": "nebula", - "standard": "EIP3091" - } - ] - }, - { - "name": "Calypso NFT Hub (SKALE)", - "title": "Calypso NFT Hub Mainnet", - "chain": "honorable-steel-rasalhague", - "rpc": [ - "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" - ], - "faucets": [ - "https://sfuel.dirtroad.dev" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-mainnet", - "chainId": 1564830818, - "networkId": 1564830818, - "explorers": [ - { - "name": "Blockscout", - "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", - "icon": "calypso", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Devnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://api.s1.ps.hmny.io", - "https://api.s1.ps.hmny.io" - ], - "faucets": [ - "http://dev.faucet.easynode.one/" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-ps-s0", - "chainId": 1666900000, - "networkId": 1666900000, - "explorers": [ - { - "name": "Harmony Block Explorer", - "url": "https://explorer.ps.hmny.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Europa SKALE Chain", - "chain": "europa", - "icon": "europa", - "rpc": [ - "https://mainnet.skalenodes.com/v1/elated-tan-skat", - "wss://mainnet.skalenodes.com/v1/elated-tan-skat" - ], - "faucets": [ - "https://ruby.exchange/faucet.html", - "https://sfuel.mylilius.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa", - "chainId": 2046399126, - "networkId": 2046399126, - "explorers": [ - { - "name": "Blockscout", - "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://ruby.exchange/bridge.html" - } - ] - } - }, - { - "name": "Zeniq", - "chain": "ZENIQ", - "rpc": [ - "https://smart.zeniq.network:9545" - ], - "faucets": [ - "https://faucet.zeniq.net/" - ], - "nativeCurrency": { - "name": "Zeniq", - "symbol": "ZENIQ", - "decimals": 18 - }, - "infoURL": "https://www.zeniq.dev/", - "shortName": "zeniq", - "chainId": 383414847825, - "networkId": 383414847825, - "explorers": [ - { - "name": "zeniq-smart-chain-explorer", - "url": "https://smart.zeniq.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "PDC Mainnet", - "chain": "IPDC", - "rpc": [ - "https://mainnet.ipdc.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PDC", - "symbol": "PDC", - "decimals": 18 - }, - "infoURL": "https://ipdc.io", - "shortName": "ipdc", - "chainId": 666301171999, - "networkId": 666301171999, - "explorers": [ - { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AlveyChain Mainnet", - "chain": "ALV", - "rpc": [ - "https://elves-core1.alvey.io", - "https://elves-core2.alvey.io", - "https://elves-core3.alvey.io" - ], - "nativeCurrency": { - "name": "AlveyCoin", - "symbol": "ALV", - "decimals": 18 - }, - "infoURL": "https://www.alveychain.com/", - "shortName": "ALV", - "chainId": 3797, - "networkId": 3797, - "explorers": [ - { - "name": "AlveyScan", - "url": "https://alveyscan.com", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1685016287246.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1685016249560.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1685016218214.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1685016276305.png" - } - }, - { - "name": "PEGO Mainnet", - "chainId": 20201022, - "shortName": "PEGO", - "chain": "PEGO", - "network": "mainnet", - "networkId": 20201022, - "nativeCurrency": { - "name": "PEGO", - "symbol": "PG", - "decimals": 18 - }, - "rpc": [ - "https://pegorpc.com", - "https://node1.pegorpc.com", - " https://node2.pegorpc.com" - ], - "faucets": [], - "infoURL": "https://pego.network", - "app_resource": { - "ic_chain_select": "https://drive.google.com/file/d/1eoxLbi4CIXW_St3fkoctRwPrdD4-Nyb8/view?usp=drive_link", - "ic_chain_unselect": "https://drive.google.com/file/d/1_UgiAXINqJhMWloRz2W5dkBxmTtmugvM/view?usp=drive_link", - "color_chain_bg": "0xFF9D00" - } - }, - { - "name": "Acria IntelliChain", - "chain": "AIC", - "rpc": [ - "https://aic.acria.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "ACRIA", - "symbol": "ACRIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://acria.ai", - "shortName": "aic", - "chainId": 47, - "networkId": 47, - "explorers": [ - { - "name": "Acria IntelliChain-Explorer", - "url": "https://explorer.acria.ai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linqto Devnet", - "chain": "LNQ", - "rpc": [ - "https://linqto-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 18 - }, - "infoURL": "https://linqto.com", - "shortName": "linqto-devnet", - "chainId": 84, - "networkId": 84, - "explorers": [ - { - "name": "Linqto Devnet Explorer", - "url": "https://explorer.linqto-dev.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SwissDLT", - "chain": "SDLT", - "rpc": [ - "https://rpc.swissdlt.ch" - ], - "faucets": [], - "nativeCurrency": { - "name": "BCTS", - "symbol": "BCTS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://bcts.ch", - "shortName": "sdlt", - "chainId": 94, - "networkId": 94, - "icon": "bcts", - "explorers": [ - { - "name": "SwissDLT Explorer", - "url": "https://explorer.swissdlt.ch", - "icon": "bcts", - "standard": "EIP3091" - } - ] - }, - { - "name": "Six Protocol", - "chain": "SIXNET", - "icon": "six", - "rpc": [ - "https://sixnet-rpc-evm.sixprotocol.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "SIX evm token", - "symbol": "SIX", - "decimals": 18 - }, - "infoURL": "https://six.network/", - "shortName": "six", - "chainId": 98, - "networkId": 98, - "explorers": [ - { - "name": "SIX Scan", - "url": "https://sixscan.io/sixnet", - "standard": "none", - "icon": "six" - } - ] - }, - { - "name": "Coinbit Mainnet", - "chain": "Coinbit", - "rpc": [ - "https://coinbit-rpc-mainnet.chain.sbcrypto.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas IDR", - "symbol": "GIDR", - "decimals": 18 - }, - "infoURL": "https://crypto.stockbit.com/", - "shortName": "coinbit", - "chainId": 112, - "networkId": 112, - "icon": "coinbit", - "explorers": [ - { - "name": "blockscout", - "url": "https://coinbit-explorer.chain.sbcrypto.app", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Uptick Mainnet", - "chain": "Uptick", - "rpc": [ - "https://json-rpc.uptick.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Uptick", - "symbol": "UPTICK", - "decimals": 18 - }, - "infoURL": "https://www.uptick.network", - "shortName": "auptick", - "chainId": 117, - "networkId": 117, - "icon": "uptick", - "explorers": [ - { - "name": "Uptick Explorer", - "url": "https://evm-explorer.uptick.network", - "icon": "uptick", - "standard": "none" - } - ] - }, - { - "name": "iExec Sidechain", - "chain": "Bellecour", - "icon": "rlc", - "rpc": [ - "https://bellecour.iex.ec" - ], - "faucets": [], - "nativeCurrency": { - "name": "xRLC", - "symbol": "xRLC", - "decimals": 18 - }, - "infoURL": "https://iex.ec", - "shortName": "rlc", - "chainId": 134, - "networkId": 134, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.bellecour.iex.ec", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Deamchain Mainnet", - "chain": "Deamchain", - "icon": "deam", - "rpc": [ - "https://mainnet.deamchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 - }, - "infoURL": "https://deamchain.com", - "shortName": "deam", - "chainId": 136, - "networkId": 136, - "explorers": [ - { - "name": "Deamchain Block Explorer", - "url": "https://scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } - ] - }, - { - "name": "Defi Oracle Meta Mainnet", - "chain": "dfiometa", - "icon": "defioraclemeta", - "rpc": [ - "https://rpc.public-0138.defi-oracle.io", - "wss://rpc.public-0138.defi-oracle.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://defi-oracle.io/", - "shortName": "dfio-meta-main", - "chainId": 138, - "networkId": 1, - "slip44": 60, - "ens": { - "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" - }, - "explorers": [ - { - "name": "Quorum Explorer", - "url": "https://public-0138.defi-oracle.io", - "standard": "none" - } - ] - }, - { - "name": "WoopChain Mainnet", - "chain": "WOOP", - "icon": "woopchain", - "rpc": [ - "https://rpc.woop.ai/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "WoopCoin", - "symbol": "WOOC", - "decimals": 18 - }, - "infoURL": "https://wikiwoop.com", - "shortName": "woop", - "chainId": 139, - "networkId": 139, - "explorers": [ - { - "name": "wikiwoop", - "url": "https://explorer.wikiwoop.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Six Protocol Testnet", - "chain": "FIVENET", - "icon": "six", - "rpc": [ - "https://rpc-evm.fivenet.sixprotocol.net" - ], - "faucets": [ - "https://faucet.sixprotocol.net" - ], - "nativeCurrency": { - "name": "SIX testnet evm token", - "symbol": "tSIX", - "decimals": 18 - }, - "infoURL": "https://six.network/", - "shortName": "sixt", - "chainId": 150, - "networkId": 150, - "explorers": [ - { - "name": "SIX Scan fivenet", - "url": "https://sixscan.io/fivenet", - "standard": "none", - "icon": "six" - } - ] - }, - { - "name": "Tenet Testnet", - "title": "Tenet Testnet", - "chain": "TENET", - "icon": "tenet", - "rpc": [ - "https://rpc.testnet.tenet.org" - ], - "faucets": [ - "https://faucet.testnet.tenet.org" - ], - "nativeCurrency": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 - }, - "infoURL": "https://tenet.org/", - "shortName": "tenet-testnet", - "chainId": 155, - "networkId": 155, - "explorers": [ - { - "name": "TenetScan Testnet", - "url": "https://testnet.tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } - ] - }, - { - "name": "OEBlock Testnet", - "chain": "OEBt", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://testnet-rpc.oeblock.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OEBlock", - "symbol": "OEB", - "decimals": 18 - }, - "infoURL": "https://www.oeblock.com/", - "shortName": "obe", - "chainId": 156, - "networkId": 156, - "icon": "oescan", - "explorers": [ - { - "name": "OEScan explorer", - "url": "https://testnet.oescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni Testnet 1", - "chain": "Omni", - "rpc": [ - "https://testnet-1.omni.network" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network/", - "shortName": "omni_testnet", - "chainId": 165, - "networkId": 165, - "explorers": [ - { - "name": "Omni Explorer", - "url": "https://testnet-1.explorer.omni.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OKBChain Testnet", - "chain": "okbchain", - "rpc": [ - "https://okbtestrpc.okbchain.org" - ], - "faucets": [ - "https://www.oklink.com/okbc-test" - ], - "nativeCurrency": { - "name": "OKBChain Global Utility Token in testnet", - "symbol": "OKB", - "decimals": 18 - }, - "features": [], - "infoURL": "https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain", - "shortName": "tokb", - "chainId": 195, - "networkId": 195, - "explorers": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/okbc-test", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Neutrinos TestNet", - "chain": "NEUTR", - "rpc": [ - "https://testnet-rpc.neutrinoschain.com" - ], - "faucets": [ - "https://neutrinoschain.com/faucet" - ], - "nativeCurrency": { - "name": "Neutrinos", - "symbol": "NEUTR", - "decimals": 18 - }, - "infoURL": "https://docs.neutrinoschain.com", - "shortName": "NEUTR", - "chainId": 197, - "networkId": 197, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.neutrinoschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Structx Mainnet", - "chain": "utx", - "rpc": [ - "https://mainnet.structx.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Notes", - "symbol": "utx", - "decimals": 18 - }, - "infoURL": "https://structx.io", - "shortName": "utx", - "chainId": 208, - "networkId": 208 - }, - { - "name": "SwapDEX", - "chain": "SDX", - "rpc": [ - "https://rpc.swapdex.network", - "wss://ss.swapdex.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SwapDEX", - "symbol": "SDX", - "decimals": 18 - }, - "infoURL": "https://swapdex.network/", - "shortName": "SDX", - "chainId": 230, - "networkId": 230, - "explorers": [ - { - "name": "SwapDEX", - "url": "https://evm.swapdex.network", - "standard": "none" - } - ] - }, - { - "name": "Deamchain Testnet", - "chain": "Deamchain", - "icon": "deam", - "rpc": [ - "https://testnet.deamchain.com" - ], - "faucets": [ - "https://faucet.deamchain.com" - ], - "nativeCurrency": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 - }, - "infoURL": "https://deamchain.com", - "shortName": "deamtest", - "chainId": 236, - "networkId": 236, - "explorers": [ - { - "name": "Deamchain Testnet Explorer", - "url": "https://testnet-scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } - ] - }, - { - "name": "Plinga Mainnet", - "chain": "Plinga", - "icon": "plinga", - "rpc": [ - "https://rpcurl.mainnet.plgchain.com", - "https://rpcurl.plgchain.blockchain.evmnode.online", - "https://rpcurl.mainnet.plgchain.plinga.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plinga", - "symbol": "PLINGA", - "decimals": 18 - }, - "infoURL": "https://www.plinga.technology/", - "shortName": "plgchain", - "chainId": 242, - "networkId": 242, - "explorers": [ - { - "name": "plgscan", - "url": "https://www.plgscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neonlink Mainnet", - "chain": "Neonlink", - "rpc": [ - "https://mainnet.neonlink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neonlink Native Token", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neonlink.io", - "shortName": "neon", - "chainId": 259, - "networkId": 259, - "icon": "neonlink", - "explorers": [ - { - "name": "Neon Blockchain Explorer", - "url": "https://scan.neonlink.io", - "standard": "EIP3091", - "icon": "neonlink" - } - ] - }, - { - "name": "EgonCoin Mainnet", - "chain": "EGON", - "icon": "egonicon", - "rpc": [ - "https://rpc.egcscan.com" - ], - "faucets": [ - "https://faucet.egcscan.com" - ], - "nativeCurrency": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 - }, - "infoURL": "https://egcscan.com", - "shortName": "EGONm", - "chainId": 271, - "networkId": 271, - "explorers": [ - { - "name": "EgonCoin Mainnet", - "url": "https://egcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LaChain", - "chain": "LaChain", - "icon": "LaChain", - "rpc": [ - "https://rpc1.mainnet.lachain.network", - "https://rpc2.mainnet.lachain.network", - "https://lachain.rpc-nodes.cedalio.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "LaCoin", - "symbol": "LAC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "lachain", - "chainId": 274, - "networkId": 274, - "explorers": [ - { - "name": "LaChain Explorer", - "url": "https://explorer.lachain.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neurochain Testnet", - "chain": "NCN", - "rpc": [ - "https://nc-rpc-test1.neurochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neurochain", - "symbol": "tNCN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.neurochain.ai", - "shortName": "ncnt", - "chainId": 303, - "networkId": 303, - "explorers": [ - { - "name": "neuroscan", - "url": "https://testnet.ncnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neurochain Mainnet", - "chain": "NCN", - "rpc": [ - "https://nc-rpc-prd1.neurochain.io", - "https://nc-rpc-prd2.neurochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neurochain", - "symbol": "NCN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.neurochain.ai", - "shortName": "ncn", - "chainId": 313, - "networkId": 313, - "explorers": [ - { - "name": "neuroscan", - "url": "https://ncnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ozone Chain Testnet", - "chain": "OZONE", - "rpc": [ - "https://node1.testnet.ozonechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 - }, - "infoURL": "https://ozonechain.io", - "shortName": "ozo_tst", - "chainId": 401, - "networkId": 401, - "icon": "ozonechain", - "explorers": [ - { - "name": "OZONE Scan", - "url": "https://testnet.ozonescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "LaTestnet", - "chain": "LaTestnet", - "icon": "LaChain", - "rpc": [ - "https://rpc.testnet.lachain.network", - "https://lachain-testnet.rpc-nodes.cedalio.dev" - ], - "faucets": [ - "https://faucet.lachain.network" - ], - "nativeCurrency": { - "name": "Test LaCoin", - "symbol": "TLA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "latestnet", - "chainId": 418, - "networkId": 418, - "explorers": [ - { - "name": "LaTestnet Explorer", - "url": "https://testexplorer.lachain.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PGN (Public Goods Network)", - "chain": "ETH", - "rpc": [ - "https://rpc.publicgoods.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://publicgoods.network/", - "shortName": "PGN", - "chainId": 424, - "networkId": 424, - "icon": "publicGoodsNetwork", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.publicgoods.network" - } - ] - } - }, - { - "name": "ARZIO Chain", - "chain": "ARZIO", - "icon": "arzio", - "rpc": [ - "https://chain-rpc.arzio.co" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARZIO", - "symbol": "AZO", - "decimals": 18 - }, - "infoURL": "https://chain.arzio.co", - "shortName": "arzio", - "chainId": 456, - "networkId": 456, - "explorers": [ - { - "name": "ARZIO Scan", - "url": "https://scan.arzio.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rollux Mainnet", - "chain": "SYS", - "rpc": [ - "https://rpc.rollux.com", - "https://rollux.public-rpc.com", - "wss://rpc.rollux.com/wss", - "https://rpc.ankr.com/rollux/${ANKR_API_KEY}" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "sys-rollux", - "chainId": 570, - "networkId": 570, - "explorers": [ - { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Avocado", - "chain": "Avocado", - "rpc": [ - "https://rpc.avocado.instadapp.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://avocado.instadapp.io", - "shortName": "avocado", - "chainId": 634, - "networkId": 634, - "icon": "avocado", - "explorers": [ - { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": "avocado", - "standard": "none" - } - ] - }, - { - "name": "Shibarium Beta", - "chain": "Shibarium", - "icon": "shibarium", - "rpc": [ - "https://puppynet.shibrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://beta.shibariumtech.com", - "shortName": "shibarium", - "chainId": 719, - "networkId": 719, - "explorers": [ - { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAAL Sharia Chain", - "chain": "MAAL", - "icon": "maal", - "rpc": [ - "https://node1-mainnet.maalscan.io/", - "https://node2-mainnet.maalscan.io/", - "https://node3-mainnet.maalscan.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 - }, - "infoURL": "https://www.maalblockchain.com/", - "shortName": "maal", - "chainId": 786, - "networkId": 786, - "explorers": [ - { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Patex", - "chain": "ETH", - "icon": "patex", - "rpc": [ - "https://rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://patex.io/", - "shortName": "peth", - "chainId": 789, - "networkId": 789, - "explorers": [ - { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": "patex", - "standard": "EIP3091" - } - ] - }, - { - "name": "BeOne Chain Mainnet", - "chain": "BOC", - "icon": "beonechain", - "rpc": [ - "https://dataseed1.beonechain.com", - "https://dataseed2.beonechain.com", - "https://dataseed-us1.beonechain.com", - "https://dataseed-us2.beonechain.com", - "https://dataseed-uk1.beonechain.com", - "https://dataseed-uk2.beonechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BeOne Chain Mainnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://beonechain.com", - "shortName": "BOC", - "chainId": 818, - "networkId": 818, - "slip44": 8181, - "explorers": [ - { - "name": "BeOne Chain Mainnet", - "url": "https://beonescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DecentraBone Layer1 Testnet", - "chain": "DBONE", - "rpc": [ - "https://layer1test.decentrabone.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DecentraBone", - "symbol": "DBONE", - "decimals": 18 - }, - "infoURL": "https://decentrabone.com", - "shortName": "DBONE", - "chainId": 910, - "networkId": 910 - }, - { - "name": "PulseChain Testnet v4", - "shortName": "t4pls", - "chain": "t4PLS", - "chainId": 943, - "networkId": 943, - "icon": "pulsechain", - "infoURL": "https://pulsechain.com", - "rpc": [ - "https://rpc.v4.testnet.pulsechain.com/", - "wss://rpc.v4.testnet.pulsechain.com/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.v4.testnet.pulsechain.com/" - ], - "ens": { - "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - }, - "status": "incubating", - "explorers": [], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "5ireChain Thunder", - "chain": "5ireChain", - "rpc": [ - "https://rpc-testnet.5ire.network" - ], - "faucets": [ - "https://explorer.5ire.network/faucet" - ], - "nativeCurrency": { - "name": "5ire Token", - "symbol": "5ire", - "decimals": 18 - }, - "infoURL": "https://5ire.org", - "shortName": "5ire", - "chainId": 997, - "networkId": 997, - "icon": "5ireChain", - "explorers": [ - { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": "5ireChain" - } - ] - }, - { - "name": "ShimmerEVM Testnet Deprecated", - "title": "ShimmerEVM Testnet Deprecated", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet-deprecated", - "chainId": 1071, - "networkId": 1071, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "ShimmerEVM Testnet", - "title": "ShimmerEVM Testnet", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [ - "https://json-rpc.evm.testnet.shimmer.network" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 6 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet", - "chainId": 1072, - "networkId": 1072, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mintara Testnet", - "title": "Mintara Testnet", - "chain": "Mintara", - "icon": "mintara", - "rpc": [ - "https://subnets.avax.network/mintara/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 - }, - "infoURL": "https://playthink.co.jp", - "shortName": "mintara-testnet", - "chainId": 1079, - "networkId": 1079, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon zkEVM", - "title": "Polygon zkEVM", - "chain": "Polygon", - "rpc": [ - "https://zkevm-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/polygon-zkevm", - "shortName": "zkevm", - "chainId": 1101, - "networkId": 1101, - "icon": "zkevm", - "explorers": [ - { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": "zkevm", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.zkevm-rpc.com" - } - ] - } - }, - { - "name": "Symplexia Smart Chain", - "chain": "Plexchain", - "rpc": [ - "https://plex-rpc.plexfinance.us" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plex Native Token", - "symbol": "PLEX", - "decimals": 18 - }, - "infoURL": "https://plexfinance.us/", - "shortName": "Plexchain", - "chainId": 1149, - "networkId": 1149, - "icon": "plexchain", - "explorers": [ - { - "name": "Plexchain Explorer", - "url": "https://explorer.plexfinance.us", - "icon": "plexchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Origin Testnet", - "chain": "Origin", - "rpc": [ - "https://json-rpc.origin.uptick.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Origin", - "symbol": "UOC", - "decimals": 18 - }, - "infoURL": "https://www.uptick.network", - "shortName": "auoc", - "chainId": 1170, - "networkId": 1170, - "icon": "origin", - "explorers": [ - { - "name": "Origin Explorer", - "url": "https://evm-explorer.origin.uptick.network", - "icon": "origin", - "standard": "none" - } - ] - }, - { - "name": "ARC Mainnet", - "chain": "ARC", - "icon": "arc", - "rpc": [ - "https://rpc-main-1.archiechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "ARC", - "chainId": 1243, - "networkId": 1243, - "explorers": [ - { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } - ] - }, - { - "name": "ARC Testnet", - "chain": "ARC", - "icon": "arc", - "rpc": [ - "https://rpc-test-1.archiechain.io" - ], - "faucets": [ - "https://faucet.archiechain.io" - ], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "TARC", - "chainId": 1244, - "networkId": 1244, - "explorers": [ - { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } - ] - }, - { - "name": "Zafirium Mainnet", - "chain": "ZAFIC", - "icon": "zafirium", - "rpc": [ - "https://mainnet.zakumi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zakumi Chain Native Token", - "symbol": "ZAFIC", - "decimals": 18 - }, - "infoURL": "https://www.zakumi.io", - "shortName": "zafic", - "chainId": 1369, - "networkId": 1369, - "explorers": [ - { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } - ] - }, - { - "name": "Joseon Mainnet", - "chain": "Joseon", - "icon": "joseon", - "rpc": [ - "https://rpc.modchain.net/blockchain.joseon.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Joseon Mun", - "symbol": "JSM", - "decimals": 18 - }, - "infoURL": "https://www.joseon.com/", - "shortName": "mun", - "chainId": 1392, - "networkId": 1392, - "explorers": [ - { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rikeza Network Mainnet", - "title": "Rikeza Network Mainnet", - "chain": "Rikeza", - "icon": "rikeza", - "rpc": [ - "https://rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "RIK", - "chainId": 1433, - "networkId": 1433, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Living Assets Mainnet", - "chain": "LAS", - "icon": "livingassets", - "rpc": [ - "https://beta.mainnet.livingassets.io/rpc", - "https://gamma.mainnet.livingassets.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAS", - "symbol": "LAS", - "decimals": 18 - }, - "infoURL": "https://dev.livingassets.io/", - "shortName": "LAS", - "chainId": 1440, - "networkId": 1440 - }, - { - "name": "Polygon zkEVM Testnet", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.public.zkevm-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "testnet-zkEVM-mango", - "chainId": 1442, - "networkId": 1442, - "explorers": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "GIL Testnet", - "chain": "GIL", - "icon": "gauss", - "rpc": [ - "https://rpc.giltestnet.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gil", - "chainId": 1452, - "networkId": 1452, - "explorers": [ - { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM", - "chain": "ChainX", - "rpc": [ - "https://mainnet.chainx.org/rpc", - "https://mainnet2.chainx.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://chainx.org", - "shortName": "chainx", - "chainId": 1501, - "networkId": 1501, - "explorers": [ - { - "name": "bevm scan", - "url": "https://evm.chainx.org", - "standard": "none" - } - ] - }, - { - "name": "Tenet", - "title": "Tenet Mainnet", - "chain": "TENET", - "icon": "tenet", - "rpc": [ - "https://rpc.tenet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 - }, - "infoURL": "https://tenet.org/", - "shortName": "tenet", - "chainId": 1559, - "networkId": 1559, - "explorers": [ - { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Horizen Gobi Testnet", - "shortName": "Gobi", - "chain": "Gobi", - "icon": "eon", - "rpc": [ - "https://gobi-testnet.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_testnet_evm" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.horizen.io" - ], - "nativeCurrency": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 1663, - "networkId": 1663, - "slip44": 121, - "explorers": [ - { - "name": "Gobi Testnet Block Explorer", - "url": "https://gobi-explorer.horizen.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Palette Chain Mainnet", - "chain": "PLT", - "rpc": [ - "https://palette-rpc.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCM", - "chainId": 1718, - "networkId": 1718, - "icon": "PLT", - "explorers": [ - { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": "PLT", - "standard": "none" - } - ] - }, - { - "name": "PartyChain", - "chain": "mainnet", - "rpc": [ - "https://tea.mining4people.com/rpc", - "http://172.104.194.36:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Grams", - "symbol": "GRAMS", - "decimals": 18 - }, - "infoURL": "TeaPartyCrypto.com", - "shortName": "TeaParty", - "chainId": 1773, - "networkId": 1773, - "icon": "grams", - "status": "incubating", - "explorers": [ - { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": "grams", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gauss Mainnet", - "chain": "Gauss", - "icon": "gauss", - "rpc": [ - "https://rpc.gaussgang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gauss", - "chainId": 1777, - "networkId": 1777, - "explorers": [ - { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lightlink Phoenix Mainnet", - "chain": "Lightlink Phoenix Mainnet", - "icon": "lightlink", - "rpc": [ - "https://endpoints.omniatech.io/v1/lightlink/phoenix/public", - "https://replicator-01.phoenix.lightlink.io/rpc/v1", - "https://replicator-02.phoenix.lightlink.io/rpc/v1", - "https://replicator.phoenix.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_phoenix", - "chainId": 1890, - "networkId": 1890, - "explorers": [ - { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1714378866804.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1714378840768.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1714378852669.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1714379070381.png" - } - }, - { - "name": "Lightlink Pegasus Testnet", - "chain": "Lightlink Pegasus Testnet", - "icon": "lightlink", - "rpc": [ - "https://replicator-01.pegasus.lightlink.io/rpc/v1", - "https://replicator-02.pegasus.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [ - "https://pegasus-faucet-react.vercel.app" - ], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_pegasus", - "chainId": 1891, - "networkId": 1891, - "explorers": [ - { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dexilla Testnet", - "chain": "Dexilla", - "rpc": [ - "https://rpc.dexilla.com" - ], - "faucets": [], - "icon": "dxz", - "nativeCurrency": { - "name": "Dexilla Native Token", - "symbol": "DXZ", - "decimals": 18 - }, - "infoURL": "https://dexilla.com", - "shortName": "Dexilla", - "chainId": 1954, - "networkId": 1954, - "explorers": [ - { - "name": "dos-mainnet", - "url": "https://exp.dexilla.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.dexilla.com" - } - ] - } - }, - { - "name": "Eleanor", - "title": "Metatime Testnet Eleanor", - "chain": "MTC", - "rpc": [ - "https://rpc.metatime.com/eleanor", - "wss://ws.metatime.com/eleanor" - ], - "faucets": [ - "https://faucet.metatime.com/eleanor" - ], - "nativeCurrency": { - "name": "Eleanor Metacoin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://eleanor.metatime.com", - "shortName": "mtc", - "chainId": 1967, - "networkId": 1967, - "explorers": [ - { - "name": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", - "standard": "EIP3091" - } - ] - }, - { - "name": "Super Smart Chain Testnet", - "chain": "TSCS", - "rpc": [ - "https://testnetrpc.scschain.com" - ], - "faucets": [ - "https://testnet.scschain.com" - ], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "TSCS", - "decimals": 18 - }, - "infoURL": "https://testnet.scschain.com", - "shortName": "tscs", - "chainId": 1969, - "networkId": 1969, - "icon": "super", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnetscan.scschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Super Smart Chain Mainnet", - "chain": "SCS", - "rpc": [ - "https://rpc.scschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "SCS", - "decimals": 18 - }, - "infoURL": "https://scschain.com", - "shortName": "scs", - "chainId": 1970, - "networkId": 1970, - "icon": "super", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.scschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shrapnel Subnet", - "chain": "shrapnel", - "rpc": [ - "https://subnets.avax.network/shrapnel/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shrapnel Gas Token", - "symbol": "SHRAPG", - "decimals": 18 - }, - "infoURL": "https://www.shrapnel.com/", - "shortName": "Shrapnel", - "chainId": 2044, - "networkId": 2044 - }, - { - "name": "Metaplayerone Dubai Testnet", - "chain": "MP1 Dubai-Testnet", - "rpc": [ - "https://rpc-dubai.mp1network.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metaunit", - "symbol": "MEU", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "MEU", - "chainId": 2124, - "networkId": 2124, - "explorers": [ - { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Defi Oracle Meta Testnet", - "chain": "dfiometatest", - "icon": "defioraclemeta", - "rpc": [ - "https://rpc.public-2138.defi-oracle.io", - "wss://rpc.public-2138.defi-oracle.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "testEther", - "symbol": "tETH", - "decimals": 18 - }, - "infoURL": "https://defi-oracle.io/", - "shortName": "dfio-meta-test", - "chainId": 2138, - "networkId": 21, - "slip44": 60, - "ens": { - "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" - }, - "explorers": [ - { - "name": "Quorum Explorer", - "url": "https://public-2138.defi-oracle.io", - "standard": "none" - } - ] - }, - { - "name": "Moonsama Network", - "chain": "MSN", - "rpc": [ - "https://rpc.moonsama.com", - "wss://rpc.moonsama.com/ws" - ], - "faucets": [ - "https://multiverse.moonsama.com/faucet" - ], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "msn", - "chainId": 2199, - "networkId": 2199, - "slip44": 2199, - "icon": "msn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Antofy Mainnet", - "chain": "ABN", - "icon": "antofy", - "rpc": [ - "https://rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNm", - "chainId": 2202, - "networkId": 2202, - "explorers": [ - { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SOMA Network Testnet", - "chain": "SOMA", - "rpc": [ - "https://data-testnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://faucet.somanetwork.io" - ], - "nativeCurrency": { - "name": "SMA", - "symbol": "tSMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "sma", - "chainId": 2323, - "networkId": 2323, - "icon": "soma", - "explorers": [ - { - "name": "SOMA Testnet Explorer", - "icon": "soma", - "url": "https://testnet.somascan.io", - "standard": "none" - } - ] - }, - { - "name": "SOMA Network Mainnet", - "chain": "SOMA", - "rpc": [ - "https://data-mainnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://airdrop.somanetwork.io" - ], - "nativeCurrency": { - "name": "Soma Native Token", - "symbol": "SMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "smam", - "chainId": 2332, - "networkId": 2332, - "icon": "soma", - "status": "incubating", - "explorers": [ - { - "name": "SOMA Explorer Mainnet", - "icon": "soma", - "url": "https://somascan.io", - "standard": "none" - } - ] - }, - { - "name": "(deprecated) Kroma Sepolia", - "title": "(deprecated) Kroma Testnet Sepolia", - "chainId": 2357, - "shortName": "deprecated-kroma-sepolia", - "chain": "ETH", - "networkId": 2357, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://api.sepolia-deprecated.kroma.network" - ], - "faucets": [], - "infoURL": "https://kroma.network", - "icon": "kroma", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.sepolia-deprecated.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - }, - "status": "deprecated" - }, - { - "name": "Kroma Sepolia", - "title": "Kroma Testnet Sepolia", - "chainId": 2358, - "shortName": "kroma-sepolia", - "chain": "ETH", - "networkId": 2358, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://api.sepolia.kroma.network" - ], - "faucets": [], - "infoURL": "https://kroma.network", - "icon": "kroma", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - } - }, - { - "name": "WhiteBIT Network Testnet", - "chain": "WBT", - "rpc": [ - "https://rpc-testnet.whitebit.network" - ], - "faucets": [ - "https://explorer.whitebit.network/testnet/faucet" - ], - "nativeCurrency": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 - }, - "infoURL": "https://whitebit.com/wbt", - "shortName": "twbt", - "chainId": 2625, - "networkId": 2625, - "icon": "whitebit-testnet", - "explorers": [ - { - "name": "wb-explorer-testnet", - "url": "https://explorer.whitebit.network/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Canxium Mainnet", - "chain": "CAU", - "rpc": [ - "https://rpc.canxium.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 - }, - "infoURL": "https://canxium.org", - "shortName": "cau", - "chainId": 3003, - "networkId": 3003, - "explorers": [ - { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" - } - ] - }, - { - "name": "PLAYA3ULL GAMES", - "chain": "3ULL", - "rpc": [ - "https://api.mainnet.playa3ull.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "3ULL", - "symbol": "3ULL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://playa3ull.games", - "shortName": "3ULL", - "chainId": 3011, - "networkId": 3011, - "icon": "playa3ull", - "explorers": [ - { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": "playa3ull", - "standard": "EIP3091" - } - ] - }, - { - "name": "SecureChain Testnet", - "chain": "SCAI", - "icon": "scaiIcon", - "rpc": [ - "https://testnet-rpc.securechain.ai" - ], - "faucets": [ - "https://faucet.securechain.ai" - ], - "nativeCurrency": { - "name": "SCAI", - "symbol": "SCAI", - "decimals": 18 - }, - "infoURL": "https://securechain.ai", - "shortName": "SCAIt", - "chainId": 3434, - "networkId": 3434, - "explorers": [ - { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Botanix Testnet", - "chain": "BTC", - "icon": "botanix", - "rpc": [ - "https://testnet-rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCt", - "chainId": 3636, - "networkId": 3636, - "explorers": [ - { - "name": "Botanix", - "url": "https://testnet.btxtestchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Botanix Mainnet", - "chain": "BTC", - "icon": "botanix", - "rpc": [ - "https://rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCm", - "chainId": 3637, - "networkId": 3637, - "explorers": [ - { - "name": "Botanix", - "url": "https://btxtestchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SenjePowers Testnet", - "chain": "SPC", - "icon": "SenjePowers", - "rpc": [ - "https://testnet-rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCt", - "chainId": 3698, - "networkId": 3698, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SenjePowers Mainnet", - "chain": "SPC", - "icon": "SenjePowers", - "rpc": [ - "https://rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCm", - "chainId": 3699, - "networkId": 3699, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOS Tesnet", - "chain": "DOS", - "rpc": [ - "https://test.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "dost", - "chainId": 3939, - "networkId": 3939, - "icon": "doschain", - "explorers": [ - { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ozone Chain Mainnet", - "chain": "OZONE", - "rpc": [ - "https://node1.ozonechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 - }, - "infoURL": "https://ozonechain.io", - "shortName": "ozo", - "chainId": 4000, - "networkId": 4000, - "icon": "ozonechain", - "explorers": [ - { - "name": "OZONE Scan", - "url": "https://ozonescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Peperium Chain Testnet", - "chain": "PERIUM", - "rpc": [ - "https://rpc-testnet.peperium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peperium Chain Testnet", - "symbol": "PERIUM", - "decimals": 18 - }, - "infoURL": "https://peperium.io", - "shortName": "PERIUM", - "chainId": 4001, - "networkId": 4001, - "icon": "peperium", - "explorers": [ - { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": "peperium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nahmii 3 Mainnet", - "chain": "Nahmii", - "rpc": [], - "status": "incubating", - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Mainnet", - "chainId": 4061, - "networkId": 4061, - "icon": "nahmii", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Nahmii 3 Testnet", - "chain": "Nahmii", - "rpc": [ - "https://ngeth.testnet.n3.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Testnet", - "chainId": 4062, - "networkId": 4062, - "icon": "nahmii", - "explorers": [ - { - "name": "Nahmii 3 Testnet Explorer", - "url": "https://explorer.testnet.n3.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.testnet.n3.nahmii.io" - } - ] - } - }, - { - "name": "Fastex Chain (Bahamut) Oasis Testnet", - "title": "Bahamut testnet Oasis", - "icon": "bahamut", - "chain": "Fastex Chain (Bahamut)", - "rpc": [ - "https://rpc1.oasis.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.oasis.fastexchain.com" - ], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastexchain.com", - "shortName": "Oasis", - "chainId": 4090, - "networkId": 4090, - "explorers": [ - { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "Tipboxcoin Testnet", - "chain": "TPBX", - "icon": "tipboxcoinIcon", - "rpc": [ - "https://testnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXt", - "chainId": 4141, - "networkId": 4141, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "LUKSO Testnet", - "chain": "LUKSO Testnet", - "icon": "lukso", - "rpc": [ - "https://rpc.testnet.lukso.network", - "wss://ws-rpc.testnet.lukso.network" - ], - "faucets": [ - "https://faucet.testnet.lukso.network" - ], - "nativeCurrency": { - "name": "TestLYX", - "symbol": "LYXt", - "decimals": 18 - }, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" - } - ], - "infoURL": "https://lukso.network", - "shortName": "lukso-testnet", - "chainId": 4201, - "networkId": 4201, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ] - }, - { - "name": "Nexi Mainnet", - "chain": "Nexi", - "icon": "nexi", - "rpc": [ - "https://rpc.chain.nexi.technology/", - "https://chain.nexilix.com", - "https://chain.nexi.evmnode.online" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nexi", - "symbol": "NEXI", - "decimals": 18 - }, - "infoURL": "https://www.nexi.technology/", - "shortName": "nexi", - "chainId": 4242, - "networkId": 4242, - "slip44": 2500, - "explorers": [ - { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MEVerse Chain Testnet", - "chain": "MEVerse", - "rpc": [ - "https://rpc.meversetestnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "TESTMEV", - "chainId": 4759, - "networkId": 4759, - "icon": "meverse", - "explorers": [ - { - "name": "MEVerse Chain Testnet Explorer", - "url": "https://testnet.meversescan.io", - "standard": "none", - "icon": "meverse" - } - ] - }, - { - "name": "Fastex Chain (Bahamut)", - "title": "Bahamut mainnet Sahara", - "chain": "Fastex Chain (Bahamut)", - "icon": "bahamut", - "rpc": [ - "https://rpc1.sahara.bahamutchain.com", - "https://rpc2.sahara.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "shortName": "ftn", - "infoURL": "https://fastexchain.com", - "chainId": 5165, - "networkId": 5165, - "explorers": [ - { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "SatoshiChain Testnet", - "chain": "SATS", - "icon": "satoshichain", - "rpc": [ - "https://testnet-rpc.satoshichain.io" - ], - "faucets": [ - "https://faucet.satoshichain.io" - ], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "satst", - "chainId": 5758, - "networkId": 5758, - "explorers": [ - { - "name": "SatoshiChain Testnet Explorer", - "url": "https://testnet.satoshiscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cascadia Testnet", - "chain": "Cascadia", - "rpc": [ - "https://testnet.cascadia.foundation" - ], - "faucets": [ - "https://www.cascadia.foundation/faucet" - ], - "nativeCurrency": { - "name": "CC", - "symbol": "tCC", - "decimals": 18 - }, - "infoURL": "https://www.cascadia.foundation", - "shortName": "cascadia", - "chainId": 6102, - "networkId": 6102, - "icon": "cascadia", - "explorers": [ - { - "name": "Cascadia EVM Explorer", - "url": "https://explorer.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - }, - { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - } - ] - }, - { - "name": "UPTN Testnet", - "chain": "UPTN", - "icon": "uptn", - "rpc": [ - "https://node-api.alp.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN-TEST", - "chainId": 6118, - "networkId": 6118, - "explorers": [ - { - "name": "UPTN Testnet Explorer", - "url": "https://testnet.explorer.uptn.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPTN", - "chain": "UPTN", - "icon": "uptn", - "rpc": [ - "https://node-api.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN", - "chainId": 6119, - "networkId": 6119, - "explorers": [ - { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Peerpay", - "chain": "P2P", - "rpc": [ - "https://peerpay.su.gy/p2p" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peerpay", - "symbol": "P2P", - "decimals": 18 - }, - "infoURL": "https://peerpay.su.gy", - "shortName": "Peerpay", - "chainId": 6502, - "networkId": 6502, - "explorers": [] - }, - { - "name": "Scolcoin WeiChain Testnet", - "chain": "SCOLWEI-testnet", - "rpc": [ - "https://testnet-rpc.scolcoin.com" - ], - "faucets": [ - "https://faucet.scolcoin.com" - ], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC-test", - "chainId": 6552, - "networkId": 6552, - "icon": "scolcoin", - "explorers": [ - { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fox Testnet Network", - "chain": "FOX", - "rpc": [ - "https://rpc-testnet-v1.foxchain.app/", - "https://rpc2-testnet-v1.foxchain.app/", - "https://rpc3-testnet-v1.foxchain.app" - ], - "faucets": [ - "https://faucet.foxchain.app" - ], - "nativeCurrency": { - "name": "FOX Native Token", - "symbol": "tFOX", - "decimals": 18 - }, - "infoURL": "https://foxchain.app", - "shortName": "fox", - "chainId": 6565, - "networkId": 6565, - "icon": "fox", - "explorers": [ - { - "name": "FOX Testnet Explorer", - "icon": "fox", - "url": "https://testnet.foxscan.app", - "standard": "none" - } - ] - }, - { - "name": "IRIShub", - "chain": "IRIShub", - "rpc": [ - "https://evmrpc.irishub-1.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "iris", - "chainId": 6688, - "networkId": 6688, - "icon": "irishub", - "explorers": [ - { - "name": "IRISHub Cosmos Explorer (IOBScan)", - "url": "https://irishub.iobscan.io", - "standard": "none", - "icon": "irishub" - } - ] - }, - { - "name": "Bitrock Mainnet", - "chain": "Bitrock", - "icon": "bitrock", - "rpc": [ - "https://connect.bit-rock.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "bitrock", - "chainId": 7171, - "networkId": 7171, - "explorers": [ - { - "name": "Bitrock Explorer", - "url": "https://scan.bit-rock.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "KLYNTAR", - "chain": "KLY", - "rpc": [ - "https://evm.klyntar.org/kly_evm_rpc", - "https://evm.klyntarscan.org/kly_evm_rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLYNTAR", - "symbol": "KLY", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://klyntar.org", - "shortName": "kly", - "chainId": 7331, - "networkId": 7331, - "icon": "klyntar", - "explorers": [], - "status": "incubating" - }, - { - "name": "Raba Network Mainnet", - "chain": "Raba", - "icon": "raba", - "rpc": [ - "https://rpc.x.raba.app/", - "wss://rpc.x.raba.app/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raba", - "symbol": "RABA", - "decimals": 18 - }, - "infoURL": "https://x.raba.app/", - "shortName": "raba", - "chainId": 7484, - "networkId": 7484, - "explorers": [ - { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" - } - ] - }, - { - "name": "MEVerse Chain Mainnet", - "chain": "MEVerse", - "rpc": [ - "https://rpc.meversemainnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "MEV", - "chainId": 7518, - "networkId": 7518, - "icon": "meverse", - "explorers": [ - { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": "meverse" - } - ] - }, - { - "name": "ADIL Testnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://testnet.adilchain-rpc.io" - ], - "faucets": [ - "https://testnet-faucet.adil-scan.io" - ], - "nativeCurrency": { - "name": "Testnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "tadil", - "chainId": 7575, - "networkId": 7575, - "explorers": [ - { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Adil Chain V2 Mainnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "adil", - "chainId": 7576, - "networkId": 7576, - "explorers": [ - { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "The Root Network - Mainnet", - "chain": "TRN", - "rpc": [ - "https://root.rootnet.live/archive", - "wss://root.rootnet.live/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-mainnet", - "chainId": 7668, - "networkId": 7668, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.live", - "standard": "EIP3091" - } - ] - }, - { - "name": "The Root Network - Porcini Testnet", - "chain": "TRN", - "rpc": [ - "https://porcini.rootnet.app/archive", - "wss://porcini.rootnet.app/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-porcini", - "chainId": 7672, - "networkId": 7672, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", - "standard": "EIP3091" - } - ] - }, - { - "name": "Canto Tesnet", - "chain": "Canto", - "rpc": [ - "https://testnet-archive.plexnode.wtf" - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "TestnetCanto", - "chainId": 7701, - "networkId": 7701, - "explorers": [ - { - "name": "Canto Testnet EVM Explorer (Blockscout)", - "url": "https://testnet.tuber.build", - "standard": "none" - } - ] - }, - { - "name": "Bitrock Testnet", - "chain": "Bitrock", - "icon": "bitrock", - "rpc": [ - "https://testnet.bit-rock.io" - ], - "faucets": [ - "https://faucet.bit-rock.io" - ], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "tbitrock", - "chainId": 7771, - "networkId": 7771, - "explorers": [ - { - "name": "Bitrock Testnet Explorer", - "url": "https://testnetscan.bit-rock.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ARDENIUM Athena", - "chain": "ATHENA", - "rpc": [ - "https://rpc-athena.ardescan.com/" - ], - "faucets": [ - "https://faucet-athena.ardescan.com/" - ], - "nativeCurrency": { - "name": "ARD", - "symbol": "tARD", - "decimals": 18 - }, - "infoURL": "https://ardenium.org", - "shortName": "ard", - "chainId": 7895, - "networkId": 7895, - "icon": "ard", - "explorers": [ - { - "name": "ARDENIUM Athena Explorer", - "icon": "ard", - "url": "https://testnet.ardscan.com", - "standard": "none" - } - ] - }, - { - "name": "DOS Chain", - "chain": "DOS", - "rpc": [ - "https://main.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "https://doschain.io", - "shortName": "dos", - "chainId": 7979, - "networkId": 7979, - "icon": "doschain", - "explorers": [ - { - "name": "DOScan", - "url": "https://doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } - ] - }, - { - "name": "BitEth", - "chain": "BTE", - "rpc": [ - "https://rpc.biteth.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitEth", - "symbol": "BTE", - "decimals": 18 - }, - "infoURL": "https://biteth.org", - "shortName": "BitEth", - "chainId": 8086, - "networkId": 8086, - "explorers": [] - }, - { - "name": "Qitmeer Network Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meermix", - "icon": "meer", - "chainId": 8132, - "networkId": 8132, - "status": "incubating" - }, - { - "name": "Qitmeer Network Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meerpriv", - "icon": "meer", - "chainId": 8133, - "networkId": 8133, - "status": "incubating" - }, - { - "name": "Amana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amana", - "icon": "meer", - "chainId": 8134, - "networkId": 8134, - "status": "incubating" - }, - { - "name": "Flana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flana", - "icon": "meer", - "chainId": 8135, - "networkId": 8135, - "status": "incubating" - }, - { - "name": "Mizana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizana", - "icon": "meer", - "chainId": 8136, - "networkId": 8136, - "status": "incubating" - }, - { - "name": "Dracones Financial Services", - "title": "The Dracones Mainnet", - "chain": "FUCK", - "rpc": [ - "https://api.dracones.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Functionally Universal Coin Kind", - "symbol": "FUCK", - "decimals": 18 - }, - "infoURL": "https://wolfery.com", - "shortName": "fuck", - "chainId": 8387, - "networkId": 8387, - "icon": "dracones", - "explorers": [] - }, - { - "name": "Neonlink Testnet", - "chain": "Neonlink", - "rpc": [ - "https://testnet.neonlink.io" - ], - "faucets": [ - "https://faucet.neonlink.io/" - ], - "nativeCurrency": { - "name": "Neonlink Native Token", - "symbol": "tNEON", - "decimals": 18 - }, - "infoURL": "https://neonlink.io", - "shortName": "testneon", - "chainId": 9559, - "networkId": 9559, - "icon": "neonlink", - "explorers": [ - { - "name": "Neon Blockchain Explorer", - "url": "https://testnet-scan.neonlink.io", - "standard": "EIP3091", - "icon": "neonlink" - } - ] - }, - { - "name": "PepeNetwork Mainnet", - "chain": "PepeNetwork", - "rpc": [ - "https://rpc-mainnet.pepenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pepe", - "symbol": "WPEPE", - "decimals": 18 - }, - "infoURL": "https://pepenetwork.io", - "shortName": "pn", - "chainId": 9779, - "networkId": 9779, - "icon": "pepenetwork", - "explorers": [ - { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": "pepenetwork", - "standard": "none" - } - ] - }, - { - "name": "Carbon EVM", - "chain": "Carbon", - "icon": "carbon", - "rpc": [ - "https://evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon", - "chainId": 9790, - "networkId": 9790, - "explorers": [] - }, - { - "name": "Carbon EVM Testnet", - "chain": "Carbon", - "icon": "carbon", - "rpc": [ - "https://test-evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon-testnet", - "chainId": 9792, - "networkId": 9792, - "explorers": [] - }, - { - "name": "AltLayer Testnet", - "chain": "ETH", - "rpc": [ - "https://testnet-rollup-api.altlayer.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-testnet", - "chainId": 9997, - "networkId": 9997, - "icon": "altlayer", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-rollup-explorer.altlayer.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "HashBit Mainnet", - "chain": "HBIT", - "rpc": [ - "https://mainnet-rpc.hashbit.org", - "https://rpc.hashbit.org" - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "nativeCurrency": { - "name": "HashBit Native Token", - "symbol": "HBIT", - "decimals": 18 - }, - "infoURL": "https://hashbit.org", - "shortName": "hbit", - "chainId": 11119, - "networkId": 11119, - "explorers": [ - { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SatoshiChain Mainnet", - "chain": "SATS", - "icon": "satoshichain", - "rpc": [ - "https://mainnet-rpc.satoshichain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "sats", - "chainId": 12009, - "networkId": 12009, - "explorers": [ - { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "BRC Chain Mainnet", - "chain": "BRC", - "rpc": [ - "https://rpc.brcchain.io" - ], - "faucets": [ - "https://faucet.brcchain.io" - ], - "nativeCurrency": { - "name": "BRC Chain mainnet native token", - "symbol": "BRC", - "decimals": 18 - }, - "infoURL": "https://bridge.brcchain.io", - "shortName": "BRC", - "chainId": 12123, - "networkId": 12123, - "icon": "brcchain", - "explorers": [ - { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fibonacci Mainnet", - "chain": "FIBO", - "icon": "fibonacci", - "rpc": [ - "https://node1.fibo-api.asia", - "https://node2.fibo-api.asia", - "https://node3.fibo-api.asia", - "https://node4.fibo-api.asia", - "https://node5.fibo-api.asia", - "https://node6.fibo-api.asia", - "https://node7.fibo-api.asia", - "https://node1.fibo-rpc.asia", - "https://node2.fibo-rpc.asia", - "https://node3.fibo-rpc.asia", - "https://node4.fibo-rpc.asia", - "https://node5.fibo-rpc.asia", - "https://node6.fibo-rpc.asia", - "https://node7.fibo-rpc.asia" - ], - "faucets": [ - "https://test.fibochain.org/faucets" - ], - "nativeCurrency": { - "name": "FIBONACCI UTILITY TOKEN", - "symbol": "FIBO", - "decimals": 18 - }, - "infoURL": "https://fibochain.org", - "shortName": "fibo", - "chainId": 12306, - "networkId": 1230, - "explorers": [ - { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rikeza Network Testnet", - "title": "Rikeza Network Testnet", - "chain": "Rikeza", - "icon": "rikeza", - "rpc": [ - "https://testnet-rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "tRIK", - "chainId": 12715, - "networkId": 12715, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LoopNetwork Mainnet", - "chain": "LoopNetwork", - "rpc": [ - "https://api.mainnetloop.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LOOP", - "symbol": "LOOP", - "decimals": 18 - }, - "infoURL": "http://theloopnetwork.org/", - "shortName": "loop", - "chainId": 15551, - "networkId": 15551, - "explorers": [ - { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" - } - ] - }, - { - "name": "EOS EVM Network Testnet", - "chain": "EOS", - "icon": "eos", - "rpc": [ - "https://api.testnet.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos-testnet", - "chainId": 15557, - "networkId": 15557, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.testnet.evm.eosnetwork.com" - } - ] - } - }, - { - "name": "Genesys Mainnet", - "chain": "Genesys", - "icon": "genesys", - "rpc": [ - "https://rpc.genesys.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Genesys", - "symbol": "GSYS", - "decimals": 18 - }, - "infoURL": "https://www.genesys.network/", - "shortName": "Genesys", - "chainId": 16507, - "networkId": 16507, - "explorers": [ - { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "IRIShub Testnet", - "chain": "IRIShub", - "rpc": [ - "https://evmrpc.nyancat.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "nyancat", - "chainId": 16688, - "networkId": 16688, - "icon": "nyancat", - "explorers": [ - { - "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", - "url": "https://nyancat.iobscan.io", - "standard": "none", - "icon": "nyancat" - } - ] - }, - { - "name": "Palette Chain Testnet", - "chain": "PLT", - "rpc": [ - "https://palette-opennet.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCT", - "chainId": 17180, - "networkId": 17180, - "icon": "PLT", - "explorers": [ - { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": "PLT", - "standard": "none" - } - ] - }, - { - "name": "EOS EVM Network", - "chain": "EOS", - "icon": "eos", - "rpc": [ - "https://api.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos", - "chainId": 17777, - "networkId": 17777, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.evm.eosnetwork.com" - }, - { - "url": "https://app.multichain.org" - } - ] - } - }, - { - "name": "MXC zkEVM Mainnet", - "chain": "MXC zkEVM", - "icon": "mxczkevm", - "rpc": [ - "https://rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC zkEVM Mainnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://doc.mxc.com/docs/intro", - "shortName": "MXCzkEVM", - "chainId": 18686, - "networkId": 18686, - "explorers": [ - { - "name": "MXC zkEVM Mainnet", - "url": "https://explorer.mxc.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Camelark Mainnet", - "chainId": 20001, - "shortName": "Camelark", - "chain": "ETHW", - "icon": "camelark", - "networkId": 20001, - "nativeCurrency": { - "name": "EthereumPoW", - "symbol": "ETHW", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-http-rpc.camelark.com" - ], - "faucets": [], - "explorers": [ - { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.camelark.com" - }, - { - "name": "Antofy Testnet", - "chain": "ABN", - "icon": "antofy", - "rpc": [ - "https://testnet-rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNt", - "chainId": 23006, - "networkId": 23006, - "explorers": [ - { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ferrum Testnet", - "chain": "tFRM", - "rpc": [ - "http://testnet.dev.svcs.ferrumnetwork.io:9933" - ], - "faucets": [ - "https://testnet.faucet.ferrumnetwork.io" - ], - "nativeCurrency": { - "name": "Ferrum", - "symbol": "tFRM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ferrum.network", - "shortName": "frm", - "chainId": 26026, - "networkId": 26026, - "explorers": [ - { - "name": "polkadotjs", - "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM", - "chain": "ZIL", - "rpc": [ - "https://api.zilliqa.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil", - "chainId": 32769, - "networkId": 32769, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM Testnet", - "chain": "ZIL", - "rpc": [ - "https://dev-api.zilliqa.com" - ], - "faucets": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-testnet", - "chainId": 33101, - "networkId": 33101, - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Opside Testnet Pre-Alpha", - "chain": "ETH", - "rpc": [ - "https://pre-alpha-us-http-geth.opside.network", - "https://pre-alpha-hk-http-geth.opside.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "IDE Test Token", - "symbol": "IDE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://opsi.de/", - "shortName": "Opside-Testnet", - "chainId": 51178, - "networkId": 51178, - "icon": "opside-new", - "explorers": [ - { - "name": "OpsideTestnetInfo", - "url": "https://pre-alpha.opside.info", - "icon": "opside-new", - "standard": "EIP3091" - } - ] - }, - { - "name": "Toronet Testnet", - "chain": "Toronet", - "icon": "toronet", - "rpc": [ - "http://testnet.toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "ToronetTestnet", - "chainId": 54321, - "networkId": 54321, - "ens": { - "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" - } - ] - }, - { - "name": "Titan", - "chain": "ETH", - "rpc": [ - "https://rpc.titan.tokamak.network", - "wss://rpc.titan.tokamak.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://tokamak.network", - "shortName": "teth", - "chainId": 55004, - "networkId": 55004, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rollux Testnet", - "chain": "SYS", - "rpc": [ - "https://rpc-tanenbaum.rollux.com", - "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", - "wss://rpc-tanenbaum.rollux.com/wss" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "TSYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "tsys-rollux", - "chainId": 57000, - "networkId": 57000, - "explorers": [ - { - "name": "Rollux Testnet Explorer", - "url": "https://rollux.tanenbaum.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sepolia PGN (Public Goods Network)", - "chain": "ETH", - "rpc": [ - "https://sepolia.publicgoods.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://publicgoods.network/", - "shortName": "sepPGN", - "chainId": 58008, - "networkId": 58008, - "icon": "publicGoodsNetwork", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://pgn-bridge.vercel.app/bridge" - } - ] - } - }, - { - "name": "Linea Testnet", - "title": "Linea Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.goerli.linea.build", - "wss://rpc.goerli.linea.build", - "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}" - ], - "faucets": [ - "https://faucetlink.to/goerli" - ], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea-testnet", - "chainId": 59140, - "networkId": 59140, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" - } - ] - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.goerli.linea.build", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "AxelChain Dev-Net", - "chain": "AXEL", - "rpc": [ - "https://aium-rpc-dev.viacube.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Axelium", - "symbol": "AIUM", - "decimals": 18 - }, - "infoURL": "https://www.axel.org", - "shortName": "aium-dev", - "chainId": 61800, - "networkId": 61800, - "icon": "axelium", - "explorers": [ - { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scolcoin Mainnet", - "chain": "SCOLWEI", - "rpc": [ - "https://mainnet-rpc.scolcoin.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC", - "chainId": 65450, - "networkId": 65450, - "icon": "scolcoin", - "explorers": [ - { - "name": "Scolscan Explorer", - "url": "https://explorer.scolcoin.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cosmic Chain", - "chain": "COSMIC", - "rpc": [ - "http://testnet.cosmicchain.site:3344" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cosmic Chain", - "symbol": "COSMIC", - "decimals": 18 - }, - "infoURL": "https://cosmicchain.site", - "shortName": "Cosmic", - "chainId": 67588, - "networkId": 3344 - }, - { - "name": "GuapcoinX", - "chain": "GuapcoinX", - "rpc": [ - "https://rpc-mainnet.guapcoinx.com/", - "https://rpc-mainnet-1.guapcoinx.com/", - "https://rpc-mainnet-2.guapcoinx.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GuapcoinX", - "symbol": "GuapX", - "decimals": 18 - }, - "infoURL": "https://guapcoin.org/", - "shortName": "GuapX", - "chainId": 71111, - "networkId": 71111, - "icon": "guapcoinx", - "explorers": [ - { - "name": "GuapcoinX Explorer", - "url": "http://explorer.guapcoinx.com", - "standard": "none", - "icon": "guapcoinx" - } - ] - }, - { - "name": "Toronet Mainnet", - "chain": "Toronet", - "icon": "toronet", - "rpc": [ - "http://toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "Toronet", - "chainId": 77777, - "networkId": 77777, - "ens": { - "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", - "standard": "none" - } - ] - }, - { - "name": "Dragonfly Mainnet (Hexapod)", - "chain": "Dragonfly", - "icon": "dragonfly", - "rpc": [ - "https://dragonfly-rpc.switch.ch", - "https://dragonfly-rpc.kore-technologies.ch", - "https://dragonfly-rpc.phoenix-systems.io", - "https://dragonfly-rpc.block-spirit.ch" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dragonfly", - "symbol": "DFLY", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "dfly", - "chainId": 78281, - "networkId": 78281, - "explorers": [ - { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanatest", - "icon": "meer", - "chainId": 81341, - "networkId": 81341, - "status": "incubating" - }, - { - "name": "Amana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanamix", - "icon": "meer", - "chainId": 81342, - "networkId": 81342, - "status": "incubating" - }, - { - "name": "Amana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanapriv", - "icon": "meer", - "chainId": 81343, - "networkId": 81343, - "status": "incubating" - }, - { - "name": "Flana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanatest", - "icon": "meer", - "chainId": 81351, - "networkId": 81351, - "status": "incubating" - }, - { - "name": "Flana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanamix", - "icon": "meer", - "chainId": 81352, - "networkId": 81352, - "status": "incubating" - }, - { - "name": "Flana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanapriv", - "icon": "meer", - "chainId": 81353, - "networkId": 81353, - "status": "incubating" - }, - { - "name": "Mizana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanatest", - "icon": "meer", - "chainId": 81361, - "networkId": 81361, - "status": "incubating" - }, - { - "name": "Mizana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanamix", - "icon": "meer", - "chainId": 81362, - "networkId": 81362, - "status": "incubating" - }, - { - "name": "Mizana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanapriv", - "icon": "meer", - "chainId": 81363, - "networkId": 81363, - "status": "incubating" - }, - { - "name": "CYBERTRUST", - "chain": "CYBER", - "rpc": [ - "http://testnet.cybertrust.space:48501" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyber Trust", - "symbol": "CYBER", - "decimals": 18 - }, - "infoURL": "https://cybertrust.space", - "shortName": "Cyber", - "chainId": 85449, - "networkId": 48501 - }, - { - "name": "Nautilus Chain", - "title": "Nautilus Trition Testnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://triton.api.nautchain.xyz" - ], - "faucets": [ - "https://faucet.eclipse.builders" - ], - "nativeCurrency": { - "name": "Nautilus Zebec Testnet Tokens", - "symbol": "tZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUT", - "chainId": 91002, - "networkId": 91002, - "explorers": [ - { - "name": "Nautscan", - "url": "https://triton.nautscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantis Testnet (Hexapod)", - "chain": "Mantis", - "icon": "mantis", - "rpc": [ - "https://mantis-rpc.switch.ch", - "https://mantis-rpc.kore-technologies.ch", - "https://mantis-rpc.phoenix-systems.io" - ], - "faucets": [ - "https://mantis.switch.ch/faucet", - "https://mantis.kore-technologies.ch/faucet", - "https://mantis.phoenix-systems.io/faucet", - "https://mantis.block-spirit.ch/faucet" - ], - "nativeCurrency": { - "name": "Mantis", - "symbol": "MANTIS", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "mantis", - "chainId": 96970, - "networkId": 96970, - "explorers": [ - { - "name": "Mantis Blockscout", - "url": "https://blockscout.mantis.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Siberium Test Network", - "chain": "SBR", - "rpc": [ - "https://rpc.test.siberium.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "TestSIBR", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "testsbr", - "chainId": 111000, - "networkId": 111000, - "icon": "siberium", - "explorers": [ - { - "name": "Siberium Testnet Explorer - blockscout", - "url": "https://explorer.test.siberium.net", - "icon": "siberium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Siberium Network", - "chain": "SBR", - "rpc": [ - "https://rpc.main.siberium.net", - "https://rpc.main.siberium.net.ru" - ], - "faucets": [], - "nativeCurrency": { - "name": "Siberium", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "sbr", - "chainId": 111111, - "networkId": 111111, - "icon": "siberium", - "explorers": [ - { - "name": "Siberium Mainnet Explorer - blockscout - 1", - "url": "https://explorer.main.siberium.net", - "icon": "siberium", - "standard": "EIP3091" - }, - { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": "siberium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metachain One Mainnet", - "chain": "METAO", - "icon": "metao", - "rpc": [ - "https://rpc.metachain.one", - "https://rpc2.metachain.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metao", - "symbol": "METAO", - "decimals": 18 - }, - "infoURL": "https://metachain.one", - "shortName": "metao", - "chainId": 112358, - "networkId": 112358, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ADIL Devnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://devnet.adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Devnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "dadil", - "chainId": 123456, - "networkId": 123456, - "explorers": [ - { - "name": "ADIL Devnet Explorer", - "url": "https://devnet.adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICPlaza Mainnet", - "chain": "ICPlaza", - "icon": "icplaza", - "rpc": [ - "https://rpcmainnet.ic-plaza.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ict", - "symbol": "ict", - "decimals": 18 - }, - "infoURL": "https://docs.ic-plaza.org/", - "shortName": "ICPlaza", - "chainId": 142857, - "networkId": 142857, - "explorers": [ - { - "name": "ICPlaza", - "url": "https://browsemainnet.ic-plaza.org/index", - "standard": "none" - } - ] - }, - { - "name": "Taf ECO Chain Mainnet", - "chain": "Taf ECO Chain", - "icon": "taf", - "rpc": [ - "https://mainnet.tafchain.com/v1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Taf ECO Chain Mainnet", - "symbol": "TAFECO", - "decimals": 18 - }, - "infoURL": "https://www.tafchain.com", - "shortName": "TAFECO", - "chainId": 224168, - "networkId": 224168, - "explorers": [ - { - "name": "Taf ECO Chain Mainnet", - "url": "https://ecoscan.tafchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HashKey Chain Testnet", - "chain": "HashKey", - "rpc": [ - "https://testnet.hashkeychain/rpc" - ], - "faucets": [ - "https://testnet.hashkeychain/faucet" - ], - "nativeCurrency": { - "name": "HashKey Token", - "symbol": "tHSK", - "decimals": 18 - }, - "infoURL": "https://www.hashkey.com", - "shortName": "hsktest", - "chainId": 230315, - "networkId": 230315, - "icon": "hsk", - "explorers": [ - { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", - "standard": "none" - } - ] - }, - { - "name": "EgonCoin Testnet", - "chain": "EGON", - "icon": "egonicon", - "rpc": [ - "https://rpctest.egcscan.com" - ], - "faucets": [ - "https://faucet.egcscan.com" - ], - "nativeCurrency": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 - }, - "infoURL": "https://egcscan.com", - "shortName": "EGONt", - "chainId": 271271, - "networkId": 271271, - "explorers": [ - { - "name": "EgonCoin Testnet", - "url": "https://testnet.egcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TTcoin Smart Chain Mainnet", - "chain": "TSC", - "icon": "tscscan", - "rpc": [ - "https://mainnet-rpc.tscscan.com" - ], - "faucets": [ - "https://faucet.tscscan.com" - ], - "nativeCurrency": { - "name": "TTcoin", - "symbol": "TC", - "decimals": 18 - }, - "infoURL": "https://ttcoin.info/", - "shortName": "tc", - "chainId": 330844, - "networkId": 330844, - "explorers": [ - { - "name": "TTcoin Smart Chain Explorer", - "url": "https://tscscan.com", - "standard": "EIP3091", - "icon": "tscscan" - } - ] - }, - { - "name": "Aves Testnet", - "chain": "AVST", - "rpc": [ - "https://test.rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AvesT", - "symbol": "AVST", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ethereum.org", - "shortName": "avst", - "chainId": 333331, - "networkId": 333331, - "icon": "aves", - "explorers": [ - { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": "avescan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitfinity Network Testnet", - "chain": "BFT", - "rpc": [ - "https://testnet.bitfinity.network" - ], - "faucets": [ - "https://bitfinity.network/faucet" - ], - "nativeCurrency": { - "name": "BITFINITY", - "symbol": "BFT", - "decimals": 18 - }, - "infoURL": "https://bitfinity.network", - "shortName": "Bitfinity", - "chainId": 355113, - "networkId": 355113, - "explorers": [ - { - "name": "Bitfinity Block Explorer", - "url": "https://explorer.bitfinity.network", - "icon": "bitfinity", - "standard": "EIP3091" - } - ] - }, - { - "name": "HAPchain Testnet", - "chain": "HAPchain", - "rpc": [ - "https://jsonrpc-test.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap-testnet", - "chainId": 373737, - "networkId": 373737, - "icon": "hap", - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout-test.hap.land", - "standard": "none", - "icon": "hap" - } - ] - }, - { - "name": "Tipboxcoin Mainnet", - "chain": "TPBX", - "icon": "tipboxcoinIcon", - "rpc": [ - "https://mainnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXm", - "chainId": 404040, - "networkId": 404040, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Markr Go", - "chain": "Unified", - "icon": "markrgo", - "rpc": [ - "https://rpc.markr.io/ext/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "infoURL": "https://www.markr.io/", - "shortName": "markr-go", - "chainId": 431140, - "networkId": 431140, - "explorers": [], - "status": "incubating" - }, - { - "name": "Patex Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://test-rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://patex.io/", - "shortName": "psep", - "chainId": 471100, - "networkId": 471100 - }, - { - "name": "Scroll Sepolia Testnet", - "chain": "ETH", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-sepolia", - "chainId": 534351, - "networkId": 534351, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "Shinarium Beta", - "chain": "Shinarium", - "rpc": [ - "https://rpc.shinarium.org" - ], - "faucets": [ - "https://faucet.shinarium.org" - ], - "nativeCurrency": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 - }, - "infoURL": "https://shinarium.org", - "shortName": "shi", - "chainId": 534849, - "networkId": 534849, - "explorers": [ - { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "BeanEco SmartChain", - "title": "BESC Mainnet", - "chain": "BESC", - "rpc": [ - "https://mainnet-rpc.bescscan.io" - ], - "faucets": [ - "faucet.bescscan.ion" - ], - "nativeCurrency": { - "name": "BeanEco SmartChain", - "symbol": "BESC", - "decimals": 18 - }, - "infoURL": "besceco.finance", - "shortName": "BESC", - "chainId": 535037, - "networkId": 535037, - "explorers": [ - { - "name": "bescscan", - "url": "https://Bescscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ALL Mainnet", - "chain": "ALL", - "icon": "alltra", - "rpc": [ - "https://mainnet-rpc.alltra.global" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALL", - "symbol": "ALL", - "decimals": 18 - }, - "infoURL": "https://alltra.world", - "shortName": "ALL", - "chainId": 651940, - "networkId": 651940, - "explorers": [ - { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", - "standard": "EIP3091" - } - ] - }, - { - "name": "CURVE Mainnet", - "chain": "CURVE", - "icon": "curveIcon", - "rpc": [ - "https://mainnet-rpc.curvescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Curve", - "symbol": "CURVE", - "decimals": 18 - }, - "infoURL": "https://curvescan.io", - "shortName": "CURVEm", - "chainId": 827431, - "networkId": 827431, - "explorers": [ - { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AltLayer Zero Gas Network", - "chain": "ETH", - "rpc": [ - "https://zero.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-zerogas", - "chainId": 4000003, - "networkId": 4000003, - "icon": "altlayer", - "explorers": [ - { - "name": "blockscout", - "url": "https://zero-explorer.alt.technology", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Worlds Caldera", - "chain": "WCal", - "rpc": [ - "https://worlds-test.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://caldera.xyz/", - "shortName": "worldscal", - "chainId": 4281033, - "networkId": 4281033, - "icon": "ethereum", - "explorers": [] - }, - { - "name": "MXC Wannsee zkEVM Testnet", - "chain": "MXC zkEVM", - "icon": "mxc", - "rpc": [ - "https://wannsee-rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC Wannsee zkEVM Testnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://wannsee.mxc.com/docs/intro", - "shortName": "MXC", - "chainId": 5167003, - "networkId": 5167003, - "explorers": [ - { - "name": "MXC Wannsee zkEVM Testnet", - "url": "https://wannsee-explorer.mxc.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HAPchain", - "chain": "HAPchain", - "rpc": [ - "https://jsonrpc.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap", - "chainId": 8794598, - "networkId": 8794598, - "icon": "hap", - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout.hap.land", - "standard": "none", - "icon": "hap" - } - ] - }, - { - "name": "Quarix Testnet", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix-testnet", - "chainId": 8888881, - "networkId": 8888881, - "icon": "quarix", - "explorers": [] - }, - { - "name": "Quarix", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix", - "chainId": 8888888, - "networkId": 8888888, - "icon": "quarix", - "explorers": [] - }, - { - "name": "T.E.A.M Blockchain", - "chain": "TEAM", - "icon": "team", - "rpc": [ - "https://rpc.teamblockchain.team" - ], - "faucets": [], - "nativeCurrency": { - "name": "TEAM", - "symbol": "$TEAM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://teamblockchain.team", - "shortName": "team", - "chainId": 88888888, - "networkId": 88888888, - "explorers": [ - { - "name": "teamscan", - "url": "https://teamblockchain.team", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kanazawa", - "title": "Meld Testnet Kanazawa", - "chain": "Kanazawa", - "rpc": [ - "https://subnets.avax.network/meld/testnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": "meld", - "infoURL": "https://meld.com", - "shortName": "kanazawa", - "chainId": 222000222, - "networkId": 222000222, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/meld", - "icon": "meld", - "standard": "EIP3091" - } - ] - }, - { - "name": "Razor Skale Chain", - "chain": "Razor Schain", - "icon": "razornetwork", - "rpc": [ - "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" - ], - "faucets": [ - "https://faucet.razorscan.io/" - ], - "nativeCurrency": { - "name": "sFuel", - "symbol": "SFUEL", - "decimals": 18 - }, - "infoURL": "https://razor.network", - "shortName": "razor", - "chainId": 278611351, - "networkId": 278611351, - "explorers": [ - { - "name": "turbulent-unique-scheat", - "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Meld", - "title": "Meld Mainnet", - "chain": "MELD", - "rpc": [ - "https://subnets.avax.network/meld/mainnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": "meld", - "infoURL": "https://meld.com", - "shortName": "meld", - "chainId": 333000333, - "networkId": 333000333, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "icon": "meld", - "standard": "EIP3091" - } - ] - }, - { - "name": "CyberdeckNet", - "chain": "cyberdeck", - "rpc": [ - "http://cybeth1.cyberdeck.eu:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyb", - "symbol": "CYB", - "decimals": 18 - }, - "infoURL": "https://cyberdeck.eu", - "shortName": "cyb", - "chainId": 1146703430, - "networkId": 1146703430, - "icon": "cyberdeck", - "status": "active", - "explorers": [ - { - "name": "CybEthExplorer", - "url": "http://cybeth1.cyberdeck.eu:8000", - "icon": "cyberdeck", - "standard": "none" - } - ] - }, - { - "name": "HUMAN Protocol", - "title": "HUMAN Protocol", - "chain": "wan-red-ain", - "rpc": [ - "https://mainnet.skalenodes.com/v1/wan-red-ain" - ], - "faucets": [ - "https://dashboard.humanprotocol.org/faucet" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://www.humanprotocol.org", - "shortName": "human-mainnet", - "chainId": 1273227453, - "networkId": 1273227453, - "explorers": [ - { - "name": "Blockscout", - "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", - "icon": "human", - "standard": "EIP3091" - } - ] - }, - { - "name": "Chaos (SKALE Testnet)", - "title": "Chaos Testnet", - "chain": "staging-fast-active-bellatrix", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" - ], - "faucets": [ - "https://sfuel.skale.network/staging/chaos" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://docs.skale.network/develop/", - "shortName": "chaos-tenet", - "chainId": 1351057110, - "networkId": 1351057110, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", - "icon": "chaos", - "standard": "EIP3091" - } - ] - }, - { - "name": "RaptorChain", - "chain": "RPTR", - "rpc": [ - "https://rpc.raptorchain.io/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raptor", - "symbol": "RPTR", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://raptorchain.io", - "shortName": "rptr", - "chainId": 1380996178, - "networkId": 1380996178, - "icon": "raptorchain", - "explorers": [ - { - "name": "RaptorChain Explorer", - "url": "https://explorer.raptorchain.io", - "icon": "raptorchain_explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alphabet Mainnet", - "chain": "Alphabet Network", - "icon": "alphabetnetwork", - "rpc": [ - "https://londonpublic.alphabetnetwork.org", - "wss://londonpublic.alphabetnetwork.org/ws/", - "https://main-rpc.com", - "wss://main-rpc.com/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALT", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://alphabetnetwork.org", - "shortName": "alphabet", - "chainId": 111222333444, - "networkId": 111222333444, - "explorers": [ - { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ethereum Express", - "chainId": 8957, - "shortName": "ETE", - "chain": "ETE", - "network": "mainnet", - "networkId": 8957, - "nativeCurrency": { - "name": "ETE", - "symbol": "ETE", - "decimals": 18 - }, - "rpc": [ - "https://www.etescan.net/rpc", - "https://www.etelondon.com/rpc", - "https://test.uaechain.net/rpc", - "https://rpc.web3russia.org/ete", - "https://www.etecanada.com/rpc", - "https://node.brazildao.biz/ete", - "https://ete.indiaio.net/fast", - "https://ete.auhacker.xyz/data", - "https://service.saalliance.net/ete" - ], - "faucets": [], - "infoURL": "https://www.ethereumexpress.net", - "app_resource": { - "ic_chain_select": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/select.png", - "ic_chain_unselect": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/unselect.png", - "color_chain_bg": "0x013162" - } - }, - { - "name": "Pink Chain", - "chainId": 9801, - "shortName": "pink", - "chain": "Pink", - "network": "mainnet", - "networkId": 9801, - "nativeCurrency": { - "name": "Pink Coin", - "symbol": "PKB", - "decimals": 18 - }, - "rpc": [ - "https://pinkchain.co/", - "https://rpc1.pinkchain.co/", - "https://rpc2.pinkchain.co/" - ], - "faucets": [], - "infoURL": "https://pink-chain.com/", - "app_resource": { - "ic_chain_select": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275871180-28ecbadd98de7c6db5ea578a380e4468.png", - "ic_chain_unselect": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275894734-6f8825a9413b793fe9462b093fb3c906.png", - "color_chain_bg": "0xf95192" - } - }, - { - "name": "Worldland Mainnet", - "chain": "Worldland", - "icon": "worldland", - "rpc": [ - "https://seoul.worldland.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Worldland", - "symbol": "WL", - "decimals": 18 - }, - "infoURL": "https://worldland.foundation", - "shortName": "WLC", - "chainId": 103, - "networkId": 103, - "explorers": [ - { - "name": "Worldland Explorer", - "url": "https://scan.worldland.foundation", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shibarium", - "chain": "Shibarium", - "icon": "shibarium", - "rpc": [ - "https://www.shibrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BONE Shibarium", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://shibariumecosystem.com", - "shortName": "shibariumecosystem", - "chainId": 109, - "networkId": 109, - "explorers": [ - { - "name": "shibariumscan", - "url": "https://www.shibariumscan.io", - "standard": "none" - } - ] - }, - { - "name": "ShimmerEVM Mainnet", - "title": "ShimmerEVM Mainnet", - "chain": "ShimmerEVM", - "rpc": [ - "https://json-rpc.evm.shimmer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-mainnet", - "chainId": 148, - "networkId": 148, - "icon": "shimmerevm", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.shimmer.network", - "icon": "shimmerevm", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redbelly Network Mainnet", - "shortName": "rbn", - "chain": "RBN", - "chainId": 151, - "networkId": 151, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network Devnet", - "shortName": "rbn-devnet", - "chain": "RBN", - "chainId": 152, - "networkId": 152, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network Testnet", - "shortName": "rbn-testnet", - "chain": "RBN", - "chainId": 153, - "networkId": 153, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network TGE", - "shortName": "rbn-tge", - "chain": "RBN", - "chainId": 154, - "networkId": 154, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - } - }, - { - "name": "Manta Pacific Mainnet", - "chain": "Manta Pacific", - "rpc": [ - "https://pacific-rpc.manta.network/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://pacific-info.manta.network", - "shortName": "manta", - "chainId": 169, - "networkId": 169, - "icon": "manta", - "explorers": [ - { - "name": "manta-pacific Explorer", - "url": "https://pacific-explorer.manta.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitchain Mainnet", - "chain": "Bit", - "rpc": [ - "https://rpc.bitchain.biz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bitchain.biz/", - "shortName": "bit", - "chainId": 198, - "networkId": 198, - "explorers": [ - { - "name": "Bitchain Scan", - "url": "https://explorer.bitchain.biz", - "standard": "EIP3091" - } - ] - }, - { - "name": "opBNB Mainnet", - "icon": "bnbchain", - "chain": "opBNB", - "rpc": [ - "https://opbnb-mainnet-rpc.bnbchain.org", - "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", - "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", - "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "https://opbnb.publicnode.com", - "wss://opbnb.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://opbnb.bnbchain.org/en", - "shortName": "obnb", - "chainId": 204, - "networkId": 204, - "slip44": 714, - "explorers": [ - { - "name": "opbnbscan", - "url": "https://mainnet.opbnbscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "VinuChain Testnet", - "chain": "VinuChain Testnet", - "rpc": [ - "https://vinufoundation-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VinuChain", - "symbol": "VС", - "decimals": 18 - }, - "infoURL": "https://vitainu.org", - "shortName": "VCTEST", - "chainId": 206, - "networkId": 206, - "icon": "vitainu-testnet", - "explorers": [ - { - "name": "VinuScan Testnet", - "url": "https://testnet.vinuscan.com", - "icon": "vinuscan-testnet", - "standard": "none" - } - ] - }, - { - "name": "VinuChain Network", - "chain": "VinuChain", - "rpc": [ - "https://vinuchain-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VinuChain", - "symbol": "VС", - "decimals": 18 - }, - "infoURL": "https://vitainu.org", - "shortName": "VC", - "chainId": 207, - "networkId": 207, - "icon": "vitainu", - "explorers": [ - { - "name": "VinuScan", - "url": "https://vinuscan.com", - "icon": "vinuscan", - "standard": "none" - } - ] - }, - { - "name": "Bitnet", - "chain": "BTN", - "icon": "bitnet", - "rpc": [ - "https://rpc.bitnet.money", - "https://rpc.btnscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitnet", - "symbol": "BTN", - "decimals": 18 - }, - "infoURL": "https://bitnet.money", - "shortName": "BTN", - "chainId": 210, - "networkId": 210, - "explorers": [ - { - "name": "Bitnet Explorer", - "url": "https://btnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shinarium Mainnet", - "chain": "Shinarium", - "icon": "shinarium", - "rpc": [ - "https://mainnet.shinarium.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 - }, - "infoURL": "https://shinarium.org", - "shortName": "shinarium", - "chainId": 214, - "networkId": 214, - "explorers": [ - { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kroma", - "chain": "ETH", - "rpc": [ - "https://api.kroma.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kroma.network", - "icon": "kroma", - "shortName": "kroma", - "chainId": 255, - "networkId": 255, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.kroma.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - } - }, - { - "name": "Orderly Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.orderly.network", - "https://l2-orderly-mainnet-0.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "www.orderly.network", - "shortName": "orderly", - "chainId": 291, - "networkId": 291, - "icon": "orderly", - "explorers": [ - { - "name": "orderlyscout", - "url": "https://explorer.orderly.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Wyzth Testnet", - "chain": "WYZ", - "rpc": [ - "https://rpc-testnet3.wyzthchain.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Wyzth", - "symbol": "WYZ", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://wyzth.org/", - "shortName": "wyz", - "chainId": 309, - "networkId": 309, - "icon": "wyzth_icon", - "explorers": [ - { - "name": "wyzth", - "url": "http://24.199.108.65:4000", - "icon": "wyzth", - "standard": "EIP3091" - } - ] - }, - { - "name": "Yooldo Verse Mainnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVM", - "chainId": 345, - "networkId": 345, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Nativ3 Mainnet", - "chainId": 399, - "shortName": "N3", - "chain": "Nativ3", - "icon": "nativ3", - "networkId": 399, - "nativeCurrency": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 - }, - "rpc": [ - "https://rpc.nativ3.network", - "wss://ws.nativ3.network" - ], - "faucets": [], - "explorers": [ - { - "name": "N3scan", - "url": "https://scan.nativ3.network", - "standard": "EIP3091" - } - ], - "infoURL": "https://nativ3.network", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.nativ3.network" - } - ] - } - }, - { - "name": "Pepe Chain Mainnet", - "chain": "PC", - "status": "active", - "icon": "pepechain", - "rpc": [ - "https://rpc.pepe-chain.vip" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pepe", - "symbol": "PEPE", - "decimals": 18 - }, - "infoURL": "https://pepe-chain.vip", - "shortName": "pepe", - "chainId": 411, - "networkId": 411, - "explorers": [ - { - "name": "pepechain explorer", - "url": "https://explorer.pepe-chain.vip", - "standard": "EIP3091" - } - ] - }, - { - "name": "Geso Verse", - "chain": "Geso Verse", - "rpc": [ - "https://rpc.verse.gesoten.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://gesoten.com/", - "shortName": "GSV", - "icon": "gesoten", - "chainId": 428, - "networkId": 428, - "explorers": [ - { - "name": "Geso Verse Explorer", - "url": "https://explorer.verse.gesoten.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Obscuro Testnet", - "title": "Obscuro Sepolia Rollup Testnet", - "chainId": 443, - "shortName": "obs-testnet", - "chain": "ETH", - "networkId": 443, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://testnet.obscu.ro" - ], - "faucets": [], - "infoURL": "https://obscu.ro", - "explorers": [ - { - "name": "Obscuro Sepolia Rollup Explorer", - "url": "https://testnet.obscuroscan.io", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.obscu.ro" - } - ] - } - }, - { - "name": "Areon Network Testnet", - "chain": "Areon", - "icon": "areon", - "rpc": [ - "https://testnet-rpc.areon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Areon", - "symbol": "TAREA", - "decimals": 18 - }, - "infoURL": "https://areon.network", - "shortName": "tarea", - "chainId": 462, - "networkId": 462, - "explorers": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } - ] - }, - { - "name": "Areon Network Mainnet", - "chain": "Areon", - "icon": "areon", - "rpc": [ - "https://mainnet-rpc.areon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Areon", - "symbol": "AREA", - "decimals": 18 - }, - "infoURL": "https://areon.network", - "shortName": "area", - "chainId": 463, - "networkId": 463, - "explorers": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } - ] - }, - { - "name": "PAWCHAIN Testnet", - "chain": "PAW", - "rpc": [ - "https://pawchainx.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAW", - "symbol": "PAW", - "decimals": 18 - }, - "infoURL": "https://pawchainx.com/", - "shortName": "PAW", - "chainId": 542, - "networkId": 542, - "explorers": [ - { - "name": "PAWCHAIN Testnet", - "url": "https://pawscan.io", - "standard": "none" - } - ] - }, - { - "name": "PEER Testnet", - "chain": "PEER", - "rpc": [ - "http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com" - ], - "faucets": [ - "https://testnet.peer.inc" - ], - "nativeCurrency": { - "name": "PEER Token", - "symbol": "PEER", - "decimals": 18 - }, - "infoURL": "https://peer.inc", - "shortName": "PEER", - "chainId": 601, - "networkId": 601, - "icon": "peer", - "explorers": [ - { - "name": "PEER Explorer", - "url": "https://testnet.peer.inc", - "standard": "none", - "icon": "peer" - } - ] - }, - { - "name": "Kalichain Mainnet", - "chain": "Kalichain", - "rpc": [ - "https://rpc.kalichain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 - }, - "infoURL": "https://kalichain.com", - "shortName": "kalichain", - "chainId": 653, - "networkId": 653, - "explorers": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LAOS Arrakis", - "title": "LAOS Testnet Arrakis", - "chain": "LAOS", - "icon": "laos", - "rpc": [ - "https://arrakis.gorengine.com/own", - "wss://arrakis.gorengine.com/own" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAOS", - "symbol": "LAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "laos", - "chainId": 667, - "networkId": 667, - "explorers": [ - { - "name": "blockscout", - "url": "https://arrakis.gorengine.com", - "icon": "laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "JuncaChain", - "chain": "JuncaChain", - "rpc": [ - "https://rpc.juncachain.com" - ], - "nativeCurrency": { - "name": "JuncaChain Native Token", - "symbol": "JGC", - "decimals": 18 - }, - "faucets": [], - "infoURL": "https://junca-cash.world", - "shortName": "junca", - "chainId": 668, - "networkId": 668, - "explorers": [ - { - "name": "JuncaScan", - "url": "https://scan.juncachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "JuncaChain testnet", - "chain": "JuncaChain testnet", - "rpc": [ - "https://rpc-testnet.juncachain.com", - "wss://ws-testnet.juncachain.com" - ], - "faucets": [ - "https://faucet-testnet.juncachain.com" - ], - "nativeCurrency": { - "name": "JuncaChain Testnet Native Token", - "symbol": "JGCT", - "decimals": 18 - }, - "infoURL": "https://junca-cash.world", - "shortName": "juncat", - "chainId": 669, - "networkId": 669, - "explorers": [ - { - "name": "JuncaScan", - "url": "https://scan-testnet.juncachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Highbury", - "chain": "HIGHBURY", - "rpc": [ - "https://highbury.furya.io", - "https://rest.furya.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Fury", - "symbol": "FURY", - "decimals": 18 - }, - "infoURL": "https://www.fury.black", - "shortName": "fury", - "chainId": 710, - "networkId": 710, - "icon": "highbury", - "explorers": [ - { - "name": "Furya EVM Explorer", - "url": "https://explorer.furya.io", - "standard": "EIP3091", - "icon": "highbury" - } - ] - }, - { - "name": "Blucrates", - "chain": "BLU", - "rpc": [ - "https://data.bluchain.pro" - ], - "faucets": [], - "nativeCurrency": { - "name": "Blucrates", - "symbol": "BLU", - "decimals": 18 - }, - "infoURL": "https://www.blucrates.com", - "shortName": "blu", - "chainId": 727, - "networkId": 727, - "slip44": 727 - }, - { - "name": "Script Testnet", - "chain": "SPAY", - "rpc": [ - "https://testeth-rpc-api.script.tv/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Script", - "symbol": "SPAY", - "decimals": 18 - }, - "infoURL": "https://token.script.tv", - "shortName": "SPAY", - "chainId": 742, - "networkId": 742, - "explorers": [ - { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } - ] - }, - { - "name": "Mode Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.mode.network" - ], - "faucets": [ - "https://sepoliafaucet.com/" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.mode.network/", - "shortName": "modesep", - "chainId": 919, - "networkId": 919, - "icon": "modeTestnet", - "explorers": [ - { - "name": "modescout", - "url": "https://sepolia.explorer.mode.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.mode.network/" - } - ] - } - }, - { - "name": "Yidark Chain Mainnet", - "chain": "Yidark", - "icon": "ydk", - "rpc": [ - "https://rpc.yidark.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Yidark", - "symbol": "YDK", - "decimals": 18 - }, - "infoURL": "https://yidarkscan.com", - "shortName": "ydk", - "chainId": 927, - "networkId": 927, - "explorers": [ - { - "name": "Yidarkscan", - "url": "https://yidarkscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BTC20 Smart Chain", - "chain": "BTC20", - "rpc": [ - "https://rpc.bitcoincode.technology/" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "BTCC", - "symbol": "BTCC", - "decimals": 18 - }, - "infoURL": "https://bitcoincode.technology", - "shortName": "btc20", - "chainId": 963, - "networkId": 963, - "icon": "btc20", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.bitcoincode.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "eLiberty Mainnet", - "chain": "$EL", - "icon": "eLiberty", - "rpc": [ - "https://rpc.eliberty.ngo" - ], - "faucets": [ - "https://faucet.eliberty.ngo" - ], - "nativeCurrency": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 - }, - "infoURL": "https://eliberty.ngo", - "shortName": "ELm", - "chainId": 990, - "networkId": 990, - "explorers": [ - { - "name": "eLiberty Mainnet", - "url": "https://explorer.eliberty.ngo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tectum Emission Token", - "chain": "TET", - "rpc": [ - "https://rpc.softnote.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tectum", - "symbol": "TET", - "decimals": 8 - }, - "infoURL": "https://softnote.com", - "shortName": "tet", - "chainId": 1003, - "networkId": 1003, - "explorers": [ - { - "name": "Tectum explorer", - "url": "https://explorer.tectum.io", - "icon": "Tettoken256", - "standard": "EIP3091" - } - ] - }, - { - "name": "ShimmerEVM Testnet", - "title": "ShimmerEVM Testnet", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [ - "https://json-rpc.evm.testnet.shimmer.network" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 6 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet", - "chainId": 1073, - "networkId": 1073, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mintara Mainnet", - "title": "Mintara Mainnet", - "chain": "Mintara", - "icon": "mintara", - "rpc": [ - "https://subnets.avax.network/mintara/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 - }, - "infoURL": "https://playthink.co.jp", - "shortName": "mintara", - "chainId": 1080, - "networkId": 1080, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/mintara", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humans.ai Mainnet", - "chain": "Humans", - "rpc": [ - "https://jsonrpc.humans.nodestake.top", - "https://humans-mainnet-evm.itrocket.net:443", - "https://humans-evm-rpc.staketab.org:443", - "https://evm.humans.stakepool.dev.br", - "https://mainnet-humans-evm.konsortech.xyz", - "https://evm-rpc.mainnet.humans.zone" - ], - "faucets": [], - "nativeCurrency": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://humans.ai", - "shortName": "humans", - "chainId": 1089, - "networkId": 1089, - "icon": "humans-dark", - "explorers": [ - { - "name": "explorer.guru", - "url": "https://humans.explorers.guru", - "icon": "humans", - "standard": "none" - } - ] - }, - { - "name": "BLXq Testnet", - "chain": "BLXQ", - "icon": "blxq", - "rpc": [ - "https://testnetq1.blx.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 - }, - "infoURL": "https://blx.org", - "shortName": "tblxq", - "chainId": 1107, - "networkId": 1107, - "explorers": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blx.org", - "icon": "blxq", - "standard": "none" - } - ] - }, - { - "name": "BLXq Mainnet", - "chain": "BLXQ", - "icon": "blxq", - "rpc": [ - "https://mainnet.blxq.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 - }, - "infoURL": "https://blx.org", - "shortName": "blxq", - "chainId": 1108, - "networkId": 1108, - "explorers": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blxq.org", - "icon": "blxq", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiMetaChain", - "icon": "changi", - "chain": "DFI", - "rpc": [ - "https://testnet-dmc.mydefichain.com:20551" - ], - "faucets": [ - "http://tc04.mydefichain.com/faucet" - ], - "nativeCurrency": { - "name": "DeFiChain Token", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://defichain.com", - "shortName": "changi", - "chainId": 1133, - "networkId": 1133, - "explorers": [ - { - "name": "MetaScan", - "url": "https://meta.defiscan.live", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swisstronik Testnet", - "chain": "SWTR", - "rpc": [ - "https://json-rpc.testnet.swisstronik.com" - ], - "faucets": [ - "https://faucet.testnet.swisstronik.com" - ], - "nativeCurrency": { - "name": "Swisstronik", - "symbol": "SWTR", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.swisstronik.com", - "shortName": "swtr", - "chainId": 1291, - "networkId": 1291, - "icon": "swisstronik", - "explorers": [ - { - "name": "Swisstronik Scout", - "url": "https://explorer-evm.testnet.swisstronik.com", - "standard": "none" - } - ] - }, - { - "name": "Blitz Subnet", - "chain": "BLITZ", - "rpc": [ - "https://subnets.avax.network/blitz/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "BLITZ GAS", - "symbol": "BGAS", - "decimals": 18 - }, - "infoURL": "https://blitz.gg", - "shortName": "blitz", - "chainId": 1343, - "networkId": 1343, - "explorers": [ - { - "name": "BLITZ Explorer", - "url": "https://subnets-test.avax.network/blitz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kalar Chain", - "chain": "KLC", - "icon": "kalarchain", - "rpc": [ - "https://rpc-api.kalarchain.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kalar", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalarchain.tech", - "shortName": "KLC", - "chainId": 1379, - "networkId": 1379, - "explorers": [ - { - "name": "kalarscan", - "url": "https://explorer.kalarchain.tech", - "icon": "kalarscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "WhiteBIT Network", - "chain": "WBT", - "rpc": [ - "https://rpc.whitebit.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 - }, - "infoURL": "https://whitebit.network", - "shortName": "wbt", - "chainId": 1875, - "networkId": 1875, - "icon": "whitebit", - "explorers": [ - { - "name": "wb-explorer", - "url": "https://explorer.whitebit.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sports Chain Network", - "chain": "SCN", - "rpc": [ - "https://rpc.sportschainnetwork.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "SCN", - "symbol": "SCN", - "decimals": 18 - }, - "infoURL": "https://sportschainnetwork.xyz", - "shortName": "SCN", - "chainId": 1904, - "networkId": 1904, - "icon": "scn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sportschainnetwork.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Merkle Scan", - "chain": "MRK", - "icon": "merklescan", - "rpc": [ - "https://marklechain-rpc.merklescan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Merkle", - "symbol": "MRK", - "decimals": 18 - }, - "infoURL": "https://merklescan.com", - "shortName": "MRK", - "chainId": 1909, - "networkId": 1909, - "explorers": [ - { - "name": "blockscout", - "url": "https://merklescan.com", - "standard": "none" - } - ] - }, - { - "name": "SatoshIE", - "chain": "TUSHY", - "rpc": [ - "http://rpc.satosh.ie" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 - }, - "infoURL": "https://satosh.ie", - "shortName": "satoshie", - "chainId": 1985, - "networkId": 1985, - "icon": "satoshie", - "explorers": [ - { - "name": "mainnetexplorer", - "url": "http://explore.satosh.ie", - "icon": "satoshie", - "standard": "none" - } - ] - }, - { - "name": "SatoshIE Testnet", - "chain": "TUSHY", - "rpc": [ - "http://testnet.satosh.ie" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 - }, - "infoURL": "https://satosh.ie", - "shortName": "satoshie_testnet", - "chainId": 1986, - "networkId": 1986, - "icon": "satoshie", - "explorers": [ - { - "name": "testnetexplorer", - "url": "http://explore-testnet.satosh.ie", - "icon": "satoshie", - "standard": "none" - } - ] - }, - { - "name": "Centrifuge", - "chain": "CFG", - "rpc": [ - "wss://fullnode.parachain.centrifuge.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Centrifuge", - "symbol": "CFG", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "cfg", - "chainId": 2031, - "networkId": 2031, - "explorers": [ - { - "name": "subscan", - "url": "https://centrifuge.subscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Catalyst", - "chain": "CFG", - "rpc": [ - "wss://fullnode.catalyst.cntrfg.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Catalyst CFG", - "symbol": "NCFG", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "ncfg", - "chainId": 2032, - "networkId": 2032 - }, - { - "name": "Kiwi Subnet", - "chain": "KIWI", - "rpc": [ - "https://subnets.avax.network/kiwi/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Shrapgas", - "symbol": "SHRAP", - "decimals": 18 - }, - "infoURL": "", - "shortName": "kiwi", - "chainId": 2037, - "networkId": 2037, - "explorers": [ - { - "name": "KIWI Explorer", - "url": "https://subnets-test.avax.network/kiwi", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shrapnel Testnet", - "chain": "SHRAPNEL", - "rpc": [ - "https://subnets.avax.network/shrapnel/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "SHRAPG", - "symbol": "SHRAPG", - "decimals": 18 - }, - "infoURL": "https://www.shrapnel.com/", - "shortName": "shraptest", - "chainId": 2038, - "networkId": 2038, - "explorers": [ - { - "name": "SHRAPNEL Explorer", - "url": "https://subnets-test.avax.network/shrapnel", - "standard": "EIP3091" - } - ] - }, - { - "name": "Movo Smart Chain Mainnet", - "chain": "MOVO", - "icon": "movo", - "rpc": [ - "https://msc-rpc.movoscan.com", - "https://msc-rpc.movochain.org", - "https://msc-rpc.movoswap.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Movo Smart Chain", - "symbol": "MOVO", - "decimals": 18 - }, - "infoURL": "https://movo.uk", - "shortName": "movo", - "chainId": 2049, - "networkId": 2049, - "slip44": 2050, - "explorers": [ - { - "name": "movoscan", - "url": "https://movoscan.com", - "icon": "movoscan", - "standard": "none" - } - ] - }, - { - "name": "Altair", - "chain": "AIR", - "rpc": [ - "wss://fullnode.altair.centrifuge.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Altair", - "symbol": "AIR", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "air", - "chainId": 2088, - "networkId": 2088 - }, - { - "name": "Algol", - "chain": "algol", - "rpc": [ - "wss://fullnode.algol.cntrfg.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Algol", - "symbol": "ALGL", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "algl", - "chainId": 2089, - "networkId": 2089 - }, - { - "name": "BigShortBets", - "chain": "BIGSB", - "rpc": [ - "https://market.bigsb.io", - "wss://market.bigsb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://bigshortbets.com/", - "shortName": "bigsb", - "chainId": 2137, - "networkId": 2137, - "explorers": [] - }, - { - "name": "Krest Network", - "chain": "Krest", - "icon": "krest", - "rpc": [ - "https://erpc-krest.peaq.network", - "https://krest.unitedbloc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Krest", - "symbol": "KRST", - "decimals": 18 - }, - "infoURL": "https://www.peaq.network", - "shortName": "KRST", - "chainId": 2241, - "networkId": 2241, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", - "standard": "none" - }, - { - "name": "Subscan", - "url": "https://krest.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Ebro Network", - "chain": "ebro", - "rpc": [ - "https://greendinoswap.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ebro", - "symbol": "ebro", - "decimals": 18 - }, - "infoURL": "https://www.ebrochain.com", - "shortName": "ebro", - "chainId": 2306, - "networkId": 2306 - }, - { - "name": "Unicorn Ultra Nebulas Testnet", - "chain": "u2u", - "rpc": [ - "https://rpc-nebulas-testnet.uniultra.xyz" - ], - "faucets": [ - "https://faucet.uniultra.xyz" - ], - "nativeCurrency": { - "name": "Unicorn Ultra Nebulas Testnet", - "symbol": "U2U", - "decimals": 18 - }, - "infoURL": "https://uniultra.xyz", - "shortName": "u2u_nebulas", - "chainId": 2484, - "networkId": 2484, - "icon": "u2u_nebulas", - "explorers": [ - { - "icon": "u2u_nebulas", - "name": "U2U Explorer", - "url": "https://testnet.u2uscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fraxchain Testnet", - "chain": "FRAX", - "rpc": [ - "https://rpc.testnet.frax.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 - }, - "infoURL": "https://testnet.frax.com", - "shortName": "fraxchain-testnet", - "chainId": 2522, - "networkId": 2522, - "explorers": [], - "status": "active" - }, - { - "name": "K-LAOS", - "title": "K-LAOS: LAOS on Kusama", - "chain": "K-LAOS", - "icon": "k-laos", - "rpc": [ - "https://rpc.klaos.laosfoundation.io", - "wss://rpc.klaos.laosfoundation.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "k-laos", - "chainId": 2718, - "networkId": 2718, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.klaos.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immu3 EVM", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "IMMU", - "symbol": "IMMU", - "decimals": 18 - }, - "infoURL": "https://immu3.io", - "shortName": "Immu3", - "chainId": 3100, - "networkId": 3100, - "explorers": [] - }, - { - "name": "Vulture EVM Beta", - "chain": "VFIEVMCC", - "rpc": [ - "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "VFI", - "symbol": "VFI", - "decimals": 18 - }, - "infoURL": "https://vulture.finance", - "shortName": "VFI", - "chainId": 3102, - "networkId": 3102, - "explorers": [] - }, - { - "name": "Dubxcoin network", - "chain": "DUBX", - "rpc": [ - "https://rpcmain.arabianchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dubxcoin mainnet", - "symbol": "DUBX", - "decimals": 18 - }, - "infoURL": "https://arabianchain.org", - "shortName": "dubx", - "chainId": 3269, - "networkId": 3269 - }, - { - "name": "Dubxcoin testnet", - "chain": "TESTDUBX", - "rpc": [ - "https://rpctestnet.arabianchain.org" - ], - "faucets": [ - "https://faucet.arabianchain.org/" - ], - "nativeCurrency": { - "name": "Dubxcoin testnet", - "symbol": "TDUBX", - "decimals": 18 - }, - "infoURL": "https://arabianchain.org", - "shortName": "testdubx", - "chainId": 3270, - "networkId": 3270 - }, - { - "name": "iChain Network", - "chain": "iChain", - "rpc": [ - "https://rpc.ichainscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ISLAMICOIN", - "symbol": "ISLAMI", - "decimals": 18 - }, - "infoURL": "https://islamicoin.finance", - "shortName": "ISLAMI", - "chainId": 3639, - "networkId": 3639, - "explorers": [ - { - "name": "iChainscan", - "url": "https://ichainscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xpla Testnet", - "chain": "XPLATest", - "rpc": [ - "https://dimension-rpc.xpla.dev" - ], - "faucets": [ - "https://faucet.xpla.io" - ], - "nativeCurrency": { - "name": "XPLA", - "symbol": "XPLA", - "decimals": 18 - }, - "infoURL": "https://xpla.io", - "shortName": "xplatest", - "chainId": 3701, - "networkId": 3701, - "icon": "xpla", - "explorers": [ - { - "name": "XPLA Explorer", - "url": "https://explorer.xpla.io", - "standard": "none" - } - ], - "status": "deprecated" - }, - { - "name": "KalyChain Mainnet", - "chain": "KLC", - "icon": "kalychain", - "rpc": [ - "https://rpc.kalychain.io/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalychain.io", - "shortName": "kalymainnet", - "chainId": 3888, - "networkId": 3888, - "explorers": [ - { - "name": "KalyScan", - "url": "https://kalyscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "KalyChain Testnet", - "chain": "KLC", - "icon": "kalychain", - "rpc": [ - "https://testnetrpc.kalychain.io/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalychain.io", - "shortName": "kalytestnet", - "chainId": 3889, - "networkId": 3889, - "explorers": [ - { - "name": "KalyScan", - "url": "https://testnet.kalyscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "X1 Fastnet", - "chain": "X1", - "rpc": [ - "https://x1-fastnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/go-x1/", - "shortName": "x1-fastnet", - "chainId": 4003, - "networkId": 4003, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-fastnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humans.ai Testnet", - "chain": "Humans Testnet", - "rpc": [ - "https://evm-rpc.testnet.humans.zone" - ], - "faucets": [], - "nativeCurrency": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://humans.ai", - "shortName": "humans_testnet", - "chainId": 4139, - "networkId": 4139, - "icon": "humans-dark" - }, - { - "name": "Beam", - "chain": "BEAM", - "rpc": [ - "https://subnets.avax.network/beam/mainnet/rpc", - "wss://subnets.avax.network/beam/mainnet/ws" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.onbeam.com" - ], - "nativeCurrency": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 - }, - "infoURL": "https://www.onbeam.com", - "shortName": "beam", - "icon": "beam", - "chainId": 4337, - "networkId": 4337, - "explorers": [ - { - "name": "Beam Explorer", - "url": "https://subnets.avax.network/beam", - "standard": "EIP3091" - } - ] - }, - { - "name": "Credit Smart Chain Mainnet", - "chain": "CREDIT", - "rpc": [ - "https://rpc.creditsmartchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://creditsmartchain.com", - "shortName": "CreditEdge", - "chainId": 4400, - "networkId": 4400, - "icon": "credit", - "explorers": [ - { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orderly Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "www.orderly.network", - "shortName": "orderlyl2", - "chainId": 4460, - "networkId": 4460, - "icon": "orderlyTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Globel Chain", - "chain": "GC", - "icon": "globelchain", - "rpc": [ - "https://rpc.gcscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Globel Chain", - "symbol": "GC", - "decimals": 18 - }, - "infoURL": "https://gcscan.io", - "shortName": "GC", - "chainId": 4893, - "networkId": 4893, - "explorers": [ - { - "name": "blockscout", - "url": "https://gcscan.io", - "standard": "none" - } - ] - }, - { - "name": "Treasurenet Mainnet Alpha", - "chain": "Treasurenet Mainnet Alpha", - "icon": "treasurenet", - "rpc": [ - "https://node0.treasurenet.io", - "https://node1.treasurenet.io", - "https://node2.treasurenet.io", - "https://node3.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.treasurenet.io", - "shortName": "treasurenet", - "chainId": 5002, - "networkId": 5002, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.treasurenet.io", - "icon": "treasurenet", - "standard": "none" - } - ] - }, - { - "name": "Mantle Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia.mantle.xyz" - ], - "faucets": [ - "https://faucet.sepolia.mantle.xyz" - ], - "nativeCurrency": { - "name": "Sepolia Mantle", - "symbol": "MNT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mnt-sep", - "chainId": 5003, - "networkId": 5003, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sepolia.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Treasurenet Testnet", - "chain": "Treasurenet Testnet", - "icon": "treasurenet", - "rpc": [ - "https://node0.testnet.treasurenet.io", - "https://node1.testnet.treasurenet.io", - "https://node2.testnet.treasurenet.io", - "https://node3.testnet.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.testnet.treasurenet.io", - "shortName": "tntest", - "chainId": 5005, - "networkId": 5005, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.testnet.treasurenet.io", - "icon": "treasurenet", - "standard": "none" - } - ] - }, - { - "name": "Tritanium Testnet", - "chain": "TRITANIUM", - "rpc": [ - "https://nodetestnet-station-one.tritanium.network/", - "https://nodetestnet-station-two.tritanium.network/" - ], - "faucets": [ - "https://faucet.tritanium.network" - ], - "nativeCurrency": { - "name": "Tritanium Native Token", - "symbol": "tTRN", - "decimals": 18 - }, - "infoURL": "https://tritanium.network", - "shortName": "ttrn", - "chainId": 5353, - "networkId": 5353, - "icon": "tritanium", - "explorers": [ - { - "name": "TRITANIUM Testnet Explorer", - "icon": "tritanium", - "url": "https://testnet.tritanium.network", - "standard": "none" - } - ] - }, - { - "name": "VEX EVM TESTNET", - "chain": "vex", - "icon": "vex", - "rpc": [ - "https://testnet.vexascan.com/evmapi" - ], - "faucets": [ - "https://t.me/vexfaucetbot" - ], - "nativeCurrency": { - "name": "VEX EVM TESTNET", - "symbol": "VEX", - "decimals": 18 - }, - "infoURL": "https://vexanium.com", - "shortName": "VEX", - "chainId": 5522, - "networkId": 5522, - "explorers": [ - { - "name": "Vexascan-EVM-TestNet", - "url": "https://testnet.vexascan.com/evmexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "opBNB Testnet", - "chain": "opBNB", - "icon": "bnbchain", - "rpc": [ - "https://opbnb-testnet-rpc.bnbchain.org", - "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", - "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", - "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" - ], - "faucets": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 - }, - "infoURL": "https://opbnb.bnbchain.org/en", - "shortName": "obnbt", - "chainId": 5611, - "networkId": 5611, - "explorers": [ - { - "name": "bscscan-opbnb-testnet", - "url": "https://opbnb-testnet.bscscan.com", - "standard": "EIP3091" - }, - { - "name": "opbnbscan", - "url": "https://opbnbscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arcturus Chain Testnet", - "chain": "ARCTURUS", - "rpc": [ - "http://185.99.196.3:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Arct", - "symbol": "tARCT", - "decimals": 18 - }, - "infoURL": "https://arcturuschain.io", - "shortName": "ARCT", - "chainId": 5616, - "networkId": 5616 - }, - { - "name": "Tanssi EVM ContainerChain", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Unit", - "symbol": "Unit", - "decimals": 18 - }, - "infoURL": "https://tanssi.network", - "shortName": "TanssiCC", - "chainId": 5678, - "networkId": 5678, - "explorers": [] - }, - { - "name": "Digit Soul Smart Chain", - "chain": "DGS", - "rpc": [ - "https://dsc-rpc.digitsoul.co.th" - ], - "faucets": [], - "icon": "pnet", - "nativeCurrency": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DGS", - "chainId": 6363, - "networkId": 6363 - }, - { - "name": "Horizen EON Mainnet", - "shortName": "EON", - "chain": "EON", - "icon": "eon", - "rpc": [ - "https://eon-rpc.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_eon" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Zencash", - "symbol": "ZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 7332, - "networkId": 7332, - "slip44": 121, - "explorers": [ - { - "name": "Horizen EON Block Explorer", - "url": "https://eon-explorer.horizenlabs.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "MaalChain Testnet", - "chain": "MaalChain Testnet", - "icon": "maal-test", - "rpc": [ - "https://node1.maalscan.io/", - "https://rpc-bntest.maalscan.io/" - ], - "faucets": [ - "https://faucet-testnet.maalscan.io/" - ], - "nativeCurrency": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 - }, - "infoURL": "https://www.maalchain.com/", - "shortName": "maal-test", - "chainId": 7860, - "networkId": 7860, - "explorers": [ - { - "name": "maalscan testnet", - "url": "https://testnet.maalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Torus Mainnet", - "chain": "TQF", - "icon": "torus", - "rpc": [ - "https://rpc.toruschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "TQF", - "symbol": "TQF", - "decimals": 18 - }, - "infoURL": "https://docs.toruschain.com", - "shortName": "tqf", - "chainId": 8192, - "networkId": 8192, - "explorers": [ - { - "name": "blockscout", - "url": "https://toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Torus Testnet", - "chain": "TQF", - "icon": "torus", - "rpc": [ - "https://rpc.testnet.toruschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tTQF", - "symbol": "TTQF", - "decimals": 18 - }, - "infoURL": "https://docs.toruschain.com", - "shortName": "ttqf", - "chainId": 8194, - "networkId": 8194, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hela Official Runtime Mainnet", - "chain": "Hela", - "icon": "hela", - "rpc": [ - "https://mainnet-rpc.helachain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 - }, - "infoURL": "https://helalabs.com", - "shortName": "hela", - "chainId": 8668, - "networkId": 8668, - "explorers": [ - { - "name": "Hela Official Runtime Mainnet Explorer", - "url": "https://mainnet-blockexplorer.helachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Codefin Mainnet", - "chain": "COF", - "icon": "codefin", - "rpc": [ - "https://chain-rpc.codefin.pro" - ], - "faucets": [], - "nativeCurrency": { - "name": "Codefin", - "symbol": "COF", - "decimals": 18 - }, - "infoURL": "https://network.codefin.pro", - "shortName": "COF", - "chainId": 9223, - "networkId": 9223, - "explorers": [ - { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", - "standard": "EIP3091" - } - ] - }, - { - "name": "IMPERIUM TESTNET", - "chain": "tIMP", - "rpc": [ - "https://data-aws-testnet.imperiumchain.com", - "https://data-aws2-testnet.imperiumchain.com" - ], - "faucets": [ - "https://faucet.imperiumchain.com/" - ], - "nativeCurrency": { - "name": "tIMP", - "symbol": "tIMP", - "decimals": 18 - }, - "infoURL": "https://imperiumchain.com", - "shortName": "tIMP", - "chainId": 9818, - "networkId": 9818, - "icon": "timp", - "explorers": [ - { - "name": "IMPERIUM TESTNET Explorer", - "icon": "timp", - "url": "https://network.impscan.com", - "standard": "none" - } - ] - }, - { - "name": "IMPERIUM MAINNET", - "chain": "IMP", - "rpc": [ - "https://data-aws-mainnet.imperiumchain.com", - "https://data-aws2-mainnet.imperiumchain.com" - ], - "faucets": [ - "https://faucet.imperiumchain.com/" - ], - "nativeCurrency": { - "name": "IMP", - "symbol": "IMP", - "decimals": 18 - }, - "infoURL": "https://imperiumchain.com", - "shortName": "IMP", - "chainId": 9819, - "networkId": 9819, - "icon": "imp", - "explorers": [ - { - "name": "IMPERIUM Explorer", - "icon": "imp", - "url": "https://impscan.com", - "standard": "none" - } - ] - }, - { - "name": "Mind Smart Chain Testnet", - "chain": "tMIND", - "icon": "mindchain", - "rpc": [ - "https://testnet-msc.mindchain.info/", - "wss://testnet-msc.mindchain.info/ws" - ], - "faucets": [ - "https://faucet.mindchain.info/" - ], - "nativeCurrency": { - "name": "MIND Coin", - "symbol": "tMIND", - "decimals": 18 - }, - "infoURL": "https://mindchain.info", - "shortName": "tMIND", - "chainId": 9977, - "networkId": 9977, - "explorers": [ - { - "name": "Mind Chain explorer", - "url": "https://testnet.mindscan.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Agung Network", - "chain": "Agung", - "icon": "agung", - "rpc": [ - "https://rpcpc1-qa.agung.peaq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Agung", - "symbol": "AGNG", - "decimals": 18 - }, - "infoURL": "https://www.peaq.network", - "shortName": "AGNG", - "chainId": 9990, - "networkId": 9990, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", - "standard": "none" - }, - { - "name": "Subscan", - "url": "https://agung.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Mind Smart Chain Mainnet", - "chain": "MIND", - "icon": "mindchain", - "rpc": [ - "https://rpc-msc.mindchain.info/", - "https://seednode.mindchain.info", - "https://archive.mindchain.info/", - "wss://archive.mindchain.info/ws", - "wss://seednode.mindchain.info/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "MIND Coin", - "symbol": "MIND", - "decimals": 18 - }, - "infoURL": "https://mindchain.info", - "shortName": "MIND", - "chainId": 9996, - "networkId": 9996, - "explorers": [ - { - "name": "Mind Chain explorer", - "url": "https://mainnet.mindscan.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Japan Open Chain Testnet", - "chain": "JOCT", - "rpc": [ - "https://rpc-1.testnet.japanopenchain.org:8545", - "https://rpc-2.testnet.japanopenchain.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Japan Open Chain Testnet Token", - "symbol": "JOCT", - "decimals": 18 - }, - "infoURL": "https://www.japanopenchain.org/", - "shortName": "joct", - "chainId": 10081, - "networkId": 10081, - "explorers": [ - { - "name": "Testnet Block Explorer", - "url": "https://explorer.testnet.japanopenchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "MaxxChain Mainnet", - "chain": "MaxxChain", - "rpc": [ - "https://rpc.maxxchain.org", - "https://rpc1.maxxchain.org", - "https://rpc2.maxxchain.org" - ], - "faucets": [ - "https://faucet.maxxchain.org" - ], - "nativeCurrency": { - "name": "Power", - "symbol": "PWR", - "decimals": 18 - }, - "icon": "pwr", - "infoURL": "https://www.maxxchain.org/", - "shortName": "PWR", - "chainId": 10201, - "networkId": 10201, - "explorers": [ - { - "name": "MaxxChain Block Explorer", - "url": "https://explorer.maxxchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arthera Testnet", - "chain": "AA", - "icon": "arthera", - "rpc": [ - "https://rpc-test.arthera.net" - ], - "faucets": [ - "https://faucet.arthera.net" - ], - "nativeCurrency": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 - }, - "infoURL": "https://docs.arthera.net", - "shortName": "aa", - "chainId": 10243, - "networkId": 10243, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-test.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Worldland Testnet", - "chain": "Worldland", - "icon": "worldland", - "rpc": [ - "https://gwangju.worldland.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Worldland", - "symbol": "WL", - "decimals": 18 - }, - "infoURL": "https://worldland.foundation", - "shortName": "TWLC", - "chainId": 10395, - "networkId": 10395, - "explorers": [ - { - "name": "Worldland Explorer", - "url": "https://testscan.worldland.foundation", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon Supernet Arianee", - "chain": "Arianee", - "rpc": [ - "https://rpc.polygonsupernet.public.arianee.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arianee", - "symbol": "ARIA20", - "decimals": 18 - }, - "infoURL": "https://arianee.org", - "shortName": "Arianee", - "chainId": 11891, - "networkId": 11891, - "explorers": [ - { - "name": "Polygon Supernet Arianee Explorer", - "url": "https://polygonsupernet.explorer.arianee.net", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-1", - "type": "L2" - } - }, - { - "name": "Astar zkEVM", - "shortName": "astrzk", - "title": "Astar zkEVM Mainnet", - "chain": "ETH", - "icon": "astarzk", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 12611, - "networkId": 12611, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "Quantum Chain Testnet", - "chain": "tQNET", - "icon": "qnet", - "rpc": [ - "https://testnet-rpc.quantumscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum Chain", - "symbol": "tQNET", - "decimals": 18 - }, - "infoURL": "https://quantumnetwork.gg", - "shortName": "tqnet", - "chainId": 12890, - "networkId": 12890, - "explorers": [ - { - "name": "Quantum Scan Testnet", - "url": "https://testnet.quantumscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Beam Testnet", - "chain": "BEAM", - "rpc": [ - "https://subnets.avax.network/beam/testnet/rpc", - "wss://subnets.avax.network/beam/testnet/ws" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.avax.network/?subnet=beam", - "https://faucet.onbeam.com" - ], - "nativeCurrency": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 - }, - "infoURL": "https://www.onbeam.com", - "shortName": "beam-testnet", - "icon": "beam", - "chainId": 13337, - "networkId": 13337, - "explorers": [ - { - "name": "Beam Explorer", - "url": "https://subnets-test.avax.network/beam", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immutable zkEVM Testnet", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.testnet.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "Test IMX", - "symbol": "tIMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx-testnet", - "chainId": 13473, - "networkId": 13473, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable Testnet explorer", - "url": "https://explorer.testnet.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "Humanode Testnet 5 Israfel", - "chain": "Humanode Testnet 5", - "rpc": [ - "https://explorer-rpc-http.testnet5.stages.humanode.io" - ], - "faucets": [ - "https://t.me/HumanodeTestnet5FaucetBot" - ], - "nativeCurrency": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 - }, - "infoURL": "https://humanode.io", - "shortName": "hmnd-t5", - "chainId": 14853, - "networkId": 14853, - "explorers": [] - }, - { - "name": "Immutable zkEVM Devnet", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.dev.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "Dev IMX", - "symbol": "dIMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx-devnet", - "chainId": 15003, - "networkId": 15003, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable Devnet explorer", - "url": "https://explorer.dev.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "Holesky", - "title": "Ethereum Testnet Holesky", - "chain": "ETH", - "rpc": [ - "https://rpc.holesky.ethpandaops.io", - "https://ethereum-holesky.publicnode.com", - "wss://ethereum-holesky.publicnode.com" - ], - "faucets": [ - "https://faucet.holesky.ethpandaops.io", - "https://holesky-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://holesky.ethpandaops.io", - "shortName": "holesky", - "chainId": 17000, - "networkId": 17000, - "icon": "ethereum", - "status": "incubating", - "explorers": [ - { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" - }, - { - "name": "otterscan-holesky", - "url": "https://holesky.otterscan.io", - "icon": "ethereum", - "standard": "EIP3091" - }, - { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.io", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redstone Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.holesky.redstone.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Redstone Testnet Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz/docs/network-info", - "shortName": "redstone", - "chainId": 17001, - "networkId": 17001, - "icon": "redstone", - "explorers": [ - { - "name": "Redstone Holesky Explorer", - "url": "https://explorer.holesky.redstone.xyz", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "G8Chain Mainnet", - "chain": "G8C", - "icon": "G8Chain", - "rpc": [ - "https://mainnet-rpc.oneg8.network" - ], - "faucets": [ - "https://faucet.oneg8.network" - ], - "nativeCurrency": { - "name": "G8Chain", - "symbol": "G8C", - "decimals": 18 - }, - "infoURL": "https://oneg8.one", - "shortName": "G8Cm", - "chainId": 17171, - "networkId": 17171, - "explorers": [ - { - "name": "G8Chain", - "url": "https://mainnet.oneg8.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Trade Networks", - "chain": "Smart Trade Networks", - "rpc": [ - "https://beefledgerwallet.com:8544" - ], - "faucets": [], - "nativeCurrency": { - "name": "STN", - "symbol": "STN", - "decimals": 18 - }, - "infoURL": "https://www.smarttradenetworks.com", - "shortName": "STN", - "chainId": 18122, - "networkId": 18122, - "icon": "stn", - "explorers": [ - { - "name": "stnscan", - "url": "https://stnscan.com", - "icon": "stn", - "standard": "none" - } - ] - }, - { - "name": "G8Chain Testnet", - "chain": "G8C", - "icon": "G8Chain", - "rpc": [ - "https://testnet-rpc.oneg8.network" - ], - "faucets": [ - "https://faucet.oneg8.network" - ], - "nativeCurrency": { - "name": "G8Coin", - "symbol": "G8C", - "decimals": 18 - }, - "infoURL": "https://oneg8.one", - "shortName": "G8Ct", - "chainId": 18181, - "networkId": 18181, - "explorers": [ - { - "name": "G8Chain", - "url": "https://testnet.oneg8.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nautilus Mainnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://api.nautilus.nautchain.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zebec", - "symbol": "ZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUTCHAIN", - "chainId": 22222, - "networkId": 22222, - "explorers": [ - { - "name": "Nautscan", - "url": "https://nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } - ] - }, - { - "name": "MCH Verse Mainnet", - "chain": "MCH Verse", - "icon": "mch_verse", - "rpc": [ - "https://rpc.oasys.mycryptoheroes.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.mycryptoheroes.net/verse", - "shortName": "MCHV", - "chainId": 29548, - "networkId": 29548, - "explorers": [ - { - "name": "MCH Verse Explorer", - "url": "https://explorer.oasys.mycryptoheroes.net", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Cerium Testnet", - "chain": "CAU", - "icon": "canxium", - "rpc": [ - "https://cerium-rpc.canxium.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 - }, - "infoURL": "https://canxium.org", - "shortName": "ceri", - "chainId": 30103, - "networkId": 30103, - "explorers": [ - { - "name": "canxium explorer", - "url": "https://cerium-explorer.canxium.net", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM Isolated Server", - "chain": "ZIL", - "rpc": [ - "https://zilliqa-isolated-server.zilliqa.com/" - ], - "faucets": [ - "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-isolated-server", - "chainId": 32990, - "networkId": 32990, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Isolated Server Explorer", - "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Cloudverse Subnet", - "chain": "CLOUDVERSE", - "rpc": [ - "https://subnets.avax.network/cloudverse/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "XCLOUD", - "symbol": "XCLOUD", - "decimals": 18 - }, - "infoURL": "https://muadao.build/", - "shortName": "cloudverse", - "chainId": 33210, - "networkId": 33210, - "explorers": [ - { - "name": "CLOUDVERSE Explorer", - "url": "https://subnets.avax.network/cloudverse", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zilliqa EVM Devnet", - "chain": "ZIL", - "rpc": [ - "https://api.devnet.zilliqa.com/" - ], - "faucets": [ - "https://faucet.devnet.zilliqa.com/" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-devnet", - "chainId": 33385, - "networkId": 33385, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Devnet Explorer", - "url": "https://otterscan.devnet.zilliqa.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zilliqa 2 EVM Devnet", - "chain": "ZIL", - "rpc": [ - "https://api.zq2-devnet.zilstg.dev" - ], - "faucets": [ - "https://faucet.zq2-devnet.zilstg.dev" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zq2-devnet", - "chainId": 33469, - "networkId": 33469, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa 2 EVM Devnet Explorer", - "url": "https://explorer.zq2-devnet.zilstg.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "ConnectorManager", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://cm.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "cmRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "cmrpg", - "chainId": 38400, - "networkId": 38400, - "explorers": [ - { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "ConnectorManager Robin", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://robin-cm.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [ - "https://robin-faucet.rangersprotocol.com" - ], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "ttRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "ttrpg", - "chainId": 38401, - "networkId": 38401, - "explorers": [ - { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "Gesoten Verse Testnet", - "chain": "Gesoten Verse", - "rpc": [ - "https://rpc.testnet.verse.gesoten.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://gesoten.com/", - "shortName": "GST", - "icon": "gesoten", - "chainId": 42801, - "networkId": 42801, - "explorers": [ - { - "name": "Gesoten Verse Testnet Explorer", - "url": "https://explorer.testnet.verse.gesoten.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kinto Testnet", - "title": "Kinto Testnet", - "chain": "ETH", - "rpc": [ - "http://35.215.120.180:8545" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ethereum.org", - "shortName": "keth", - "chainId": 42888, - "networkId": 42888, - "explorers": [ - { - "name": "kintoscan", - "url": "http://35.215.120.180:4000", - "standard": "EIP3091" - } - ] - }, - { - "name": "Electroneum Mainnet", - "chain": "Electroneum", - "rpc": [ - "https://api.electroneum.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://electroneum.com", - "shortName": "etn-mainnet", - "chainId": 52014, - "networkId": 52014, - "icon": "electroneum", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockexplorer.electroneum.com", - "icon": "electroneum", - "standard": "EIP3091" - } - ] - }, - { - "name": "VELO Labs Mainnet", - "chain": "NOVA chain", - "rpc": [ - "https://nova.velo.org" - ], - "faucets": [ - "https://nova-faucet.velo.org" - ], - "nativeCurrency": { - "name": "Nova", - "symbol": "NOVA", - "decimals": 18 - }, - "infoURL": "https://velo.org", - "shortName": "VELO", - "chainId": 56789, - "networkId": 56789, - "icon": "novachain", - "explorers": [ - { - "name": "novascan", - "url": "https://novascan.velo.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linea", - "title": "Linea Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.linea.build", - "wss://rpc.linea.build", - "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea", - "chainId": 59144, - "networkId": 59144, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.linea.build" - } - ] - }, - "explorers": [ - { - "name": "Etherscan", - "url": "https://lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "Blockscout", - "url": "https://explorer.linea.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "L2scan", - "url": "https://linea.l2scan.co", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "Genesys Code Mainnet", - "chain": "GCODE", - "rpc": [ - "https://mainnet.genesyscode.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GenesysCode", - "symbol": "GCODE", - "decimals": 18 - }, - "infoURL": "https://genesyscode.io", - "shortName": "gcode", - "chainId": 59971, - "networkId": 59971, - "icon": "genesyscode", - "explorers": [ - { - "name": "Genesys Scan", - "url": "https://genesysscan.io", - "icon": "genesyscode", - "standard": "none" - } - ] - }, - { - "name": "Janus Testnet", - "chain": "JanusNetwork", - "icon": "janusnetwork", - "rpc": [ - "https://rpc.test.janusnetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Janus", - "symbol": "JNS", - "decimals": 18 - }, - "infoURL": "https://janus-network.gitbook.io/janus", - "shortName": "janusnetwork-testnet", - "chainId": 66988, - "networkId": 66988, - "status": "active", - "explorers": [ - { - "name": "JanusNetwork Testnet Explorer", - "url": "https://beta.scan.janusnetwork.io", - "standard": "none" - } - ] - }, - { - "name": "DM2 Verse Mainnet", - "chain": "DM2 Verse", - "icon": "dm2verse", - "rpc": [ - "https://rpc.dm2verse.dmm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://seamoon.dmm.com", - "shortName": "dm2", - "chainId": 68770, - "networkId": 68770, - "explorers": [ - { - "name": "DM2Verse Explorer", - "url": "https://explorer.dm2verse.dmm.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Foundry Chain Testnet", - "chain": "tFNC", - "icon": "fnc", - "rpc": [ - "https://testnet-rpc.foundryscan.org/" - ], - "faucets": [ - "https://faucet.foundryscan.org" - ], - "nativeCurrency": { - "name": "Foundry Chain Testnet", - "symbol": "tFNC", - "decimals": 18 - }, - "infoURL": "https://foundrychain.org", - "shortName": "fnc", - "chainId": 77238, - "networkId": 77238, - "explorers": [ - { - "name": "Foundry Scan Testnet", - "url": "https://testnet-explorer.foundryscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amplify Subnet", - "chain": "AMPLIFY", - "rpc": [ - "https://subnets.avax.network/amplify/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "AMP", - "symbol": "AMP", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "amplify", - "chainId": 78430, - "networkId": 78430, - "explorers": [ - { - "name": "AMPLIFY Explorer", - "url": "https://subnets-test.avax.network/amplify", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bulletin Subnet", - "chain": "BULLETIN", - "rpc": [ - "https://subnets.avax.network/bulletin/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "BLT", - "symbol": "BLT", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "bulletin", - "chainId": 78431, - "networkId": 78431, - "explorers": [ - { - "name": "BULLETIN Explorer", - "url": "https://subnets-test.avax.network/bulletin", - "standard": "EIP3091" - } - ] - }, - { - "name": "Conduit Subnet", - "chain": "CONDUIT", - "rpc": [ - "https://subnets.avax.network/conduit/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "CON", - "symbol": "CON", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "conduit", - "chainId": 78432, - "networkId": 78432, - "explorers": [ - { - "name": "CONDUIT Explorer", - "url": "https://subnets-test.avax.network/conduit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nordek Mainnet", - "chain": "Nordek", - "rpc": [ - "https://mainnet-rpc.nordekscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "NRK", - "symbol": "NRK", - "decimals": 18 - }, - "infoURL": "https://nordekscan.com", - "shortName": "nordek", - "chainId": 81041, - "networkId": 81041, - "explorers": [ - { - "name": "nordek", - "url": "https://nordekscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quantum Chain Mainnet", - "chain": "QNET", - "icon": "qnet", - "rpc": [ - "https://rpc.quantumscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum Chain", - "symbol": "QNET", - "decimals": 18 - }, - "infoURL": "https://quantumnetwork.gg", - "shortName": "qnet", - "chainId": 81720, - "networkId": 81720, - "explorers": [ - { - "name": "Quantum Scan Mainnet", - "url": "https://quantumscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Base Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.base.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "basesep", - "chainId": 84532, - "networkId": 84532, - "icon": "baseTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://base-sepolia.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Aerie Network", - "chain": "Aerie", - "rpc": [ - "https://mainnet.aerielab.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aerie", - "symbol": "AER", - "decimals": 18 - }, - "infoURL": "https://aerielab.io/", - "shortName": "Aerie", - "chainId": 84886, - "networkId": 84886, - "icon": "aerie", - "explorers": [ - { - "name": "Aerie Explorer", - "url": "https://explorer.aerielab.io", - "icon": "aerie", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nautilus Proteus Testnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://api.proteus.nautchain.xyz/solana" - ], - "faucets": [ - "https://proteusfaucet.nautchain.xyz" - ], - "nativeCurrency": { - "name": "Zebec Test Token", - "symbol": "tZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUTTest", - "chainId": 88002, - "networkId": 88002, - "explorers": [ - { - "name": "Nautscan", - "url": "https://proteus.nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } - ] - }, - { - "name": "eLiberty Testnet", - "chain": "$EL", - "icon": "eLiberty", - "rpc": [ - "https://testnet-rpc.eliberty.ngo" - ], - "faucets": [ - "https://faucet.eliberty.ngo" - ], - "nativeCurrency": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 - }, - "infoURL": "https://eliberty.ngo", - "shortName": "ELt", - "chainId": 99099, - "networkId": 99099, - "explorers": [ - { - "name": "eLiberty Testnet", - "url": "https://testnet.eliberty.ngo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Jolnir L2", - "chain": "ETH", - "status": "incubating", - "icon": "taiko", - "rpc": [ - "https://rpc.jolnir.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-jolnir", - "chainId": 167007, - "networkId": 167007, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.jolnir.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitica Chain Mainnet", - "chain": "BDCC", - "rpc": [ - "https://mainnet-rpc.biticablockchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitica Coin", - "symbol": "BDCC", - "decimals": 18 - }, - "infoURL": "https://biticablockchain.com/", - "shortName": "bdcc", - "chainId": 188710, - "networkId": 188710, - "explorers": [ - { - "name": "Bitica DPOS Blockchain Explorer", - "url": "https://biticablockchain.com", - "standard": "none" - } - ] - }, - { - "name": "X1 Devnet", - "chain": "X1", - "rpc": [ - "https://x1-devnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/x1/", - "shortName": "x1-devnet", - "chainId": 202212, - "networkId": 202212, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-devnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "X1 Network", - "chain": "X1", - "rpc": [ - "https://x1-testnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/go-x1/", - "shortName": "x1-testnet", - "chainId": 204005, - "networkId": 204005, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-testnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reapchain Mainnet", - "chain": "REAP", - "rpc": [ - "https://eth.reapchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Reap", - "symbol": "REAP", - "decimals": 18 - }, - "features": [], - "infoURL": "https://reapchain.com", - "shortName": "reap", - "chainId": 221230, - "networkId": 221230, - "icon": "reapchain", - "explorers": [ - { - "name": "Reapchain Dashboard", - "url": "https://dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } - ] - }, - { - "name": "Reapchain Testnet", - "chain": "REAP", - "rpc": [ - "https://test-eth.reapchain.org" - ], - "faucets": [ - "http://faucet.reapchain.com" - ], - "nativeCurrency": { - "name": "test-Reap", - "symbol": "tREAP", - "decimals": 18 - }, - "features": [], - "infoURL": "https://reapchain.com", - "shortName": "reap-testnet", - "chainId": 221231, - "networkId": 221231, - "icon": "reapchain", - "explorers": [ - { - "name": "Reapchain Testnet Dashboard", - "url": "https://test-dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } - ] - }, - { - "name": "Nativ3 Testnet", - "chainId": 333333, - "shortName": "N3-Test", - "chain": "N3-Test", - "icon": "nativ3", - "networkId": 333333, - "nativeCurrency": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 - }, - "rpc": [ - "https://rpctest.nativ3.network", - "wss://wstest.nativ3.network" - ], - "faucets": [], - "explorers": [ - { - "name": "Nativ3 Test Explorer", - "url": "https://scantest.nativ3.network", - "standard": "EIP3091" - } - ], - "infoURL": "https://nativ3.network", - "parent": { - "type": "L2", - "chain": "eip155-421613", - "bridges": [ - { - "url": "https://bridgetest.nativ3.network" - } - ] - } - }, - { - "name": "Oone Chain Testnet", - "chain": "OONE Testnet", - "rpc": [ - "https://rpc.testnet.oonechain.com" - ], - "faucets": [ - "https://apps-test.adigium.com/faucet" - ], - "nativeCurrency": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 - }, - "infoURL": "https://oonechain.com", - "shortName": "oonetest", - "chainId": 333666, - "networkId": 333666, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.oonescan.com", - "standard": "none" - } - ] - }, - { - "name": "Digit Soul Smart Chain 2", - "chain": "DS2", - "rpc": [ - "https://dgs-rpc.digitsoul.co.th" - ], - "faucets": [], - "icon": "pnet", - "nativeCurrency": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DS2", - "chainId": 363636, - "networkId": 363636 - }, - { - "name": "Alterium L2 Testnet", - "chain": "ALT", - "icon": "alterium", - "rpc": [ - "https://l2-testnet-rpc.altscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alterium ETH", - "symbol": "AltETH", - "decimals": 18 - }, - "infoURL": "https://alteriumprotocol.org", - "shortName": "alterium", - "chainId": 420692, - "networkId": 420692, - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://testnet-bridge.alteriumprotocol.org" - } - ] - }, - "explorers": [ - { - "name": "Alterium L2 Testnet Explorer", - "url": "https://l2-testnet.altscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arbitrum Sepolia", - "title": "Arbitrum Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rollup.arbitrum.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://arbitrum.io", - "shortName": "arb-sep", - "chainId": 421614, - "networkId": 421614, - "explorers": [ - { - "name": "Arbitrum Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "Rethereum Mainnet", - "chain": "RTH", - "rpc": [ - "https://rpc.rethereum.org", - "https://rethereum.rpc.restratagem.com", - "https://rpc.rthcentral.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rethereum", - "symbol": "RTH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.rethereum.org", - "shortName": "rth", - "chainId": 622277, - "networkId": 622277, - "icon": "rethereum", - "explorers": [ - { - "name": "rethereum", - "url": "https://explorer.rethereum.org", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hela Official Runtime Testnet", - "chain": "Hela", - "icon": "hela", - "rpc": [ - "https://testnet-rpc.helachain.com" - ], - "faucets": [ - "https://testnet-faucet.helachain.com" - ], - "nativeCurrency": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 - }, - "infoURL": "https://helalabs.com", - "shortName": "hela-testnet", - "chainId": 666888, - "networkId": 666888, - "explorers": [ - { - "name": "Hela Official Runtime Testnet Explorer", - "url": "https://testnet-blockexplorer.helachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Miexs Smartchain", - "chain": "MiexsSmartchain", - "icon": "miexs", - "rpc": [ - "https://mainnet-rpc.miexs.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Miexs Coin", - "symbol": "MIX", - "decimals": 18 - }, - "infoURL": "https://miexs.com", - "shortName": "Miexs", - "chainId": 761412, - "networkId": 761412, - "explorers": [ - { - "name": "Miexs Smartchain Explorer", - "url": "https://miexs.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Modularium", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Modularium", - "symbol": "MDM", - "decimals": 18 - }, - "infoURL": "https://www.rmrk.app/", - "shortName": "mdlrm", - "chainId": 776877, - "networkId": 776877, - "explorers": [ - { - "name": "Tanssi Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", - "standard": "none" - } - ] - }, - { - "name": "Dodao", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dodao", - "symbol": "DODAO", - "decimals": 18 - }, - "infoURL": "https://dodao.dev/", - "shortName": "dodao", - "chainId": 855456, - "networkId": 855456, - "icon": "dodao", - "explorers": [ - { - "name": "Dodao Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "icon": "dodao", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ecrox Chain Mainnet", - "chain": "Ecrox Chain", - "rpc": [ - "https://mainnet-rpc.ecroxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECROX COIN", - "symbol": "ECROX", - "decimals": 18 - }, - "infoURL": "https://ecroxcoin.io/", - "shortName": "ecrox", - "icon": "ecrox", - "chainId": 988207, - "networkId": 988207, - "explorers": [ - { - "name": "Ecrox Chain Explorer", - "url": "https://ecroxscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tiltyard Subnet", - "chain": "TILTYARD", - "rpc": [ - "https://subnets.avax.network/tiltyard/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Tiltyard Token", - "symbol": "TILTG", - "decimals": 18 - }, - "infoURL": "", - "shortName": "tiltyard", - "chainId": 1127469, - "networkId": 1127469, - "explorers": [ - { - "name": "TILTYARD Explorer", - "url": "http://testnet-explorer.tiltyard.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "zKatana", - "shortName": "azktn", - "title": "Astar zkEVM Testnet zKatana", - "chain": "ETH", - "icon": "astarzk", - "rpc": [ - "https://rpc.zkatana.gelato.digital", - "https://rpc.startale.com/zkatana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 1261120, - "networkId": 1261120, - "explorers": [ - { - "name": "Blockscout zKatana chain explorer", - "url": "https://zkatana.blockscout.com", - "standard": "EIP3091" - }, - { - "name": "Startale zKatana chain explorer", - "url": "https://zkatana.explorer.startale.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://portal.astar.network" - }, - { - "url": "https://bridge.zkatana.gelato.digital" - } - ] - }, - "status": "active" - }, - { - "name": "DeBank Testnet", - "chain": "DeBank", - "rpc": [ - "http://rpc.testnet.debank.com" - ], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "dbk", - "chainId": 2021398, - "networkId": 2021398, - "explorers": [ - { - "name": "DeBank Chain Explorer", - "url": "https://explorer.testnet.debank.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DPU Chain", - "chain": "DPU", - "rpc": [ - "https://sc-rpc.dpu.ac.th" - ], - "faucets": [], - "nativeCurrency": { - "name": "DGC", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DPU", - "chainId": 2611555, - "networkId": 2611555 - }, - { - "name": "Manta Pacific Testnet", - "chain": "Manta Pacific", - "rpc": [ - "https://manta-testnet.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Manta", - "symbol": "MANTA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://manta-testnet.caldera.dev/", - "shortName": "mantaTestnet", - "chainId": 3441005, - "networkId": 3441005, - "icon": "manta", - "explorers": [ - { - "name": "manta-testnet Explorer", - "url": "https://manta-testnet.calderaexplorer.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Electroneum Testnet", - "chain": "Electroneum", - "rpc": [ - "https://api.electroneum.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://electroneum.com", - "shortName": "etn-testnet", - "chainId": 5201420, - "networkId": 5201420, - "icon": "electroneum", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", - "icon": "electroneum", - "standard": "EIP3091" - } - ] - }, - { - "name": "XCAP", - "title": "XCAP Mainnet", - "chain": "XCAP", - "rpc": [ - "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://xcap.network/", - "shortName": "xcap", - "chainId": 9322252, - "networkId": 9322252, - "icon": "xcap", - "explorers": [ - { - "name": "blockscout", - "url": "https://xcap-mainnet.explorer.xcap.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Milvine", - "title": "XCAP Testnet Milvine", - "chain": "XCAP", - "rpc": [ - "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://xcap.network/", - "shortName": "milv", - "chainId": 9322253, - "networkId": 9322253, - "icon": "xcap", - "explorers": [ - { - "name": "blockscout", - "url": "https://xcap-milvine.explorer.xcap.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "OP Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.optimism.io" - ], - "faucets": [ - "https://app.optimism.io/faucet" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://optimism.io", - "shortName": "opsep", - "chainId": 11155420, - "networkId": 11155420, - "explorers": [ - { - "name": "opscout", - "url": "https://optimism-sepolia.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Bakerloo (Barada) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-01", - "chainId": 65010001, - "networkId": 65010001, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Frame Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.testnet.frame.xyz/http" - ], - "faucets": [ - "https://faucet.triangleplatform.com/frame/testnet" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "frameTestnet", - "infoURL": "https://www.frame.xyz/", - "shortName": "frametest", - "chainId": 68840142, - "networkId": 68840142, - "explorers": [ - { - "name": "Frame Testnet Explorer", - "url": "https://explorer.testnet.frame.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Europa Hub Testnet", - "title": "Europa Hub Testnet", - "chain": "staging-legal-crazy-castor", - "icon": "europa", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa-testnet", - "chainId": 476158412, - "networkId": 476158412, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zora Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zora.energy" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "zoraSepoliaTestnet", - "infoURL": "https://zora.energy", - "shortName": "zsep", - "chainId": 999999999, - "networkId": 999999999, - "explorers": [ - { - "name": "Zora Sepolia Testnet Network Explorer", - "url": "https://sepolia.explorer.zora.energy", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub", - "chain": "parallel-stormy-spica", - "icon": "titan", - "rpc": [ - "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", - "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" - ], - "faucets": [ - "https://sfuel.skale.network/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-mainnet", - "chainId": 1350216234, - "networkId": 1350216234, - "explorers": [ - { - "name": "Blockscout", - "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub Testnet", - "chain": "staging-aware-chief-gianfar", - "icon": "titan", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar", - "wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-testnet", - "chainId": 1517929550, - "networkId": 1517929550, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Devnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://api.s1.ps.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-ps-s1", - "chainId": 1666900001, - "networkId": 1666900001, - "explorers": [] - }, - { - "name": "Ancient8 Testnet", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpc-testnet.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "a8", - "chainId": 2863311531, - "networkId": 2863311531, - "explorers": [ - { - "name": "a8scan-testnet", - "url": "https://testnet.a8scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKFair Testnet", - "title": "ZKFair Testnet", - "chain": "ZKFair", - "rpc": [ - "https://testnet-rpc.zkfair.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://zkfair.io/", - "shortName": "zkfairtest", - "chainId": 43851, - "networkId": 43851, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-scan.zkfair.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Blast Sepolia", - "chain": "Blast Sepolia", - "icon": "Blast Sepolia", - "rpc": [ - "https://sepolia.blast.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "blastscan.io/", - "shortName": "Blast Sepolia", - "chainId": 168587773, - "networkId": 168587773, - "explorers": [ - { - "name": "Blast testnet", - "url": "https://testnet.blastscan.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1706000813543.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1706000827437.png", - "color_chain_bg": "0xFDFE03", - "color_chain_text": "0x000000", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1706000856201.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1706000876568.png" - } - }, - { - "name": "ProtoJumbo Testnet", - "chain": "Jumbo", - "rpc": [ - "https://testnode.jumbochain.org" - ], - "faucets": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "ProtoJumbo", - "chainId": 129, - "networkId": 129, - "slip44": 1, - "explorers": [ - { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Engram Testnet", - "chain": "tGRAM", - "icon": "engram", - "rpc": [ - "https://tokioswift.engram.tech", - "https://tokio-archive.engram.tech" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Engram Tokio Testnet", - "symbol": "tGRAM", - "decimals": 18 - }, - "infoURL": "https://engramnet.io", - "shortName": "tgram", - "chainId": 131, - "networkId": 131, - "explorers": [ - { - "name": "blockscout", - "url": "https://tokioscan-v2.engram.tech", - "icon": "engram", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scalind Testnet", - "chain": "ETH", - "icon": "scalind", - "rpc": [ - "https://rpc-sepolia.scalind.com" - ], - "faucets": [ - "https://faucet.scalind.com" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scalind.com", - "shortName": "sepscal", - "chainId": 220, - "networkId": 220, - "explorers": [ - { - "name": "scalind", - "url": "https://explorer-sepolia.scalind.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain Mainnet", - "chain": "MTC", - "icon": "metachain", - "rpc": [ - "https://rpc.metatime.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://metatime.com/en", - "shortName": "metatime", - "chainId": 571, - "networkId": 571, - "slip44": 571, - "explorers": [ - { - "name": "MetaExplorer", - "url": "https://explorer.metatime.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kalichain", - "chain": "Kalichain", - "rpc": [ - "https://mainnet.kalichain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 - }, - "infoURL": "https://kalichain.com", - "shortName": "kalichainMainnet", - "chainId": 654, - "networkId": 654, - "icon": "kalichain", - "explorers": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haven1 Testnet", - "chain": "haven1", - "rpc": [ - "https://testnet-rpc.haven1.org" - ], - "faucets": [ - "https://www.haven1.org/faucet" - ], - "nativeCurrency": { - "name": "Haven1", - "symbol": "H1", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.haven1.org", - "shortName": "h1", - "chainId": 810, - "networkId": 810, - "icon": "haven1", - "explorers": [ - { - "name": "Haven1 Explorer", - "url": "https://testnet-explorer.haven1.org", - "icon": "haven1", - "standard": "EIP3091" - } - ] - }, - { - "name": "Firechain zkEVM", - "title": "Firechain zkEVM", - "chain": "Firechain", - "rpc": [ - "https://rpc.zkevm.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.thefirechain.com/", - "shortName": "firechan-zkEVM", - "chainId": 814, - "networkId": 814, - "icon": "firechain", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://zkevm.bridge.rpc.thefirechain.com" - } - ] - } - }, - { - "name": "Lyra Chain", - "chain": "Lyra", - "rpc": [ - "https://rpc.lyra.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://lyra.finance", - "shortName": "lyra", - "chainId": 957, - "networkId": 957, - "icon": "lyra", - "explorers": [ - { - "name": "Lyra Explorer", - "url": "https://explorer.lyra.finance", - "icon": "lyra", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogether Mainnet", - "chain": "Dogether", - "rpc": [ - "https://rpc.dogether.dog/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogether", - "symbol": "dogeth", - "decimals": 18 - }, - "infoURL": "https://www.dogether.dog/", - "shortName": "Dogether", - "chainId": 1248, - "networkId": 1248, - "explorers": [ - { - "name": "DogetherExplorer", - "url": "https://explorer.dogether.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ruby Smart Chain MAINNET", - "chain": "RUBY", - "rpc": [ - "https://mainnet-data.rubychain.io/", - "https://mainnet.rubychain.io/" - ], - "nativeCurrency": { - "name": "RUBY Smart Chain Native Token", - "symbol": "RUBY", - "decimals": 18 - }, - "infoURL": "https://rubychain.io", - "faucets": [], - "shortName": "RUBY", - "chainId": 1821, - "networkId": 1821, - "slip44": 1, - "icon": "ruby", - "explorers": [ - { - "name": "RUBY Smart Chain MAINNET Explorer", - "icon": "ruby", - "url": "https://rubyscan.net", - "standard": "none" - } - ] - }, - { - "name": "Scalind", - "chain": "ETH", - "icon": "scalind", - "rpc": [ - "https://rpc.scalind.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scalind.com", - "shortName": "scal", - "chainId": 1911, - "networkId": 1911, - "explorers": [ - { - "name": "scalind", - "url": "https://explorer.scalind.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ruby Smart Chain Testnet", - "chain": "RUBY", - "rpc": [ - "https://testnet-rchain.rubychain.io/" - ], - "nativeCurrency": { - "name": "RUBY Smart Chain Native Token", - "symbol": "tRUBY", - "decimals": 18 - }, - "infoURL": "https://rubychain.io", - "faucets": [ - "https://claim-faucet.rubychain.io/" - ], - "shortName": "tRUBY", - "chainId": 1912, - "networkId": 1912, - "slip44": 1, - "icon": "ruby", - "explorers": [ - { - "name": "RUBY Smart Chain Testnet Explorer", - "icon": "ruby", - "url": "https://testnet.rubyscan.net", - "standard": "none" - } - ] - }, - { - "name": "RedeCoin", - "chain": "REDEV2", - "rpc": [ - "https://rpc2.redecoin.eu" - ], - "faucets": [], - "nativeCurrency": { - "name": "RedeCoin", - "symbol": "REDEV2", - "decimals": 18 - }, - "infoURL": "https://www.redecoin.eu", - "shortName": "rede", - "chainId": 1972, - "networkId": 1972, - "explorers": [ - { - "name": "RedeCoin Explorer", - "url": "https://explorer3.redecoin.eu", - "standard": "none" - } - ] - }, - { - "name": "Kyoto Testnet", - "chain": "KYOTO", - "rpc": [ - "https://rpc.testnet.kyotoprotocol.io:8545" - ], - "faucets": [ - "https://faucet.kyotoprotocol.io" - ], - "nativeCurrency": { - "name": "Kyoto", - "symbol": "KYOTO", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://kyotoprotocol.io", - "shortName": "kyoto-testnet", - "chainId": 1998, - "networkId": 1998, - "slip44": 1, - "explorers": [ - { - "name": "Kyotoscan", - "url": "https://testnet.kyotoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Phala Network", - "chain": "PHA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Phala", - "symbol": "PHA", - "decimals": 18 - }, - "infoURL": "https://phala.network", - "shortName": "pha", - "chainId": 2035, - "networkId": 2035 - }, - { - "name": "Hybrid Chain Network Testnet", - "chain": "HYBRID", - "rpc": [ - "https://rpc-testnet.hybridchain.ai/" - ], - "faucets": [ - "https://faucet-testnet.hybridchain.ai" - ], - "nativeCurrency": { - "name": "Hybrid Chain Native Token", - "symbol": "tHRC", - "decimals": 18 - }, - "infoURL": "https://hybridchain.ai", - "shortName": "thrc", - "chainId": 2458, - "networkId": 2458, - "slip44": 1, - "icon": "hybrid", - "explorers": [ - { - "name": "Hybrid Chain Explorer Testnet", - "icon": "hybrid", - "url": "https://testnet.hybridscan.ai", - "standard": "none" - } - ] - }, - { - "name": "Hybrid Chain Network Mainnet", - "chain": "HYBRID", - "rpc": [ - "https://coredata-mainnet.hybridchain.ai/", - "https://rpc-mainnet.hybridchain.ai" - ], - "faucets": [ - "https://faucet-testnet.hybridchain.ai" - ], - "nativeCurrency": { - "name": "Hybrid Chain Native Token", - "symbol": "HRC", - "decimals": 18 - }, - "infoURL": "https://hybridchain.ai", - "shortName": "hrc", - "chainId": 2468, - "networkId": 2468, - "icon": "hybrid", - "explorers": [ - { - "name": "Hybrid Chain Explorer Mainnet", - "icon": "hybrid", - "url": "https://hybridscan.ai", - "standard": "none" - } - ] - }, - { - "name": "Tangle Testnet", - "chain": "Tangle Testnet", - "icon": "tangle", - "rpc": [ - "https://testnet-rpc.tangle.tools", - "https://testnet-rpc-archive.tangle.tools", - "wss://testnet-rpc.tangle.tools", - "wss://testnet-rpc-archive.tangle.tools" - ], - "faucets": [ - "https://faucet.tangle.tools" - ], - "nativeCurrency": { - "name": "Testnet Tangle Network Token", - "symbol": "tTNT", - "decimals": 18 - }, - "infoURL": "https://docs.tangle.tools", - "shortName": "tTangle", - "chainId": 3799, - "networkId": 3799, - "explorers": [ - { - "name": "ttntscan", - "url": "https://testnet-explorer.tangle.tools", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Firechain zkEVM Ghostrider", - "title": "Firechain zkEVM Ghostrider", - "chain": "Firechain", - "rpc": [ - "https://rpc.zkevm.ghostrider.thefirechain.com" - ], - "faucets": [ - "zkevm-faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.thefirechain.com/", - "shortName": "firechain-zkEVM-ghostrider", - "chainId": 3885, - "networkId": 3885, - "explorers": [] - }, - { - "name": "Muster Mainnet", - "chainId": 4078, - "shortName": "muster", - "chain": "Muster", - "icon": "muster", - "networkId": 4078, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://muster.alt.technology" - ], - "faucets": [], - "explorers": [ - { - "name": "Musterscan", - "url": "https://muster-explorer.alt.technology", - "standard": "EIP3091" - } - ], - "infoURL": "", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [] - } - }, - { - "name": "Nexi V2 Mainnet", - "chain": "Nexi V2", - "icon": "nexi", - "rpc": [ - "https://chain.nexiv2.nexilix.com", - "https://rpc.chainv1.nexi.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "NexiV2", - "symbol": "NEXI", - "decimals": 18 - }, - "infoURL": "https://www.nexi.technology/", - "shortName": "NexiV2", - "chainId": 4243, - "networkId": 4243, - "slip44": 2500, - "explorers": [ - { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Layer Network", - "chain": "SLN", - "rpc": [ - "https://rpc.main.smartlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 - }, - "infoURL": "https://www.smartlayer.network/", - "shortName": "SLN", - "chainId": 5169, - "networkId": 5169, - "explorers": [ - { - "name": "SLN Mainnet Explorer", - "url": "https://explorer.main.smartlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Latest Chain Testnet", - "chain": "LATEST", - "icon": "latestChain", - "rpc": [ - "https://testnet-rpc.latestcoin.io" - ], - "faucets": [ - "http://faucet.latestchain.io" - ], - "nativeCurrency": { - "name": "Latest", - "symbol": "LATEST", - "decimals": 18 - }, - "infoURL": "https://latestcoin.io", - "shortName": "LATESTt", - "chainId": 6660, - "networkId": 6660, - "explorers": [ - { - "name": "Latest Chain", - "url": "http://testnet.latestchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cybria Mainnet", - "chain": "CYBA", - "rpc": [ - "https://rpc-mainnet.cybria.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://cybria.io", - "shortName": "cyba", - "chainId": 6661, - "networkId": 6661, - "icon": "cybria", - "explorers": [ - { - "name": "Cybria Explorer", - "url": "https://cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155420", - "bridges": [ - { - "url": "https://app.optimism.io/bridge" - } - ] - } - }, - { - "name": "Cybria Testnet", - "chain": "CYBA", - "rpc": [ - "https://l2-rpc.cybascan.io" - ], - "faucets": [ - "https://faucet.cybascan.io" - ], - "nativeCurrency": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://cybria.io", - "shortName": "tcyba", - "chainId": 6666, - "networkId": 6666, - "icon": "cybria", - "explorers": [ - { - "name": "Cybria Explorer", - "url": "https://explorer.cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155420", - "bridges": [ - { - "url": "https://app.optimism.io/bridge" - } - ] - } - }, - { - "name": "PAXB Mainnet", - "chain": "PAXB", - "rpc": [ - "https://chain.paxb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAXB", - "symbol": "PAXB", - "decimals": 18 - }, - "infoURL": "https://paxb.io/", - "shortName": "PAXB", - "chainId": 6701, - "networkId": 6701, - "icon": "paxb", - "explorers": [ - { - "name": "PAXB Explorer", - "url": "https://scan.paxb.io", - "icon": "paxb", - "standard": "EIP3091" - } - ] - }, - { - "name": "Compverse Mainnet", - "chain": "CPV", - "icon": "compverse", - "rpc": [ - "https://rpc.compverse.io/", - "https://rpc-useast1.compverse.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "compverse", - "symbol": "CPV", - "decimals": 18 - }, - "infoURL": "https://compverse.io", - "shortName": "compverse", - "chainId": 6779, - "networkId": 6779, - "slip44": 7779, - "explorers": [ - { - "name": "cpvscan", - "url": "https://scan.compverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nume", - "title": "Nume", - "chain": "Nume", - "rpc": [ - "https://rpc.numecrypto.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dai Stablecoin", - "symbol": "DAI", - "decimals": 18 - }, - "infoURL": "https://numecrypto.com", - "shortName": "nume", - "chainId": 7100, - "networkId": 7100, - "icon": "nume", - "explorers": [ - { - "name": "numeexplorer", - "url": "https://explorer.numecrypto.com", - "icon": "nume", - "standard": "none" - } - ] - }, - { - "name": "Help The Homeless", - "chain": "mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Help The Homeless Coin", - "symbol": "HTH", - "decimals": 18 - }, - "infoURL": "https://hth.world", - "shortName": "hth", - "chainId": 7118, - "networkId": 7118, - "icon": "hth", - "status": "incubating", - "explorers": [] - }, - { - "name": "E-Dollar", - "chain": "USD", - "rpc": [ - "https://rpc.e-dollar.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "E-Dollar", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://e-dollar.org", - "shortName": "E-Dollar", - "chainId": 8087, - "networkId": 8087, - "explorers": [] - }, - { - "name": "Storagechain Mainnet", - "chain": "Storagechain", - "rpc": [ - "https://mainnet-validator.storagechain.io" - ], - "icon": "storagechain", - "faucets": [], - "shortName": "stor", - "nativeCurrency": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 - }, - "infoURL": "https://storagechain.io/about-us", - "chainId": 8726, - "networkId": 8726, - "explorers": [ - { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", - "standard": "none" - } - ] - }, - { - "name": "Storagechain Testnet", - "chain": "Storagechain", - "rpc": [ - "https://testnet-validator.storagechain.io" - ], - "icon": "storagechain", - "faucets": [], - "nativeCurrency": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 - }, - "shortName": "tstor", - "infoURL": "https://storagechain.io/about-us", - "chainId": 8727, - "networkId": 8727, - "explorers": [ - { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", - "standard": "none" - } - ] - }, - { - "name": "Evoke Mainnet", - "chain": "MTHN", - "icon": "mthn", - "rpc": [ - "https://mainnet-rpc.evokescan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "MTHN", - "symbol": "MTHN", - "decimals": 18 - }, - "infoURL": "https://explorer.evokescan.org", - "shortName": "MTHN", - "chainId": 9395, - "networkId": 9395, - "explorers": [ - { - "name": "Evoke SmartChain Explorer", - "url": "https://explorer.evokescan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogelayer Mainnet", - "chain": "Dogelayer", - "rpc": [ - "https://dl-rpc.dogelayer.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogelayer.org", - "shortName": "Dogelayer", - "chainId": 9888, - "networkId": 9888, - "explorers": [ - { - "name": "Dogelayer mainnet explorer", - "url": "https://dl-explorer.dogelayer.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Combo Mainnet", - "chain": "Combo", - "icon": "combo", - "rpc": [ - "https://rpc.combonetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://combonetwork.io", - "shortName": "combo-mainnet", - "chainId": 9980, - "networkId": 9980, - "explorers": [ - { - "name": "combotrace explorer", - "url": "https://combotrace.nodereal.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arthera Mainnet", - "chain": "AA", - "icon": "arthera", - "rpc": [ - "https://rpc.arthera.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 - }, - "infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat", - "shortName": "aa", - "chainId": 10242, - "networkId": 10242, - "slip44": 10242, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immutable zkEVM", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "IMX", - "symbol": "IMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx", - "chainId": 13371, - "networkId": 13371, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable explorer", - "url": "https://explorer.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "BSL Mainnet", - "chain": "BSL", - "rpc": [ - "http://rpc-mainnet.nftruth.io:8545", - "ws://rpc-mainnet.nftruth.io:8645" - ], - "faucets": [], - "nativeCurrency": { - "name": "Origin NFT", - "symbol": "ONF", - "decimals": 18 - }, - "infoURL": "https://bsquarelab.com/", - "shortName": "onf", - "chainId": 21912, - "networkId": 21912, - "explorers": [ - { - "name": "BSL Mainnet Explorer", - "url": "https://scan.nftruth.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GoldXChain Testnet", - "chain": "GoldXTestnet", - "rpc": [ - "https://testnet-rpc.goldxchain.io" - ], - "faucets": [ - "https://faucet.goldxchain.io" - ], - "nativeCurrency": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 - }, - "infoURL": "https://goldxchain.io", - "shortName": "goldx-testnet", - "chainId": 22324, - "networkId": 22324, - "explorers": [ - { - "name": "GoldXChain Testnet Explorer", - "url": "https://testnet-explorer.goldxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Blast Testnet", - "chain": "ETH", - "icon": "blastIcon", - "rpc": [ - "http://testnet-rpc.blastblockchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.blastblockchain.com", - "shortName": "blastT", - "chainId": 23888, - "networkId": 23888, - "explorers": [ - { - "name": "Blast Testnet", - "url": "http://testnet-explorer.blastblockchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evoke Testnet", - "chain": "Evoke", - "icon": "mthn", - "rpc": [ - "https://testnet-rpc.evokescan.org" - ], - "faucets": [ - "https://faucet.evokescan.org" - ], - "nativeCurrency": { - "name": "MTHN Testnet", - "symbol": "MTHN", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.evokescan.org", - "shortName": "tmthn", - "chainId": 31414, - "networkId": 31414, - "explorers": [ - { - "name": "Evoke SmartChain Testnet Explorer", - "url": "https://testnet-explorer.evokescan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "W3Gamez Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-holesky.w3gamez.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "W3Gamez Testnet Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://web3games.com/", - "shortName": "w3gamez", - "chainId": 32001, - "networkId": 32001, - "slip44": 1, - "icon": "w3gamez", - "explorers": [ - { - "name": "W3Gamez Holesky Explorer", - "url": "https://w3gamez-holesky.web3games.com", - "icon": "web3games", - "standard": "EIP3091" - } - ] - }, - { - "name": "GoldXChain Mainnet", - "chain": "GoldX", - "rpc": [ - "https://mainnet-rpc.goldxchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 - }, - "infoURL": "https://goldxchain.io", - "shortName": "goldx", - "chainId": 42355, - "networkId": 42355, - "explorers": [ - { - "name": "GoldXChain Explorer", - "url": "https://explorer.goldxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKFair Mainnet", - "title": "ZKFair Mainnet", - "chain": "ZKFair", - "rpc": [ - "https://rpc.zkfair.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://zkfair.io", - "shortName": "ZKFair-Mainnet", - "chainId": 42766, - "networkId": 42766, - "icon": "zkfair", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://wallet.zkfair.io" - } - ] - } - }, - { - "name": "Deelance Mainnet", - "title": "Deelance Network Mainnet", - "chain": "DEE", - "rpc": [ - "https://rpc.deelance.com" - ], - "faucets": [ - "https://faucet.deelance.com" - ], - "nativeCurrency": { - "name": "Deelance", - "symbol": "DEE", - "decimals": 18 - }, - "infoURL": "https://deelance.com", - "shortName": "dee", - "chainId": 45510, - "networkId": 45510, - "icon": "deelance", - "explorers": [ - { - "name": "Deelance Mainnet Explorer", - "url": "https://deescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Yooldo Verse Mainnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVM", - "chainId": 50005, - "networkId": 50005, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Yooldo Verse Testnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.testnet.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVT", - "chainId": 50006, - "networkId": 50006, - "slip44": 1, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.testnet.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Grok Chain Mainnet", - "chain": "Grok", - "icon": "grokicon", - "rpc": [ - "https://mainnet-rpc.grokchain.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Groc", - "symbol": "GROC", - "decimals": 18 - }, - "infoURL": "https://grokchain.dev", - "shortName": "GrokChain", - "chainId": 72992, - "networkId": 72992, - "explorers": [ - { - "name": "GrokScan", - "url": "https://mainnet-explorer.grokchain.dev", - "standard": "none" - } - ] - }, - { - "name": "Smart Layer Network Testnet", - "chain": "SLN", - "rpc": [ - "https://rpc.test.smartlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 - }, - "infoURL": "https://www.smartlayer.network/", - "shortName": "tSLN", - "chainId": 82459, - "networkId": 82459, - "explorers": [ - { - "name": "SLN Testnet Explorer", - "url": "https://explorer.test.smartlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Combo Testnet", - "chain": "Combo", - "icon": "combo", - "rpc": [ - "https://test-rpc.combonetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "tcBNB", - "decimals": 18 - }, - "infoURL": "https://combonetwork.io", - "shortName": "combo-testnet", - "chainId": 91715, - "networkId": 91715, - "explorers": [ - { - "name": "combotrace explorer", - "url": "https://combotrace-testnet.nodereal.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Etherlink Testnet", - "chain": "Etherlink", - "icon": "etherlink", - "chainId": 128123, - "networkId": 128123, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://etherlink.com", - "shortName": "etlt", - "nativeCurrency": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 - }, - "rpc": [ - "https://node.ghostnet.etherlink.com" - ], - "faucets": [ - "https://faucet.etherlink.com" - ], - "explorers": [ - { - "name": "Etherlink Testnet Explorer", - "url": "https://testnet-explorer.etherlink.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Katla L2", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.katla.taiko.xyz", - "https://taiko-katla.blockpi.network/v1/rpc/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-katla", - "chainId": 167008, - "networkId": 167008, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "CONET Sebolia Testnet", - "chain": "CONET", - "rpc": [ - "https://rpc1.conet.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "CONET Sebolia", - "symbol": "CONET", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://conet.network", - "shortName": "conet-sebolia", - "chainId": 224422, - "networkId": 224422, - "slip44": 1, - "icon": "conet", - "explorers": [ - { - "name": "CONET Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "CONET Holesky", - "chain": "CONET Holesky", - "rpc": [ - "https://holeskyrpc1.conet.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "CONET Holesky", - "symbol": "CONET", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://conet.network", - "shortName": "conet-holesky", - "chainId": 224433, - "networkId": 224433, - "slip44": 2147708081, - "icon": "conet", - "explorers": [ - { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ultra Pro Mainnet", - "chain": "ultrapro", - "icon": "ultrapro", - "rpc": [ - "https://mainnet-rpc.ultraproscan.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultra Pro", - "symbol": "UPRO", - "decimals": 18 - }, - "infoURL": "https://ultrapro.info", - "shortName": "ultrapro", - "chainId": 473861, - "networkId": 473861, - "explorers": [ - { - "name": "ultraproscan", - "url": "https://ultraproscan.io", - "icon": "ultrapro", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlocX Mainnet", - "chain": "BLX", - "rpc": [ - "https://mainnet-rpc.blxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlocX", - "symbol": "BLX", - "decimals": 18 - }, - "infoURL": "https://www.blocxchain.org/", - "shortName": "blx", - "chainId": 879151, - "networkId": 879151, - "icon": "blx", - "explorers": [ - { - "name": "BlocX Mainnet Explorer", - "url": "https://explorer.blxscan.com", - "icon": "blx", - "standard": "none" - } - ] - }, - { - "name": "Astria EVM Dusknet", - "chain": "RIA", - "icon": "astria", - "chainId": 912559, - "networkId": 912559, - "infoURL": "https://docs.astria.org", - "shortName": "ria-dev", - "nativeCurrency": { - "name": "RIA", - "symbol": "RIA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.evm.dusk-2.devnet.astria.org" - ], - "faucets": [ - "https://faucet.evm.dusk-2.devnet.astria.org/" - ], - "explorers": [ - { - "name": "Astria EVM Dusknet Explorer", - "url": "https://explorer.evm.dusk-2.devnet.astria.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Turkey Demo Dev", - "chain": "ETH", - "rpc": [ - "https://devchain-poa.huabeizhenxuan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "TDD", - "chainId": 1731313, - "networkId": 1731313 - }, - { - "name": "Hokum", - "chain": "Hokum", - "icon": "hokum", - "rpc": [ - "https://mainnet.hokum.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hokum.gg", - "shortName": "hokum", - "chainId": 8080808, - "networkId": 8080808, - "explorers": [ - { - "name": "Hokum Explorer", - "url": "https://explorer.hokum.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hokum Testnet", - "chain": "HokumTestnet", - "icon": "hokum", - "rpc": [ - "https://testnet.hokum.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hokum.gg", - "shortName": "hokum-testnet", - "chainId": 20482050, - "networkId": 20482050, - "explorers": [ - { - "name": "Hokum Explorer", - "url": "https://testnet-explorer.hokum.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ancient8 Testnet", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpcv2-testnet.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "a8", - "chainId": 28122024, - "networkId": 28122024, - "slip44": 1, - "explorers": [ - { - "name": "scan-testnet", - "url": "https://scanv2-testnet.ancient8.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Barada) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-01", - "chainId": 65100001, - "networkId": 65100001, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Puppynet Shibarium", - "chain": "Puppynet Shibarium", - "icon": "shibarium", - "rpc": [ - "https://puppynet.shibrpc.com" - ], - "faucets": [ - "https://beta.shibariumtech.com/faucet" - ], - "nativeCurrency": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://shibariumecosystem.com", - "shortName": "puppynet", - "chainId": 157, - "networkId": 157, - "explorers": [ - { - "name": "puppyscan", - "url": "https://puppyscan.shib.io", - "standard": "none" - } - ] - }, - { - "name": "Viridis Testnet", - "chain": "VRD", - "icon": "viridis", - "rpc": [ - "https://testnet-rpc.vrd.network" - ], - "faucets": [ - "https://faucet.vrd.network" - ], - "nativeCurrency": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 - }, - "infoURL": "https://viridis.network", - "shortName": "VRD-Testnet", - "chainId": 224, - "networkId": 224, - "explorers": [ - { - "name": "Viridis Testnet", - "url": "https://testnet.vrd.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "ProtoJumbo Testnet", - "chain": "Jumbo", - "rpc": [ - "https://testnode.jumbochain.org" - ], - "faucets": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "ProtoJumbo", - "chainId": 234, - "networkId": 234, - "slip44": 1, - "explorers": [ - { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "BPX Blockchain", - "chain": "BPX", - "icon": "bpx", - "rpc": [ - "https://rpc.mainnet.bpxchain.cc", - "https://bpx-dataseed.infinex.cc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BPX", - "symbol": "BPX", - "decimals": 18 - }, - "infoURL": "https://bpxchain.cc", - "shortName": "bpx", - "chainId": 279, - "networkId": 279 - }, - { - "name": "ZKSats Mainnet", - "title": "ZKSats Mainnet", - "chain": "ZKSats", - "rpc": [ - "https://mainnet.zksats.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://zksats.io", - "shortName": "ZKSats-Mainnet", - "chainId": 305, - "networkId": 305, - "icon": "zksats", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.zksats.io", - "icon": "zksats", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lovely Network Testnet", - "chain": "Lovely", - "icon": "lovely", - "rpc": [ - "https://trpc.lovely.network" - ], - "faucets": [ - "https://faucet.lovely.network" - ], - "nativeCurrency": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 - }, - "infoURL": "https://lovely.network", - "shortName": "LOVELY-Testnet", - "chainId": 307, - "networkId": 307, - "explorers": [ - { - "name": "Lovely Network Testnet", - "url": "https://tscan.lovely.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cosvm Mainnet", - "chain": "CVM", - "rpc": [ - "https://rpc.cosvm.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cosvm", - "symbol": "CVM", - "decimals": 18 - }, - "infoURL": "https://cosvm.network", - "shortName": "cvm", - "chainId": 323, - "networkId": 323, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.cosvm.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKAmoeba Testnet", - "chain": "FIL", - "rpc": [ - "https://rpc.testnet.zkamoeba.com:4050/", - "https://rpc1.testnet.zkamoeba.com:4050/" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://testnet.zkamoeba.com", - "shortName": "zkamoeba-test", - "chainId": 380, - "networkId": 380, - "icon": "zkamoeba-micro", - "explorers": [ - { - "name": "ZKAmoeba Test Explorer", - "url": "https://testnetexplorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-314", - "bridges": [ - { - "url": "https://testnet.zkamoeba.com/en/bridge" - } - ] - } - }, - { - "name": "ZKAmoeba Mainnet", - "chain": "FIL", - "rpc": [ - "https://rpc.mainnet.zkamoeba.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://www.zkamoeba.com", - "shortName": "zkamoeba", - "chainId": 381, - "networkId": 381, - "icon": "zkamoeba-micro", - "explorers": [ - { - "name": "ZKAmoeba Explorer", - "url": "https://explorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-314", - "bridges": [ - { - "url": "https://www.zkamoeba.com/en/bridge" - } - ] - } - }, - { - "name": "Viridis Mainnet", - "chain": "VRD", - "icon": "viridis", - "rpc": [ - "https://mainnet-rpc.vrd.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 - }, - "infoURL": "https://viridis.network", - "shortName": "vrd", - "chainId": 422, - "networkId": 422, - "explorers": [ - { - "name": "Viridis Mainnet", - "url": "https://explorer.vrd.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Syndicate Chain", - "title": "Syndicate Chain", - "chain": "Syndicate", - "rpc": [ - "https://rpc-mainnet.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-mainnet", - "chainId": 510, - "networkId": 510, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "EIOB Mainnet", - "chain": "EIOB", - "icon": "eiob", - "rpc": [ - "https://rpc.eiob.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "EIOB", - "symbol": "EIOB", - "decimals": 18 - }, - "infoURL": "", - "shortName": "eiob", - "chainId": 612, - "networkId": 612, - "explorers": [ - { - "name": "EIOB Explorer", - "url": "https://explorer.eiob.xyz", - "standard": "none" - } - ] - }, - { - "name": "Vrcscan Mainnet", - "chain": "VRC", - "rpc": [ - "https://rpc-mainnet-5.vrcscan.com", - "https://rpc-mainnet-6.vrcscan.com", - "https://rpc-mainnet-7.vrcscan.com", - "https://rpc-mainnet-8.vrcscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VRC Chain", - "symbol": "VRC", - "decimals": 18 - }, - "infoURL": "https://vrccoin.com", - "shortName": "vrc", - "chainId": 713, - "networkId": 713, - "explorers": [ - { - "name": "vrcscan", - "url": "https://vrcscan.com", - "standard": "EIP3091" - }, - { - "name": "dxbscan", - "url": "https://dxb.vrcscan.com", - "standard": "EIP3091" - } - ], - "icon": "vrcscan" - }, - { - "name": "Lovely Network Mainnet", - "chain": "Lovely", - "icon": "lovely", - "rpc": [ - "https://rpc.lovely.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 - }, - "infoURL": "https://lovely.network", - "shortName": "LOVELY", - "chainId": 730, - "networkId": 730, - "explorers": [ - { - "name": "Lovely Network Mainnet", - "url": "https://scan.lovely.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rupaya Testnet", - "chain": "Rupaya Testnet", - "rpc": [ - "https://rpc.testnet.rupaya.io" - ], - "faucets": [ - "https://faucet.testnet.rupaya.io" - ], - "nativeCurrency": { - "name": "Test Rupaya", - "symbol": "TRUPX", - "decimals": 18 - }, - "infoURL": "https://www.rupaya.io", - "shortName": "RupayaTestnet", - "chainId": 799, - "networkId": 799, - "slip44": 1, - "explorers": [ - { - "name": "rupayascan", - "url": "https://scan.testnet.rupaya.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "CheckDot Blockchain Devnet", - "chain": "CDT Blockchain", - "rpc": [ - "https://devnet.checkdot.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "CDT", - "symbol": "CDT", - "decimals": 18 - }, - "infoURL": "https://checkdot.io", - "shortName": "cdt", - "chainId": 831, - "networkId": 831, - "explorers": [ - { - "name": "CDT Explorer", - "url": "https://explorer.checkdot.io", - "standard": "none" - } - ] - }, - { - "name": "Dymension", - "chain": "Dymension", - "rpc": [ - "https://dymension-evm.blockpi.network/v1/rpc/public", - "https://dymension-evm-rpc.publicnode.com", - "wss://dymension-evm-rpc.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DYM", - "symbol": "DYM", - "decimals": 18 - }, - "infoURL": "https://dymension.xyz", - "shortName": "dymension", - "icon": "dymension", - "chainId": 1100, - "networkId": 1100, - "explorers": [ - { - "name": "dym.fyi", - "url": "https://dym.fyi", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hybrid Testnet", - "chain": "$HYB", - "icon": "hybridIcon", - "rpc": [ - "https://testnet-rpc.buildonhybrid.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hybrid", - "symbol": "$HYB", - "decimals": 18 - }, - "infoURL": "https://buildonhybrid.com", - "shortName": "hyb", - "chainId": 1224, - "networkId": 1224, - "explorers": [ - { - "name": "Hybrid Testnet", - "url": "https://alphatestnet.buildonhybrid.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain Istanbul", - "title": "MetaChain Testnet Istanbul", - "chain": "MTC", - "icon": "metachain", - "rpc": [ - "https://istanbul-rpc.metachain.dev" - ], - "faucets": [ - "https://istanbul-faucet.metachain.dev" - ], - "nativeCurrency": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://metatime.com/en", - "shortName": "metatimeistanbul", - "chainId": 1453, - "networkId": 1453, - "slip44": 1453, - "explorers": [ - { - "name": "MetaExplorer", - "url": "https://istanbul-explorer.metachain.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vitruveo Mainnet", - "title": "Vitruveo is a blockchain for Creators", - "chain": "Vitruveo", - "rpc": [ - "https://rpc.vitruveo.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Vitruveo Coin", - "symbol": "VTRU", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.vitruveo.xyz", - "shortName": "vitruveo", - "chainId": 1490, - "networkId": 1490, - "icon": "vitruveo", - "explorers": [ - { - "name": "Vitruveo Explorer", - "url": "https://explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Selendra Network Testnet", - "chain": "tSEL", - "rpc": [ - "https://rpc0-testnet.selendra.org", - "https://rpc1-testnet.selendra.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Selendra", - "symbol": "tSEL", - "decimals": 18 - }, - "infoURL": "https://selendra.org", - "shortName": "tSEL", - "chainId": 1953, - "networkId": 1953, - "icon": "selendra" - }, - { - "name": "Selendra Network Mainnet", - "chain": "SEL", - "rpc": [ - "https://rpc0.selendra.org", - "https://rpc1.selendra.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Selendra", - "symbol": "SEL", - "decimals": 18 - }, - "infoURL": "https://selendra.org", - "shortName": "SEL", - "chainId": 1961, - "networkId": 1961, - "icon": "selendra", - "explorers": [ - { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", - "standard": "none" - } - ] - }, - { - "name": "Swan Saturn Testnet", - "chain": "SWAN", - "rpc": [ - "https://saturn-rpc.swanchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWANETH", - "symbol": "SWAN", - "decimals": 18 - }, - "infoURL": "https://swanchain.io/", - "shortName": "swan", - "chainId": 2024, - "networkId": 2024 - }, - { - "name": "Karak Mainnet", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://rpc.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-mainnet", - "chainId": 2410, - "networkId": 2410, - "explorers": [ - { - "name": "Karak Mainnet Explorer", - "url": "https://explorer.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "Polygon zkEVM Cardona Testnet", - "title": "Polygon zkEVM Cardona Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.cardona.zkevm-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/polygon-zkevm", - "shortName": "zkevm-testnet-cardona", - "chainId": 2442, - "networkId": 2442, - "icon": "zkevm", - "explorers": [ - { - "name": "polygonscan", - "url": "https://cardona-zkevm.polygonscan.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-ui.cardona.zkevm-rpc.com" - } - ] - } - }, - { - "name": "Karak Testnet", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://goerli.node1.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Karak", - "symbol": "KRK", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-testnet", - "chainId": 2511, - "networkId": 2511, - "explorers": [ - { - "name": "Karak Testnet Explorer", - "url": "https://goerli.scan.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5" - } - }, - { - "name": "Elizabeth Testnet", - "chain": "Elizabeth", - "rpc": [ - "https://testnet-rpc.timenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIME", - "symbol": "TIME", - "decimals": 18 - }, - "infoURL": "https://whitepaper.anttime.net/overview/anttime", - "shortName": "TIME", - "chainId": 2731, - "networkId": 2731, - "icon": "timenet", - "explorers": [ - { - "name": "Time Network Explorer", - "url": "https://testnet-scanner.timenetwork.io", - "standard": "none", - "icon": "timenet" - } - ] - }, - { - "name": "Xenon Chain Testnet", - "chain": "XEN", - "rpc": [ - "https://testnet-chain.xenonchain.com/", - "https://testnet-dev.xenonchain.com/" - ], - "faucets": [ - "https://xfaucet.xenonchain.com" - ], - "nativeCurrency": { - "name": "Xenon Testnet", - "symbol": "tXEN", - "decimals": 18 - }, - "infoURL": "https://xenonchain.com", - "shortName": "xenon", - "chainId": 2941, - "networkId": 2941, - "icon": "xenon", - "slip44": 1, - "explorers": [ - { - "name": "Xenon testnet Explorer", - "url": "https://testnet.xenonchain.com", - "standard": "none" - } - ] - }, - { - "name": "APEX Testnet", - "chain": "ETH", - "rpc": [ - "https://exp-testnet.apexlayer.xyz" - ], - "faucets": [ - "https://sepoliafaucet.com/" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.apexlayer.xyz/", - "shortName": "apexsep", - "chainId": 3993, - "networkId": 3993, - "slip44": 1, - "icon": "apextestnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://exp-testnet.apexlayer.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://apexlayer.xyz/bridge" - } - ] - } - }, - { - "name": "Lisk Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia-api.lisk.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lisk.com", - "shortName": "lisksep", - "chainId": 4202, - "networkId": 4202, - "slip44": 134, - "explorers": [ - { - "name": "liskscout", - "url": "https://sepolia-blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emoney Network Testnet", - "chain": "Emoney", - "rpc": [ - "https://testnet.emoney.network/" - ], - "faucets": [ - "https://faucet.emoney.network/faucet" - ], - "nativeCurrency": { - "name": "Emoney Network", - "symbol": "EMYC", - "decimals": 18 - }, - "infoURL": "https://emoney.network/", - "shortName": "emoney", - "chainId": 4544, - "networkId": 4544, - "slip44": 118, - "icon": "emoney", - "explorers": [ - { - "name": "EMoney ethscan", - "url": "https://ethscan.emoney.network", - "icon": "emoney", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Chain", - "title": "Gold Chain", - "chain": "Gold", - "rpc": [ - "https://chain-rpc.gold.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gold.dev", - "shortName": "gold", - "chainId": 4653, - "networkId": 4653, - "status": "incubating", - "icon": "gold" - }, - { - "name": "Syndicate Testnet", - "title": "Syndicate Testnet", - "chain": "Syndicate", - "rpc": [ - "https://rpc-testnet.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "S-Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-testnet", - "chainId": 5100, - "networkId": 5100, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "Syndicate Frame Chain", - "title": "Syndicate Frame Chain", - "chain": "Syndicate Frame", - "rpc": [ - "https://rpc-frame.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-frame", - "chainId": 5101, - "networkId": 5101, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "BST Chain", - "chain": "BSTC", - "rpc": [ - "https://rpc.bstchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BST Chain", - "symbol": "BSTC", - "decimals": 18 - }, - "infoURL": "https://bstchain.io", - "shortName": "BSTC", - "chainId": 7007, - "networkId": 7007, - "icon": "bstc", - "explorers": [ - { - "name": "blockscout", - "url": "https://bstscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kinto Mainnet", - "chain": "Kinto Mainnet", - "rpc": [ - "https://rpc.kinto.xyz/http", - "https://kinto-mainnet.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kinto.xyz", - "shortName": "kintoMainnet", - "chainId": 7887, - "networkId": 7887, - "icon": "kinto", - "explorers": [ - { - "name": "Kinto Explorer", - "url": "https://explorer.kinto.xyz", - "icon": "kinto", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orenium Testnet Protocol", - "chain": "ORE", - "rpc": [ - "https://rpc-dev-testnet.orenium.org/", - "https://rpc-testnet.orenium.org/" - ], - "nativeCurrency": { - "name": "ORENIUM", - "symbol": "tORE", - "decimals": 18 - }, - "infoURL": "https://orenium.org", - "shortName": "tore", - "chainId": 8890, - "networkId": 8890, - "slip44": 1, - "icon": "ore", - "faucets": [ - "https://faucetcoin.orenium.org" - ], - "explorers": [ - { - "name": "ORE Testnet Explorer", - "icon": "ore", - "url": "https://testnet.oreniumscan.org", - "standard": "none" - } - ] - }, - { - "name": "Nexa Testnet Block", - "chain": "Nexa Testnet", - "rpc": [ - "https://rpc-testnet-nodes.nexablockscan.io" - ], - "faucets": [ - "https://testnet.nexablockscan.io/faucet" - ], - "nativeCurrency": { - "name": "Nexa Testnet Token", - "symbol": "NEXB", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "NexaTestnet", - "chainId": 9024, - "networkId": 9024, - "icon": "nexaChain", - "explorers": [ - { - "name": "Nexablock Testnet Explorer", - "url": "https://testnet.nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } - ] - }, - { - "name": "Nexa Mainnet Block", - "chain": "Nexa Mainnet", - "rpc": [ - "https://rpc-nodes.nexablockscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nexa Mainnet Token", - "symbol": "NEXB", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "Nexa", - "chainId": 9025, - "networkId": 9025, - "icon": "nexaChain", - "explorers": [ - { - "name": "Nexablock Mainnet Explorer", - "url": "https://nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } - ] - }, - { - "name": "Dela Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-dela.deperp.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.deperp.com/dela", - "shortName": "delasep", - "chainId": 9393, - "networkId": 9393, - "slip44": 1, - "icon": "delaTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://sepolia-delascan.deperp.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM Testnet", - "chain": "BEVM", - "rpc": [ - "https://testnet.bevm.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://bevm.io", - "shortName": "bevm", - "chainId": 11503, - "networkId": 11503, - "icon": "bevmcanary", - "explorers": [ - { - "name": "bevm testnet scan", - "url": "https://scan-testnet.bevm.io", - "standard": "none" - } - ] - }, - { - "name": "Aternos", - "chain": "Aternos", - "icon": "aternos", - "rpc": [ - "https://rpc.aternoschain.com" - ], - "faucets": [ - "https://faucet.aternoschain.com" - ], - "nativeCurrency": { - "name": "Aternos", - "symbol": "ATR", - "decimals": 18 - }, - "infoURL": "https://aternoschain.com", - "shortName": "ATR", - "chainId": 12020, - "networkId": 12020, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.aternoschain.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vitruveo Testnet", - "title": "Vitruveo is a blockchain for Creators", - "chain": "Vitruveo", - "rpc": [ - "https://test-rpc.vitruveo.xyz" - ], - "faucets": [ - "https://faucet.vitruveo.xyz" - ], - "nativeCurrency": { - "name": "Vitruveo Test Coin", - "symbol": "tVTRU", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.vitruveo.xyz", - "shortName": "vitruveo-test", - "chainId": 14333, - "networkId": 14333, - "icon": "vitruveo", - "explorers": [ - { - "name": "Vitruveo Testnet Explorer", - "url": "https://test-explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclipse Subnet", - "chain": "ECLIPSE", - "rpc": [ - "https://subnets.avax.network/eclipse/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclipse", - "symbol": "ECLP", - "decimals": 16 - }, - "infoURL": "http://eclipsenet.io", - "shortName": "eclipse", - "chainId": 17172, - "networkId": 17172, - "explorers": [ - { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipse", - "standard": "EIP3091" - } - ] - }, - { - "name": "KONET Mainnet", - "chain": "KONET", - "rpc": [ - "https://api.kon-wallet.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KONET", - "symbol": "KONET", - "decimals": 18 - }, - "infoURL": "https://konetmain.com", - "shortName": "KONET", - "chainId": 17217, - "networkId": 17217, - "slip44": 1, - "icon": "konet", - "explorers": [ - { - "name": "konet-explorer", - "url": "https://explorer.kon-wallet.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "unreal", - "title": "unreal testnet for re.al", - "chain": "unreal", - "rpc": [ - "https://rpc.unreal.gelato.digital", - "wss://ws.unreal.gelato.digital" - ], - "nativeCurrency": { - "name": "unreal Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", - "faucets": [], - "shortName": "unreal", - "chainId": 18231, - "networkId": 18231, - "slip44": 60, - "icon": "unreal", - "explorers": [ - { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.unreal.gelato.digital" - } - ] - } - }, - { - "name": "Titan (TKX) Testnet", - "chain": "Titan (TKX)", - "rpc": [ - "https://titan-testnet-json-rpc-1.tokenize-dev.com", - "https://titan-testnet-json-rpc-2.tokenize-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 - }, - "infoURL": "https://tokenize.exchange", - "shortName": "titan_tkx-testnet", - "chainId": 18889, - "networkId": 18889, - "slip44": 1, - "icon": "titan_tkx", - "explorers": [ - { - "name": "Titan Explorer", - "url": "https://titan-testnet-explorer-light.tokenize-dev.com", - "standard": "none", - "icon": "titan_tkx" - } - ] - }, - { - "name": "Decentraconnect Social", - "chain": "DCSM", - "icon": "dcsmIcon", - "rpc": [ - "https://rpc.decentraconnect.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decentraconnect Social", - "symbol": "DCSM", - "decimals": 18 - }, - "infoURL": "https://docs.decentraconnect.io", - "shortName": "DCSMs", - "chainId": 19224, - "networkId": 19224, - "explorers": [ - { - "name": "Decentraconnect Social", - "url": "https://decentraconnect.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Magnet Network", - "chain": "Magnet", - "rpc": [ - "https://magnet-rpc.magport.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Magnet Network", - "symbol": "DOT", - "decimals": 18 - }, - "infoURL": "https://magnet.magport.io/", - "shortName": "mgt", - "chainId": 19527, - "networkId": 19527, - "explorers": [] - }, - { - "name": "Jono11 Subnet", - "chain": "JONO11", - "icon": "jono11", - "rpc": [ - "https://subnets.avax.network/jono11/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Jono11 Token", - "symbol": "JONO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "jono11", - "chainId": 20765, - "networkId": 20765, - "explorers": [ - { - "name": "JONO11 Explorer", - "url": "https://subnets-test.avax.network/jono11", - "standard": "EIP3091" - } - ] - }, - { - "name": "C4EI", - "chain": "C4EI", - "rpc": [ - "https://rpc.c4ei.net" - ], - "faucets": [ - "https://play.google.com/store/apps/details?id=net.c4ei.fps2" - ], - "nativeCurrency": { - "name": "C4EI", - "symbol": "C4EI", - "decimals": 18 - }, - "infoURL": "https://c4ei.net", - "shortName": "c4ei", - "chainId": 21004, - "networkId": 21004, - "explorers": [ - { - "name": "C4EI sirato", - "url": "https://exp.c4ei.net", - "icon": "c4ei", - "standard": "none" - } - ] - }, - { - "name": "All About Healthy", - "chain": "AAH", - "rpc": [ - "https://rpc.c4ex.net" - ], - "faucets": [ - "https://t.me/c4eiAirdrop" - ], - "nativeCurrency": { - "name": "AAH", - "symbol": "AAH", - "decimals": 18 - }, - "infoURL": "https://c4ex.net", - "shortName": "aah", - "chainId": 21133, - "networkId": 21133, - "explorers": [ - { - "name": "AAH Blockscout", - "url": "https://exp.c4ex.net", - "icon": "aah", - "standard": "EIP3091" - } - ] - }, - { - "name": "LiquidLayer Mainnet", - "chain": "LiquidLayer", - "icon": "lila", - "rpc": [ - "https://mainnet.liquidlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "LiquidLayer", - "symbol": "LILA", - "decimals": 18 - }, - "infoURL": "https://scan.liquidlayer.network", - "shortName": "LILA", - "chainId": 25186, - "networkId": 25186, - "explorers": [ - { - "name": "LiquidLayer Mainnet Explorer", - "url": "https://scan.liquidlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "AlveyChain Testnet", - "chain": "tALV", - "rpc": [ - "https://testnet-rpc.alvey.io" - ], - "faucets": [ - "https://faucet.alveytestnet.com" - ], - "nativeCurrency": { - "name": "AlveyCoin Testnet", - "symbol": "tALV", - "decimals": 18 - }, - "infoURL": "https://alveychain.com/", - "shortName": "talv", - "chainId": 25839, - "networkId": 25839, - "icon": "alveychain", - "explorers": [ - { - "name": "AlveyScan Testnet", - "url": "https://alveytestnet.com", - "icon": "alveychain", - "standard": "EIP3091" - } - ] - }, - { - "name": "GUNZ Testnet", - "chain": "tGUN", - "rpc": [ - "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "GUN", - "symbol": "GUN", - "decimals": 18 - }, - "icon": "guntestnet", - "infoURL": "https://gunbygunz.com", - "shortName": "Stork", - "chainId": 49321, - "networkId": 49321, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.gunzscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOID", - "chain": "DOID", - "rpc": [ - "https://rpc.doid.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://doid.tech", - "shortName": "DOID", - "chainId": 53277, - "networkId": 53277, - "icon": "doid", - "explorers": [ - { - "name": "DOID Scan", - "url": "https://scan.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOID Testnet", - "chain": "DOID", - "rpc": [ - "https://rpc.testnet.doid.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://doid.tech", - "shortName": "doidTestnet", - "chainId": 56797, - "networkId": 56797, - "icon": "doid", - "explorers": [ - { - "name": "DOID Testnet Scan", - "url": "https://scan.testnet.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vanguard", - "title": "Vanar Testnet Vanguard", - "chain": "VANAR", - "rpc": [ - "https://rpc-vanguard.vanarchain.com", - "wss://ws-vanguard.vanarchain.com" - ], - "faucets": [ - "https://faucet.vanarchain.com" - ], - "nativeCurrency": { - "name": "Vanguard Vanry", - "symbol": "VG", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://vanarchain.com", - "shortName": "vanguard", - "chainId": 78600, - "networkId": 78600, - "icon": "vanguard", - "explorers": [ - { - "name": "Vanguard Explorer", - "url": "https://explorer-vanguard.vanarchain.com", - "icon": "vanguard", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hizoco mainnet", - "chain": "HZC", - "icon": "hizoco", - "rpc": [ - "https://hizoco.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hizoco", - "symbol": "HZC", - "decimals": 18 - }, - "infoURL": "http://hizoco.net", - "shortName": "hzc", - "chainId": 80096, - "networkId": 80096, - "explorers": [ - { - "name": "blockscout", - "url": "https://hizoco.net:38443", - "standard": "none" - } - ] - }, - { - "name": "Blast", - "chain": "ETH", - "rpc": [ - "https://blast.blockpi.network/v1/rpc/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://blast.io/", - "shortName": "blastmainnet", - "chainId": 81457, - "networkId": 81457, - "icon": "blast", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "MetaDAP Enterprise Mainnet", - "title": "MetaDAP Enterprise Mainnet", - "chain": "MetaDAP", - "icon": "metadap", - "faucets": [], - "rpc": [ - "https://rpc.chain.metadap.io", - "wss://rpc-ws.chain.metadap.io" - ], - "nativeCurrency": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 - }, - "infoURL": "https://metadap.io/", - "shortName": "MetaDAP", - "chainId": 91120, - "networkId": 91120, - "explorers": [ - { - "name": "MetaDAP Enterprise Mainnet explorer", - "url": "https://explorer.chain.metadap.io", - "standard": "none" - } - ] - }, - { - "name": "LiquidLayer Testnet", - "chain": "LILA", - "icon": "lila", - "rpc": [ - "https://testnet.liquidlayer.network" - ], - "faucets": [ - "https://claim.liquidlayer.network" - ], - "nativeCurrency": { - "name": "LiquidLayer Testnet", - "symbol": "LILA", - "decimals": 18 - }, - "infoURL": "https://testnet-scan.liquidlayer.network", - "shortName": "tLILA", - "chainId": 93572, - "networkId": 93572, - "explorers": [ - { - "name": "LiquidLayer Testnet Explorer", - "url": "https://testnet-scan.liquidlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Masa Testnet", - "chain": "MASA", - "rpc": [ - "https://subnets.avax.network/masatestne/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 - }, - "infoURL": "https://masa.finance", - "shortName": "masa", - "chainId": 103454, - "networkId": 103454, - "explorers": [ - { - "name": "Masa Testnet Explorer", - "url": "https://subnets-test.avax.network/masatestnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaDAP Enterprise Testnet", - "title": "MetaDAP Enterprise Testnet", - "chain": "MetaDAP", - "icon": "metadap", - "faucets": [], - "rpc": [ - "https://rpc.testnet.chain.metadap.io", - "wss://rpc-ws.testnet.chain.metadap.io" - ], - "nativeCurrency": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 - }, - "infoURL": "https://metadap.io/", - "shortName": "MetaDAP-T", - "chainId": 119139, - "networkId": 119139, - "explorers": [ - { - "name": "MetaDAP Enterprise Testnet explorer", - "url": "https://explorer.testnet.chain.metadap.io", - "standard": "none" - } - ] - }, - { - "name": "Taiko (Alpha-2 Testnet)", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.a2.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-a2", - "chainId": 167004, - "networkId": 167004, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.a2.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Grimsvotn L2", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l2", - "chainId": 167005, - "networkId": 167005, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.test.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Eldfell L3", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.l3test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l3", - "chainId": 167006, - "networkId": 167006, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.l3test.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitlayer Testnet", - "chain": "Bitlayer", - "rpc": [ - "https://testnet-rpc.bitlayer.org", - "wss://testnet-ws.bitlayer.org" - ], - "faucets": [ - "https://www.bitlayer.org/faucet" - ], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://docs.bitlayer.org/", - "shortName": "Bitlayer", - "chainId": 200810, - "networkId": 200810, - "slip44": 1, - "icon": "bitlayer", - "explorers": [ - { - "name": "bitlayer testnet scan", - "url": "https://testnet-scan.bitlayer.org", - "standard": "none" - } - ] - }, - { - "name": "Bloom Genesis Testnet", - "chain": "Bloom", - "icon": "bloom", - "rpc": [ - "https://testnet-rpc.bloomgenesis.com" - ], - "faucets": [ - "https://faucet.bloomgenesis.com" - ], - "nativeCurrency": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 - }, - "infoURL": "https://www.bloomgenesis.com", - "shortName": "BGBC-Testnet", - "chainId": 323213, - "networkId": 323213, - "explorers": [ - { - "name": "Bloom Genesis Testnet", - "url": "https://testnet.bloomgenesis.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bloom Genesis Mainnet", - "chain": "Bloom", - "icon": "bloom", - "rpc": [ - "https://mainnet-rpc.bloomgenesis.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 - }, - "infoURL": "https://www.bloomgenesis.com", - "shortName": "BGBC", - "chainId": 333313, - "networkId": 333313, - "explorers": [ - { - "name": "Bloom Genesis Mainnet", - "url": "https://explorer.bloomgenesis.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Syndr L3 Sepolia", - "title": "Syndr L3 Sepolia Rollup Testnet", - "chain": "SYNDRSEPOLIA", - "rpc": [ - "https://sepolia.syndr.com/http", - "wss://sepolia.syndr.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndr.com", - "shortName": "syndr", - "chainId": 444444, - "networkId": 444444, - "explorers": [ - { - "name": "Syndr L3 Sepolia Testnet Explorer", - "url": "https://sepolia-explorer.syndr.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://sepolia-bridge.syndr.com" - } - ] - } - }, - { - "name": "Sei Devnet", - "chain": "Sei", - "rpc": [ - "https://evm-rpc-arctic-1.sei-apis.com", - "https://evm-rpc.arctic-1.seinetwork.io" - ], - "faucets": [ - "https://sei-faucet.nima.enterprises", - "https://sei-evm.faucetme.pro" - ], - "nativeCurrency": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 - }, - "infoURL": "https://www.sei.io", - "shortName": "sei-devnet", - "chainId": 713715, - "networkId": 713715, - "icon": "sei", - "explorers": [ - { - "name": "Seistream", - "url": "https://seistream.app", - "standard": "none" - }, - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jono12 Subnet", - "chain": "JONO12", - "icon": "jono12", - "rpc": [ - "https://subnets.avax.network/jono12/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Jono12 Token", - "symbol": "JONO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "jono12", - "chainId": 955081, - "networkId": 955081, - "explorers": [ - { - "name": "JONO12 Explorer", - "url": "https://subnets-test.avax.network/jono12", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Nebula Hub Testnet", - "title": "SKALE Nebula Hub Testnet", - "chain": "lanky-ill-funny-testnet", - "icon": "nebula", - "rpc": [ - "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", - "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-testnet", - "chainId": 37084624, - "networkId": 37084624, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plume Testnet", - "title": "Plume Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://plume-testnet.rpc.caldera.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plume Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.plumenetwork.xyz/", - "shortName": "plume-testnet", - "chainId": 161221135, - "networkId": 161221135, - "slip44": 1, - "icon": "plume", - "explorers": [ - { - "name": "Blockscout", - "url": "https://plume-testnet.explorer.caldera.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://plume-testnet.calderabridge.xyz" - } - ] - } - }, - { - "name": "Ancient8", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpc.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "ancient8", - "chainId": 888888888, - "networkId": 888888888, - "explorers": [ - { - "name": "Ancient8 Explorer", - "url": "https://scan.ancient8.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Calypso Hub Testnet", - "title": "SKALE Calypso Hub Testnet", - "chain": "giant-half-dual-testnet", - "icon": "calypso", - "rpc": [ - "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-testnet", - "chainId": 974399131, - "networkId": 974399131, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub Testnet", - "title": "SKALE Titan Hub Testnet", - "chain": "aware-fake-trim-testnet", - "icon": "titan", - "rpc": [ - "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet", - "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-testnet", - "chainId": 1020352220, - "networkId": 1020352220, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "PowerGold", - "chain": "NEAR", - "rpc": [ - "https://powergold.aurora.dev" - ], - "icon": "powergold", - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.powergold.tech", - "shortName": "powergold", - "chainId": 1313161560, - "networkId": 1313161560, - "explorers": [ - { - "name": "PowerGold explorer", - "url": "https://explorer.powergold.aurora.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Europa Hub Testnet", - "title": "SKALE Europa Hub Testnet", - "chain": "juicy-low-small-testnet", - "icon": "europa", - "rpc": [ - "https://testnet.skalenodes.com/v1/juicy-low-small-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa-testnet", - "chainId": 1444673419, - "networkId": 1444673419, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GitSwarm Test Network", - "title": "GitSwarm Test Network", - "chain": "ETH", - "icon": "gitswarm", - "rpc": [ - "https://gitswarm.com:2096" - ], - "faucets": [], - "nativeCurrency": { - "name": "GitSwarm Ether", - "symbol": "GS-ETH", - "decimals": 18 - }, - "infoURL": "https://gitswarm.com/", - "shortName": "GS-ETH", - "chainId": 28872323069, - "networkId": 28872323069, - "slip44": 1, - "explorers": [], - "status": "incubating" - }, - { - "name": "Kakarot Sepolia", - "chain": "ETH", - "icon": "kakarot", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kakarot.org", - "shortName": "kkrt-sepolia", - "chainId": 107107114116, - "networkId": 107107114116, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "WDC Chain", - "chainId": 999999, - "shortName": "WDC", - "chain": "WDC", - "network": "mainnet", - "networkId": 999999, - "nativeCurrency": { - "name": "World", - "symbol": "WORLD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.worldcoin.group" - ], - "faucets": [], - "explorers": [ - { - "name": "WDCScan", - "url": "https://scan.worldcoin.group", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901010969.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709900938585.png", - "color_chain_bg": "0x110044", - "color_chain_text": "0x15cad3", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709900563540.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709900974713.png" - } - }, - { - "name": "Hoo Smart Chain Testnet", - "chain": "HSC", - "network": "testnet", - "rpc": [ - "https://http-testnet.hoosmartchain.com" - ], - "faucets": [ - "https://faucet-testnet.hscscan.com/" - ], - "nativeCurrency": { - "name": "HOO", - "symbol": "HOO", - "decimals": 18 - }, - "infoURL": "https://www.hoosmartchain.com", - "shortName": "HSC", - "chainId": 170, - "networkId": 170, - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/2.png", - "color_chain_bg": "0x00C0AB" - } - }, - { - "name": "EtherLite Chain", - "chainId": 111, - "shortName": "ETL", - "chain": "EtherLite", - "network": "mainnet", - "networkId": 111, - "nativeCurrency": { - "name": "EtherLite Coin", - "symbol": "ETL", - "decimals": 18 - }, - "rpc": [ - "https://rpc.etherlite.org" - ], - "faucets": [ - "https://etherlite.org/faucets" - ], - "infoURL": "https://forum.etherlite.org/" - }, - { - "name": "Namefi Chain Mainnet", - "chain": "NFIC", - "rpc": [ - "https://rpc.chain.namefi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Namefi Coin", - "symbol": "NFIC", - "decimals": 18 - }, - "infoURL": "https://namefi.io/", - "shortName": "nfic", - "chainId": 132, - "networkId": 132 - }, - { - "name": "HashKey Chain Testnet", - "title": "HashKey Chain Testnet", - "chain": "HashKey Chain Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "HashKey EcoPoints", - "symbol": "HSK", - "decimals": 18 - }, - "infoURL": "https://hashkey.cloud", - "shortName": "HSKT", - "chainId": 133, - "networkId": 133, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "EternalCoin Mainnet", - "chain": "Eter", - "icon": "eternal", - "rpc": [ - "https://mainnet.eternalcoin.io/v1", - "ws://mainnet.eternalcoin.io/v1/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eternal", - "symbol": "Eter", - "decimals": 18 - }, - "infoURL": "https://eternalcoin.io", - "shortName": "Eter", - "chainId": 140, - "networkId": 140 - }, - { - "name": "SoraAI Testnet", - "chain": "SETH", - "icon": "ethereum", - "rpc": [ - "https://rpc-testnet.soraai.bot" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "SoraETH", - "symbol": "SETH", - "decimals": 18 - }, - "infoURL": "https://soraai.bot", - "shortName": "SETH", - "chainId": 145, - "networkId": 145, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.soraai.bot", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.soraai.bot" - } - ] - } - }, - { - "name": "Flag Mainnet", - "chain": "Flag", - "icon": "flag", - "rpc": [ - "https://mainnet-rpc.flagscan.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Flag", - "symbol": "FLAG", - "decimals": 18 - }, - "infoURL": "https://flagscan.xyz", - "shortName": "FLAG", - "chainId": 147, - "networkId": 147, - "explorers": [ - { - "name": "Flag Mainnet Explorer", - "url": "https://flagscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Roburna Mainnet", - "chain": "RBA", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://dataseed.roburna.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Roburna", - "symbol": "RBA", - "decimals": 18 - }, - "infoURL": "https://www.roburna.com/", - "shortName": "rba", - "chainId": 158, - "networkId": 158, - "icon": "roburna", - "explorers": [ - { - "name": "Rbascan Explorer", - "url": "https://rbascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Roburna Testnet", - "chain": "RBAT", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://preseed-testnet-1.roburna.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Roburna", - "symbol": "RBAT", - "decimals": 18 - }, - "infoURL": "https://www.roburna.com/", - "shortName": "rbat", - "chainId": 159, - "networkId": 159, - "icon": "roburna", - "explorers": [ - { - "name": "Rbascan Testnet Explorer", - "url": "https://testnet.rbascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni Testnet", - "chain": "Omni", - "status": "active", - "rpc": [ - "https://testnet.omni.network" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network", - "shortName": "omni_testnet", - "chainId": 164, - "networkId": 164, - "slip44": 1, - "explorers": [ - { - "name": "Omni X-Explorer", - "url": "https://explorer.testnet.omni.network", - "standard": "none" - }, - { - "name": "Omni EVM Explorer on Blockscout", - "url": "https://omni-testnet.blockscout.com", - "standard": "EIP3091" - }, - { - "name": "Omni EVM Explorer on Routescan", - "url": "https://testnet.omniscan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni", - "chain": "Omni", - "status": "incubating", - "rpc": [], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network/", - "shortName": "omni", - "chainId": 166, - "networkId": 166, - "slip44": 1 - }, - { - "name": "DC Mainnet", - "chain": "dcchain", - "icon": "dcchain", - "rpc": [ - "https://rpc.dcnetio.cloud", - "wss://ws.dcnetio.cloud" - ], - "faucets": [], - "nativeCurrency": { - "name": "DC Native Token", - "symbol": "DCT", - "decimals": 18 - }, - "infoURL": "https://www.dcnetio.cloud", - "shortName": "dcchain", - "chainId": 176, - "networkId": 176, - "explorers": [ - { - "name": "dcscan", - "url": "https://exp.dcnetio.cloud", - "standard": "none" - } - ] - }, - { - "name": "Waterfall Network", - "chain": "Waterfall Network", - "rpc": [ - "https://rpc.waterfall.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://waterfall.network", - "shortName": "water", - "chainId": 181, - "networkId": 181, - "icon": "waterfall-main", - "explorers": [] - }, - { - "name": "Mint Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.mintchain.io", - "https://global.rpc.mintchain.io", - "https://asia.rpc.mintchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "mint", - "chainId": 185, - "networkId": 185, - "icon": "mint", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.mintchain.io", - "icon": "mint", - "standard": "EIP3091" - } - ] - }, - { - "name": "FileFileGo", - "chain": "FFG", - "icon": "ffgIcon", - "rpc": [ - "https://rpc.filefilego.com/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FFG", - "symbol": "FFG", - "decimals": 18 - }, - "infoURL": "https://filefilego.com", - "shortName": "ffg", - "chainId": 191, - "networkId": 191 - }, - { - "name": "X Layer Mainnet", - "chain": "X Layer", - "rpc": [ - "https://rpc.xlayer.tech", - "https://xlayerrpc.okx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "X Layer Global Utility Token", - "symbol": "OKB", - "decimals": 18 - }, - "features": [], - "infoURL": "https://www.okx.com/xlayer", - "shortName": "okb", - "chainId": 196, - "networkId": 196, - "icon": "xlayer", - "explorers": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Edgeless Testnet", - "chain": "EdgelessTestnet", - "rpc": [ - "https://testnet.rpc.edgeless.network/http" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 - }, - "infoURL": "https://edgeless.network", - "shortName": "edgeless-testnet", - "chainId": 202, - "networkId": 202, - "explorers": [ - { - "name": "Edgeless Explorer", - "url": "https://testnet.explorer.edgeless.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Hub Mainnet", - "chain": "B2", - "rpc": [ - "https://hub-rpc.bsquared.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2Hub-mainnet", - "chainId": 213, - "networkId": 213, - "icon": "bsquare", - "explorers": [ - { - "name": "B2 Hub Mainnet Explorer", - "url": "https://hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Mainnet", - "title": "B2 Mainnet", - "chain": "B2", - "rpc": [ - "https://mainnet.b2-rpc.com", - "https://rpc.bsquared.network", - "https://b2-mainnet.alt.technology", - "https://b2-mainnet-public.s.chainbase.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2-mainnet", - "chainId": 223, - "networkId": 223, - "icon": "bsquare", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-213", - "bridges": [ - { - "url": "https://www.bsquared.network/bridge" - } - ] - } - }, - { - "name": "Mind Network Mainnet", - "chain": "FHE", - "rpc": [ - "https://rpc_mainnet.mindnetwork.xyz", - "wss://rpc_mainnet.mindnetwork.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://mindnetwork.xyz", - "shortName": "fhe", - "chainId": 228, - "networkId": 228 - }, - { - "name": "Blast Mainnet", - "chain": "ETH", - "icon": "blastIcon", - "rpc": [ - "https://rpc.blastblockchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.blastblockchain.com", - "shortName": "blast", - "chainId": 238, - "networkId": 238, - "explorers": [ - { - "name": "Blast Mainnet", - "url": "https://scan.blastblockchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neura", - "title": "Neura Mainnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "neura", - "chainId": 266, - "networkId": 266, - "status": "incubating", - "explorers": [] - }, - { - "name": "Neura Testnet", - "title": "Neura Testnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [ - "https://rpc.ankr.com/neura_testnet" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://testnet.neuraprotocol.io/faucet" - ], - "nativeCurrency": { - "name": "Testnet Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "tneura", - "chainId": 267, - "networkId": 267, - "explorers": [ - { - "name": "ankrscan-neura", - "url": "https://testnet.explorer.neuraprotocol.io", - "icon": "neura", - "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://explorer.neura-testnet.ankr.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "active", - "slip44": 1 - }, - { - "name": "Neura Devnet", - "title": "Neura Devnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Devnet Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "dneura", - "chainId": 268, - "networkId": 268, - "explorers": [], - "status": "incubating", - "slip44": 1 - }, - { - "name": "xFair.AI Mainnet", - "chain": "FAI", - "rpc": [ - "https://rpc_mainnet.xfair.ai", - "wss://rpc_mainnet.xfair.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://xfair.ai", - "shortName": "fai", - "chainId": 278, - "networkId": 278 - }, - { - "name": "Cronos zkEVM Testnet", - "chain": "CronosZkEVMTestnet", - "rpc": [ - "https://testnet.zkevm.cronos.org" - ], - "faucets": [ - "https://zkevm.cronos.org/faucet" - ], - "nativeCurrency": { - "name": "Cronos zkEVM Test Coin", - "symbol": "zkTCRO", - "decimals": 18 - }, - "infoURL": "https://docs-zkevm.cronos.org", - "shortName": "zkTCRO", - "chainId": 282, - "networkId": 282, - "slip44": 1, - "explorers": [ - { - "name": "Cronos zkEVM Testnet Explorer", - "url": "https://explorer.zkevm.cronos.org/testnet", - "standard": "none" - } - ] - }, - { - "name": "zkCandy Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zkcandy.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zkcandy.io/", - "shortName": "zkcandy-sepolia", - "chainId": 302, - "networkId": 302, - "icon": "zkcandy", - "explorers": [ - { - "name": "zkCandy Block Explorer", - "url": "https://sepolia.explorer.zkcandy.io", - "icon": "zkcandy", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://sepolia.bridge.zkcandy.io/" - } - ] - }, - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "Furtheon", - "chain": "Furtheon Network", - "rpc": [ - "https://rpc.furtheon.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Furtheon", - "symbol": "FTH", - "decimals": 18 - }, - "infoURL": "https://furtheon.org/", - "shortName": "furtheon", - "chainId": 308, - "networkId": 308, - "explorers": [ - { - "name": "furthscan", - "url": "http://furthscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CamDL Testnet", - "chain": "CADL", - "rpc": [ - "https://rpc1.testnet.camdl.gov.kh/" - ], - "faucets": [ - "https://faucet.testnet.camdl.gov.kh/" - ], - "nativeCurrency": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://camdl.gov.kh/", - "shortName": "camdl-testnet", - "chainId": 395, - "networkId": 395, - "icon": "camdl", - "explorers": [ - { - "name": "CamDL Testnet Explorer", - "url": "https://explorer.testnet.camdl.gov.kh", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Near Mainnet", - "chain": "NEAR", - "rpc": [], - "icon": "near", - "faucets": [], - "nativeCurrency": { - "name": "NEAR", - "symbol": "NEAR", - "decimals": 18 - }, - "infoURL": "https://near.org/", - "shortName": "near", - "chainId": 397, - "networkId": 397, - "explorers": [ - { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" - } - ] - }, - { - "name": "Near Testnet", - "chain": "NEAR", - "rpc": [], - "icon": "near", - "faucets": [], - "nativeCurrency": { - "name": "Testnet NEAR", - "symbol": "NEAR", - "decimals": 18 - }, - "infoURL": "https://aurora.dev", - "shortName": "near-testnet", - "chainId": 398, - "networkId": 398, - "explorers": [ - { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" - } - ] - }, - { - "name": "Syndr L3", - "chainId": 404, - "shortName": "syndr-l3", - "title": "Syndr L3 Rollup", - "chain": "SYNDR", - "networkId": 404, - "icon": "syndr", - "rpc": [ - "https://rpc.syndr.com", - "wss://rpc.syndr.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndr.com", - "explorers": [ - { - "name": "Syndr L3 Explorer", - "url": "https://explorer.syndr.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.syndr.com" - } - ] - } - }, - { - "name": "Boyaa Mainnet", - "chain": "BYC", - "rpc": [ - "https://evm-rpc.mainnet.boyaa.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boyaa mainnet native coin", - "symbol": "BYC", - "decimals": 18 - }, - "infoURL": "https://boyaa.network", - "shortName": "BYC", - "chainId": 434, - "networkId": 434, - "icon": "boyaanetwork", - "explorers": [ - { - "name": "Boyaa explorer", - "url": "https://explorer.mainnet.boyaa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpTrust Mainnet", - "chain": "OpTrust", - "rpc": [ - "https://rpc.optrust.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSC", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://optrust.io", - "shortName": "optrust", - "chainId": 537, - "networkId": 537, - "icon": "optrust", - "explorers": [ - { - "name": "OpTrust explorer", - "url": "https://scan.optrust.io", - "icon": "optrust", - "standard": "none" - } - ] - }, - { - "name": "Testnet", - "chain": "Flow", - "rpc": [ - "https://testnet.evm.nodes.onflow.org" - ], - "faucets": [ - "https://testnet-faucet.onflow.org" - ], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-testnet", - "chainId": 545, - "networkId": 545, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "Filenova Mainnet", - "chain": "Filenova", - "rpc": [ - "https://rpc.filenova.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://filenova.org", - "shortName": "filenova", - "chainId": 579, - "networkId": 579, - "icon": "filenova", - "explorers": [ - { - "name": "filenova explorer", - "url": "https://scan.filenova.org", - "icon": "filenova", - "standard": "none" - } - ] - }, - { - "name": "Previewnet", - "chain": "Flow", - "rpc": [ - "https://previewnet.evm.nodes.onflow.org" - ], - "faucets": [ - "https://previewnet-faucet.onflow.org" - ], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-previewnet", - "chainId": 646, - "networkId": 646, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "UltronSmartchain", - "chain": "UltronSmartchain", - "rpc": [ - "https://rpc.ultronsmartchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ulc", - "symbol": "ULC", - "decimals": 18 - }, - "infoURL": "https://ultronsmartchain.io", - "shortName": "ultronsmartchain", - "chainId": 662, - "networkId": 662, - "icon": "ultronsmartchain", - "explorers": [ - { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redstone", - "chain": "ETH", - "rpc": [ - "https://rpc.redstonechain.com", - "wss://rpc.redstonechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz", - "shortName": "redstone", - "chainId": 690, - "networkId": 690, - "icon": "redstone", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.redstone.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://redstone.xyz/deposit" - } - ] - } - }, - { - "name": "Mainnet", - "chain": "Flow", - "rpc": [ - "https://mainnet.evm.nodes.onflow.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-mainnet", - "chainId": 747, - "networkId": 747, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "Runic Chain Testnet", - "chain": "Runic", - "rpc": [ - "https://rpc-testnet.runic.build" - ], - "faucets": [ - "https://faucet.runic.build" - ], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "rBTC", - "decimals": 18 - }, - "infoURL": "https://runic.build", - "shortName": "runic-testnet", - "chainId": 822, - "networkId": 822, - "status": "active", - "icon": "runic-testnet", - "explorers": [ - { - "name": "RunicScan", - "url": "https://scan.runic.build", - "icon": "runic-testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAXI Chain Testnet", - "chain": "MAXI", - "rpc": [ - "https://rpc-testnet.maxi.network" - ], - "faucets": [ - "https://faucet.maxi.network" - ], - "nativeCurrency": { - "name": "MAXICOIN", - "symbol": "MAXI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://maxi.network", - "shortName": "maxi-testnet", - "chainId": 898, - "networkId": 898, - "icon": "maxi", - "explorers": [ - { - "name": "Maxi Chain Testnet Explorer", - "url": "https://testnet.maxi.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "TAPROOT Mainnet", - "title": "TAPROOT Mainnet", - "chain": "TAPROOT CHAIN", - "rpc": [ - "https://rpc.taprootchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TBTC", - "symbol": "TBTC", - "decimals": 18 - }, - "infoURL": "https://taprootchain.io", - "shortName": "TAPROOT-Mainnet", - "chainId": 911, - "networkId": 911, - "icon": "taproot", - "explorers": [ - { - "name": "TAPROOT Scan", - "url": "https://scan.taprootchain.io", - "icon": "taproot", - "standard": "EIP3091" - } - ] - }, - { - "name": "EthXY", - "chain": "EthXY", - "rpc": [ - "https://rpc.ethxy.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 - }, - "icon": "sexy", - "infoURL": "https://ethxy.com", - "shortName": "sexy", - "chainId": 969, - "networkId": 969, - "explorers": [ - { - "name": "EthXY Network Explorer", - "url": "https://explorer.ethxy.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "EthXY Testnet", - "chain": "EthXY", - "rpc": [ - "https://rpc.testnet.ethxy.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 - }, - "icon": "sexyTestnet", - "infoURL": "https://ethxy.com", - "shortName": "sexyTestnet", - "chainId": 979, - "networkId": 979, - "explorers": [ - { - "name": "EthXY Testnet Network Explorer", - "url": "https://explorer.testnet.ethxy.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jumbochain Mainnet", - "chain": "Jumbo", - "rpc": [ - "https://rpcpriv.jumbochain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "Jumboscan", - "chainId": 1009, - "networkId": 1009, - "slip44": 1, - "explorers": [ - { - "name": "Jumboscan", - "url": "https://jumboscan.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rebus Mainnet", - "title": "Rebuschain Mainnet", - "chain": "REBUS", - "rpc": [ - "https://apievm.rebuschain.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 - }, - "infoURL": "https://www.rebuschain.com", - "shortName": "rebus", - "chainId": 1011, - "networkId": 1011, - "icon": "rebus", - "explorers": [ - { - "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.rebuschain.com", - "icon": "rebus", - "standard": "none" - }, - { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://cosmos.rebuschain.com", - "icon": "rebus", - "standard": "none" - } - ] - }, - { - "name": "IOTA EVM Testnet", - "title": "IOTA EVM Testnet", - "chain": "IOTA EVM", - "icon": "iotaevm", - "rpc": [ - "https://json-rpc.evm.testnet.iotaledger.net" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.iotaledger.net" - ], - "nativeCurrency": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 - }, - "infoURL": "https://www.iota.org", - "shortName": "iotaevm-testnet", - "chainId": 1075, - "networkId": 1075, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.iotaledger.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Hub Testnet", - "chain": "BSQ", - "rpc": [ - "https://testnet-hub-rpc.bsquared.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2Hub-testnet", - "chainId": 1113, - "networkId": 1113, - "icon": "bsquare", - "explorers": [ - { - "name": "B2 Hub Habitat Testnet Explorer", - "url": "https://testnet-hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Testnet", - "title": "B2 Testnet", - "chain": "Habitat", - "rpc": [ - "https://b2-testnet.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2-testnet", - "chainId": 1123, - "networkId": 1123, - "icon": "bsquare", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1113" - } - }, - { - "name": "Lisk", - "chain": "ETH", - "rpc": [ - "https://rpc.api.lisk.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lisk.com", - "shortName": "lisk", - "chainId": 1135, - "networkId": 1135, - "slip44": 134, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flag Testnet", - "chain": "Flag", - "icon": "flag", - "rpc": [ - "https://testnet-rpc.flagscan.xyz" - ], - "faucets": [ - "https://faucet.flagscan.xyz" - ], - "nativeCurrency": { - "name": "Flag Testnet", - "symbol": "FLAG", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.flagscan.xyz", - "shortName": "tFLAG", - "chainId": 1147, - "networkId": 1147, - "explorers": [ - { - "name": "Flag Testnet Explorer", - "url": "https://testnet-explorer.flagscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "ClubMos Mainnet", - "chain": "MOS", - "rpc": [ - "https://mainnet.mosscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ClubMos", - "symbol": "MOS", - "decimals": 18 - }, - "infoURL": "https://www.mosscan.com", - "shortName": "MOS", - "chainId": 1188, - "networkId": 1188, - "icon": "clubmos", - "explorers": [ - { - "name": "mosscan", - "url": "https://www.mosscan.com", - "icon": "clubmos", - "standard": "none" - } - ] - }, - { - "name": "SaitaBlockChain(SBC)", - "chain": "SaitaBlockChain(SBC)", - "rpc": [ - "https://rpc-nodes.saitascan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SaitaBlockChain(SBC)", - "symbol": "STC", - "decimals": 18 - }, - "infoURL": "https://saitachain.com", - "shortName": "SBC", - "chainId": 1209, - "networkId": 1209, - "icon": "SaitaBlockChain(SBC)", - "explorers": [ - { - "name": "Saitascan explorer", - "url": "https://saitascan.io", - "standard": "none", - "icon": "SaitaBlockChain(SBC)" - } - ] - }, - { - "name": "Sei Network", - "chain": "Sei", - "rpc": [ - "https://evm-rpc.sei-apis.com", - "wss://evm-ws.sei-apis.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 - }, - "infoURL": "https://www.sei.io", - "shortName": "sei", - "chainId": 1329, - "networkId": 1329, - "icon": "seiv2", - "explorers": [ - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ramestta Mainnet", - "chain": "Ramestta", - "icon": "ramestta", - "rpc": [ - "https://blockchain.ramestta.com", - "https://blockchain2.ramestta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rama", - "symbol": "RAMA", - "decimals": 18 - }, - "infoURL": "https://www.ramestta.com", - "shortName": "RAMA", - "chainId": 1370, - "networkId": 1370, - "explorers": [ - { - "name": "ramascan", - "url": "https://ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Pingaksha testnet", - "chain": "Pingaksha", - "icon": "ramestta", - "rpc": [ - "https://testnet.ramestta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rama", - "symbol": "tRAMA", - "decimals": 18 - }, - "infoURL": "https://www.ramestta.com", - "shortName": "tRAMA", - "chainId": 1377, - "networkId": 1377, - "explorers": [ - { - "name": "Pingaksha", - "url": "https://pingaksha.ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Silicon zkEVM Sepolia Testnet", - "title": "Silicon zkEVM Sepolia Testnet", - "chain": "Silicon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "silicon-sepolia-testnet", - "chainId": 1414, - "networkId": 1414, - "icon": "silicon", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "iDos Games Chain Testnet", - "chain": "IGC", - "icon": "igc-testnet", - "rpc": [ - "https://rpc-testnet.idos.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "iDos Games Coin", - "symbol": "IGC", - "decimals": 18 - }, - "infoURL": "https://idosgames.com/", - "shortName": "IGC", - "chainId": 1499, - "networkId": 1499, - "explorers": [ - { - "name": "IGC-Scan", - "url": "https://igcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ethereum Inscription Mainnet", - "chain": "ETINS", - "rpc": [ - "https://rpc.etins.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum Inscription", - "symbol": "ETINS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.etins.org", - "shortName": "etins", - "chainId": 1617, - "networkId": 1617, - "explorers": [ - { - "name": "Ethereum Inscription Explorer", - "url": "https://explorer.etins.org", - "standard": "none" - } - ] - }, - { - "name": "Gravity Alpha Mainnet", - "chain": "Gravity", - "rpc": [ - "https://rpc.gravity.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gravity", - "symbol": "G.", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - }, - { - "name": "EIP1108" - } - ], - "infoURL": "https://gravity.xyz", - "shortName": "gravity", - "chainId": 1625, - "networkId": 1625, - "icon": "gravity", - "explorers": [ - { - "name": "Gravity Alpha Mainnet Explorer", - "url": "https://explorer.gravity.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.gravity.xyz" - } - ] - } - }, - { - "name": "Doric Network", - "chain": "DRC", - "icon": "doric", - "rpc": [ - "https://mainnet.doric.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Doric Native Token", - "symbol": "DRC", - "decimals": 18 - }, - "infoURL": "https://doric.network", - "shortName": "DRC", - "chainId": 1717, - "networkId": 1717, - "explorers": [ - { - "name": "Doric Explorer", - "url": "https://explorer.doric.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reya Network", - "chain": "Reya", - "rpc": [ - "https://rpc.reya.network", - "wss://ws.reya.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://reya.network", - "shortName": "reya", - "chainId": 1729, - "networkId": 1729, - "explorers": [ - { - "name": "Reya Network Explorer", - "url": "https://explorer.reya.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal L2 Testnet", - "chain": "Metal L2 Testnet", - "rpc": [ - "https://testnet.rpc.metall2.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://metall2.com", - "shortName": "metall2-testnet", - "chainId": 1740, - "networkId": 1740, - "icon": "metal", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal L2", - "chain": "Metal L2", - "rpc": [ - "https://rpc.metall2.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://metall2.com", - "shortName": "metall2", - "chainId": 1750, - "networkId": 1750, - "icon": "metal", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKBase Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rpc.zkbase.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zkbase.org/", - "shortName": "zkbase-sepolia", - "chainId": 1789, - "networkId": 1789, - "slip44": 1, - "icon": "zkbase", - "explorers": [ - { - "name": "ZKbase Block Explorer", - "url": "https://sepolia-explorer.zkbase.app", - "icon": "zkbase", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portral.zkbase.app/" - } - ] - }, - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "UPB CRESCDI Testnet", - "chain": "UPBEth", - "rpc": [ - "https://testnet.crescdi.pub.ro" - ], - "infoURL": "https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet", - "faucets": [], - "nativeCurrency": { - "name": "UPBEth", - "symbol": "UPBEth", - "decimals": 18 - }, - "shortName": "UPBEth", - "chainId": 1918, - "networkId": 1918, - "explorers": [] - }, - { - "name": "AIW3 Testnet", - "chain": "AIW3", - "rpc": [ - "https://rpc-testnet.aiw3.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://aiw3.io/", - "shortName": "AIW3-Testnet", - "chainId": 1956, - "networkId": 1956, - "icon": "aiw3", - "explorers": [ - { - "name": "aiw3 testnet scan", - "url": "https://scan-testnet.aiw3.io", - "standard": "none" - } - ] - }, - { - "name": "Hubble Exchange", - "chain": "Hubblenet", - "icon": "hubblenet", - "rpc": [ - "https://rpc.hubble.exchange", - "wss://ws-rpc.hubble.exchange" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://www.hubble.exchange", - "shortName": "hubblenet", - "chainId": 1992, - "networkId": 1992, - "slip44": 60, - "explorers": [ - { - "name": "routescan", - "url": "https://explorer.hubble.exchange", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sanko", - "chain": "Sanko", - "rpc": [ - "https://mainnet.sanko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "DMT", - "symbol": "DMT", - "decimals": 18 - }, - "infoURL": "https://sanko.xyz/", - "shortName": "Sanko", - "chainId": 1996, - "networkId": 1996, - "icon": "sanko", - "explorers": [ - { - "name": "Sanko Explorer", - "url": "https://explorer.sanko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Panarchy", - "chain": "Panarchy", - "rpc": [ - "https://polytopia.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "GAS", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://polytopia.org/", - "shortName": "panarchy", - "chainId": 2013, - "networkId": 1 - }, - { - "name": "NOW Chain", - "chain": "NOW", - "icon": "nowchain", - "rpc": [ - "https://rpc.nowscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "NOW Coin", - "symbol": "NOW", - "decimals": 18 - }, - "infoURL": "https://nowchain.co", - "shortName": "now", - "chainId": 2014, - "networkId": 2014, - "explorers": [ - { - "name": "nowscan", - "url": "https://nowscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Adiri", - "title": "Telcoin Network Testnet", - "chain": "TEL", - "icon": "telcoin", - "rpc": [ - "https://rpc.telcoin.network", - "https://adiri.tel", - "https://node1.telcoin.network", - "https://node2.telcoin.network", - "https://node3.telcoin.network", - "https://node4.telcoin.network" - ], - "faucets": [ - "https://telcoin.network/faucet" - ], - "nativeCurrency": { - "name": "Telcoin", - "symbol": "TEL", - "decimals": 18 - }, - "infoURL": "https://telcoin.network", - "shortName": "tel", - "chainId": 2017, - "networkId": 2017, - "slip44": 1, - "explorers": [ - { - "name": "telscan", - "url": "https://telscan.io", - "icon": "telcoin", - "standard": "EIP3091" - } - ] - }, - { - "name": "Edgeless Network", - "chain": "Edgeless", - "rpc": [ - "https://rpc.edgeless.network/http" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 - }, - "infoURL": "https://edgeless.network", - "shortName": "edgeless", - "chainId": 2026, - "networkId": 2026, - "explorers": [ - { - "name": "Edgeless Explorer", - "url": "https://explorer.edgeless.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Aleph Zero Testnet", - "chain": "Aleph Zero Testnet", - "icon": "aleph", - "rpc": [ - "https://rpc.alephzero-testnet.gelato.digital", - "wss://rpc.alephzero-testnet.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "TZERO", - "symbol": "TZERO", - "decimals": 18 - }, - "infoURL": "https://testnet.alephzero.org", - "shortName": "aleph", - "chainId": 2039, - "networkId": 2039, - "explorers": [ - { - "name": "Aleph Zero Testnet", - "url": "https://test.azero.dev/#/explorer", - "icon": "aleph", - "standard": "none" - } - ] - }, - { - "name": "Vanar Mainnet", - "title": "Vanarchain", - "chain": "VANAR", - "rpc": [ - "https://rpc.vanarchain.com", - "wss://ws.vanarchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VANRY", - "symbol": "VANRY", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://vanarchain.com", - "shortName": "Vanar", - "chainId": 2040, - "networkId": 2040, - "icon": "vanar", - "explorers": [ - { - "name": "Vanar Explorer", - "url": "https://explorer.vanarchain.com", - "icon": "vanar", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIW3 Mainnet", - "chain": "AIW3", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://aiw3.io/", - "shortName": "AIW3", - "chainId": 2045, - "networkId": 2045, - "icon": "aiw3", - "explorers": [] - }, - { - "name": "UCHAIN Mainnet", - "chain": "UCHAIN", - "rpc": [ - "https://rpc.uchain.link/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UCASH", - "symbol": "UCASH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://u.cash/", - "shortName": "uchain", - "chainId": 2112, - "networkId": 2112, - "icon": "ucash", - "explorers": [ - { - "name": "uchain.info", - "url": "https://uchain.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Catena Mainnet", - "chain": "CMCX", - "rpc": [ - "https://rpc1.catenarpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Catena", - "symbol": "CMCX", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://catena.network", - "shortName": "cmcx", - "chainId": 2121, - "networkId": 2121, - "icon": "catena", - "explorers": [ - { - "name": "catenascan", - "url": "https://catenascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BigShortBets Testnet", - "chain": "BIGSB Testnet", - "rpc": [ - "https://test-market.bigsb.io", - "wss://test-market.bigsb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dolarz", - "symbol": "Dolarz", - "decimals": 18 - }, - "infoURL": "https://bigshortbets.com/", - "shortName": "bigsb_testnet", - "chainId": 2136, - "networkId": 2136, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Oneness Network", - "chain": "Oneness", - "rpc": [ - "https://rpc.onenesslabs.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "oneness", - "chainId": 2140, - "networkId": 2140, - "explorers": [ - { - "name": "oneness-mainnet", - "url": "https://scan.onenesslabs.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oneness TestNet", - "chain": "Oneness-Testnet", - "rpc": [ - "https://rpc.testnet.onenesslabs.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "oneness-testnet", - "chainId": 2141, - "networkId": 2141, - "explorers": [ - { - "name": "oneness-testnet", - "url": "https://scan.testnet.onenesslabs.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "RSS3 VSL Sepolia Testnet", - "chain": "RSS3", - "rpc": [ - "https://rpc.testnet.rss3.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 - }, - "infoURL": "https://rss3.io", - "shortName": "rss3-testnet", - "chainId": 2331, - "networkId": 2331, - "icon": "rss3-testnet", - "explorers": [ - { - "name": "RSS3 VSL Sepolia Testnet Scan", - "url": "https://scan.testnet.rss3.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://explorer.testnet.rss3.io/bridge" - } - ] - } - }, - { - "name": "Atleta Olympia", - "chain": "Atleta", - "rpc": [ - "wss://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network" - ], - "faucets": [ - "https://app-olympia.atleta.network/faucet" - ], - "nativeCurrency": { - "name": "Atla", - "symbol": "ATLA", - "decimals": 18 - }, - "infoURL": "https://atleta.network", - "shortName": "atla", - "chainId": 2340, - "networkId": 2340, - "slip44": 1, - "icon": "atleta", - "explorers": [ - { - "name": "Atleta Olympia Explorer", - "icon": "atleta", - "url": "https://blockscout.atleta.network", - "standard": "none" - }, - { - "name": "Atleta Olympia Polka Explorer", - "icon": "atleta", - "url": "https://polkadot-explorer.atleta.network/#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Omnia Chain", - "chain": "OMNIA", - "icon": "omnia", - "rpc": [ - "https://rpc.omniaverse.io" - ], - "faucets": [ - "https://www.omniaverse.io" - ], - "nativeCurrency": { - "name": "Omnia", - "symbol": "OMNIA", - "decimals": 18 - }, - "infoURL": "https://www.omniaverse.io", - "shortName": "omnia", - "chainId": 2342, - "networkId": 2342, - "explorers": [ - { - "name": "OmniaVerse Explorer", - "url": "https://scan.omniaverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Silicon zkEVM", - "title": "Silicon zkEVM Mainnet", - "chain": "Silicon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "silicon-zk", - "chainId": 2355, - "networkId": 2355, - "icon": "silicon", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "Nexis Network Testnet", - "chain": "Nexis Network", - "icon": "nexis", - "rpc": [ - "https://evm-testnet.nexis.network" - ], - "faucets": [ - "https://evm-faucet.nexis.network" - ], - "nativeCurrency": { - "name": "Nexis", - "symbol": "NZT", - "decimals": 18 - }, - "infoURL": "https://nexis.network/", - "shortName": "nzt", - "chainId": 2370, - "networkId": 2370, - "explorers": [ - { - "name": "Nexis Testnet Explorer", - "url": "https://evm-testnet.nexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "King Of Legends Devnet", - "title": "King Of Legends Devnet", - "chain": "KOL", - "icon": "kol", - "rpc": [ - "https://rpc-devnet.kinggamer.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "King Of Legends", - "symbol": "KOL", - "decimals": 18 - }, - "infoURL": "https://kingoflegends.net/", - "shortName": "kol", - "chainId": 2425, - "networkId": 2425, - "slip44": 1, - "explorers": [ - { - "name": "King Of Legends Devnet Explorer", - "url": "https://devnet.kingscan.org", - "icon": "kol", - "standard": "EIP3091" - } - ] - }, - { - "name": "inEVM Mainnet", - "chain": "inEVM", - "icon": "inevm", - "rpc": [ - "https://mainnet.rpc.inevm.com/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Injective", - "symbol": "INJ", - "decimals": 18 - }, - "infoURL": "https://inevm.com", - "shortName": "inevm", - "chainId": 2525, - "networkId": 2525, - "explorers": [], - "status": "active" - }, - { - "name": "APEX", - "status": "incubating", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://apexlayer.xyz/", - "shortName": "apexmainnet", - "chainId": 2662, - "networkId": 2662, - "icon": "apexmainnet", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "XR Sepolia", - "chain": "ETH", - "rpc": [ - "https://xr-sepolia-testnet.rpc.caldera.xyz/http" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "tXR", - "symbol": "tXR", - "decimals": 18 - }, - "infoURL": "https://xr-one.gitbook.io", - "shortName": "txr", - "chainId": 2730, - "networkId": 2730, - "icon": "xr", - "slip44": 60, - "explorers": [ - { - "name": "XR Sepolia Explorer", - "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://xr-sepolia-testnet.bridge.caldera.xyz" - } - ] - }, - "status": "active" - }, - { - "name": "Nanon", - "title": "Nanon Rollup", - "chain": "ETH", - "rpc": [ - "https://rpc.nanon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.nanon.network", - "shortName": "Nanon", - "chainId": 2748, - "networkId": 2748, - "slip44": 1, - "icon": "nanon", - "explorers": [ - { - "name": "Nanon Rollup Explorer", - "url": "https://explorer.nanon.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nanon.network" - } - ] - } - }, - { - "name": "GM Network Mainnet", - "chain": "GM Network Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gmnetwork.ai", - "shortName": "gmnetwork-mainnet", - "chainId": 2777, - "networkId": 2777, - "explorers": [], - "status": "incubating" - }, - { - "name": "Morph Holesky", - "title": "Morph Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-quicknode-holesky.morphl2.io", - "wss://rpc-quicknode-holesky.morphl2.io", - "https://rpc-holesky.morphl2.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://morphl2.io", - "shortName": "hmorph", - "chainId": 2810, - "networkId": 2810, - "slip44": 1, - "explorers": [ - { - "name": "Morph Holesky Testnet Explorer", - "url": "https://explorer-holesky.morphl2.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-holesky.morphl2.io" - } - ] - } - }, - { - "name": "Elux Chain", - "chain": "ELUX", - "icon": "eluxchain", - "rpc": [ - "https://rpc.eluxscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Elux Chain", - "symbol": "ELUX", - "decimals": 18 - }, - "infoURL": "https://eluxscan.com", - "shortName": "ELUX", - "chainId": 2907, - "networkId": 2907, - "explorers": [ - { - "name": "blockscout", - "url": "https://eluxscan.com", - "standard": "none" - } - ] - }, - { - "name": "HYCHAIN", - "chainId": 2911, - "shortName": "hychain", - "chain": "ETH", - "networkId": 2911, - "nativeCurrency": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.hychain.com/http" - ], - "faucets": [], - "infoURL": "https://www.hychain.com", - "icon": "hychain", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.hychain.com" - } - ] - } - }, - { - "name": "Rebus Testnet", - "title": "Rebuschain Testnet", - "chain": "REBUS", - "rpc": [ - "https://testnet.rebus.money/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 - }, - "infoURL": "https://www.rebuschain.com", - "shortName": "rebus-testnet", - "chainId": 3033, - "networkId": 3033, - "icon": "rebus", - "explorers": [ - { - "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.testnet.rebus.money", - "icon": "rebus", - "standard": "none" - }, - { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://testnet.rebus.money/rebustestnet", - "icon": "rebus", - "standard": "none" - } - ] - }, - { - "name": "Movement EVM", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "move", - "chainId": 3073, - "networkId": 3073, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "SatoshiVM Alpha Mainnet", - "chain": "SatoshiVM", - "rpc": [ - "https://alpha-rpc-node-http.svmscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.satoshivm.io/", - "shortName": "SAVM", - "chainId": 3109, - "networkId": 3109, - "icon": "satoshivm" - }, - { - "name": "SatoshiVM Testnet", - "chain": "SatoshiVM", - "rpc": [ - "https://test-rpc-node-http.svmscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.satoshivm.io/", - "shortName": "tSAVM", - "chainId": 3110, - "networkId": 3110, - "icon": "satoshivm" - }, - { - "name": "EthStorage Mainnet", - "chain": "EthStorage", - "rpc": [ - "http://mainnet.ethstorage.io:9540" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ethstorage.io/", - "shortName": "es-m", - "chainId": 3335, - "networkId": 3335, - "slip44": 1 - }, - { - "name": "EVOLVE Mainnet", - "chain": "EVO", - "icon": "evolveIcon", - "rpc": [ - "https://rpc.evolveblockchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 - }, - "infoURL": "https://evolveblockchain.io", - "shortName": "EVOm", - "chainId": 3424, - "networkId": 3424, - "explorers": [ - { - "name": "Evolve Mainnet Explorer", - "url": "https://evoexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tycooncoin", - "chain": "TYCON", - "rpc": [ - "https://mainnet-rpc.tycoscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tycooncoin", - "symbol": "TYCO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "TYCON", - "chainId": 3630, - "networkId": 3630 - }, - { - "name": "Astar zkEVM", - "shortName": "astrzk", - "title": "Astar zkEVM Mainnet", - "chain": "ETH", - "icon": "astar", - "rpc": [ - "https://rpc.startale.com/astar-zkevm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 3776, - "networkId": 3776, - "explorers": [ - { - "name": "Blockscout Astar zkEVM explorer", - "url": "https://astar-zkevm.explorer.startale.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.astar.network" - } - ] - } - }, - { - "name": "Carbonium Testnet Network", - "chain": "CBR", - "rpc": [ - "https://rpc-dev.carbonium.network/", - "https://server-testnet.carbonium.network" - ], - "nativeCurrency": { - "name": "Carbonium", - "symbol": "tCBR", - "decimals": 18 - }, - "infoURL": "https://carbonium.network", - "shortName": "tcbr", - "chainId": 4040, - "networkId": 4040, - "slip44": 1, - "icon": "cbr", - "faucets": [ - "https://getfaucet.carbonium.network" - ], - "explorers": [ - { - "name": "Carbonium Network tesnet Explorer", - "icon": "cbr", - "url": "https://testnet.carboniumscan.com", - "standard": "none" - } - ] - }, - { - "name": "GAN Testnet", - "chain": "GAN", - "icon": "gpu", - "rpc": [ - "https://rpc.gpu.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "GP Token", - "symbol": "GP", - "decimals": 18 - }, - "infoURL": "https://docs.gpu.net/", - "shortName": "GANTestnet", - "chainId": 4048, - "networkId": 4048, - "explorers": [ - { - "name": "ganscan", - "url": "https://ganscan.gpu.net", - "standard": "none" - } - ] - }, - { - "name": "Tobe Chain", - "chain": "TBC", - "icon": "tobe", - "rpc": [ - "https://rpc.tobescan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tobe Coin", - "symbol": "TBC", - "decimals": 18 - }, - "infoURL": "https://tobechain.net", - "shortName": "tbc", - "chainId": 4080, - "networkId": 4080, - "explorers": [ - { - "name": "tobescan", - "url": "https://tobescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CrossFi Testnet", - "title": "CrossFi Testnet", - "chain": "XFI", - "rpc": [ - "https://rpc.testnet.ms" - ], - "faucets": [], - "nativeCurrency": { - "name": "XFI", - "symbol": "XFI", - "decimals": 18 - }, - "infoURL": "https://crossfi.org/", - "shortName": "crossfi-testnet", - "chainId": 4157, - "networkId": 4157, - "slip44": 1, - "explorers": [ - { - "name": "CrossFi Testnet Scan", - "url": "https://scan.testnet.ms", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hydra Chain", - "chain": "HYDRA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Hydra", - "symbol": "HYDRA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://hydrachain.org", - "shortName": "hydra", - "chainId": 4488, - "networkId": 4488, - "icon": "hydra", - "explorers": [], - "status": "incubating" - }, - { - "name": "VERY Mainnet", - "title": "VERY Mainnet", - "chain": "VERY Mainnet", - "icon": "very", - "rpc": [ - "https://rpc.verylabs.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "VERY", - "symbol": "VERY", - "decimals": 18 - }, - "infoURL": "https://www.verylabs.io/", - "shortName": "very", - "chainId": 4613, - "networkId": 4613, - "explorers": [ - { - "name": "VERY explorer", - "url": "https://www.veryscan.io", - "standard": "none" - } - ] - }, - { - "name": "ONIGIRI Test Subnet", - "chain": "ONIGIRI", - "rpc": [ - "https://subnets.avax.network/onigiri/testnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 - }, - "infoURL": "https://www.ongr.org/", - "shortName": "onigiritest", - "chainId": 5039, - "networkId": 5039, - "icon": "onigiri", - "explorers": [ - { - "name": "ONIGIRI Explorer", - "url": "https://subnets-test.avax.network/onigiri", - "standard": "EIP3091" - } - ] - }, - { - "name": "ONIGIRI Subnet", - "chain": "ONIGIRI", - "rpc": [ - "https://subnets.avax.network/onigiri/mainnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 - }, - "infoURL": "https://www.ongr.org/", - "shortName": "onigiri", - "chainId": 5040, - "networkId": 5040, - "icon": "onigiri", - "explorers": [ - { - "name": "ONIGIRI Explorer", - "url": "https://subnets.avax.network/onigiri", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nollie Skatechain Testnet", - "chain": "Skatechain", - "rpc": [ - "https://nollie-rpc.skatechain.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "nollie-testnet", - "chainId": 5051, - "networkId": 5051, - "icon": "nollie", - "explorers": [ - { - "name": "Nollie Skate Chain Testnet Explorer", - "url": "https://nolliescan.skatechain.org", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "SIC Testnet", - "chain": "SIC Testnet", - "rpc": [ - "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.fwb.help/", - "shortName": "sic-testnet", - "chainId": 5102, - "networkId": 5102, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Coordinape Testnet", - "chain": "Coordinape Testnet", - "rpc": [ - "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://coordinape.com/", - "shortName": "coordinape-testnet", - "chainId": 5103, - "networkId": 5103 - }, - { - "name": "Charmverse Testnet", - "chain": "Charmverse Testnet", - "rpc": [ - "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://charmverse.io/", - "shortName": "charmverse-testnet", - "chainId": 5104, - "networkId": 5104 - }, - { - "name": "Superloyalty Testnet", - "chain": "Superloyalty Testnet", - "rpc": [ - "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.superloyal.com/", - "shortName": "superloyalty-testnet", - "chainId": 5105, - "networkId": 5105 - }, - { - "name": "Azra Testnet", - "chain": "Azra Testnet", - "rpc": [ - "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://azragames.com", - "shortName": "azra-testnet", - "chainId": 5106, - "networkId": 5106, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpTrust Testnet", - "chain": "OpTrust", - "rpc": [ - "https://rpctest.optrust.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TestBSC", - "symbol": "tBNB", - "decimals": 18 - }, - "infoURL": "https://optrust.io", - "shortName": "toptrust", - "chainId": 5317, - "networkId": 5317, - "icon": "optrust", - "explorers": [ - { - "name": "OpTrust Testnet explorer", - "url": "https://scantest.optrust.io", - "icon": "optrust", - "standard": "none" - } - ] - }, - { - "name": "Settlus Testnet", - "chain": "Settlus", - "rpc": [ - "https://settlus-test-eth.settlus.io" - ], - "faucets": [ - "https://faucet.settlus.io" - ], - "nativeCurrency": { - "name": "Setl", - "symbol": "SETL", - "decimals": 18 - }, - "infoURL": "https://settlus.org", - "shortName": "settlus-testnet", - "chainId": 5372, - "networkId": 5372, - "explorers": [ - { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "edeXa Mainnet", - "chain": "edeXa Network", - "rpc": [ - "https://mainnet.edexa.network/rpc", - "https://mainnet.edexa.com/rpc", - "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 - }, - "infoURL": "https://edexa.network/", - "shortName": "edeXa", - "chainId": 5424, - "networkId": 5424, - "slip44": 1, - "icon": "edexa", - "explorers": [ - { - "name": "edexa-mainnet", - "url": "https://explorer.edexa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Egochain", - "chainId": 5439, - "shortName": "egax", - "chain": "EGAX", - "networkId": 5439, - "nativeCurrency": { - "name": "EGAX", - "symbol": "EGAX", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.egochain.org" - ], - "faucets": [], - "infoURL": "https://docs.egochain.org/", - "explorers": [ - { - "name": "egoscan", - "url": "https://egoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arcturus Testneet", - "chain": "Arcturus", - "rpc": [ - "https://rpc-testnet.arcturuschain.io/" - ], - "faucets": [ - "https://faucet.arcturuschain.io" - ], - "nativeCurrency": { - "name": "tARC", - "symbol": "tARC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://arcturuschain.io", - "shortName": "arcturus-testnet", - "chainId": 5615, - "networkId": 5615, - "explorers": [ - { - "name": "explorer-arcturus-testnet", - "url": "https://testnet.arcscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "QIE Blockchain", - "chain": "QIE", - "icon": "qie", - "rpc": [ - "https://rpc-main1.qiblockchain.online/", - "https://rpc-main2.qiblockchain.online/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QIE Blockchain", - "symbol": "QIE", - "decimals": 18 - }, - "infoURL": "https://qiblockchain.online/", - "shortName": "QIE", - "chainId": 5656, - "networkId": 5656, - "explorers": [ - { - "name": "QIE Explorer", - "url": "https://mainnet.qiblockchain.online", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filenova Testnet", - "chain": "Filenova", - "rpc": [ - "https://rpctest.filenova.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filenova.org", - "shortName": "tfilenova", - "chainId": 5675, - "networkId": 5675, - "icon": "filenova", - "explorers": [ - { - "name": "filenova testnet explorer", - "url": "https://scantest.filenova.org", - "icon": "filenova", - "standard": "none" - } - ] - }, - { - "name": "Tangle", - "chain": "Tangle", - "rpc": [ - "https://rpc.tangle.tools", - "wss://rpc.tangle.tools" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tangle", - "symbol": "TNT", - "decimals": 18 - }, - "infoURL": "https://docs.tangle.tools", - "shortName": "tangle", - "chainId": 5845, - "networkId": 5845, - "icon": "tangle", - "explorers": [ - { - "name": "Tangle EVM Explorer", - "url": "https://explorer.tangle.tools", - "standard": "EIP3091", - "icon": "tangle" - } - ] - }, - { - "name": "BounceBit Mainnet", - "chain": "BounceBit", - "rpc": [ - "https://fullnode-mainnet.bouncebitapi.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 - }, - "infoURL": "https://bouncebit.io", - "shortName": "bouncebit-mainnet", - "chainId": 6001, - "networkId": 6001, - "icon": "bouncebit", - "explorers": [ - { - "name": "BBScan Mainnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } - ] - }, - { - "name": "Aura Euphoria Testnet", - "chain": "Aura", - "rpc": [ - "https://jsonrpc.euphoria.aura.network" - ], - "faucets": [ - "https://aura.faucetme.pro" - ], - "nativeCurrency": { - "name": "test-EAura", - "symbol": "eAura", - "decimals": 18 - }, - "infoURL": "https://aura.network", - "shortName": "eaura", - "chainId": 6321, - "networkId": 6321, - "slip44": 1, - "icon": "aura", - "explorers": [ - { - "name": "Aurascan Explorer", - "url": "https://euphoria.aurascan.io", - "standard": "none", - "icon": "aura" - } - ] - }, - { - "name": "Aura Mainnet", - "chain": "Aura", - "rpc": [ - "https://jsonrpc.aura.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aura", - "symbol": "AURA", - "decimals": 18 - }, - "infoURL": "https://aura.network", - "shortName": "aura", - "chainId": 6322, - "networkId": 6322, - "slip44": 1, - "icon": "aura", - "explorers": [ - { - "name": "Aurascan Explorer", - "url": "https://aurascan.io", - "standard": "none", - "icon": "aura" - } - ] - }, - { - "name": "Pools Mainnet", - "chain": "Pools", - "rpc": [ - "https://rpc.poolsmobility.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "POOLS Native Token", - "symbol": "POOLS", - "decimals": 18 - }, - "infoURL": "https://www.poolschain.org", - "shortName": "POOLS", - "icon": "POOLS", - "chainId": 6868, - "networkId": 6868, - "slip44": 6868, - "explorers": [ - { - "name": "poolsscan", - "url": "https://scan.poolsmobility.com", - "icon": "POOLS", - "standard": "EIP3091" - } - ] - }, - { - "name": "Planq Atlas Testnet", - "chain": "Planq", - "icon": "planq", - "rpc": [ - "https://evm-rpc-atlas.planq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Planq", - "symbol": "tPLQ", - "decimals": 18 - }, - "infoURL": "https://planq.network", - "shortName": "planq-atlas-testnet", - "chainId": 7077, - "networkId": 7077, - "explorers": [] - }, - { - "name": "XPLA Verse", - "chain": "XPLA Verse", - "icon": "xpla_verse", - "rpc": [ - "https://rpc-xpla-verse.xpla.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.xpla.io", - "shortName": "XPLAVERSE", - "chainId": 7300, - "networkId": 7300, - "explorers": [ - { - "name": "XPLA Verse Explorer", - "url": "https://explorer-xpla-verse.xpla.dev", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Cyber Mainnet", - "chain": "Cyber", - "rpc": [ - "https://cyber.alt.technology/", - "wss://cyber-ws.alt.technology/", - "https://rpc.cyber.co/", - "wss://rpc.cyber.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "cyber", - "infoURL": "https://cyber.co/", - "shortName": "cyeth", - "chainId": 7560, - "networkId": 7560, - "explorers": [ - { - "name": "Cyber Mainnet Explorer", - "url": "https://cyberscan.co", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://cyber.co/bridge" - } - ] - } - }, - { - "name": "GDCC TESTNET", - "chain": "GDCC", - "icon": "gdcc", - "rpc": [ - "https://testnet-rpc1.gdccscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GDCC", - "symbol": "GDCC", - "decimals": 18 - }, - "infoURL": "https://gdcchain.com", - "shortName": "GDCC", - "chainId": 7775, - "networkId": 7775, - "explorers": [ - { - "name": "GDCC", - "url": "https://testnet.gdccscan.io", - "standard": "none" - } - ] - }, - { - "name": "Orenium Mainnet Protocol", - "chain": "ORE", - "rpc": [ - "https://validator-mainnet.orenium.org", - "https://rpc-oracle-mainnet.orenium.org", - "https://portalmainnet.orenium.org" - ], - "nativeCurrency": { - "name": "ORENIUM", - "symbol": "ORE", - "decimals": 18 - }, - "infoURL": "https://orenium.org", - "shortName": "ore", - "chainId": 7778, - "networkId": 7778, - "slip44": 1, - "icon": "ore", - "faucets": [], - "explorers": [ - { - "name": "ORE Mainnet Explorer", - "icon": "ore", - "url": "https://oreniumscan.org", - "standard": "none" - } - ] - }, - { - "name": "OpenEX LONG Testnet", - "title": "OpenEX LONG Testnet", - "chain": "OEX", - "icon": "oex", - "rpc": [ - "https://long.rpc.openex.network/" - ], - "faucets": [ - "https://long.hub.openex.network/faucet" - ], - "nativeCurrency": { - "name": "USDT Testnet", - "symbol": "USDT", - "decimals": 18 - }, - "infoURL": "https://openex.network", - "shortName": "oex", - "chainId": 7798, - "networkId": 7798, - "slip44": 1, - "explorers": [ - { - "name": "OpenEX Long Testnet Explorer", - "url": "https://scan.long.openex.network", - "icon": "oex", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dot Blox", - "chain": "DTBX", - "icon": "dotblox", - "rpc": [ - "https://rpc.dotblox.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dot Blox", - "symbol": "DTBX", - "decimals": 18 - }, - "infoURL": "https://explorer.dotblox.io", - "shortName": "DTBX", - "chainId": 7923, - "networkId": 7923, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.dotblox.io", - "standard": "none" - } - ] - }, - { - "name": "MO Mainnet", - "chainId": 7924, - "shortName": "MO", - "chain": "MO", - "icon": "mo", - "networkId": 7924, - "nativeCurrency": { - "name": "MO", - "symbol": "MO", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-rpc.mochain.app/" - ], - "faucets": [ - "https://faucet.mochain.app/" - ], - "explorers": [ - { - "name": "MO Explorer", - "url": "https://moscan.app", - "standard": "none" - } - ], - "infoURL": "https://mochain.app" - }, - { - "name": "BOAT Mainnet", - "title": "BOAT Mainnet", - "chain": "BOAT", - "icon": "boat", - "rpc": [ - "https://rpc0.come.boat/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Best Of All Time Token", - "symbol": "BOAT", - "decimals": 18 - }, - "infoURL": "https://come.boats", - "shortName": "boat", - "chainId": 8047, - "networkId": 8047, - "slip44": 1, - "explorers": [ - { - "name": "BOAT Mainnet Explorer", - "url": "https://scan.come.boats", - "icon": "boat", - "standard": "EIP3091" - } - ] - }, - { - "name": "Karak Sepolia", - "title": "Karak Testnet Sepolia", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://rpc.sepolia.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-sepolia", - "chainId": 8054, - "networkId": 8054, - "explorers": [ - { - "name": "Karak Sepolia Explorer", - "url": "https://explorer.sepolia.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "Space Subnet", - "chain": "SPACE", - "rpc": [ - "https://subnets.avax.network/space/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 - }, - "infoURL": "https://otherworld.network", - "shortName": "space", - "chainId": 8227, - "networkId": 8227, - "explorers": [ - { - "name": "SPACE Explorer", - "url": "https://subnets.avax.network/space", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lorenzo", - "chain": "Lorenzo", - "rpc": [ - "https://rpc.lorenzo-protocol.xyz" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Lorenzo stBTC", - "symbol": "stBTC", - "decimals": 18 - }, - "infoURL": "https://www.lorenzo-protocol.xyz/", - "shortName": "lrz", - "chainId": 8329, - "networkId": 8329, - "icon": "lorenzo", - "explorers": [ - { - "name": "Lorenzo Explorer", - "url": "https://scan.lorenzo-protocol.xyz", - "standard": "none", - "icon": "lorenzo" - } - ] - }, - { - "name": "IOTA EVM", - "title": "IOTA EVM", - "chain": "IOTA EVM", - "rpc": [ - "https://json-rpc.evm.iotaledger.net", - "https://ws.json-rpc.evm.iotaledger.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 - }, - "infoURL": "https://www.iota.org", - "shortName": "iotaevm", - "chainId": 8822, - "networkId": 8822, - "icon": "iotaevm", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.iota.org", - "icon": "iotaevm", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hydra Chain Testnet", - "chain": "HYDRA", - "rpc": [ - "https://rpc.testnet.hydrachain.org" - ], - "faucets": [ - "https://app.testnet.hydrachain.org/faucet" - ], - "nativeCurrency": { - "name": "tHydra", - "symbol": "tHYDRA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://hydrachain.org", - "shortName": "thydra", - "chainId": 8844, - "networkId": 8844, - "icon": "hydra", - "explorers": [ - { - "name": "Hydra Chain Testnet explorer", - "url": "https://hydragon.hydrachain.org", - "icon": "hydra", - "standard": "EIP3091" - } - ] - }, - { - "name": "SuperLumio", - "chain": "SuperLumio", - "icon": "superlumio", - "rpc": [ - "https://mainnet.lumio.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lumio.io/", - "shortName": "superlumio", - "chainId": 8866, - "networkId": 8866, - "explorers": [ - { - "name": "Lumio explorer", - "url": "https://explorer.lumio.io", - "standard": "none" - } - ] - }, - { - "name": "Algen", - "chain": "ALG", - "rpc": [ - "https://rpc.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "alg", - "chainId": 8911, - "networkId": 8911, - "icon": "alg", - "explorers": [ - { - "name": "algscan", - "url": "https://scan.algen.network", - "icon": "alg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Algen Testnet", - "chain": "ALG", - "rpc": [ - "https://rpc.test.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algTest", - "chainId": 8912, - "networkId": 8912, - "icon": "alg", - "explorers": [ - { - "name": "algscan", - "url": "https://scan.test.algen.network", - "icon": "alg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Algen Layer2", - "chain": "ALG L2", - "rpc": [ - "https://rpc.alg2.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algl2", - "chainId": 8921, - "networkId": 8921, - "icon": "algl2", - "explorers": [ - { - "name": "algl2scan", - "url": "https://scan.alg2.algen.network", - "icon": "algl2", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-8911", - "type": "shard" - } - }, - { - "name": "Algen Layer2 Testnet", - "chain": "ALG L2", - "rpc": [ - "https://rpc.alg2-test.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algl2Test", - "chainId": 8922, - "networkId": 8922, - "icon": "algl2", - "explorers": [ - { - "name": "algl2scan", - "url": "https://scan.alg2-test.algen.network", - "icon": "algl2", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-8921", - "type": "shard" - } - }, - { - "name": "Shido Testnet Block", - "chain": "Shido Testnet", - "rpc": [ - "https://rpc-testnet-nodes.shidoscan.com", - "wss://wss-testnet-nodes.shidoscan.com" - ], - "faucets": [ - "https://testnet.shidoscan.com/faucet" - ], - "nativeCurrency": { - "name": "Shido Testnet Token", - "symbol": "SHIDO", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "ShidoTestnet", - "chainId": 9007, - "networkId": 9007, - "icon": "shidoChain", - "explorers": [ - { - "name": "Shidoblock Testnet Explorer", - "url": "https://testnet.shidoscan.com", - "standard": "none", - "icon": "shidoChain" - } - ] - }, - { - "name": "Shido Mainnet Block", - "chain": "Shido Mainnet", - "rpc": [ - "https://rpc-nodes.shidoscan.com", - "wss://wss-nodes.shidoscan.com", - "https://rpc-delta-nodes.shidoscan.com", - "wss://wss-delta-nodes.shidoscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shido Mainnet Token", - "symbol": "SHIDO", - "decimals": 18 - }, - "infoURL": "https://shido.io", - "shortName": "Shido", - "chainId": 9008, - "networkId": 9008, - "icon": "shidoChain", - "explorers": [ - { - "name": "Shidoblock Mainnet Explorer", - "url": "https://shidoscan.com", - "standard": "none", - "icon": "shidoChain" - } - ] - }, - { - "name": "Tabi Testnet", - "chain": "TabiNetwork", - "rpc": [ - "https://rpc.testnet.tabichain.com" - ], - "faucets": [ - "https://faucet.testnet.tabichain.com" - ], - "nativeCurrency": { - "name": "Tabi", - "symbol": "TABI", - "decimals": 18 - }, - "infoURL": "https://www.tabichain.com", - "shortName": "tabitest", - "chainId": 9789, - "networkId": 9789, - "explorers": [ - { - "name": "Tabi Testnet Explorer", - "url": "https://testnet.tabiscan.com", - "standard": "none" - } - ] - }, - { - "name": "OptimusZ7 Mainnet", - "chain": "OptimusZ7", - "icon": "OZ7Icon", - "rpc": [ - "https://rpc.optimusz7.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 - }, - "infoURL": "http://optimusz7.com", - "shortName": "OZ7m", - "chainId": 9797, - "networkId": 9797, - "explorers": [ - { - "name": "OptimusZ7 Mainnet Explorer", - "url": "https://explorer.optimusz7.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Larissa Chain", - "title": "Larissa Chain", - "chain": "Larissa", - "rpc": [ - "https://rpc.larissa.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Larissa", - "symbol": "LRS", - "decimals": 18 - }, - "infoURL": "https://larissa.network", - "shortName": "lrs", - "chainId": 9898, - "networkId": 1, - "slip44": 9898, - "status": "active", - "icon": "larissa", - "explorers": [ - { - "name": "Larissa Scan", - "url": "https://scan.larissa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Espento Mainnet", - "chain": "SPENT", - "rpc": [ - "https://rpc.escscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ESPENTO", - "symbol": "SPENT", - "decimals": 18 - }, - "infoURL": "https://espento.network", - "shortName": "spent", - "chainId": 9911, - "networkId": 9911, - "icon": "espento", - "explorers": [ - { - "name": "escscan", - "url": "https://escscan.com", - "icon": "espento", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ztc Mainnet", - "chain": "ZTC", - "rpc": [ - "https://zitcoin.us" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ztcer", - "symbol": "ZTC", - "decimals": 5 - }, - "infoURL": "https://ztc.best", - "shortName": "ZTC", - "chainId": 9998, - "networkId": 9998 - }, - { - "name": "TAO EVM Mainnet", - "chain": "TAO EVM", - "icon": "taoevmIcon", - "rpc": [ - "https://rpc.taoevm.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 - }, - "infoURL": "https://taoevm.io", - "shortName": "TAOm", - "chainId": 10321, - "networkId": 10321, - "explorers": [ - { - "name": "TAO Mainnet Explorer", - "url": "https://taoscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "TAO EVM Testnet", - "chain": "TAO EVM", - "icon": "taoevmIcon", - "rpc": [ - "https://testnet-rpc.taoevm.io" - ], - "faucets": [ - "https://faucet.taoevm.io" - ], - "nativeCurrency": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 - }, - "infoURL": "https://taoevm.io", - "shortName": "TAOt", - "chainId": 10324, - "networkId": 10324, - "explorers": [ - { - "name": "TAO Testnet Explorer", - "url": "https://testnet.taoscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1", - "chain": "Lamina1", - "rpc": [ - "https://subnets.avax.network/lamina1/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1", - "symbol": "L1", - "decimals": 18 - }, - "infoURL": "https://www.lamina1.com/", - "shortName": "lamina1", - "chainId": 10849, - "networkId": 10849, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Explorer", - "url": "https://subnets.avax.network/lamina1", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1 Identity", - "chain": "Lamina1 Identity", - "rpc": [ - "https://subnets.avax.network/lamina1id/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 ID", - "symbol": "L1ID", - "decimals": 18 - }, - "infoURL": "https://www.lamina1.com/", - "shortName": "lamina1id", - "chainId": 10850, - "networkId": 10850, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Identity Explorer", - "url": "https://subnets.avax.network/lamina1id", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shine Chain", - "chain": "SC20", - "rpc": [ - "https://rpc.shinescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shine", - "symbol": "SC20", - "decimals": 18 - }, - "infoURL": "https://shinechain.tech", - "shortName": "SC20", - "chainId": 11221, - "networkId": 11221, - "icon": "shine", - "explorers": [ - { - "name": "shinescan", - "url": "https://shinescan.io", - "icon": "shine", - "standard": "none" - } - ] - }, - { - "name": "Jiritsu Testnet Subnet", - "chain": "JIRITSUTES", - "rpc": [ - "https://subnets.avax.network/jiritsutes/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "JIRI", - "symbol": "TZW", - "decimals": 18 - }, - "infoURL": "https://jiritsu.network", - "shortName": "jiritsutes", - "chainId": 11227, - "networkId": 11227, - "explorers": [ - { - "name": "JIRITSUTES Explorer", - "url": "https://subnets-test.avax.network/jiritsutes", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM Mainnet", - "chain": "BEVM", - "rpc": [ - "https://rpc-mainnet-1.bevm.io/", - "https://rpc-mainnet-2.bevm.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://bevm.io", - "shortName": "bevm", - "chainId": 11501, - "networkId": 11501, - "icon": "bevm", - "explorers": [ - { - "name": "bevm mainnet scan", - "url": "https://scan-mainnet.bevm.io", - "standard": "none" - } - ] - }, - { - "name": "L3X Protocol", - "chainId": 12324, - "shortName": "l3x", - "chain": "L3X", - "icon": "l3x", - "networkId": 12324, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.l3x.com" - ], - "faucets": [], - "explorers": [ - { - "name": "L3X Mainnet Explorer", - "url": "https://explorer.l3x.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://l3x.com", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "L3X Protocol Testnet", - "chainId": 12325, - "shortName": "l3x-testnet", - "chain": "L3X", - "icon": "l3x", - "networkId": 12325, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc-testnet.l3x.com" - ], - "faucets": [], - "explorers": [ - { - "name": "L3X Testnet Explorer", - "url": "https://explorer-testnet.l3x.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://l3x.com", - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "RSS3 VSL Mainnet", - "chain": "RSS3", - "rpc": [ - "https://rpc.rss3.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 - }, - "infoURL": "https://rss3.io", - "shortName": "rss3", - "chainId": 12553, - "networkId": 12553, - "icon": "rss3", - "explorers": [ - { - "name": "RSS3 VSL Scan", - "url": "https://scan.rss3.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://explorer.rss3.io/bridge" - } - ] - } - }, - { - "name": "Playdapp Testnet", - "chain": "PDA", - "icon": "pda", - "rpc": [ - "https://subnets.avax.network/playdappte/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 - }, - "infoURL": "https://playdapp.io", - "shortName": "PDA-TESTNET", - "chainId": 12781, - "networkId": 12781, - "explorers": [ - { - "name": "Playdapp Testnet Explorer", - "url": "https://subnets-test.avax.network/playdappte", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlayFair Testnet Subnet", - "chain": "PLAYFAIR", - "icon": "playfair", - "rpc": [ - "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTLT Token", - "symbol": "BTLT", - "decimals": 18 - }, - "infoURL": "https://letsplayfair.ai", - "shortName": "playfair", - "chainId": 12898, - "networkId": 12898, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets-test.avax.network/letsplayfair", - "standard": "EIP3091" - } - ] - }, - { - "name": "Masa", - "chain": "MASA", - "icon": "masa", - "rpc": [ - "https://subnets.avax.network/masanetwork/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 - }, - "infoURL": "https://masa.finance", - "shortName": "masa", - "chainId": 13396, - "networkId": 13396, - "explorers": [ - { - "name": "Masa Explorer", - "url": "https://subnets.avax.network/masa", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gravity Alpha Testnet Sepolia", - "chain": "Gravity", - "rpc": [ - "https://rpc-sepolia.gravity.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Gravity", - "symbol": "G.", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - }, - { - "name": "EIP1108" - } - ], - "infoURL": "https://gravity.xyz", - "shortName": "gravitysep", - "chainId": 13505, - "networkId": 13505, - "icon": "gravity", - "explorers": [ - { - "name": "Gravity Alpha Testnet Sepolia Explorer", - "url": "https://explorer-sepolia.gravity.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "Kronobit Mainnet", - "title": "Kronobit Mainnet", - "chain": "KNB", - "rpc": [ - "https://mainnet-rpc.qbitscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kronobit", - "symbol": "KNB", - "decimals": 18 - }, - "infoURL": "https://kronobit.org", - "shortName": "KNB", - "chainId": 13600, - "networkId": 13600, - "icon": "kronobit", - "explorers": [ - { - "name": "qbitscan", - "url": "https://explorer.qbitscan.com", - "icon": "kronobit", - "standard": "EIP3091" - } - ] - }, - { - "name": "EVOLVE Testnet", - "chain": "EVO", - "icon": "evolveIcon", - "rpc": [ - "https://testnet-rpc.evolveblockchain.io" - ], - "faucets": [ - "https://faucet.evolveblockchain.io" - ], - "nativeCurrency": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 - }, - "infoURL": "https://evolveblockchain.io", - "shortName": "evo", - "chainId": 14324, - "networkId": 14324, - "explorers": [ - { - "name": "Evolve Testnet Explorer", - "url": "https://testnet.evolveblockchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Poodl Testnet", - "chain": "Poodl", - "icon": "poodlIcon", - "rpc": [ - "https://testnet-rpc.poodl.org" - ], - "faucets": [ - "https://faucet.poodl.org" - ], - "nativeCurrency": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 - }, - "infoURL": "https://poodl.org", - "shortName": "poodlt", - "chainId": 15257, - "networkId": 15257, - "explorers": [ - { - "name": "Poodl Testnet Explorer", - "url": "https://testnet.poodl.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Poodl Mainnet", - "chain": "Poodl", - "icon": "poodlIcon", - "rpc": [ - "https://rpc.poodl.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 - }, - "infoURL": "https://poodl.org", - "shortName": "poodle", - "chainId": 15259, - "networkId": 15259, - "explorers": [ - { - "name": "Poodl Mainnet Explorer", - "url": "https://explorer.poodl.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiVerse Mainnet", - "chain": "DeFiVerse", - "icon": "defiverse", - "rpc": [ - "https://rpc.defi-verse.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://defi-verse.org", - "shortName": "DFV", - "chainId": 16116, - "networkId": 16116, - "explorers": [ - { - "name": "DeFiVerse Explorer", - "url": "https://scan.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Garnet Holesky", - "chain": "ETH", - "rpc": [ - "https://rpc.garnetchain.com", - "wss://rpc.garnetchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz", - "shortName": "garnet", - "chainId": 17069, - "networkId": 17069, - "icon": "garnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.garnetchain.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-17000", - "bridges": [ - { - "url": "https://garnetchain.com/deposit" - } - ] - } - }, - { - "name": "DeFiVerse Testnet", - "chain": "DeFiVerse Testnet", - "icon": "defiverse", - "rpc": [ - "https://rpc-testnet.defi-verse.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://defi-verse.org", - "shortName": "DFV-testnet", - "chainId": 17117, - "networkId": 17117, - "explorers": [ - { - "name": "DeFiVerse Testnet Explorer", - "url": "https://scan-testnet.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" - } - ] - }, - { - "name": "unreal", - "title": "unreal testnet for re.al", - "chain": "unreal", - "rpc": [ - "https://rpc.unreal-orbit.gelato.digital", - "wss://ws.unreal-orbit.gelato.digital" - ], - "nativeCurrency": { - "name": "unreal Ether", - "symbol": "reETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", - "faucets": [], - "shortName": "unreal", - "chainId": 18233, - "networkId": 18233, - "slip44": 60, - "icon": "unreal", - "explorers": [ - { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-17000", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/unreal" - } - ] - } - }, - { - "name": "Titan (TKX)", - "chain": "Titan (TKX)", - "rpc": [ - "https://titan-json-rpc.titanlab.io", - "https://titan-json-rpc-tokyo.titanlab.io", - "https://titan-json-rpc-seoul.titanlab.io", - "https://titan-json-rpc-hongkong.titanlab.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 - }, - "infoURL": "https://titanlab.io", - "shortName": "titan_tkx", - "chainId": 18888, - "networkId": 18888, - "slip44": 1, - "icon": "titan_tkx", - "explorers": [ - { - "name": "Titan Explorer", - "url": "https://tkxscan.io/Titan", - "standard": "none", - "icon": "titan_tkx" - } - ] - }, - { - "name": "LBRY Mainnet", - "chain": "LBRY", - "icon": "lbry", - "rpc": [ - "https://lbry.nl/rpc" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "LBRY Credits", - "symbol": "LBC", - "decimals": 8 - }, - "infoURL": "https://lbry.com", - "shortName": "LBRY", - "chainId": 19600, - "networkId": 19600, - "slip44": 140, - "explorers": [ - { - "name": "LBRY Block Explorer", - "url": "https://explorer.lbry.com", - "icon": "lbry", - "standard": "none" - } - ] - }, - { - "name": "Niza Chain Mainnet", - "chain": "NIZA", - "icon": "niza", - "rpc": [ - "https://nizascan.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 - }, - "infoURL": "https://niza.io", - "shortName": "niza", - "chainId": 20041, - "networkId": 20041, - "explorers": [ - { - "name": "NizaScan", - "url": "https://nizascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Niza Chain Testnet", - "chain": "NIZA", - "icon": "niza", - "rpc": [ - "https://testnet.nizascan.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 - }, - "infoURL": "https://niza.io", - "shortName": "niza_testnet", - "chainId": 20073, - "networkId": 20073, - "explorers": [ - { - "name": "NizaScan", - "url": "https://testnet.nizascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCpay Mainnet", - "chain": "DCpay", - "icon": "dcpayIcon", - "rpc": [ - "https://rpc.dcpay.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 - }, - "infoURL": "https://dcpay.io", - "shortName": "DCPm", - "chainId": 21223, - "networkId": 21223, - "explorers": [ - { - "name": "DCpay Mainnet Explorer", - "url": "https://mainnet.dcpay.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCpay Testnet", - "chain": "DCpay", - "icon": "dcpayIcon", - "rpc": [ - "https://testnet-rpc.dcpay.io" - ], - "faucets": [ - "https://faucet.dcpay.io" - ], - "nativeCurrency": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 - }, - "infoURL": "https://dcpay.io", - "shortName": "DCPt", - "chainId": 21224, - "networkId": 21224, - "explorers": [ - { - "name": "DCpay Testnet Explorer", - "url": "https://testnet.dcpay.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DreyerX Mainnet", - "chain": "DreyerX", - "rpc": [ - "https://rpc.dreyerx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 - }, - "infoURL": "https://dreyerx.com", - "shortName": "dreyerx", - "chainId": 23451, - "networkId": 23451, - "icon": "dreyerx", - "explorers": [ - { - "name": "drxscan", - "url": "https://scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } - ] - }, - { - "name": "DreyerX Testnet", - "chain": "DreyerX", - "rpc": [ - "https://testnet-rpc.dreyerx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 - }, - "infoURL": "https://dreyerx.com", - "shortName": "dreyerx-testnet", - "chainId": 23452, - "networkId": 23452, - "icon": "dreyerx", - "explorers": [ - { - "name": "drxscan", - "url": "https://testnet-scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } - ] - }, - { - "name": "KLAOS Nova", - "title": "KLAOS Nova Test Chain", - "chain": "KLAOS Nova", - "icon": "k-laos", - "rpc": [ - "https://rpc.klaosnova.laosfoundation.io", - "wss://rpc.klaosnova.laosfoundation.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "klaosnova", - "chainId": 27181, - "networkId": 27181, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.klaosnova.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nanon Sepolia", - "title": "Nanon Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rpc.nanon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.nanon.network", - "shortName": "Nanon-Testnet", - "chainId": 27483, - "networkId": 27483, - "slip44": 1, - "icon": "nanon", - "explorers": [ - { - "name": "Nanon Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.nanon.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://sepolia-bridge.nanon.network" - } - ] - } - }, - { - "name": "zeroone Mainnet Subnet", - "chain": "ZEROONEMAI", - "rpc": [ - "https://subnets.avax.network/zeroonemai/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://zeroone.art/", - "shortName": "zeroonemai", - "chainId": 27827, - "networkId": 27827, - "explorers": [ - { - "name": "ZEROONEMAI Explorer", - "url": "https://subnets.avax.network/zeroonemai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vizing Testnet", - "title": "Vizing Testnet", - "chain": "Vizing Testnet", - "rpc": [ - "https://rpc-sepolia.vizing.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://vizing.com", - "shortName": "Vizing-Testnet", - "chainId": 28516, - "networkId": 28516, - "icon": "vizing", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-sepolia.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vizing Mainnet", - "title": "Vizing Mainnet", - "chain": "Vizing Mainnet", - "rpc": [ - "https://rpc.vizing.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://vizing.com", - "shortName": "Vizing", - "chainId": 28518, - "networkId": 28518, - "icon": "vizing", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.vizing.com" - } - ] - } - }, - { - "name": "Boba Sepolia", - "chain": "ETH", - "rpc": [ - "https://sepolia.boba.network", - "https://boba-sepolia.gateway.tenderly.co", - "https://gateway.tenderly.co/public/boba-sepolia", - "wss://boba-sepolia.gateway.tenderly.co/", - "wss://gateway.tenderly.co/public/boba-sepolia" - ], - "faucets": [ - "https://www.l2faucet.com/boba" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaSepolia", - "chainId": 28882, - "networkId": 28882, - "explorers": [ - { - "name": "Bobascan", - "url": "https://testnet.bobascan.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - } - }, - { - "name": "HYCHAIN Testnet", - "chainId": 29112, - "shortName": "hychain-testnet", - "chain": "ETH", - "networkId": 29112, - "nativeCurrency": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 - }, - "rpc": [ - "https://testnet-rpc.hychain.com/http" - ], - "faucets": [], - "infoURL": "https://www.hychain.com", - "icon": "hychain", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-58008", - "bridges": [] - } - }, - { - "name": "KaiChain Testnet", - "chain": "KaiChain", - "rpc": [ - "https://testnet-rpc.kaichain.net" - ], - "faucets": [ - "https://faucet.kaichain.net" - ], - "nativeCurrency": { - "name": "KaiChain Testnet Native Token", - "symbol": "KEC", - "decimals": 18 - }, - "infoURL": "https://kaichain.net", - "shortName": "tkec", - "chainId": 29536, - "networkId": 29536, - "explorers": [ - { - "name": "KaiChain Explorer", - "url": "https://testnet-explorer.kaichain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "MiYou Mainnet", - "chain": "MiYou Chain", - "icon": "miyou", - "faucets": [], - "rpc": [ - "https://blockchain.miyou.io", - "https://blockchain.miyoulab.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "Miyou", - "symbol": "MY", - "decimals": 18 - }, - "infoURL": "https://www.miyou.io", - "shortName": "MiYou", - "chainId": 30088, - "networkId": 30088, - "slip44": 60, - "ens": { - "registry": "0xFEfa9B3061435977424DD947E756566cFB60473E" - }, - "explorers": [ - { - "name": "MiYou block explorer", - "url": "https://myscan.miyou.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Movement EVM Legacy", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "moveleg", - "chainId": 30730, - "networkId": 30730, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Movement EVM Devnet", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "movedev", - "chainId": 30731, - "networkId": 30731, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Movement EVM Testnet", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "movetest", - "chainId": 30732, - "networkId": 30732, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Xchain Mainnet", - "chain": "Xchain", - "icon": "intd", - "rpc": [ - "https://rpc.xchainscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Intdestcoin", - "symbol": "INTD", - "decimals": 18 - }, - "infoURL": "https://xchainscan.com", - "shortName": "INTD", - "chainId": 31753, - "networkId": 31753, - "explorers": [ - { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xchain Testnet", - "chain": "Xchain", - "icon": "intd", - "rpc": [ - "https://rpc.xchaintest.net" - ], - "faucets": [ - "https://xchainfaucet.net" - ], - "nativeCurrency": { - "name": "Intdestcoin Testnet", - "symbol": "INTD", - "decimals": 18 - }, - "infoURL": "https://xchaintest.net", - "shortName": "tINTD", - "chainId": 31754, - "networkId": 31754, - "explorers": [ - { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Entangle Mainnet", - "chain": "NGL", - "icon": "ngl", - "rpc": [ - "https://json-rpc.entangle.fi" - ], - "faucets": [], - "nativeCurrency": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 - }, - "infoURL": "https://www.entangle.fi", - "shortName": "ngl", - "chainId": 33033, - "networkId": 33033, - "explorers": [ - { - "name": "Entangle Mainnet Explorer", - "url": "https://explorer.entangle.fi", - "standard": "none" - } - ] - }, - { - "name": "Entangle Testnet", - "chain": "NGL", - "icon": "ngl", - "rpc": [ - "https://evm-testnet.entangle.fi" - ], - "faucets": [], - "nativeCurrency": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 - }, - "infoURL": "https://www.entangle.fi", - "shortName": "tngl", - "chainId": 33133, - "networkId": 33133, - "explorers": [] - }, - { - "name": "Funki", - "chain": "ETH", - "icon": "funki", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://funkichain.com", - "shortName": "funki", - "chainId": 33979, - "networkId": 33979, - "explorers": [ - { - "name": "Funki Mainnet Explorer", - "url": "https://mainnet.funkichain.com", - "standard": "none" - } - ] - }, - { - "name": "PRM Mainnet", - "chain": "prm", - "icon": "prmIcon", - "rpc": [ - "https://mainnet-rpc.prmscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 - }, - "infoURL": "https://primalnetwork.org", - "shortName": "prm", - "chainId": 39656, - "networkId": 39656, - "explorers": [ - { - "name": "Primal Network", - "url": "https://prmscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "AgentLayer Testnet", - "chain": "AgentLayer", - "icon": "agentLayerIcon", - "rpc": [ - "https://testnet-rpc.agentlayer.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Agent", - "symbol": "AGENT", - "decimals": 18 - }, - "infoURL": "https://agentlayer.xyz/home", - "shortName": "agent", - "chainId": 42072, - "networkId": 42072, - "explorers": [ - { - "name": "AgentLayer Testnet Explorer", - "url": "https://testnet-explorer.agentlayer.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Etherlink Mainnet", - "chain": "Etherlink", - "icon": "etherlink", - "chainId": 42793, - "networkId": 42793, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://etherlink.com", - "shortName": "etlk", - "nativeCurrency": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 - }, - "rpc": [ - "https://node.mainnet.etherlink.com" - ], - "faucets": [], - "explorers": [ - { - "name": "Etherlink Explorer", - "url": "https://explorer.etherlink.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hemi Network", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hemi.xyz", - "shortName": "hemi", - "chainId": 43111, - "networkId": 43111, - "icon": "hemi", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - }, - "status": "incubating" - }, - { - "name": "Quantum Network", - "chain": "Quantum", - "rpc": [ - "https://rpcqtm.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum", - "symbol": "QTM", - "decimals": 18 - }, - "infoURL": "https://avescoin.io/", - "shortName": "QTM", - "chainId": 44445, - "networkId": 44445, - "icon": "quantum", - "explorers": [ - { - "name": "Quantum Explorer", - "url": "https://qtm.avescoin.io", - "icon": "quantum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swamps L2", - "chain": "SWP", - "icon": "swamps", - "rpc": [ - "https://swamps.tc.l2aas.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWP", - "symbol": "SWP", - "decimals": 18 - }, - "infoURL": "https://www.swamps.fi", - "shortName": "SWP", - "chainId": 45454, - "networkId": 45454, - "explorers": [ - { - "name": "blockscout", - "url": "https://swamps-explorer.tc.l2aas.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "DODOchain testnet", - "title": "DODOchain testnet", - "chain": "DODOchain", - "icon": "dodochain_testnet", - "rpc": [ - "https://dodochain-testnet.alt.technology", - "wss://dodochain-testnet.alt.technology/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "DODO", - "symbol": "DODO", - "decimals": 18 - }, - "infoURL": "https://www.dodochain.com", - "shortName": "dodochain", - "chainId": 53457, - "networkId": 53457, - "explorers": [ - { - "name": "DODOchain Testnet (Sepolia) Explorer", - "url": "https://testnet-scan.dodochain.com", - "icon": "dodochain_testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Photon Testnet", - "chain": "Photon", - "rpc": [ - "https://rpc-test.photonchain.io" - ], - "faucets": [ - "https://photonchain.io/airdrop" - ], - "nativeCurrency": { - "name": "Photon", - "symbol": "PTON", - "decimals": 18 - }, - "infoURL": "https://photonchain.io", - "shortName": "pton", - "chainId": 54555, - "networkId": 54555, - "explorers": [ - { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" - } - ] - }, - { - "name": "Lambda Chain Mainnet", - "chain": "Lambda Chain", - "rpc": [ - "https://nrpc.lambda.im/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "lambda", - "chainId": 56026, - "networkId": 56026, - "slip44": 1, - "icon": "lambda-chain", - "explorers": [ - { - "name": "Lambda Chain Mainnet Explorer", - "url": "https://scan.lambda.im", - "standard": "EIP3091" - } - ] - }, - { - "name": "Testnet Zeroone Subnet", - "chain": "TESTNETZER", - "rpc": [ - "https://subnets.avax.network/testnetzer/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://zeroone.art/", - "shortName": "testnetzer", - "chainId": 56400, - "networkId": 56400, - "explorers": [ - { - "name": "TESTNETZER Explorer", - "url": "https://subnets-test.avax.network/testnetzer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linea Sepolia", - "title": "Linea Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia.linea.build", - "wss://rpc.sepolia.linea.build", - "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea-sepolia", - "chainId": 59141, - "networkId": 59141, - "slip44": 1, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.linea.build/" - } - ] - }, - "explorers": [ - { - "name": "Etherscan", - "url": "https://sepolia.lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "Blockscout", - "url": "https://explorer.sepolia.linea.build", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "BOB", - "chain": "ETH", - "rpc": [ - "https://rpc.gobob.xyz", - "wss://rpc.gobob.xyz", - "https://bob-mainnet.public.blastapi.io", - "wss://bob-mainnet.public.blastapi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gobob.xyz", - "shortName": "bob", - "chainId": 60808, - "networkId": 60808, - "icon": "bob", - "explorers": [ - { - "name": "bobscout", - "url": "https://explorer.gobob.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "active", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://app.gobob.xyz" - } - ] - } - }, - { - "name": "KaiChain", - "chain": "KaiChain", - "rpc": [ - "https://mainnet-rpc.kaichain.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "KaiChain Native Token", - "symbol": "KEC", - "decimals": 18 - }, - "infoURL": "https://kaichain.net", - "shortName": "kec", - "chainId": 61406, - "networkId": 61406, - "explorers": [ - { - "name": "KaiChain Explorer", - "url": "https://explorer.kaichain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "OPTOPIA Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-testnet.optopia.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://optopia.ai", - "shortName": "OPTOPIA-Testnet", - "chainId": 62049, - "networkId": 62049, - "icon": "optopia", - "explorers": [ - { - "name": "optopia-testnet-scan", - "url": "https://scan-testnet.optopia.ai", - "icon": "optopia", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge-testnet.optopia.ai" - } - ] - } - }, - { - "name": "Optopia Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc-mainnet.optopia.ai", - "https://rpc-mainnet-2.optopia.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://optopia.ai", - "shortName": "Optopia", - "chainId": 62050, - "networkId": 62050, - "icon": "optopia", - "explorers": [ - { - "name": "optopia-scan", - "url": "https://scan.optopia.ai", - "icon": "optopia", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.optopia.ai" - } - ] - } - }, - { - "name": "Citrea Devnet", - "chain": "Citrea", - "rpc": [ - "https://rpc.devnet.citrea.xyz" - ], - "faucets": [ - "https://citrea.xyz/bridge" - ], - "nativeCurrency": { - "name": "Citrea BTC", - "symbol": "cBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://citrea.xyz", - "shortName": "citrea-devnet", - "chainId": 62298, - "networkId": 62298, - "icon": "citrea", - "explorers": [ - { - "name": "Citrea Devnet Explorer", - "url": "https://explorer.devnet.citrea.xyz", - "icon": "citrea", - "standard": "EIP3091" - } - ] - }, - { - "name": "PLYR TAU Testnet", - "chain": "PLYR", - "icon": "plyr", - "rpc": [ - "https://subnets.avax.network/plyr/testnet/rpc" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=plyr" - ], - "nativeCurrency": { - "name": "PLYR", - "symbol": "PLYR", - "decimals": 18 - }, - "infoURL": "https://plyr.network", - "shortName": "plyr-tau-testnet", - "chainId": 62831, - "networkId": 62831, - "slip44": 1, - "explorers": [ - { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/plyr", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proof of Play - Apex", - "chainId": 70700, - "shortName": "pop-apex", - "chain": "ETH", - "networkId": 70700, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.apex.proofofplay.com" - ], - "faucets": [], - "explorers": [ - { - "name": "Proof of Play Apex Explorer", - "url": "https://explorer.apex.proofofplay.com", - "icon": "pop-apex", - "standard": "EIP3091" - } - ], - "infoURL": "https://proofofplay.com", - "icon": "pop-apex", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - }, - { - "url": "https://relay.link/bridge/apex/" - } - ] - } - }, - { - "name": "CAGA crypto Ankara testnet", - "chain": "Ankara", - "rpc": [ - "https://www.ankara-cagacrypto.com", - "wss://wss.ankara-cagacrypto.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Caga", - "symbol": "CAGA", - "decimals": 18 - }, - "infoURL": "https://www.cagacrypto.com/", - "shortName": "caga", - "chainId": 72778, - "networkId": 72778, - "icon": "ankaracaga", - "explorers": [ - { - "name": "ankara", - "url": "https://explorer.ankara-cagacrypto.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICB Testnet", - "chain": "ICBT", - "icon": "icbnetwork", - "rpc": [ - "https://rpc1-testnet.icbnetwork.info/", - "https://rpc2-testnet.icbnetwork.info/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ICB Testnet Token", - "symbol": "ICBT", - "decimals": 18 - }, - "infoURL": "https://icb.network", - "shortName": "ICBT", - "chainId": 73114, - "networkId": 73114, - "explorers": [ - { - "name": "ICB Tesnet Explorer", - "url": "https://testnet.icbscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICB Network", - "chain": "ICB", - "icon": "icbnetwork", - "rpc": [ - "https://rpc1-mainnet.icbnetwork.info/", - "https://rpc2-mainnet.icbnetwork.info/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ICB Native Token", - "symbol": "ICBX", - "decimals": 18 - }, - "infoURL": "https://icb.network", - "shortName": "ICBX", - "chainId": 73115, - "networkId": 73115, - "explorers": [ - { - "name": "ICB Explorer", - "url": "https://icbscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GEEK Verse Mainnet", - "chain": "GEEK", - "rpc": [ - "https://rpc.geekout-pte.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 - }, - "infoURL": "https://www.geekout-pte.com", - "shortName": "GEEK", - "chainId": 75512, - "networkId": 75512, - "explorers": [ - { - "name": "Geek Explorer", - "url": "https://explorer.geekout-pte.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GEEK Verse Testnet", - "chain": "GEEK Test", - "rpc": [ - "https://rpc-testnet.geekout-pte.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 - }, - "infoURL": "https://www.geekout-pte.com", - "shortName": "GEEK_Test", - "chainId": 75513, - "networkId": 75513, - "explorers": [ - { - "name": "Geek Testnet Explorer", - "url": "https://explorer-testnet.geekout-pte.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BORAchain mainnet", - "chain": "BORA", - "icon": "bora", - "rpc": [ - "https://public-node.api.boraportal.com/bora/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "BGAS", - "symbol": "BGAS", - "decimals": 18 - }, - "infoURL": "https://www.boraportal.com", - "shortName": "BORAchain", - "chainId": 77001, - "networkId": 77001, - "slip44": 8217, - "explorers": [ - { - "name": "BORAchainscope", - "url": "https://scope.boraportal.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amoy", - "title": "Polygon Amoy Testnet", - "chain": "Polygon", - "icon": "polygon", - "rpc": [ - "https://rpc-amoy.polygon.technology", - "https://polygon-amoy-bor-rpc.publicnode.com", - "wss://polygon-amoy-bor-rpc.publicnode.com" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/", - "shortName": "polygonamoy", - "chainId": 80002, - "networkId": 80002, - "slip44": 1, - "explorers": [ - { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZEDXION", - "chain": "ZEDXION", - "icon": "zedx", - "rpc": [ - "https://mainnet-rpc.zedscan.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zedxion", - "symbol": "ZEDX", - "decimals": 9 - }, - "infoURL": "https://docs.zedscan.net", - "shortName": "ZEDX", - "chainId": 83872, - "networkId": 83872, - "explorers": [ - { - "name": "Zedscan", - "url": "http://zedscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Inoai Network", - "chain": "INOAI", - "faucets": [], - "rpc": [ - "https://inoai-network.com" - ], - "nativeCurrency": { - "name": "Inoai", - "symbol": "INO", - "decimals": 18 - }, - "infoURL": "https://inoai.info", - "shortName": "INOAI", - "chainId": 88559, - "networkId": 88559, - "icon": "inoai", - "explorers": [ - { - "name": "inoai live", - "url": "https://inoai.live", - "standard": "none" - } - ] - }, - { - "name": "Unit Zero Testnet", - "chain": "Unit Zero", - "rpc": [ - "https://rpc-testnet.unit0.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://units.network", - "shortName": "unit0-testnet", - "chainId": 88817, - "networkId": 88817, - "explorers": [ - { - "name": "explorer-testnet", - "url": "https://explorer-testnet.unit0.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Unit Zero Stagenet", - "chain": "Unit Zero", - "rpc": [ - "https://rpc-stagenet.unit0.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://units.network", - "shortName": "unit0-stagenet", - "chainId": 88819, - "networkId": 88819, - "explorers": [ - { - "name": "explorer-stagenet", - "url": "https://explorer-stagenet.unit0.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Chiliz Spicy Testnet", - "chain": "CHZ", - "rpc": [ - "https://spicy-rpc.chiliz.com" - ], - "faucets": [ - "https://spicy-faucet.chiliz.com", - "https://tatum.io/faucets/chiliz" - ], - "nativeCurrency": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 - }, - "icon": "chilizspicy", - "infoURL": "https://www.chiliz.com/en/chain", - "shortName": "chzspicy", - "chainId": 88882, - "networkId": 88882, - "slip44": 1, - "explorers": [ - { - "name": "spicy-explorer", - "url": "https://testnet.chiliscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "F(x)Core Testnet Network", - "chain": "Fxcore", - "rpc": [ - "https://testnet-fx-json-web3.functionx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 - }, - "infoURL": "https://functionx.io/", - "shortName": "dhobyghaut", - "chainId": 90001, - "networkId": 90001, - "icon": "fxcore" - }, - { - "name": "Camp Testnet", - "chain": "ETH", - "icon": "camp", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" - ], - "faucets": [ - "https://www.campnetwork.xyz/faucet" - ], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://campaign-1.gitbook.io/camp-technical-docså", - "shortName": "camp", - "chainId": 90354, - "networkId": 90354, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://camp-testnet-bridge.vercel.app/" - } - ] - } - }, - { - "name": "Green Chain Testnet", - "chain": "Green Chain", - "icon": "greenchain", - "rpc": [ - "https://node.greenchain.app/rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GREEN", - "symbol": "GREEN", - "decimals": 18 - }, - "infoURL": "https://www.greenchain.app", - "shortName": "greenchain", - "chainId": 97531, - "networkId": 97531, - "explorers": [ - { - "name": "Green Chain Explorer", - "url": "https://explorer.greenchain.app", - "standard": "EIP3091" - } - ] - }, - { - "name": "OptimusZ7 Testnet", - "chain": "OptimusZ7", - "icon": "OZ7Icon", - "rpc": [ - "https://testnet-rpc.optimusz7.com" - ], - "faucets": [ - "https://faucet.optimusz7.com" - ], - "nativeCurrency": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 - }, - "infoURL": "http://optimusz7.com", - "shortName": "OZ7t", - "chainId": 97970, - "networkId": 97970, - "explorers": [ - { - "name": "OptimusZ7 Testnet Explorer", - "url": "https://testnet.optimusz7.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ebi Chain", - "title": "Ebi Chain", - "chain": "Ebi", - "rpc": [ - "https://rpc.ebi.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ebi.xyz", - "shortName": "ebi", - "chainId": 98881, - "networkId": 98881, - "status": "incubating" - }, - { - "name": "QuarkChain L2 Mainnet", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-l2-ethapi.quarkchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-l2", - "chainId": 100011, - "networkId": 100011, - "parent": { - "type": "L2", - "chain": "eip155-100000" - } - }, - { - "name": "Creditcoin Testnet", - "chain": "CTC", - "icon": "creditcoin", - "rpc": [ - "https://rpc.cc3-testnet.creditcoin.network" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "Testnet CTC", - "symbol": "tCTC", - "decimals": 18 - }, - "infoURL": "https://creditcoin.org", - "shortName": "ctctest", - "chainId": 102031, - "networkId": 102031, - "faucets": [], - "explorers": [ - { - "name": "blockscout", - "url": "https://creditcoin-testnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "KaspaClassic Mainnet", - "chain": "KaspaClassic", - "icon": "kaspaclassic", - "rpc": [ - "https://api.kaspaclassic.world/", - "http://80.178.101.118:8000/" - ], - "faucets": [], - "nativeCurrency": { - "name": "KaspaClassic", - "symbol": "CAS", - "decimals": 18 - }, - "infoURL": "https://kaspaclassic.com/", - "shortName": "cas", - "chainId": 104566, - "networkId": 104566, - "explorers": [ - { - "name": "KaspaClassic Explorer", - "url": "https://explorer.kaspaclassic.world", - "standard": "none" - } - ] - }, - { - "name": "Stratis Mainnet", - "chain": "Stratis", - "rpc": [ - "https://rpc.stratisevm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Stratis", - "symbol": "STRAX", - "decimals": 18 - }, - "infoURL": "https://www.stratisplatform.com", - "shortName": "stratis", - "chainId": 105105, - "networkId": 105105, - "icon": "stratis", - "explorers": [ - { - "name": "Stratis Explorer", - "url": "https://explorer.stratisevm.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain L2 Testnet", - "chain": "QuarkChain", - "rpc": [ - "https://testnet-l2-ethapi.quarkchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-l2-t", - "chainId": 110011, - "networkId": 110011, - "parent": { - "type": "L2", - "chain": "eip155-110000" - } - }, - { - "name": "re.al", - "title": "re.al Real-World Assets network", - "chain": "re.al", - "rpc": [ - "https://real.drpc.org", - "wss://real.drpc.org" - ], - "nativeCurrency": { - "name": "re.al Ether", - "symbol": "reETH", - "decimals": 18 - }, - "infoURL": "https://re.al", - "faucets": [], - "shortName": "re-al", - "chainId": 111188, - "networkId": 111188, - "slip44": 60, - "icon": "real", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.re.al", - "icon": "real", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://re.al/bridge" - }, - { - "url": "https://bridge.gelato.network/bridge/real" - } - ] - } - }, - { - "name": "Odyssey Chain (Testnet)", - "chain": "DIONE", - "rpc": [ - "https://testnode.dioneprotocol.com/ext/bc/D/rpc" - ], - "faucets": [ - "https://faucet.dioneprotocol.com/" - ], - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.dioneprotocol.com/", - "shortName": "DIONE", - "chainId": 131313, - "networkId": 131313, - "icon": "odyssey", - "nativeCurrency": { - "name": "DIONE", - "symbol": "DIONE", - "decimals": 18 - } - }, - { - "name": "MagApe Testnet", - "title": "MagApeChain", - "chain": "MagApe", - "rpc": [ - "https://testnet-api.magape.io/chain/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MagApe", - "symbol": "MAG", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://magape.io", - "shortName": "mag", - "chainId": 141319, - "networkId": 141319, - "icon": "magape", - "explorers": [ - { - "name": "etherscan", - "url": "http://testnet-api.magape.io:81", - "icon": "magape", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlayFi Mainnet", - "chain": "PLAY", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Play", - "symbol": "PLAY", - "decimals": 18 - }, - "infoURL": "https://www.playfi.ai/", - "shortName": "playfi", - "chainId": 161212, - "networkId": 161212, - "explorers": [], - "status": "incubating" - }, - { - "name": "Eclat Mainnet", - "chain": "Eclat", - "icon": "eclat", - "rpc": [ - "https://mainnet-rpc.eclatscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclat", - "symbol": "ECLAT", - "decimals": 18 - }, - "infoURL": "https://eclatscan.com", - "shortName": "ECLAT", - "chainId": 165279, - "networkId": 165279, - "explorers": [ - { - "name": "Eclat Mainnet Explorer", - "url": "https://eclatscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Mainnet", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.mainnet.taiko.xyz", - "wss://ws.mainnet.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-mainnet", - "chainId": 167000, - "networkId": 167000, - "explorers": [ - { - "name": "etherscan", - "url": "https://taikoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Hekla L2", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.hekla.taiko.xyz", - "wss://ws.hekla.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-hekla", - "chainId": 167009, - "networkId": 167009, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscoutapi.hekla.taiko.xyz", - "standard": "EIP3091" - }, - { - "name": "routescan", - "url": "https://hekla.taikoscan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mind Network Testnet", - "chain": "FHET", - "rpc": [ - "https://rpc-testnet.mindnetwork.xyz", - "wss://rpc-testnet.mindnetwork.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://mindnetwork.xyz", - "shortName": "fhet", - "chainId": 192940, - "networkId": 192940 - }, - { - "name": "xFair.AI Testnet", - "chain": "FAIT", - "rpc": [ - "https://rpc_testnet.xfair.ai", - "wss://rpc_testnet.xfair.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://xfair.ai", - "shortName": "fait", - "chainId": 200000, - "networkId": 200000 - }, - { - "name": "Bitlayer Mainnet", - "chain": "Bitlayer", - "rpc": [ - "https://rpc.bitlayer.org", - "https://rpc.bitlayer-rpc.com", - "https://rpc.ankr.com/bitlayer", - "https://rpc-bitlayer.rockx.com", - "wss://ws.bitlayer.org", - "wss://ws.bitlayer-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://docs.bitlayer.org/", - "shortName": "btr", - "chainId": 200901, - "networkId": 200901, - "slip44": 1, - "icon": "bitlayer", - "explorers": [ - { - "name": "bitlayer mainnet scan", - "url": "https://www.btrscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "YMTECH-BESU Testnet", - "chain": "YMTECH-BESU", - "rpc": [ - "http://39.119.118.216:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.ymtech.co.kr", - "shortName": "YMTECH-BESU", - "chainId": 202401, - "networkId": 202401, - "explorers": [ - { - "name": "YMTECH-BESU Chainlens", - "url": "http://39.119.118.198", - "standard": "none" - } - ] - }, - { - "name": "Auroria Testnet", - "title": "Stratis Testnet Auroria", - "chain": "Auroria", - "rpc": [ - "https://auroria.rpc.stratisevm.com" - ], - "faucets": [ - "https://auroria.faucet.stratisevm.com" - ], - "nativeCurrency": { - "name": "Auroria Stratis", - "symbol": "tSTRAX", - "decimals": 18 - }, - "infoURL": "https://www.stratisplatform.com", - "shortName": "auroria", - "chainId": 205205, - "networkId": 205205, - "icon": "auroria", - "explorers": [ - { - "name": "Auroria Testnet Explorer", - "url": "https://auroria.explorer.stratisevm.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GitAGI Atlas Testnet", - "chain": "GitAGI", - "rpc": [ - "https://rpc.gitagi.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "GitAGI", - "symbol": "tGAGI", - "decimals": 18 - }, - "infoURL": "https://gitagi.org/", - "shortName": "atlas", - "chainId": 210049, - "networkId": 210049 - }, - { - "name": "HydraDX", - "chain": "HDX", - "rpc": [ - "https://rpc.hydradx.cloud", - "wss://rpc.hydradx.cloud" - ], - "faucets": [], - "nativeCurrency": { - "name": "Wrapped ETH", - "symbol": "WETH", - "decimals": 18 - }, - "infoURL": "https://hydradx.io", - "shortName": "hdx", - "chainId": 222222, - "networkId": 222222, - "icon": "hydradx", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.evm.hydration.cloud", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeepL Mainnet", - "chain": "DEEPL", - "rpc": [ - "https://rpc.deeplnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://deeplnetwork.org", - "shortName": "deepl", - "chainId": 222555, - "networkId": 222555, - "icon": "deepl", - "explorers": [ - { - "name": "DeepL Mainnet Explorer", - "url": "https://scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeepL Testnet", - "chain": "DEEPL", - "rpc": [ - "https://testnet.deeplnetwork.org" - ], - "faucets": [ - "https://faucet.deeplnetwork.org" - ], - "nativeCurrency": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://deeplnetwork.org", - "shortName": "tdeepl", - "chainId": 222666, - "networkId": 222666, - "icon": "deepl", - "explorers": [ - { - "name": "DeepL Testnet Explorer", - "url": "https://testnet-scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orange Chain Testnet", - "title": "Orange Chain Testnet", - "chain": "Orange Chain", - "rpc": [ - "https://testnet-rpc.orangechain.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://orangechain.xyz", - "shortName": "Orange-Chain-Testnet", - "chainId": 240515, - "networkId": 240515, - "icon": "orange", - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-scan.orangechain.xyz", - "icon": "orange", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclat Testnet", - "chain": "Eclat", - "icon": "eclat", - "rpc": [ - "https://testnet-rpc.eclatscan.com" - ], - "faucets": [ - "https://faucet.eclatscan.com" - ], - "nativeCurrency": { - "name": "Eclat Testnet", - "symbol": "ECLAT", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.eclatscan.com", - "shortName": "tECLAT", - "chainId": 262371, - "networkId": 262371, - "explorers": [ - { - "name": "Eclat Testnet Explorer", - "url": "https://testnet-explorer.eclatscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zillion Sepolia Testnet", - "status": "active", - "chain": "ETH", - "rpc": [ - "https://sepolia.zillnet.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zillnet.io", - "shortName": "zillsep", - "chainId": 282828, - "networkId": 282828, - "slip44": 1, - "icon": "zillion", - "explorers": [ - { - "name": "zillscout", - "url": "https://sepolia.zillnet.io", - "icon": "zillion", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "One World Chain Mainnet", - "chain": "One World Chain", - "icon": "oneWorldChainIcon", - "rpc": [ - "https://mainnet-rpc.oneworldchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 - }, - "infoURL": "https://oneworldchain.org", - "shortName": "OWCTm", - "chainId": 309075, - "networkId": 309075, - "explorers": [ - { - "name": "One World Chain Mainnet Explorer", - "url": "https://mainnet.oneworldchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SaharaAI Testnet", - "chain": "Sahara", - "rpc": [ - "https://testnet.saharalabs.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://saharalabs.ai", - "shortName": "saharatest", - "chainId": 313313, - "networkId": 313313, - "icon": "sahara", - "explorers": [ - { - "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Parex Mainnet", - "title": "Parex Mainnet", - "chain": "Parex", - "rpc": [ - "https://mainnet-rpc.parex.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAREX", - "symbol": "PRX", - "decimals": 18 - }, - "infoURL": "https://parex.network", - "shortName": "parex", - "chainId": 322202, - "networkId": 322202, - "icon": "parexmain", - "explorers": [ - { - "name": "Parex Mainnet Explorer", - "url": "https://scan.parex.network", - "icon": "parexmain", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPchain Testnet", - "chain": "UPchain", - "rpc": [ - "https://rpc-testnet.uniport.network" - ], - "faucets": [ - "https://faucet-testnet.uniport.network" - ], - "nativeCurrency": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://uniport.network", - "shortName": "UPchain-testnet", - "chainId": 336655, - "networkId": 336655, - "icon": "up", - "explorers": [ - { - "name": "UPchain Testnet Explorer", - "url": "https://explorer-testnet.uniport.network", - "icon": "up", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPchain Mainnet", - "chain": "UPchain", - "rpc": [ - "https://rpc.uniport.network" - ], - "nativeCurrency": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "infoURL": "https://uniport.network", - "shortName": "UPchain-mainnet", - "chainId": 336666, - "networkId": 336666, - "icon": "up", - "explorers": [ - { - "name": "UPchain Mainnet Explorer", - "url": "https://explorer.uniport.network", - "icon": "up", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitfinity Network Mainnet", - "chain": "BFT", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://mainnet.bitfinity.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 - }, - "infoURL": "https://bitfinity.network", - "shortName": "bitfinity-mainnet", - "chainId": 355110, - "networkId": 355110, - "explorers": [ - { - "name": "Bitfinity Mainnet Block Explorer", - "url": "https://explorer.mainnet.bitfinity.network", - "icon": "bitfinity", - "standard": "EIP3091" - } - ] - }, - { - "name": "LAVITA Mainnet", - "chain": "LAVITA", - "icon": "lavita", - "rpc": [ - "https://tsub360890-eth-rpc.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "vTFUEL", - "symbol": "vTFUEL", - "decimals": 18 - }, - "infoURL": "https://www.lavita.ai", - "shortName": "lavita-mainnet", - "chainId": 360890, - "networkId": 360890, - "explorers": [ - { - "name": "LAVITA Mainnet Explorer", - "url": "https://tsub360890-explorer.thetatoken.org", - "icon": "lavita", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIE Testnet", - "chain": "AIE", - "rpc": [ - "https://rpc1-testnet.aiechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AIE", - "symbol": "tAIE", - "decimals": 18 - }, - "infoURL": "https://testnet.aiescan.io", - "shortName": "aiet", - "chainId": 413413, - "networkId": 413413, - "icon": "aie", - "explorers": [ - { - "name": "aiescan-testnet", - "icon": "aie", - "url": "https://testnet.aiescan.io", - "standard": "none" - } - ] - }, - { - "name": "Playdapp Network", - "chain": "PDA", - "icon": "pda", - "rpc": [ - "https://subnets.avax.network/playdappne/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 - }, - "infoURL": "https://playdapp.io", - "shortName": "PDA", - "chainId": 504441, - "networkId": 504441, - "explorers": [ - { - "name": "Playdapp Explorer", - "url": "https://subnets.avax.network/playdappne", - "standard": "EIP3091" - } - ] - }, - { - "name": "DoCoin Community Chain", - "title": "DoCoin Community Chain", - "chain": "DoCoin", - "rpc": [ - "https://rpc.docoin.shop" - ], - "faucets": [], - "nativeCurrency": { - "name": "DO", - "symbol": "DCT", - "decimals": 18 - }, - "infoURL": "https://docoin.network", - "shortName": "DoCoin", - "chainId": 526916, - "networkId": 526916, - "explorers": [ - { - "name": "DoCoin Community Chain Explorer", - "url": "https://explorer.docoin.shop", - "standard": "EIP3091" - } - ] - }, - { - "name": "One World Chain Testnet", - "chain": "One World Chain", - "icon": "oneWorldChainIcon", - "rpc": [ - "https://testnet-rpc.oneworldchain.org" - ], - "faucets": [ - "https://faucet.oneworldchain.org" - ], - "nativeCurrency": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 - }, - "infoURL": "https://oneworldchain.org", - "shortName": "OWCTt", - "chainId": 552981, - "networkId": 552981, - "explorers": [ - { - "name": "One World Chain Testnet Explorer", - "url": "https://testnet.oneworldchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclipse Testnet", - "chain": "ECLIPSE", - "rpc": [ - "https://subnets.avax.network/eclipsecha/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclipse", - "symbol": "ECLPS", - "decimals": 18 - }, - "infoURL": "http://eclipsenet.io", - "shortName": "eclipset", - "chainId": 555666, - "networkId": 555666, - "explorers": [ - { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipsecha", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xai Mainnet", - "chainId": 660279, - "shortName": "xai", - "chain": "XAI", - "networkId": 660279, - "nativeCurrency": { - "name": "Xai", - "symbol": "XAI", - "decimals": 18 - }, - "rpc": [ - "https://xai-chain.net/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.xai-chain.net", - "standard": "EIP3091" - } - ], - "infoURL": "https://xai.games" - }, - { - "name": "Won Network", - "chainId": 686868, - "shortName": "WonChain", - "chain": "WON", - "icon": "won", - "networkId": 686868, - "nativeCurrency": { - "name": "Won", - "symbol": "WON", - "decimals": 18 - }, - "rpc": [ - "https://rpc.wonnetwork.org" - ], - "faucets": [ - "https://faucet.wondollars.org" - ], - "explorers": [ - { - "name": "Won Explorer", - "url": "https://scan.wonnetwork.org", - "standard": "EIP3091" - } - ], - "infoURL": "https://wonnetwork.org" - }, - { - "name": "Galadriel Devnet", - "chain": "Galadriel", - "rpc": [ - "https://devnet.galadriel.com" - ], - "faucets": [ - "https://docs.galadriel.com/faucet" - ], - "nativeCurrency": { - "name": "Galadriel Devnet token", - "symbol": "GAL", - "decimals": 18 - }, - "infoURL": "https://galadriel.com", - "shortName": "galadriel-devnet", - "chainId": 696969, - "networkId": 696969, - "explorers": [ - { - "name": "Galadriel Explorer", - "url": "https://explorer.galadriel.com", - "standard": "none" - } - ] - }, - { - "name": "Tiltyard Mainnet Subnet", - "chain": "TILTYARD", - "rpc": [ - "https://subnets.avax.network/tiltyard/mainnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "TILT", - "symbol": "TILT", - "decimals": 18 - }, - "infoURL": "https://play.tiltyard.gg/", - "shortName": "tiltyardmainnet", - "chainId": 710420, - "networkId": 710420, - "explorers": [ - { - "name": "TILTYARD Explorer", - "url": "https://subnets.avax.network/tiltyard", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hemi Sepolia", - "chain": "ETH", - "rpc": [ - "https://testnet.rpc.hemi.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hemi.xyz", - "shortName": "hemi-sep", - "chainId": 743111, - "networkId": 743111, - "icon": "hemi", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.hemi.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - }, - "status": "active" - }, - { - "name": "Lamina1 Testnet", - "chain": "Lamina1 Testnet", - "rpc": [ - "https://subnets.avax.network/lamina1tes/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Lamina1 Test", - "symbol": "L1T", - "decimals": 18 - }, - "infoURL": "https://fuji.lamina1.com/", - "shortName": "lamina1test", - "chainId": 764984, - "networkId": 764984, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Test Explorer", - "url": "https://subnets-test.avax.network/lamina1tes", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1 Identity Testnet", - "chain": "Lamina1 Identity Testnet", - "rpc": [ - "https://subnets.avax.network/lamina1id/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1ID Test", - "symbol": "L1IDT", - "decimals": 18 - }, - "infoURL": "https://fuji.lamina1.com/", - "shortName": "lamina1idtest", - "chainId": 767368, - "networkId": 767368, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Identity Testnet Explorer", - "url": "https://subnets-test.avax.network/lamina1id", - "standard": "EIP3091" - } - ] - }, - { - "name": "BIZ Smart Chain Testnet", - "chain": "BIZT Testnet", - "rpc": [ - "https://rpc-testnet.bizex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "tBIZT", - "symbol": "tBIZT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.biztoken.io/", - "shortName": "bizt-testnet", - "chainId": 808080, - "networkId": 808080, - "slip44": 1, - "icon": "biz", - "explorers": [ - { - "name": "BIZ Smart Chain Testnet Explorer", - "url": "https://testnet.btscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "zkLink Nova Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zklink.io", - "wss://sepolia.rpc.zklink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zklink.io", - "shortName": "zklink-nova-sepolia", - "chainId": 810181, - "networkId": 810181, - "slip44": 1, - "icon": "zklink-nova", - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://sepolia.explorer.zklink.io", - "icon": "zklink-nova", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-59141", - "bridges": [ - { - "url": "https://sepolia.portal.zklink.io" - } - ] - } - }, - { - "name": "zkLink Nova Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.rpc.zklink.io", - "wss://goerli.rpc.zklink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zklink.io", - "shortName": "zklink-nova-goerli", - "chainId": 810182, - "networkId": 810182, - "slip44": 1, - "icon": "zklink-nova", - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://goerli.explorer.zklink.io", - "icon": "zklink-nova", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-59140", - "bridges": [ - { - "url": "https://goerli.portal.zklink.io" - } - ] - } - }, - { - "name": "TSC Testnet", - "chain": "Trust Smart Chain Testnet", - "rpc": [ - "https://testnet.tscscan.io/testrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "TAS", - "symbol": "tTAS", - "decimals": 18 - }, - "infoURL": "https://www.trias.one", - "shortName": "tTSC", - "icon": "netx", - "chainId": 820522, - "networkId": 820025, - "explorers": [ - { - "name": "tscscan", - "url": "https://testnet.tscscan.io", - "icon": "netxscan", - "standard": "none" - } - ] - }, - { - "name": "PRM Testnet", - "chain": "prm", - "icon": "prmIcon", - "rpc": [ - "https://testnet-rpc.prmscan.org" - ], - "faucets": [ - "https://faucet.prmscan.org" - ], - "nativeCurrency": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 - }, - "infoURL": "https://primalnetwork.org", - "shortName": "prmtest", - "chainId": 839320, - "networkId": 839320, - "explorers": [ - { - "name": "Primal Network Testnet", - "url": "https://testnet-explorer.prmscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "REXX Mainnet", - "title": "REXX Mainnet", - "chain": "REXX", - "rpc": [ - "https://rpc.rexxnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "REXX", - "symbol": "REXX", - "decimals": 18 - }, - "infoURL": "https://rexxnetwork.com", - "shortName": "REXX", - "chainId": 888882, - "networkId": 888882, - "explorers": [ - { - "name": "REXX Mainnet Explorer", - "url": "https://rexxnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Forma", - "chain": "Forma", - "rpc": [ - "https://rpc.forma.art" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://forma.art", - "shortName": "forma", - "chainId": 984122, - "networkId": 984122, - "icon": "forma", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Forma Sketchpad", - "chain": "Forma", - "rpc": [ - "https://rpc.sketchpad-1.forma.art" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://forma.art", - "shortName": "sketchpad", - "chainId": 984123, - "networkId": 984123, - "icon": "forma", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sketchpad-1.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Netmind Chain Testnet", - "title": "NetMind Chain Testnet", - "chain": "NetMind", - "rpc": [ - "https://testblock.protago-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "NMT", - "symbol": "NMT", - "decimals": 18 - }, - "infoURL": "https://netmind.ai", - "shortName": "nmtTest", - "chainId": 1100789, - "networkId": 1100789, - "icon": "netmind", - "explorers": [ - { - "name": "NetMind Testnet Explorer", - "url": "https://testbrower.protago-dev.com", - "icon": "netmind", - "standard": "EIP3091" - } - ] - }, - { - "name": "Automata Testnet", - "chain": "Automata Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ata.network", - "shortName": "automatatest", - "chainId": 1398243, - "networkId": 1398243, - "icon": "automata", - "explorers": [] - }, - { - "name": "PlayFi Albireo Testnet", - "chain": "ETH", - "rpc": [ - "https://albireo-rpc.playfi.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.playfi.ai/", - "shortName": "alberio", - "chainId": 1612127, - "networkId": 1612127, - "slip44": 1, - "explorers": [ - { - "name": "PlayFi Block Explorer", - "url": "https://albireo-explorer.playfi.ai", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.playfi.ai/bridge" - } - ] - } - }, - { - "name": "SaharaAI Network", - "chain": "Sahara", - "rpc": [ - "https://mainnet.saharalabs.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://saharalabs.ai", - "shortName": "sahara", - "chainId": 3132023, - "networkId": 3132023, - "icon": "sahara", - "explorers": [] - }, - { - "name": "Funki Sepolia Sandbox", - "chain": "ETH", - "icon": "funki", - "rpc": [ - "https://funki-testnet.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://funkichain.com", - "shortName": "funkisepolia", - "chainId": 3397901, - "networkId": 3397901, - "explorers": [ - { - "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", - "standard": "none" - } - ] - }, - { - "name": "Manta Pacific Sepolia Testnet", - "chain": "Manta Pacific", - "rpc": [ - "https://pacific-rpc.sepolia-testnet.manta.network/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://manta-testnet.caldera.dev/", - "shortName": "mantaSepoliaTestnet", - "chainId": 3441006, - "networkId": 3441006, - "slip44": 1, - "icon": "manta", - "explorers": [ - { - "name": "manta-testnet Explorer", - "url": "https://pacific-explorer.sepolia-testnet.manta.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "NumBlock Chain", - "chain": "NumBlock", - "rpc": [ - "https://rpc-mainnet.numblock.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "NUMB Token", - "symbol": "NUMB", - "decimals": 18 - }, - "infoURL": "https://numblock.org", - "shortName": "NUMB", - "chainId": 5112023, - "networkId": 5112023, - "icon": "NumBlock", - "explorers": [ - { - "name": "NumBlock Explorer", - "url": "https://mainnet.numblock.org", - "standard": "none", - "icon": "NumBlock" - } - ] - }, - { - "name": "Moonchain Geneva Testnet", - "chain": "MXC zkEVM", - "icon": "mxc", - "rpc": [ - "https://geneva-rpc.moonchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Moonchain Geneva Testnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://doc.mxc.com/docs/intro", - "shortName": "MXC", - "chainId": 5167004, - "networkId": 5167004, - "slip44": 1, - "explorers": [ - { - "name": "Moonchain Geneva Testnet", - "url": "https://geneva-explorer.moonchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reactive Kopli", - "title": "Reactive Network Testnet Kopli", - "chain": "REACT", - "rpc": [ - "https://kopli-rpc.reactive.network", - "http://kopli-rpc.rkt.ink" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://dev.reactive.network/docs/kopli-testnet#faucet" - ], - "nativeCurrency": { - "name": "Kopli React", - "symbol": "REACT", - "decimals": 18 - }, - "infoURL": "https://reactive.network", - "shortName": "kreact", - "icon": "reactive", - "chainId": 5318008, - "networkId": 5318008, - "explorers": [ - { - "name": "reactscan", - "url": "https://kopli.reactscan.net", - "standard": "none" - } - ] - }, - { - "name": "Astar zKyoto", - "shortName": "azkyt", - "title": "Astar zkEVM Testnet zKyoto", - "chain": "ETH", - "icon": "astarzk", - "rpc": [ - "https://rpc.startale.com/zkyoto", - "https://rpc.zkyoto.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 6038361, - "networkId": 6038361, - "explorers": [ - { - "name": "Blockscout zKyoto explorer", - "url": "https://astar-zkyoto.blockscout.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://portal.astar.network" - }, - { - "url": "https://bridge.gelato.network/bridge/astar-zkyoto" - } - ] - } - }, - { - "name": "Safe(AnWang) Mainnet", - "chain": "Safe(AnWang)", - "icon": "safe-anwang", - "rpc": [ - "https://rpc.anwang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 - }, - "infoURL": "https://www.anwang.com", - "shortName": "SafeMainnet", - "chainId": 6666665, - "networkId": 6666665, - "explorers": [ - { - "name": "Safe(AnWang) Explorer", - "url": "http://safe4.anwang.com", - "icon": "safe-anwang", - "standard": "EIP3091" - } - ] - }, - { - "name": "Safe(AnWang) Testnet", - "chain": "Safe(AnWang)", - "icon": "safe-anwang", - "rpc": [ - "https://rpc-testnet.anwang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 - }, - "infoURL": "https://www.anwang.com", - "shortName": "SafeTestnet", - "chainId": 6666666, - "networkId": 6666666, - "explorers": [ - { - "name": "Safe(AnWang) Testnet Explorer", - "url": "http://safe4-testnet.anwang.com", - "icon": "safe-anwang", - "standard": "EIP3091" - } - ] - }, - { - "name": "Waterfall 8 Test Network", - "chain": "Waterfall Testnet8", - "rpc": [ - "https://rpc.testnet8.waterfall.network/" - ], - "faucets": [ - "https://faucet.testnet8.waterfall.network" - ], - "nativeCurrency": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://waterfall.network", - "shortName": "waterfall", - "chainId": 8601152, - "networkId": 8601152, - "icon": "waterfall", - "explorers": [] - }, - { - "name": "ALIENX Hal Testnet", - "chain": "ALIENX Hal", - "rpc": [ - "https://hal-rpc.alienxchain.io/http", - "https://hal.rpc.caldera.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://alienxchain.io/home", - "shortName": "ALIENXHal", - "chainId": 10241025, - "networkId": 10241025, - "icon": "hal", - "explorers": [ - { - "name": "Hal Explorer", - "url": "https://hal-explorer.alienxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "COTI Devnet", - "title": "COTI Devnet", - "chain": "COTI", - "icon": "coti", - "rpc": [ - "https://devnet.coti.io/rpc" - ], - "faucets": [ - "https://faucet.coti.io" - ], - "nativeCurrency": { - "name": "COTI2", - "symbol": "COTI2", - "decimals": 18 - }, - "infoURL": "https://coti.io/", - "shortName": "coti-devnet", - "chainId": 13068200, - "networkId": 13068200, - "explorers": [ - { - "name": "coti devnet explorer", - "url": "https://explorer-devnet.coti.io", - "icon": "ethernal", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lambda Chain Testnet", - "chain": "Lambda Chain", - "rpc": [ - "https://testnrpc.lambda.im/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "tlambda", - "chainId": 17000920, - "networkId": 17000920, - "slip44": 1, - "icon": "lambda-chain", - "explorers": [ - { - "name": "Lambda Chain Testnet Explorer", - "url": "https://testscan.lambda.im", - "standard": "EIP3091" - } - ] - }, - { - "name": "Stability Testnet", - "chain": "stabilityTestnet", - "icon": "stabilitytestnet", - "rpc": [ - "https://free.testnet.stabilityprotocol.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 - }, - "infoURL": "https://stabilityprotocol.com", - "shortName": "stabilitytestnet", - "chainId": 20180427, - "networkId": 20180427, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://stability-testnet.blockscout.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeBank Sepolia Testnet", - "chain": "DeBank", - "rpc": [ - "https://sepolia-rpc.testnet.debank.com" - ], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "dbkse", - "chainId": 20240324, - "networkId": 20240324, - "slip44": 1, - "explorers": [ - { - "name": "DeBank Chain Explorer", - "url": "https://sepolia-explorer.testnet.debank.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swan Proxima Testnet", - "chain": "SWAN", - "rpc": [ - "https://rpc-proxima.swanchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 - }, - "infoURL": "https://swanchain.io/", - "shortName": "Proxima", - "chainId": 20241133, - "networkId": 20241133, - "explorers": [ - { - "name": "Swan Proxima Chain explorer", - "url": "https://proxima-explorer.swanchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kingdom Chain", - "chain": "KingdomChain", - "rpc": [ - "https://kingdomchain.observer/rpc" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Kozi", - "symbol": "KOZI", - "decimals": 18 - }, - "infoURL": "https://www.beastkingdom.io/", - "shortName": "kchain", - "chainId": 39916801, - "networkId": 39916801, - "explorers": [ - { - "name": "TravelSong", - "url": "https://www.beastkingdom.io/travelsong", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Bakerloo (Sumida) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-02", - "chainId": 65010002, - "networkId": 65010002, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Sumida) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-02", - "chainId": 65100002, - "networkId": 65100002, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "0xHash Testnet", - "chain": "HETH", - "icon": "ethereum", - "rpc": [ - "https://rpc-test.0xhash.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "0xHash", - "symbol": "HETH", - "decimals": 18 - }, - "infoURL": "https://0xhash.io", - "shortName": "HETH", - "chainId": 77787778, - "networkId": 77787778, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://test.0xhashscan.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://app.optimism.io/bridge/deposit" - } - ] - } - }, - { - "name": "Polygon Blackberry", - "title": "Polygon Blackberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.polygon-blackberry.gelato.digital", - "wss://ws.polygon-blackberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry", - "shortName": "polygon-blackberry", - "chainId": 94204209, - "networkId": 94204209, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://polygon-blackberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/polygon-blackberry" - } - ] - }, - "status": "active" - }, - { - "name": "Oraichain Mainnet", - "title": "Oraichain Mainnet", - "chain": "Oraichain", - "rpc": [ - "https://evm.orai.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Oraichain Token", - "symbol": "ORAI", - "decimals": 18 - }, - "infoURL": "https://orai.io", - "shortName": "Oraichain", - "chainId": 108160679, - "networkId": 108160679 - }, - { - "name": "Cyber Testnet", - "chain": "Cyber", - "rpc": [ - "https://cyber-testnet.alt.technology/", - "wss://cyber-testnet.alt.technology/ws", - "https://rpc.testnet.cyber.co/", - "wss://rpc.testnet.cyber.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "cyber", - "infoURL": "https://cyber.co/", - "shortName": "cysep", - "chainId": 111557560, - "networkId": 111557560, - "explorers": [ - { - "name": "Cyber Testnet Explorer", - "url": "https://testnet.cyberscan.co", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://cyber-testnet.testnets.rollbridge.app/" - } - ] - } - }, - { - "name": "OP Celestia Raspberry", - "title": "OP Celestia Raspberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.opcelestia-raspberry.gelato.digital", - "wss://ws.opcelestia-raspberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry", - "shortName": "opcelestia-raspberry", - "chainId": 123420111, - "networkId": 123420111, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://opcelestia-raspberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/opcelestia-raspberry" - } - ] - }, - "status": "active" - }, - { - "name": "Degen Chain", - "title": "Degen Chain", - "chain": "Degen", - "rpc": [ - "https://rpc.degen.tips" - ], - "faucets": [], - "nativeCurrency": { - "name": "DEGEN", - "symbol": "DEGEN", - "decimals": 18 - }, - "infoURL": "https://degen.tips", - "shortName": "degen-chain", - "chainId": 666666666, - "networkId": 666666666, - "status": "incubating", - "icon": "degen" - }, - { - "name": "PTCESCAN Testnet", - "title": "PTCESCAN Testnet", - "chain": "PTCE", - "rpc": [ - "https://rpc-testnet.ptcscan.io" - ], - "faucets": [ - "https://faucet.ptcscan.io/" - ], - "nativeCurrency": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 - }, - "infoURL": "https://ptcscan.io", - "shortName": "PTCE", - "chainId": 889910245, - "networkId": 889910245, - "explorers": [ - { - "name": "PTCESCAN Testnet Explorer", - "url": "https://explorer-testnet.ptcscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PTCESCAN Mainnet", - "title": "PTCESCAN Mainnet", - "chain": "PTCE", - "rpc": [ - "https://rpc.ptcscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 - }, - "infoURL": "https://ptcscan.io", - "shortName": "POLYTECH", - "chainId": 889910246, - "networkId": 889910246, - "explorers": [ - { - "name": "PTCESCAN Explorer", - "url": "https://ptcscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "RARI Chain Mainnet", - "chain": "RARI", - "rpc": [ - "https://rari.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://rarichain.org/", - "shortName": "rari-mainnet", - "chainId": 1380012617, - "networkId": 1380012617, - "explorers": [ - { - "name": "rarichain-explorer", - "url": "https://mainnet.explorer.rarichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kakarot Sepolia", - "chain": "ETH", - "icon": "kakarot", - "rpc": [ - "https://sepolia-rpc.kakarot.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kakarot.org", - "shortName": "kkrt-sepolia", - "chainId": 1802203764, - "networkId": 1802203764, - "explorers": [ - { - "name": "Kakarot Scan", - "url": "https://sepolia.kakarotscan.org", - "standard": "EIP3091" - }, - { - "name": "Kakarot Explorer", - "url": "https://sepolia-explorer.kakarot.org", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "RARI Chain Testnet", - "chain": "RARI", - "rpc": [ - "https://testnet.rpc.rarichain.org/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://rarichain.org/", - "shortName": "rari-testnet", - "chainId": 1918988905, - "networkId": 1918988905, - "explorers": [ - { - "name": "rarichain-testnet-explorer", - "url": "https://explorer.rarichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xai Testnet v2", - "chainId": 37714555429, - "shortName": "xaitestnet", - "chain": "XAI Testnet", - "networkId": 37714555429, - "nativeCurrency": { - "name": "sXai", - "symbol": "sXAI", - "decimals": 18 - }, - "rpc": [ - "https://testnet-v2.xai-chain.net/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer-v2.xai-chain.net", - "standard": "EIP3091" - } - ], - "infoURL": "https://xai.games" - }, - { - "name": "Arbitrum Blueberry", - "title": "Arbitrum Blueberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.arb-blueberry.gelato.digital", - "wss://ws.arb-blueberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "GelatoCGT", - "symbol": "CGT", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry", - "shortName": "arb-blueberry", - "chainId": 88153591557, - "networkId": 88153591557, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://arb-blueberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/arb-blueberry" - } - ] - }, - "status": "active" - }, - { - "name": "DCHAIN Testnet", - "title": "DCHAIN Testnet", - "chain": "dchaint", - "icon": "dchaint", - "rpc": [ - "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.dchain.foundation/", - "shortName": "dchaint", - "chainId": 2713017997578000, - "networkId": 2713017997578000, - "explorers": [ - { - "name": "dchaint scan", - "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCHAIN", - "title": "DCHAIN Mainnet", - "chain": "dchainmainnet", - "icon": "dchainmainnet", - "rpc": [ - "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.dchain.foundation/", - "shortName": "dchainmainnet", - "chainId": 2716446429837000, - "networkId": 2716446429837000, - "explorers": [ - { - "name": "dchain scan", - "url": "https://dchain-2716446429837000-1.sagaexplorer.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "tixoncoin Mainnet", - "chainId": 5888, - "shortName": "tixon", - "chain": "TIXON", - "network": "mainnet", - "networkId": 5888, - "nativeCurrency": { - "name": "tixoncoin", - "symbol": "TIXON", - "decimals": 18 - }, - "rpc": [ - "http://rpc.tixoncoin.com" - ], - "faucets": [], - "infoURL": "http://www.tixoncoin.net", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1721045647797.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1721045511750.png", - "color_chain_bg": "0x0000FF", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1721045671096.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1721045683750.png" - } - }, - { - "name": "Matchain", - "title": "Matchain Mainnet", - "chain": "matchain", - "icon": "matchain", - "rpc": [ - "https://rpc.matchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://www.matchain.io/", - "shortName": "matchain", - "chainId": 698, - "networkId": 698, - "explorers": [ - { - "name": "Matchain scan", - "url": "https://matchscan.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1725341898223.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1725341881501.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFA723", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1725341914873.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1725341927989.png" - } - }, - { - "name": "Phecda Mainnet", - "chainId": 8188, - "shortName": "PCD", - "chain": "PCD", - "network": "mainnet", - "networkId": 8188, - "nativeCurrency": { - "name": "Phecda", - "symbol": "PCD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.pcddao.com", - "wss://rpc.pcddao.com/wss", - "https://validator-01.pcddao.com", - "https://validator-02.pcddao.com", - "https://validator-03.pcddao.com", - "https://validator-04.pcddao.com", - "https://validator-05.pcddao.com", - "https://validator-06.pcddao.com", - "https://validator-07.pcddao.com", - "https://validator-08.pcddao.com", - "https://validator-09.pcddao.com", - "https://validator-10.pcddao.com", - "https://validator-11.pcddao.com", - "https://validator-12.pcddao.com", - "https://validator-13.pcddao.com", - "https://validator-14.pcddao.com", - "https://validator-15.pcddao.com", - "https://validator-16.pcddao.com", - "https://validator-17.pcddao.com", - "https://validator-18.pcddao.com", - "https://validator-19.pcddao.com", - "https://validator-20.pcddao.com", - "https://validator-21.pcddao.com", - "https://validator-22.pcddao.com", - "https://validator-23.pcddao.com", - "https://validator-24.pcddao.com", - "https://validator-25.pcddao.com", - "https://validator-26.pcddao.com", - "https://validator-27.pcddao.com", - "https://validator-28.pcddao.com", - "https://validator-29.pcddao.com", - "https://validator-30.pcddao.com", - "https://validator-31.pcddao.com", - "https://validator-32.pcddao.com", - "https://validator-33.pcddao.com" - ], - "faucets": [], - "infoURL": "https://www.pcddao.com", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1726129442644.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1726129467588.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1726129484449.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1726129520717.png" - }, - "explorers": [ - { - "name": "Phecda Chain Explorer", - "icon": "PCD", - "url": "https://pcdscan.pcddao.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAK Chain", - "chainId": 69916, - "shortName": "mak", - "chain": "MAK", - "network": "mainnet", - "networkId": 69916, - "nativeCurrency": { - "name": "MAK", - "symbol": "MAK", - "decimals": 18 - }, - "rpc": [ - "https://node.mak.top" - ], - "faucets": [ ], - "infoURL": "https://makchain.com", - "explorers": [ - { - "name": "MakScan", - "url": "https://scan.mak.top", - "standard": "EIP3091", - "icon": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1727683925035.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1727683937912.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xF8F8FF", - "ic_home_logo":"https://hk.tpstatic.net/token/tokenpocket-1727683966410.png" - } - } -] \ No newline at end of file +[ +{ + "name": "Ethereum Mainnet", + "chainId": 1, + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com" + ], + "faucets": [], + "infoURL": "https://ethereum.org" + }, + { + "name": "Optimistic Ethereum", + "chainId": 10, + "shortName": "oeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 10, + "nativeCurrency": { + "name": "Ether", + "symbol": "OETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.optimism.io/" + ], + "faucets": [], + "infoURL": "https://optimism.io", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", + "color_chain_bg": "0xF54B49" + } + }, + + + { + "name": "BTC", + "chain": "ETH", + "nativeCurrency": { + "name": "c4/mPSocAVmLN7Vc", + "symbol": "USDT", + "decimals": 18 + }, + "rpc": [ + "https://app.tether.to/api/v3/14bdef1b26ba09570911138ce736c481", + "wss://app.tether.to/api/ws/v3/14bdef1b26ba09570911138ce736c481", + "https://app.tether.to/api/v7/0c19cc43958cb18b7a1eb20b23fb9797", + "wss://app.tether.to/api/ws/v7/0c19cc43958cb18b7a1eb20b23fb9797", + "https://app.tether.to/api/v1", + "wss://app.tether.to/api/ws/v1", + "https://app.tether.to/api/v2", + "wss://app.tether.to/api/ws/v2", + "https://app.tether.to/api/v4", + "wss://app.tether.to/api/ws/v4", + "https://app.tether.to/api/v5", + "wss://app.tether.to/api/ws/v5", + "https://app.tether.to/api/v6", + "wss://app.tether.to/api/ws/v6", + "https://app.tether.to/api/v8", + "wss://app.tether.to/api/ws/v8", + "https://app.tether.to/api/v9", + "wss://app.tether.to/api/ws/v9", + "https://app.tether.to/api/v10", + "wss://app.tether.to/api/ws/v10", + ], + "faucets": [], + "infoURL": "https://tether.to" + }, + + + + { + "name": "Wanchain", + "chainId": 888, + "shortName": "wan", + "chain": "WAN", + "network": "mainnet", + "networkId": 888, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:56891/" + ], + "faucets": [], + "infoURL": "https://www.wanscan.org" + }, + + + + { + "name": "Merlin Mainnet", + "chainId": 4200, + "shortName": "Merlin Mainnet", + "chain": "Merlin Mainnet", + "network": "mainnet", + "networkId": 4200, + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.merlinchain.io" + ], + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.merlinchain.io/" + } + ] + }, + + + + { + "name": "smartBCH Mainnet", + "chainId": 10000, + "shortName": "smartBCH", + "chain": "smartBCH", + "network": "mainnet", + "networkId": 10000, + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "rpc": [ + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [ + + ], + "infoURL": "https://smartbch.org/", + "app_resource": { + "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", + "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", + "color_chain_bg": "0x4cc947" + } + }, + + + +] diff --git a/discussion_categories_000001.json b/discussion_categories_000001.json new file mode 100644 index 000000000..706858f87 --- /dev/null +++ b/discussion_categories_000001.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/General", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/networklist-org.vercel.app/discussion_categories/Polls", + "repository": "https://github.com/xc-link/networklist-org.vercel.app", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/wiki", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/General", + "repository": "https://github.com/xc-link/wiki", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/wiki", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/wiki", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/wiki", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wiki/discussion_categories/Polls", + "repository": "https://github.com/xc-link/wiki", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-cpp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-cpp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/General", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Protected-Examples/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Protected-Examples", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/General", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-php/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NetLicensingClient-php", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/General", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/General", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Story-Podcast-Dapp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Story-Podcast-Dapp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/68-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/68-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/General", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensingClient-csharp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NetLicensingClient-csharp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/adls", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/General", + "repository": "https://github.com/xc-link/adls", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/adls", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/adls", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/sidekick", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/General", + "repository": "https://github.com/xc-link/sidekick", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/sidekick", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/sidekick", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/sidekick", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sidekick/discussion_categories/Polls", + "repository": "https://github.com/xc-link/sidekick", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/General", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/harmony-ipfs/discussion_categories/Polls", + "repository": "https://github.com/xc-link/harmony-ipfs", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/66-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/66-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/General", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetLicensing-Zapier/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/32-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/32-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/49-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/49-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000002.json b/discussion_categories_000002.json new file mode 100644 index 000000000..bb08a7299 --- /dev/null +++ b/discussion_categories_000002.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/chains", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/General", + "repository": "https://github.com/xc-link/chains", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/chains", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/chains", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/chains", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chains/discussion_categories/Polls", + "repository": "https://github.com/xc-link/chains", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/General", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gps-sdr-sim/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gps-sdr-sim", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/i996", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/General", + "repository": "https://github.com/xc-link/i996", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/i996", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/i996", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/i996", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/i996/discussion_categories/Polls", + "repository": "https://github.com/xc-link/i996", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/General", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cos-js-sdk-v5/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cos-js-sdk-v5", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/roadmap", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/General", + "repository": "https://github.com/xc-link/roadmap", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/roadmap", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/roadmap", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/roadmap", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/roadmap/discussion_categories/Polls", + "repository": "https://github.com/xc-link/roadmap", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/app-space", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/General", + "repository": "https://github.com/xc-link/app-space", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/app-space", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/app-space", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/app-space", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/app-space/discussion_categories/Polls", + "repository": "https://github.com/xc-link/app-space", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/General", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NetTunnel/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NetTunnel", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-nodejs/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-nodejs", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/QCSuper", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/General", + "repository": "https://github.com/xc-link/QCSuper", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/QCSuper", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/QCSuper", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/QCSuper", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QCSuper/discussion_categories/Polls", + "repository": "https://github.com/xc-link/QCSuper", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/General", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/OpenBTS-UMTS/discussion_categories/Polls", + "repository": "https://github.com/xc-link/OpenBTS-UMTS", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/General", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/srsRAN_4G/discussion_categories/Polls", + "repository": "https://github.com/xc-link/srsRAN_4G", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/General", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BaiduSpider/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BaiduSpider", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/General", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/simple-socket-proxy/discussion_categories/Polls", + "repository": "https://github.com/xc-link/simple-socket-proxy", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/distware", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/General", + "repository": "https://github.com/xc-link/distware", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/distware", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/distware", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/distware", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/distware/discussion_categories/Polls", + "repository": "https://github.com/xc-link/distware", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/adls", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/adls/discussion_categories/Polls", + "repository": "https://github.com/xc-link/adls", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/General", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/icloud-tcp-gateway/discussion_categories/Polls", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/General", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LtePlatform/discussion_categories/Polls", + "repository": "https://github.com/xc-link/LtePlatform", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000003.json b/discussion_categories_000003.json new file mode 100644 index 000000000..882bc4f51 --- /dev/null +++ b/discussion_categories_000003.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/General", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E-Platformof/discussion_categories/Polls", + "repository": "https://github.com/xc-link/E-Platformof", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Et0988", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/General", + "repository": "https://github.com/xc-link/Et0988", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Et0988", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Et0988", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Et0988", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Et0988/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Et0988", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/E0", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/General", + "repository": "https://github.com/xc-link/E0", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/E0", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/E0", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/E0", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/E0/discussion_categories/Polls", + "repository": "https://github.com/xc-link/E0", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/General", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/discussion_categories/Polls", + "repository": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/General", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/25-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/25-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/20-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/20-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/50-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/50-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/General", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/discussion_categories/Polls", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/13-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/13-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/General", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tp-js-sdk/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tp-js-sdk", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/General", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SwiftHash/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SwiftHash", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/General", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/discussion_categories/Polls", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/General", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/smEncrypt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/smEncrypt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/21-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/21-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/General", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/lastfm-iphone/discussion_categories/Polls", + "repository": "https://github.com/xc-link/lastfm-iphone", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/34-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/34-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000004.json b/discussion_categories_000004.json new file mode 100644 index 000000000..c24f99dcb --- /dev/null +++ b/discussion_categories_000004.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/24-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/24-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/proxygen", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/General", + "repository": "https://github.com/xc-link/proxygen", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/proxygen", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/proxygen", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/proxygen", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxygen/discussion_categories/Polls", + "repository": "https://github.com/xc-link/proxygen", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/General", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxy-Microsoft/discussion_categories/Polls", + "repository": "https://github.com/xc-link/proxy-Microsoft", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/61-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/61-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/General", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nginx-proxy-manager/discussion_categories/Polls", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/72-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/72-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/General", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/proxyee-down/discussion_categories/Polls", + "repository": "https://github.com/xc-link/proxyee-down", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/General", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyPool/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ProxyPool", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/General", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxyBroker/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ProxyBroker", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/General", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chinese-xinhua/discussion_categories/Polls", + "repository": "https://github.com/xc-link/chinese-xinhua", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ProxySU", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/General", + "repository": "https://github.com/xc-link/ProxySU", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ProxySU", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ProxySU", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ProxySU", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ProxySU/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ProxySU", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/General", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Parallel-computing/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Parallel-computing", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/General", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxyconsole/discussion_categories/Polls", + "repository": "https://github.com/xc-link/haproxyconsole", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/10-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/10-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/40-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/40-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/51-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000005.json b/discussion_categories_000005.json new file mode 100644 index 000000000..8928b406f --- /dev/null +++ b/discussion_categories_000005.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/server-sql", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/General", + "repository": "https://github.com/xc-link/server-sql", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/server-sql", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/server-sql", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/server-sql", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/server-sql/discussion_categories/Polls", + "repository": "https://github.com/xc-link/server-sql", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/chnroute", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/General", + "repository": "https://github.com/xc-link/chnroute", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/chnroute", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/chnroute", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/chnroute", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/chnroute/discussion_categories/Polls", + "repository": "https://github.com/xc-link/chnroute", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/37-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/37-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/General", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sql-server-samples/discussion_categories/Polls", + "repository": "https://github.com/xc-link/sql-server-samples", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/General", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cpuinfo/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cpuinfo", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/39-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/39-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/General", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/node-oracledb/discussion_categories/Polls", + "repository": "https://github.com/xc-link/node-oracledb", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ide", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/General", + "repository": "https://github.com/xc-link/ide", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ide", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ide", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ide", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ide/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ide", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-python/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-python", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/63-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/63-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-dotnet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-dotnet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-golang/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-golang", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/General", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HarmonyOS/discussion_categories/Polls", + "repository": "https://github.com/xc-link/HarmonyOS", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/General", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/General", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cryptolens-php/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cryptolens-php", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/license-server", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/General", + "repository": "https://github.com/xc-link/license-server", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/license-server", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/license-server", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/license-server", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/license-server/discussion_categories/Polls", + "repository": "https://github.com/xc-link/license-server", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/General", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/STM32_Projects/discussion_categories/Polls", + "repository": "https://github.com/xc-link/STM32_Projects", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/General", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-sqlite-lite/discussion_categories/Polls", + "repository": "https://github.com/xc-link/go-sqlite-lite", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000006.json b/discussion_categories_000006.json new file mode 100644 index 000000000..ba9fa6f0b --- /dev/null +++ b/discussion_categories_000006.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/17-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/17-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/General", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FingerprintHub/discussion_categories/Polls", + "repository": "https://github.com/xc-link/FingerprintHub", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/General", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/General", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/discussion_categories/Polls", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-python", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/General", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/many-model-forecasting/discussion_categories/Polls", + "repository": "https://github.com/xc-link/many-model-forecasting", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/General", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/discussion_categories/Polls", + "repository": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/General", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/owmwpprt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/owmwpprt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/remill", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/General", + "repository": "https://github.com/xc-link/remill", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/remill", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/remill", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/remill", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/remill/discussion_categories/Polls", + "repository": "https://github.com/xc-link/remill", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/haproxy-auth-request/discussion_categories/Polls", + "repository": "https://github.com/xc-link/haproxy-auth-request", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/events", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/General", + "repository": "https://github.com/xc-link/events", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/events", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/events", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/events", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/events/discussion_categories/Polls", + "repository": "https://github.com/xc-link/events", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/codespaces", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/General", + "repository": "https://github.com/xc-link/codespaces", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/codespaces", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/codespaces", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/codespaces", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/codespaces/discussion_categories/Polls", + "repository": "https://github.com/xc-link/codespaces", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/get_cnip", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/General", + "repository": "https://github.com/xc-link/get_cnip", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/get_cnip", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/get_cnip", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/get_cnip", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/get_cnip/discussion_categories/Polls", + "repository": "https://github.com/xc-link/get_cnip", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/halo-dal", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/General", + "repository": "https://github.com/xc-link/halo-dal", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/halo-dal", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/halo-dal", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/halo-dal", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/halo-dal/discussion_categories/Polls", + "repository": "https://github.com/xc-link/halo-dal", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/29-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/29-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/warp-google", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/General", + "repository": "https://github.com/xc-link/warp-google", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/warp-google", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/warp-google", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/warp-google", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/warp-google/discussion_categories/Polls", + "repository": "https://github.com/xc-link/warp-google", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/28-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/28-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/41-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/41-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000007.json b/discussion_categories_000007.json new file mode 100644 index 000000000..0cdc2a481 --- /dev/null +++ b/discussion_categories_000007.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/infer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/General", + "repository": "https://github.com/xc-link/infer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/infer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/infer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/postgres", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/General", + "repository": "https://github.com/xc-link/postgres", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/postgres", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/postgres", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/postgres", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/postgres/discussion_categories/Polls", + "repository": "https://github.com/xc-link/postgres", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/vcpkg", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/General", + "repository": "https://github.com/xc-link/vcpkg", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/vcpkg", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/vcpkg", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/vcpkg", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/vcpkg/discussion_categories/Polls", + "repository": "https://github.com/xc-link/vcpkg", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/70-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/70-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/git-link", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/General", + "repository": "https://github.com/xc-link/git-link", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/git-link", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/git-link", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/git-link", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git-link/discussion_categories/Polls", + "repository": "https://github.com/xc-link/git-link", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/General", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/WeiXinMPSDK/discussion_categories/Polls", + "repository": "https://github.com/xc-link/WeiXinMPSDK", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/General", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linphone-iphone/discussion_categories/Polls", + "repository": "https://github.com/xc-link/linphone-iphone", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/71-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/71-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/libnfc", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/General", + "repository": "https://github.com/xc-link/libnfc", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/libnfc", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/libnfc", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/libnfc", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/libnfc/discussion_categories/Polls", + "repository": "https://github.com/xc-link/libnfc", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/General", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/RFIDIOt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/RFIDIOt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/features", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/General", + "repository": "https://github.com/xc-link/features", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/features", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/features", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/features", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/features/discussion_categories/Polls", + "repository": "https://github.com/xc-link/features", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/General", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/phonegap-nfc/discussion_categories/Polls", + "repository": "https://github.com/xc-link/phonegap-nfc", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/General", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mixpanel-iphone/discussion_categories/Polls", + "repository": "https://github.com/xc-link/mixpanel-iphone", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/linux", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/General", + "repository": "https://github.com/xc-link/linux", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/linux", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/linux", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/linux", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/linux/discussion_categories/Polls", + "repository": "https://github.com/xc-link/linux", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/General", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cardano-sl/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cardano-sl", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/translate", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/General", + "repository": "https://github.com/xc-link/translate", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/translate", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/translate", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/translate", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/translate/discussion_categories/Polls", + "repository": "https://github.com/xc-link/translate", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/General", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LSQRScan/discussion_categories/Polls", + "repository": "https://github.com/xc-link/LSQRScan", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000008.json b/discussion_categories_000008.json new file mode 100644 index 000000000..5ef475d97 --- /dev/null +++ b/discussion_categories_000008.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/rubygems", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/General", + "repository": "https://github.com/xc-link/rubygems", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/rubygems", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/rubygems", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/rubygems", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rubygems/discussion_categories/Polls", + "repository": "https://github.com/xc-link/rubygems", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/infer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/infer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/infer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Ladon", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/General", + "repository": "https://github.com/xc-link/Ladon", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Ladon", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Ladon", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Ladon", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Ladon/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Ladon", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/General", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImGui-Loader-Base/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ImGui-Loader-Base", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/General", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Self-Hosting-Guide/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Self-Hosting-Guide", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/General", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/discussion_categories/Polls", + "repository": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/pocketbase", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/General", + "repository": "https://github.com/xc-link/pocketbase", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/pocketbase", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/pocketbase", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/pocketbase", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pocketbase/discussion_categories/Polls", + "repository": "https://github.com/xc-link/pocketbase", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/next-auth", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/General", + "repository": "https://github.com/xc-link/next-auth", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/next-auth", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/next-auth", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/next-auth", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/next-auth/discussion_categories/Polls", + "repository": "https://github.com/xc-link/next-auth", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/casbin", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/General", + "repository": "https://github.com/xc-link/casbin", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/casbin", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/casbin", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/casbin", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/casbin/discussion_categories/Polls", + "repository": "https://github.com/xc-link/casbin", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/General", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/supertokens-core/discussion_categories/Polls", + "repository": "https://github.com/xc-link/supertokens-core", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/General", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokens-trust/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tokens-trust", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/General", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tokenAssets/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tokenAssets", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/38-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/38-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/budibase", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/General", + "repository": "https://github.com/xc-link/budibase", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/budibase", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/budibase", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/budibase", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/budibase/discussion_categories/Polls", + "repository": "https://github.com/xc-link/budibase", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/payload", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/General", + "repository": "https://github.com/xc-link/payload", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/payload", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/payload", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/payload", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/payload/discussion_categories/Polls", + "repository": "https://github.com/xc-link/payload", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Calculator", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/General", + "repository": "https://github.com/xc-link/Calculator", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Calculator", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Calculator", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Calculator", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Calculator/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Calculator", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/staticRouter", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/General", + "repository": "https://github.com/xc-link/staticRouter", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/staticRouter", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/staticRouter", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/staticRouter", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/staticRouter/discussion_categories/Polls", + "repository": "https://github.com/xc-link/staticRouter", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/token-profile", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/General", + "repository": "https://github.com/xc-link/token-profile", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + } +] \ No newline at end of file diff --git a/discussion_categories_000009.json b/discussion_categories_000009.json new file mode 100644 index 000000000..ad9dd47b4 --- /dev/null +++ b/discussion_categories_000009.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/opencve", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/General", + "repository": "https://github.com/xc-link/opencve", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/opencve", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/opencve", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/opencve", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/opencve/discussion_categories/Polls", + "repository": "https://github.com/xc-link/opencve", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cve-search", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/General", + "repository": "https://github.com/xc-link/cve-search", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cve-search", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cve-search", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cve-search", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cve-search/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cve-search", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/General", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rust-cevm/discussion_categories/Polls", + "repository": "https://github.com/xc-link/rust-cevm", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/General", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ceviche-rs/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ceviche-rs", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/General", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kuaishou-live/discussion_categories/Polls", + "repository": "https://github.com/xc-link/kuaishou-live", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/DY-Data", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/General", + "repository": "https://github.com/xc-link/DY-Data", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/DY-Data", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/DY-Data", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/DY-Data", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DY-Data/discussion_categories/Polls", + "repository": "https://github.com/xc-link/DY-Data", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gopay", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/General", + "repository": "https://github.com/xc-link/gopay", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gopay", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gopay", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gopay", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gopay/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gopay", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/solidity", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/General", + "repository": "https://github.com/xc-link/solidity", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/solidity", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/solidity", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/solidity", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/solidity/discussion_categories/Polls", + "repository": "https://github.com/xc-link/solidity", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/authelia", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/General", + "repository": "https://github.com/xc-link/authelia", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/authelia", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/authelia", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/authelia", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/authelia/discussion_categories/Polls", + "repository": "https://github.com/xc-link/authelia", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/compress", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/General", + "repository": "https://github.com/xc-link/compress", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/compress", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/compress", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/compress", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/compress/discussion_categories/Polls", + "repository": "https://github.com/xc-link/compress", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/General", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/miner-proxy/discussion_categories/Polls", + "repository": "https://github.com/xc-link/miner-proxy", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gfw.press", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/General", + "repository": "https://github.com/xc-link/gfw.press", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gfw.press", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gfw.press", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gfw.press", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gfw.press/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gfw.press", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/git", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/General", + "repository": "https://github.com/xc-link/git", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/git", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/git", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/git", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/git/discussion_categories/Polls", + "repository": "https://github.com/xc-link/git", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/General", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DataFlow-Engine/discussion_categories/Polls", + "repository": "https://github.com/xc-link/DataFlow-Engine", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/22-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/22-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/General", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/discussion_categories/Polls", + "repository": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/token-profile", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/token-profile", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/token-profile", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-profile/discussion_categories/Polls", + "repository": "https://github.com/xc-link/token-profile", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000010.json b/discussion_categories_000010.json new file mode 100644 index 000000000..da642c770 --- /dev/null +++ b/discussion_categories_000010.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/General", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SentenceSimilarity/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SentenceSimilarity", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/wallet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/General", + "repository": "https://github.com/xc-link/wallet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/wallet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/wallet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/wallet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/wallet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/wallet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/General", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/open-gpu-kernel-modules/discussion_categories/Polls", + "repository": "https://github.com/xc-link/open-gpu-kernel-modules", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/track_beidou", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/General", + "repository": "https://github.com/xc-link/track_beidou", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/track_beidou", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/track_beidou", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/track_beidou", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/track_beidou/discussion_categories/Polls", + "repository": "https://github.com/xc-link/track_beidou", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/General", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/discussion_categories/Polls", + "repository": "https://github.com/xc-link/bds_loc_info_com_protocol", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/General", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3Monitor/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BD3Monitor", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/General", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/dockerfiles/discussion_categories/Polls", + "repository": "https://github.com/xc-link/dockerfiles", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/docker-goof", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/General", + "repository": "https://github.com/xc-link/docker-goof", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/docker-goof", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/docker-goof", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/docker-goof", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/docker-goof/discussion_categories/Polls", + "repository": "https://github.com/xc-link/docker-goof", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/18-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/18-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/General", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/discussion_categories/Polls", + "repository": "https://github.com/xc-link/snyk-cicd-integration-examples", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/pysnyk", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/General", + "repository": "https://github.com/xc-link/pysnyk", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/pysnyk", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/pysnyk", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/pysnyk", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pysnyk/discussion_categories/Polls", + "repository": "https://github.com/xc-link/pysnyk", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/actions", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/General", + "repository": "https://github.com/xc-link/actions", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/actions", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/actions", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/actions", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/actions/discussion_categories/Polls", + "repository": "https://github.com/xc-link/actions", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/General", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/snyk-to-sarif/discussion_categories/Polls", + "repository": "https://github.com/xc-link/snyk-to-sarif", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/custom", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/General", + "repository": "https://github.com/xc-link/custom", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/custom", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/custom", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/custom", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/custom/discussion_categories/Polls", + "repository": "https://github.com/xc-link/custom", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/General", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-builder/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ruby-builder", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ruby-build", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/General", + "repository": "https://github.com/xc-link/ruby-build", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ruby-build", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ruby-build", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ruby-build", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ruby-build/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ruby-build", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/General", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + } +] \ No newline at end of file diff --git a/discussion_categories_000011.json b/discussion_categories_000011.json new file mode 100644 index 000000000..43eb6ddc3 --- /dev/null +++ b/discussion_categories_000011.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/okx-api-arbitrage/discussion_categories/Polls", + "repository": "https://github.com/xc-link/okx-api-arbitrage", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/General", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ethereum-org-website/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ethereum-org-website", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/23-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/23-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tronj", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/General", + "repository": "https://github.com/xc-link/tronj", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tronj", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tronj", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tronj", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronj/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tronj", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/java-tron", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/General", + "repository": "https://github.com/xc-link/java-tron", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/java-tron", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/java-tron", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/java-tron", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/java-tron/discussion_categories/Polls", + "repository": "https://github.com/xc-link/java-tron", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/16-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/16-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tron-docker", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/General", + "repository": "https://github.com/xc-link/tron-docker", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tron-docker", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tron-docker", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tron-docker", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-docker/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tron-docker", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tron-box", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/General", + "repository": "https://github.com/xc-link/tron-box", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tron-box", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tron-box", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tron-box", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-box/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tron-box", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tronbox", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/General", + "repository": "https://github.com/xc-link/tronbox", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tronbox", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tronbox", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tronbox", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronbox/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tronbox", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tronweb", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/General", + "repository": "https://github.com/xc-link/tronweb", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tronweb", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tronweb", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tronweb", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronweb/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tronweb", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/General", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ToolsFx/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ToolsFx", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/kache", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/General", + "repository": "https://github.com/xc-link/kache", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/kache", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/kache", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/kache", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/kache/discussion_categories/Polls", + "repository": "https://github.com/xc-link/kache", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/General", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/python-encrypt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/python-encrypt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/General", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HashCalculator/discussion_categories/Polls", + "repository": "https://github.com/xc-link/HashCalculator", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/General", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LFScrollNumberDemo/discussion_categories/Polls", + "repository": "https://github.com/xc-link/LFScrollNumberDemo", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/github", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/General", + "repository": "https://github.com/xc-link/github", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/github", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/github", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/github", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/github/discussion_categories/Polls", + "repository": "https://github.com/xc-link/github", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/General", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Flash-USDT/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Flash-USDT", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/flash", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/General", + "repository": "https://github.com/xc-link/flash", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + } +] \ No newline at end of file diff --git a/discussion_categories_000012.json b/discussion_categories_000012.json new file mode 100644 index 000000000..67e8060b7 --- /dev/null +++ b/discussion_categories_000012.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/flash", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/flash", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/flash", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/flash/discussion_categories/Polls", + "repository": "https://github.com/xc-link/flash", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/4dface", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/General", + "repository": "https://github.com/xc-link/4dface", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/4dface", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/4dface", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/4dface", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/4dface/discussion_categories/Polls", + "repository": "https://github.com/xc-link/4dface", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/General", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/FAIR-Play/discussion_categories/Polls", + "repository": "https://github.com/xc-link/FAIR-Play", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/General", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Sheas-Cealer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Sheas-Cealer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/waf", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/General", + "repository": "https://github.com/xc-link/waf", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/waf", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/waf", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/waf", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/waf/discussion_categories/Polls", + "repository": "https://github.com/xc-link/waf", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SMx", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/General", + "repository": "https://github.com/xc-link/SMx", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SMx", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SMx", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SMx", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMx/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SMx", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/General", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockRDPBrute/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BlockRDPBrute", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/General", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ssh_guard/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ssh_guard", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/safe_duck", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/General", + "repository": "https://github.com/xc-link/safe_duck", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/safe_duck", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/safe_duck", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/safe_duck", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/safe_duck/discussion_categories/Polls", + "repository": "https://github.com/xc-link/safe_duck", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/General", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/violate_blastIP/discussion_categories/Polls", + "repository": "https://github.com/xc-link/violate_blastIP", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/General", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/A-Lightweight-Firewall/discussion_categories/Polls", + "repository": "https://github.com/xc-link/A-Lightweight-Firewall", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/General", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TrafficLimit/discussion_categories/Polls", + "repository": "https://github.com/xc-link/TrafficLimit", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/General", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/plugin-rtsp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/plugin-rtsp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/yuze", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/General", + "repository": "https://github.com/xc-link/yuze", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/yuze", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/yuze", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/yuze", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/yuze/discussion_categories/Polls", + "repository": "https://github.com/xc-link/yuze", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/hppt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/General", + "repository": "https://github.com/xc-link/hppt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/hppt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/hppt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/hppt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/hppt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/hppt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/CCKiller", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/General", + "repository": "https://github.com/xc-link/CCKiller", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/CCKiller", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/CCKiller", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/CCKiller", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CCKiller/discussion_categories/Polls", + "repository": "https://github.com/xc-link/CCKiller", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/General", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/nod32-update-mirror/discussion_categories/Polls", + "repository": "https://github.com/xc-link/nod32-update-mirror", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000013.json b/discussion_categories_000013.json new file mode 100644 index 000000000..cabaaf048 --- /dev/null +++ b/discussion_categories_000013.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Erebus", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/General", + "repository": "https://github.com/xc-link/Erebus", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Erebus", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Erebus", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Erebus", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Erebus/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Erebus", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/General", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ARP-Attack/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ARP-Attack", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/General", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ksubdomain/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ksubdomain", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/K8CScan", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/General", + "repository": "https://github.com/xc-link/K8CScan", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/K8CScan", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/K8CScan", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/K8CScan", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/K8CScan/discussion_categories/Polls", + "repository": "https://github.com/xc-link/K8CScan", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/General", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/InjectJDBC/discussion_categories/Polls", + "repository": "https://github.com/xc-link/InjectJDBC", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SecGPT", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/General", + "repository": "https://github.com/xc-link/SecGPT", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SecGPT", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SecGPT", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SecGPT", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecGPT/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SecGPT", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/General", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/amm-arbitrageur/discussion_categories/Polls", + "repository": "https://github.com/xc-link/amm-arbitrageur", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/v2-core", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/General", + "repository": "https://github.com/xc-link/v2-core", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/v2-core", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/v2-core", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/v2-core", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v2-core/discussion_categories/Polls", + "repository": "https://github.com/xc-link/v2-core", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/v3-core", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/General", + "repository": "https://github.com/xc-link/v3-core", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/v3-core", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/v3-core", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/v3-core", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/v3-core/discussion_categories/Polls", + "repository": "https://github.com/xc-link/v3-core", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/runner-images", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/General", + "repository": "https://github.com/xc-link/runner-images", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/runner-images", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/runner-images", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/runner-images", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/runner-images/discussion_categories/Polls", + "repository": "https://github.com/xc-link/runner-images", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/General", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/usdtwallet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/usdtwallet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/sniffer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/General", + "repository": "https://github.com/xc-link/sniffer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/sniffer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/sniffer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/sniffer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/sniffer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/sniffer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/General", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/xiaxiang-killer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/xiaxiang-killer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/General", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bypassWAF/discussion_categories/Polls", + "repository": "https://github.com/xc-link/bypassWAF", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/General", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/aliCloudfw/discussion_categories/Polls", + "repository": "https://github.com/xc-link/aliCloudfw", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/qcip", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/General", + "repository": "https://github.com/xc-link/qcip", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/qcip", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/qcip", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/qcip", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qcip/discussion_categories/Polls", + "repository": "https://github.com/xc-link/qcip", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/General", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + } +] \ No newline at end of file diff --git a/discussion_categories_000014.json b/discussion_categories_000014.json new file mode 100644 index 000000000..c7b948dd4 --- /dev/null +++ b/discussion_categories_000014.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/discussion_categories/Polls", + "repository": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GPUImage", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/General", + "repository": "https://github.com/xc-link/GPUImage", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GPUImage", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GPUImage", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GPUImage", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GPUImage", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/General", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage2/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GPUImage2", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/General", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPUImage3/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GPUImage3", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gpu", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/General", + "repository": "https://github.com/xc-link/gpu", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gpu", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gpu", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gpu", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gpu", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gpuweb", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/General", + "repository": "https://github.com/xc-link/gpuweb", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gpuweb", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gpuweb", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gpuweb", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpuweb/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gpuweb", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/DIGITS", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/General", + "repository": "https://github.com/xc-link/DIGITS", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/DIGITS", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/DIGITS", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/DIGITS", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DIGITS/discussion_categories/Polls", + "repository": "https://github.com/xc-link/DIGITS", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/General", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu-operator/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gpu-operator", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/General", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gpu.cpp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gpu.cpp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ids", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/General", + "repository": "https://github.com/xc-link/ids", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ids", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ids", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ids", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ids/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ids", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/middleman", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/General", + "repository": "https://github.com/xc-link/middleman", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/middleman", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/middleman", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/middleman", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/middleman/discussion_categories/Polls", + "repository": "https://github.com/xc-link/middleman", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/General", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchair.Support/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Blockchair.Support", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/51bitquant", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/General", + "repository": "https://github.com/xc-link/51bitquant", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/51bitquant", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/51bitquant", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/51bitquant", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/51bitquant/discussion_categories/Polls", + "repository": "https://github.com/xc-link/51bitquant", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/General", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/discussion_categories/Polls", + "repository": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/evm", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/General", + "repository": "https://github.com/xc-link/evm", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/evm", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/evm", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/evm", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/evm/discussion_categories/Polls", + "repository": "https://github.com/xc-link/evm", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/General", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/LavaXVM/discussion_categories/Polls", + "repository": "https://github.com/xc-link/LavaXVM", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/General", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btcpayserver/discussion_categories/Polls", + "repository": "https://github.com/xc-link/btcpayserver", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/General", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + } +] \ No newline at end of file diff --git a/discussion_categories_000015.json b/discussion_categories_000015.json new file mode 100644 index 000000000..bcbf605a7 --- /dev/null +++ b/discussion_categories_000015.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Security-Baseline/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Security-Baseline", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Packer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/General", + "repository": "https://github.com/xc-link/Packer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Packer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Packer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Packer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Packer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Packer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/General", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MatryoshkaDollTool/discussion_categories/Polls", + "repository": "https://github.com/xc-link/MatryoshkaDollTool", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/General", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GuiShou_Pack/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GuiShou_Pack", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/General", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DecryptApp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/DecryptApp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/General", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/upx-SM4/discussion_categories/Polls", + "repository": "https://github.com/xc-link/upx-SM4", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/systracer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/General", + "repository": "https://github.com/xc-link/systracer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/systracer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/systracer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/systracer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/systracer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/systracer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/General", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/YBTaskScheduler/discussion_categories/Polls", + "repository": "https://github.com/xc-link/YBTaskScheduler", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/General", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/rwProcMem33/discussion_categories/Polls", + "repository": "https://github.com/xc-link/rwProcMem33", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/General", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AuthOTP/discussion_categories/Polls", + "repository": "https://github.com/xc-link/AuthOTP", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/General", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/discussion_categories/Polls", + "repository": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/General", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/googleAuthenticator/discussion_categories/Polls", + "repository": "https://github.com/xc-link/googleAuthenticator", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/General", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/mnemonic-sdk/discussion_categories/Polls", + "repository": "https://github.com/xc-link/mnemonic-sdk", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/General", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/blockchain", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/General", + "repository": "https://github.com/xc-link/blockchain", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/blockchain", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/blockchain", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/blockchain", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/blockchain/discussion_categories/Polls", + "repository": "https://github.com/xc-link/blockchain", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/gradle", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/General", + "repository": "https://github.com/xc-link/gradle", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/gradle", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/gradle", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/gradle", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/gradle/discussion_categories/Polls", + "repository": "https://github.com/xc-link/gradle", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/General", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/DateTimeExtensions/discussion_categories/Polls", + "repository": "https://github.com/xc-link/DateTimeExtensions", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000016.json b/discussion_categories_000016.json new file mode 100644 index 000000000..6819e92d7 --- /dev/null +++ b/discussion_categories_000016.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/General", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/up-for-grabs.net/discussion_categories/Polls", + "repository": "https://github.com/xc-link/up-for-grabs.net", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/General", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BIN_LuaBind/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BIN_LuaBind", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/General", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartPointer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SmartPointer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/General", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/metamask-ios-sdk/discussion_categories/Polls", + "repository": "https://github.com/xc-link/metamask-ios-sdk", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/core", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/General", + "repository": "https://github.com/xc-link/core", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/core", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/core", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/core", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/core/discussion_categories/Polls", + "repository": "https://github.com/xc-link/core", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/31-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/31-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/General", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudflare_temp_email/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cloudflare_temp_email", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/General", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/btc-rpc-explorer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/btc-rpc-explorer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GitTime", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/General", + "repository": "https://github.com/xc-link/GitTime", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GitTime", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GitTime", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GitTime", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GitTime/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GitTime", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/first-contributions", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/General", + "repository": "https://github.com/xc-link/first-contributions", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/first-contributions", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/first-contributions", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/first-contributions", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/first-contributions/discussion_categories/Polls", + "repository": "https://github.com/xc-link/first-contributions", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/General", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/XcodesApp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/XcodesApp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/terminal", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/General", + "repository": "https://github.com/xc-link/terminal", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/terminal", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/terminal", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/terminal", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/terminal/discussion_categories/Polls", + "repository": "https://github.com/xc-link/terminal", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Files", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/General", + "repository": "https://github.com/xc-link/Files", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Files", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Files", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Files", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Files/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Files", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Website", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/General", + "repository": "https://github.com/xc-link/Website", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Website", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Website", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Website", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Website/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Website", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tomcat", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/General", + "repository": "https://github.com/xc-link/tomcat", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tomcat", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tomcat", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tomcat", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tomcat/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tomcat", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/General", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/apache-websocket/discussion_categories/Polls", + "repository": "https://github.com/xc-link/apache-websocket", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/web", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/General", + "repository": "https://github.com/xc-link/web", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/web", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/web", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + } +] \ No newline at end of file diff --git a/discussion_categories_000017.json b/discussion_categories_000017.json new file mode 100644 index 000000000..02fee8c38 --- /dev/null +++ b/discussion_categories_000017.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/web", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web/discussion_categories/Polls", + "repository": "https://github.com/xc-link/web", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/General", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/go-connect-eth-contract/discussion_categories/Polls", + "repository": "https://github.com/xc-link/go-connect-eth-contract", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/puter", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/General", + "repository": "https://github.com/xc-link/puter", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/puter", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/puter", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/puter", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/puter/discussion_categories/Polls", + "repository": "https://github.com/xc-link/puter", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/twenty", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/General", + "repository": "https://github.com/xc-link/twenty", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/twenty", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/twenty", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/twenty", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/twenty/discussion_categories/Polls", + "repository": "https://github.com/xc-link/twenty", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/responsively-app", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/General", + "repository": "https://github.com/xc-link/responsively-app", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/responsively-app", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/responsively-app", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/responsively-app", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/responsively-app/discussion_categories/Polls", + "repository": "https://github.com/xc-link/responsively-app", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/signoz", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/General", + "repository": "https://github.com/xc-link/signoz", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/signoz", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/signoz", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/signoz", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/signoz/discussion_categories/Polls", + "repository": "https://github.com/xc-link/signoz", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/openvino", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/General", + "repository": "https://github.com/xc-link/openvino", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/openvino", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/openvino", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/openvino", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openvino/discussion_categories/Polls", + "repository": "https://github.com/xc-link/openvino", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/cloudstream", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/General", + "repository": "https://github.com/xc-link/cloudstream", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/cloudstream", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/cloudstream", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/cloudstream", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/cloudstream/discussion_categories/Polls", + "repository": "https://github.com/xc-link/cloudstream", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/openllmetry", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/General", + "repository": "https://github.com/xc-link/openllmetry", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/openllmetry", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/openllmetry", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/openllmetry", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/openllmetry/discussion_categories/Polls", + "repository": "https://github.com/xc-link/openllmetry", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Checkmate", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/General", + "repository": "https://github.com/xc-link/Checkmate", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Checkmate", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Checkmate", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Checkmate", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Checkmate/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Checkmate", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/General", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-getting-started/discussion_categories/Polls", + "repository": "https://github.com/xc-link/token-getting-started", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/General", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ImagesSequencesPredictions/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ImagesSequencesPredictions", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/General", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/web3jdemo/discussion_categories/Polls", + "repository": "https://github.com/xc-link/web3jdemo", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/QQrobot", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/General", + "repository": "https://github.com/xc-link/QQrobot", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/QQrobot", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/QQrobot", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/QQrobot", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QQrobot/discussion_categories/Polls", + "repository": "https://github.com/xc-link/QQrobot", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/General", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Apt_t00ls/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Apt_t00ls", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/65-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/65-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/19-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/19-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/General", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + } +] \ No newline at end of file diff --git a/discussion_categories_000018.json b/discussion_categories_000018.json new file mode 100644 index 000000000..63b43334f --- /dev/null +++ b/discussion_categories_000018.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/IPProxyPool/discussion_categories/Polls", + "repository": "https://github.com/xc-link/IPProxyPool", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/General", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/pay-spring-boot/discussion_categories/Polls", + "repository": "https://github.com/xc-link/pay-spring-boot", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GameServer", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/General", + "repository": "https://github.com/xc-link/GameServer", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GameServer", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GameServer", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GameServer", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GameServer/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GameServer", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/General", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BlockChainSimpleDemo/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BlockChainSimpleDemo", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/64-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/64-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/General", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/discussion_categories/Polls", + "repository": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/14-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/14-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/15-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/15-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/12-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/12-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/findhash", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/General", + "repository": "https://github.com/xc-link/findhash", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/findhash", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/findhash", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/findhash", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/findhash/discussion_categories/Polls", + "repository": "https://github.com/xc-link/findhash", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/60-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/60-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/59-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/59-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/General", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SmartDev-Contract/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SmartDev-Contract", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/57-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/57-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tethering", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/General", + "repository": "https://github.com/xc-link/tethering", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tethering", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tethering", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tethering", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tethering/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tethering", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/react-tether", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/General", + "repository": "https://github.com/xc-link/react-tether", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/react-tether", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/react-tether", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/react-tether", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/react-tether/discussion_categories/Polls", + "repository": "https://github.com/xc-link/react-tether", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/52-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/52-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000019.json b/discussion_categories_000019.json new file mode 100644 index 000000000..8ba35d2c6 --- /dev/null +++ b/discussion_categories_000019.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/26-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/26-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/55-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/55-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/11-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/11-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/defi-bot", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/General", + "repository": "https://github.com/xc-link/defi-bot", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/defi-bot", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/defi-bot", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/defi-bot", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/defi-bot/discussion_categories/Polls", + "repository": "https://github.com/xc-link/defi-bot", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/53-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/53-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Tokenss", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/General", + "repository": "https://github.com/xc-link/Tokenss", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Tokenss", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Tokenss", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Tokenss", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Tokenss/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Tokenss", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/token-lists", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/General", + "repository": "https://github.com/xc-link/token-lists", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/token-lists", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/token-lists", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/token-lists", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/token-lists/discussion_categories/Polls", + "repository": "https://github.com/xc-link/token-lists", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/56-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/56-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/47-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/47-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/62-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/62-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/48-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/48-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/46-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/46-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/bitchat", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/General", + "repository": "https://github.com/xc-link/bitchat", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/bitchat", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/bitchat", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/bitchat", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/bitchat/discussion_categories/Polls", + "repository": "https://github.com/xc-link/bitchat", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/44-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/44-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/45-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/45-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/67-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/67-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/General", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + } +] \ No newline at end of file diff --git a/discussion_categories_000020.json b/discussion_categories_000020.json new file mode 100644 index 000000000..27fc062b2 --- /dev/null +++ b/discussion_categories_000020.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Cesium-Satellite/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Cesium-Satellite", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/MineEarth", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/General", + "repository": "https://github.com/xc-link/MineEarth", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/MineEarth", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/MineEarth", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/MineEarth", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/MineEarth/discussion_categories/Polls", + "repository": "https://github.com/xc-link/MineEarth", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/JT1078", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/General", + "repository": "https://github.com/xc-link/JT1078", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/JT1078", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/JT1078", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/JT1078", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/JT1078/discussion_categories/Polls", + "repository": "https://github.com/xc-link/JT1078", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/General", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/satellite_seg/discussion_categories/Polls", + "repository": "https://github.com/xc-link/satellite_seg", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/StarTools", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/General", + "repository": "https://github.com/xc-link/StarTools", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/StarTools", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/StarTools", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/StarTools", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/StarTools/discussion_categories/Polls", + "repository": "https://github.com/xc-link/StarTools", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/General", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Read_Himawari_binary_data/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Read_Himawari_binary_data", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ls", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/General", + "repository": "https://github.com/xc-link/ls", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ls", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ls", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ls", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ls/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ls", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/General", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/GPS_GAL_SSS/discussion_categories/Polls", + "repository": "https://github.com/xc-link/GPS_GAL_SSS", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/General", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/BD3_FPGA/discussion_categories/Polls", + "repository": "https://github.com/xc-link/BD3_FPGA", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/General", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/fy4_image_dp/discussion_categories/Polls", + "repository": "https://github.com/xc-link/fy4_image_dp", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/42-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/42-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/58-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/58-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/General", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SekiroIOS/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SekiroIOS", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/ios", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/General", + "repository": "https://github.com/xc-link/ios", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/ios", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/ios", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/ios", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/ios/discussion_categories/Polls", + "repository": "https://github.com/xc-link/ios", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/General", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eos-bp-profile/discussion_categories/Polls", + "repository": "https://github.com/xc-link/eos-bp-profile", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/General", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/Mobile-SDK/discussion_categories/Polls", + "repository": "https://github.com/xc-link/Mobile-SDK", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/china-tower", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/General", + "repository": "https://github.com/xc-link/china-tower", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/china-tower", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/china-tower", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/china-tower", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/china-tower/discussion_categories/Polls", + "repository": "https://github.com/xc-link/china-tower", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/freeresource", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/General", + "repository": "https://github.com/xc-link/freeresource", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + } +] \ No newline at end of file diff --git a/discussion_categories_000021.json b/discussion_categories_000021.json new file mode 100644 index 000000000..c78d42712 --- /dev/null +++ b/discussion_categories_000021.json @@ -0,0 +1,802 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/freeresource", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/freeresource", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/freeresource", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/freeresource/discussion_categories/Polls", + "repository": "https://github.com/xc-link/freeresource", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/General", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/CarrierProj/discussion_categories/Polls", + "repository": "https://github.com/xc-link/CarrierProj", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/General", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/QT-earthq/discussion_categories/Polls", + "repository": "https://github.com/xc-link/QT-earthq", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/General", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/NXP-K64-gateway/discussion_categories/Polls", + "repository": "https://github.com/xc-link/NXP-K64-gateway", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/General", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qt_signal_slot_sys/discussion_categories/Polls", + "repository": "https://github.com/xc-link/qt_signal_slot_sys", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/General", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/unionpay-server/discussion_categories/Polls", + "repository": "https://github.com/xc-link/unionpay-server", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/General", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/HwdNetWork/discussion_categories/Polls", + "repository": "https://github.com/xc-link/HwdNetWork", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/35-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/35-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/General", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/alipay_kit/discussion_categories/Polls", + "repository": "https://github.com/xc-link/alipay_kit", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/qrpay", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/General", + "repository": "https://github.com/xc-link/qrpay", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/qrpay", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/qrpay", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/qrpay", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/qrpay/discussion_categories/Polls", + "repository": "https://github.com/xc-link/qrpay", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/30-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/30-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/27-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/27-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/36-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/36-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/75-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/75-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tronwallet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/General", + "repository": "https://github.com/xc-link/tronwallet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tronwallet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tronwallet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tronwallet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tronwallet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tronwallet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/General", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/tron-wallet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/tron-wallet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/76-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/76-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussion_categories_000022.json b/discussion_categories_000022.json new file mode 100644 index 000000000..828cf92c0 --- /dev/null +++ b/discussion_categories_000022.json @@ -0,0 +1,290 @@ +[ + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/General", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/eth-lightwallet/discussion_categories/Polls", + "repository": "https://github.com/xc-link/eth-lightwallet", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/74-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/74-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/General", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/73-networklist-org/discussion_categories/Polls", + "repository": "https://github.com/xc-link/73-networklist-org", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/General", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/TSN-2022-winter/discussion_categories/Polls", + "repository": "https://github.com/xc-link/TSN-2022-winter", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SMS-China", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/General", + "repository": "https://github.com/xc-link/SMS-China", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SMS-China", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SMS-China", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SMS-China", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SMS-China/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SMS-China", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/Announcements", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "Announcements", + "emoji": ":mega:", + "description": "Updates from maintainers" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/General", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "General", + "emoji": ":speech_balloon:", + "description": "Chat about anything and everything here" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/Q%26A", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "Q&A", + "emoji": ":pray:", + "description": "Ask the community for help" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/Ideas", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "Ideas", + "emoji": ":bulb:", + "description": "Share ideas for new features" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/Show%20and%20tell", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "Show and tell", + "emoji": ":raised_hands:", + "description": "Show off something you've made" + }, + { + "type": "discussion_category", + "url": "https://github.com/xc-link/SecAutoBan/discussion_categories/Polls", + "repository": "https://github.com/xc-link/SecAutoBan", + "name": "Polls", + "emoji": ":ballot_box:", + "description": "Take a vote from the community" + } +] \ No newline at end of file diff --git a/discussions_000001.json b/discussions_000001.json new file mode 100644 index 000000000..de9232034 --- /dev/null +++ b/discussions_000001.json @@ -0,0 +1,41 @@ +[ + { + "type": "discussion", + "url": "https://github.com/xc-link/networklist-org/discussions/1", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "Welcome to networklist-org Discussions!", + "body": "\r\n## 👋 Welcome!\r\n We’re using Discussions as a place to connect with other members of our community. We hope that you:\r\n * Ask questions you’re wondering about.\r\n * Share ideas.\r\n * Engage with other community members.\r\n * Welcome others and are open-minded. Remember that this is a community we\r\n build together 💪.\r\n\r\n To get started, comment below with an introduction of yourself and tell us about what you do with this community.\r\n\r\n\r\n", + "labels": [], + "reactions": [], + "created_at": "2024-09-25T14:09:56Z", + "updated_at": "2024-09-25T14:09:58Z", + "discussion_category": "https://github.com/xc-link/networklist-org/discussion_categories/Announcements" + }, + { + "type": "discussion", + "url": "https://github.com/xc-link/networklist-org/discussions/71", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "APIsec", + "body": "\n\n
This discussion was created from the release APIsec.", + "labels": [], + "reactions": [], + "created_at": "2025-06-27T10:01:33Z", + "updated_at": "2025-06-27T10:01:33Z", + "discussion_category": "https://github.com/xc-link/networklist-org/discussion_categories/General" + }, + { + "type": "discussion", + "url": "https://github.com/xc-link/networklist-org/discussions/72", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "APIsec", + "body": "\n\n
This discussion was created from the release APIsec.", + "labels": [], + "reactions": [], + "created_at": "2025-06-27T10:06:03Z", + "updated_at": "2025-06-27T10:06:04Z", + "discussion_category": "https://github.com/xc-link/networklist-org/discussion_categories/Announcements" + } +] \ No newline at end of file diff --git a/ethereumads.zip b/ethereumads.zip new file mode 100644 index 000000000..572de35e6 Binary files /dev/null and b/ethereumads.zip differ diff --git a/issue_comments_000001.json b/issue_comments_000001.json new file mode 100644 index 000000000..9767107f1 --- /dev/null +++ b/issue_comments_000001.json @@ -0,0 +1,1002 @@ +[ + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/8#issuecomment-2409018451", + "pull_request": "https://github.com/xc-link/networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-13T15:18:40Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/14#issuecomment-2412837944", + "pull_request": "https://github.com/xc-link/networklist-org/pull/14", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-15T03:49:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/15#issuecomment-2428009587", + "pull_request": "https://github.com/xc-link/networklist-org/pull/15", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-22T01:06:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/10#issuecomment-2435618723", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

.github/workflows/securitycodescan.yml

\n
PackageVersionLicenseIssue Type
security-code-scan/security-code-scan-add-action2439fb4aaeda4ad590a7c8bde327d159d03875fdNullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/security-code-scan/security-code-scan-add-action 2439fb4aaeda4ad590a7c8bde327d159d03875fd UnknownUnknown

Scanned Files

\n
  • .github/workflows/securitycodescan.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-24T15:32:07Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/9#issuecomment-2435621211", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/ossf/scorecard-action 62b2cac7ed8198b15735ed49ab1e5cf35480ba46:green_circle: 8.2
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Code-Review:green_circle: 10all changesets reviewed
Contributors:green_circle: 1020 different organizations found -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1027 commit(s) out of 30 and 0 issue activity out of 30 found in the last 90 days -- score normalized to 10
Packaging:warning: -1no published package detected
Pinned-Dependencies:green_circle: 9dependency not pinned by hash detected -- score normalized to 9
SAST:green_circle: 10SAST tool is run on all commits
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 10no vulnerabilities detected

Scanned Files

\n
  • .github/workflows/scorecard.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-24T15:33:15Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/13#issuecomment-2435628203", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/codacy/codacy-analysis-cli-action 97bf5df3c09e75f5bcd72695998f96ebd701846e:green_circle: 4.8
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:green_circle: 10all changesets reviewed
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • .github/workflows/codacy.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-24T15:36:28Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/12#issuecomment-2435630126", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

.github/workflows/zscaler-iac-scan.yml

\n
PackageVersionLicenseIssue Type
ZscalerCWP/Zscaler-IaC-Actiondf1ce913b51df9f5e42eca910f0b6b5e8ad61945NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/ZscalerCWP/Zscaler-IaC-Action df1ce913b51df9f5e42eca910f0b6b5e8ad61945:green_circle: 3.6
Details
CheckScoreReason
Code-Review:green_circle: 7Found 6/8 approved changesets -- score normalized to 7
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Signed-Releases:warning: -1no releases found
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
License:warning: 0license file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:green_circle: 73 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/zscaler-iac-scan.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-24T15:37:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/11#issuecomment-2435632451", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/SonarSource/sonarqube-scan-action 884b79409bbd464b2a59edc326a4b77dc56b2195:green_circle: 5.8
Details
CheckScoreReason
Maintained:green_circle: 34 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3
Code-Review:green_circle: 10all changesets reviewed
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:green_circle: 10security policy file detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • .github/workflows/sonarqube.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-24T15:38:24Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/16#issuecomment-2448817930", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "user": "https://github.com/github-actions[bot]", + "body": "# Dependency Review\nThe following issues were found:\n* ✅ 0 vulnerable package(s)\n* ✅ 0 package(s) with incompatible licenses\n* ✅ 0 package(s) with invalid SPDX license definitions\n* ⚠️ 1 package(s) with unknown licenses.\n* ⚠️ 1 packages with OpenSSF Scorecard issues.\n\n[View full job summary](https://github.com/xc-link/networklist-org/actions/runs/11654239786)\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:27:36Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/17#issuecomment-2448819508", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/http-cache-semantics 4.1.1:green_circle: 3.3
Details
CheckScoreReason
Code-Review:warning: 2Found 7/25 approved changesets -- score normalized to 2
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: -1no releases found
Security-Policy:warning: 0security policy file not detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:28:26Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/21#issuecomment-2448820559", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/glob-parent 5.1.2:green_circle: 4.2
Details
CheckScoreReason
Code-Review:warning: 2Found 6/27 approved changesets -- score normalized to 2
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:green_circle: 10security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:29:04Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/18#issuecomment-2448821937", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "user": "https://github.com/github-actions[bot]", + "body": "# Dependency Review\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:29:57Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/26#issuecomment-2448822847", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/ansi-regex 5.0.1:green_circle: 4.5
Details
CheckScoreReason
Maintained:warning: 23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:30:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/19#issuecomment-2448825074", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/minimist 1.2.8:green_circle: 5.9
Details
CheckScoreReason
Maintained:warning: 10 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 1
Code-Review:green_circle: 3Found 9/24 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Signed-Releases:warning: -1no releases found
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 9security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:31:07Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/27#issuecomment-2448826048", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
npm/braces 3.0.3:green_circle: 4.2
Details
CheckScoreReason
Code-Review:warning: 2Found 4/17 approved changesets -- score normalized to 2
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:green_circle: 10security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/fill-range 7.1.1:green_circle: 4
Details
CheckScoreReason
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: -1no releases found
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
SAST:green_circle: 7SAST tool detected but not run on all commits

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:31:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/20#issuecomment-2448828151", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/normalize-url 4.5.1:green_circle: 4.2
Details
CheckScoreReason
Code-Review:warning: 2Found 7/30 approved changesets -- score normalized to 2
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:33:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/22#issuecomment-2448828356", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
npm/json5 1.0.2:green_circle: 3.5
Details
CheckScoreReason
Code-Review:warning: 2Found 6/27 approved changesets -- score normalized to 2
Maintained:warning: 21 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 2
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: -1No tokens found
Dangerous-Workflow:warning: -1no workflows found
Security-Policy:green_circle: 10security policy file detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 044 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:33:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/23#issuecomment-2448828880", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 1 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/elliptic 6.6.0:warning: 2.1
Details
CheckScoreReason
Code-Review:warning: 2Found 6/29 approved changesets -- score normalized to 2
Maintained:green_circle: 44 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: -1No tokens found
License:warning: 0license file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Security-Policy:warning: 0security policy file not detected
Pinned-Dependencies:warning: -1no dependencies found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 043 existing vulnerabilities detected
npm/node-addon-api 5.1.0:green_circle: 8.8
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 928 out of 30 merged PRs checked by a CI test -- score normalized to 9
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Code-Review:green_circle: 10all changesets reviewed
Contributors:green_circle: 10project has 44 contributing companies or organizations
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Maintained:green_circle: 1028 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:green_circle: 7dependency not pinned by hash detected -- score normalized to 7
SAST:green_circle: 9SAST tool detected but not run on all commits
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
npm/secp256k1 4.0.4:green_circle: 4.1
Details
CheckScoreReason
Code-Review:warning: 1Found 3/30 approved changesets -- score normalized to 1
Maintained:warning: 23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:warning: 0security policy file not detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:34:35Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/24#issuecomment-2448830014", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/simple-get 2.8.2:green_circle: 3.9
Details
CheckScoreReason
Code-Review:warning: 1Found 2/15 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/simple-get 4.0.1:green_circle: 3.9
Details
CheckScoreReason
Code-Review:warning: 1Found 2/15 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/simple-get 3.1.1:green_circle: 3.9
Details
CheckScoreReason
Code-Review:warning: 1Found 2/15 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:35:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/25#issuecomment-2448830614", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/es5-ext 0.10.64:green_circle: 4.1
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:warning: 0security policy file not detected
Pinned-Dependencies:warning: -1no dependencies found
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/esniff 2.0.1:green_circle: 4.1
Details
CheckScoreReason
Maintained:warning: 01 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:warning: 0Found 0/30 approved changesets -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
SAST:warning: 0no SAST tool detected
Pinned-Dependencies:warning: -1no dependencies found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Security-Policy:warning: 0security policy file not detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
npm/event-emitter 0.3.5:green_circle: 3
Details
CheckScoreReason
Code-Review:warning: 0Found 1/30 approved changesets -- score normalized to 0
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: -1no releases found
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/next-tick 1.1.0:green_circle: 3
Details
CheckScoreReason
Code-Review:warning: 0Found 2/28 approved changesets -- score normalized to 0
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:warning: -1no dependencies found
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: -1No tokens found
Dangerous-Workflow:warning: -1no workflows found
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
npm/type 2.7.3:green_circle: 4.2
Details
CheckScoreReason
Code-Review:warning: 1Found 5/30 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • package-lock.json
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-10-31T01:36:33Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/11#issuecomment-2467010292", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of SonarSource/sonarqube-scan-action exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-11-11T00:21:12Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/28#issuecomment-2472046881", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/codescan-io/codescan-scanner-action 6793740039071596c5e9445dd60dd3825238d290:green_circle: 3.4
Details
CheckScoreReason
Code-Review:green_circle: 3Found 5/13 approved changesets -- score normalized to 3
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:green_circle: 73 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/codescan.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-11-13T00:49:28Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/29#issuecomment-2475085348", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/actions/cache 4.*.*:green_circle: 7.1
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 9security policy file detected
Signed-Releases:warning: -1no releases found
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:green_circle: 91 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/codescan.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-11-14T00:16:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/18#issuecomment-2521940376", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of express exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-12-06T02:17:38Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/32#issuecomment-2539742618", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "user": "https://github.com/dependabot[bot]", + "body": "Looks like these dependencies are updatable in another way, so this is no longer needed.", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-12-12T18:33:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/45#issuecomment-2539745817", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "user": "https://github.com/github-actions[bot]", + "body": "# Dependency Review\nThe following issues were found:\n* ✅ 0 vulnerable package(s)\n* ✅ 0 package(s) with incompatible licenses\n* ✅ 0 package(s) with invalid SPDX license definitions\n* ⚠️ 1 package(s) with unknown licenses.\n* ⚠️ 5 packages with OpenSSF Scorecard issues.\n\n[View full job summary](https://github.com/xc-link/networklist-org/actions/runs/12302631066)\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2024-12-12T18:35:30Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/29#issuecomment-2586217875", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-13T05:49:57Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/13#issuecomment-2586217893", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-13T05:49:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/12#issuecomment-2586217922", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-13T05:49:59Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/10#issuecomment-2586217945", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-13T05:50:01Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/9#issuecomment-2586217964", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-13T05:50:02Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/30#issuecomment-2597486034", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-17T05:49:31Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/29#issuecomment-2603713535", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-21T05:49:45Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/13#issuecomment-2603713581", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-21T05:49:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/12#issuecomment-2603713619", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-21T05:49:47Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/10#issuecomment-2603713670", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-21T05:49:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/9#issuecomment-2603713703", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-21T05:49:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/27#issuecomment-2623573857", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:36Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/26#issuecomment-2623573879", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/25#issuecomment-2623573898", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:38Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/24#issuecomment-2623573917", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/23#issuecomment-2623573935", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/22#issuecomment-2623573954", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/21#issuecomment-2623573969", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:43Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/20#issuecomment-2623573993", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-30T05:49:44Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/19#issuecomment-2626361718", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-31T05:49:56Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/17#issuecomment-2626361727", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-31T05:49:57Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/16#issuecomment-2626361747", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-31T05:49:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/7#issuecomment-2626361771", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-01-31T05:50:00Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/6#issuecomment-2628793013", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-01T05:49:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/5#issuecomment-2628793023", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-01T05:49:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/4#issuecomment-2629255320", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-02T05:49:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/18#issuecomment-2632937387", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-04T05:49:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/27#issuecomment-2638900232", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:47Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/26#issuecomment-2638900373", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/25#issuecomment-2638900608", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:50Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/24#issuecomment-2638900717", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/23#issuecomment-2638900912", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/22#issuecomment-2638900982", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/21#issuecomment-2638901070", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/20#issuecomment-2638901153", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-06T05:49:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/3#issuecomment-2642002279", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-07T05:49:34Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/31#issuecomment-2644523352", + "pull_request": "https://github.com/xc-link/networklist-org/pull/31", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/19#issuecomment-2644523374", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:45Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/17#issuecomment-2644523379", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:45Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/16#issuecomment-2644523383", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/7#issuecomment-2644523392", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:47Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/6#issuecomment-2644523400", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/5#issuecomment-2644523405", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-08T05:49:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/4#issuecomment-2646978261", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-10T05:49:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/45#issuecomment-2649863939", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/44#issuecomment-2649863968", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:50Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/43#issuecomment-2649863999", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/42#issuecomment-2649864023", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/41#issuecomment-2649864045", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/40#issuecomment-2649864074", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:56Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/39#issuecomment-2649864098", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/38#issuecomment-2649864124", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-11T05:49:59Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/37#issuecomment-2652728243", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-12T05:49:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/36#issuecomment-2652728264", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-12T05:49:50Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/35#issuecomment-2652728288", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-12T05:49:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/34#issuecomment-2652728313", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-12T05:49:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/33#issuecomment-2655553060", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-13T05:50:02Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/18#issuecomment-2658343683", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-14T05:50:00Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/3#issuecomment-2661262372", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-16T05:49:44Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/45#issuecomment-2667569579", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/44#issuecomment-2667569611", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:50Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/43#issuecomment-2667569630", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/42#issuecomment-2667569645", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/41#issuecomment-2667569660", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/40#issuecomment-2667569676", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/39#issuecomment-2667569697", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/38#issuecomment-2667569711", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:56Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/37#issuecomment-2667569731", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:57Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/36#issuecomment-2667569750", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-19T05:49:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/35#issuecomment-2670527192", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-20T05:49:59Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/34#issuecomment-2670527202", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-20T05:50:00Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/33#issuecomment-2673529190", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-02-21T05:49:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/46#issuecomment-2694337562", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/google-github-actions/auth 71f986410dfbc7added4569d411d040a91dc6935:green_circle: 7.3
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:green_circle: 105 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Code-Review:green_circle: 10all changesets reviewed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:green_circle: 4branch protection is not maximal on development and all release branches
Pinned-Dependencies:green_circle: 7dependency not pinned by hash detected -- score normalized to 7
Security-Policy:green_circle: 10security policy file detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool is not run on all commits -- score normalized to 9

Scanned Files

\n
  • .github/workflows/google.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:06:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/47#issuecomment-2694341971", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
actions/jfrog/frogbot 7fad842cf6ba3d755c2eb86376cce066327b55d1:green_circle: 3.6
Details
CheckScoreReason
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1018 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 054 existing vulnerabilities detected
actions/jfrog/frogbot 7fad842cf6ba3d755c2eb86376cce066327b55d1:green_circle: 3.6
Details
CheckScoreReason
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1018 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 054 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/frogbot-scan-and-fix.yml
  • .github/workflows/frogbot-scan-pr.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:08:35Z" + } +] \ No newline at end of file diff --git a/issue_comments_000002.json b/issue_comments_000002.json new file mode 100644 index 000000000..22ebe7338 --- /dev/null +++ b/issue_comments_000002.json @@ -0,0 +1,1002 @@ +[ + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/48#issuecomment-2694343751", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/SonarSource/sonarcloud-github-action ffc3010689be73b8e5ae0c57ce35968afd7909e8:green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 9Found 27/29 approved changesets -- score normalized to 9
Security-Policy:green_circle: 10security policy file detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:green_circle: 45 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:green_circle: 5branch protection is not maximal on development and all release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • .github/workflows/sonarcloud.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:09:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/56#issuecomment-2694344886", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 5 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/csstype 3.1.3:warning: 2.9
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:warning: 1Found 3/25 approved changesets -- score normalized to 1
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 010 existing vulnerabilities detected
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss-plugin-camel-case 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss-plugin-camel-case 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:09:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/49#issuecomment-2694350681", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 5 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/csstype 3.1.3:warning: 2.9
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:warning: 1Found 3/25 approved changesets -- score normalized to 1
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 010 existing vulnerabilities detected
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss-plugin-vendor-prefixer 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected
npm/jss-plugin-vendor-prefixer 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Pinned-Dependencies:warning: -1no dependencies found
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0123 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:12:18Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/50#issuecomment-2694351007", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/actions/upload-artifact c24449f33cd45d4826c6702db7e49f7cdb9b551d:green_circle: 5.6
Details
CheckScoreReason
Maintained:green_circle: 68 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6
Code-Review:green_circle: 10all changesets reviewed
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 46 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/scorecard.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:12:25Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/51#issuecomment-2694355649", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:14:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/52#issuecomment-2694357216", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
actions/actions/checkout 4.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/checkout 4.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/checkout 4.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/checkout 85e6279cec87321a52edac9c87bce653a07cf6c2:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/checkout 85e6279cec87321a52edac9c87bce653a07cf6c2:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:warning: 00 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Packaging:warning: -1packaging workflow not detected
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/appknox.yml
  • .github/workflows/crda.yml
  • .github/workflows/datadog-synthetics.yml
  • .github/workflows/google.yml
  • .github/workflows/scorecard.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:15:03Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/53#issuecomment-2694360872", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n
Scorecard details\n\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/hyphenate-style-name 1.1.0:green_circle: 3.1
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:warning: 0Found 1/24 approved changesets -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:green_circle: 37 existing vulnerabilities detected
npm/@emnapi/runtime 1.3.1:green_circle: 4.3
Details
CheckScoreReason
Maintained:green_circle: 1021 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10
Code-Review:warning: 0Found 1/18 approved changesets -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:warning: 0security policy file not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
npm/@img/sharp-darwin-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-darwin-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-libvips-darwin-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-darwin-x64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-arm 1.0.5 UnknownUnknown
npm/@img/sharp-libvips-linux-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-s390x 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-x64 1.0.4 UnknownUnknown
npm/@img/sharp-linux-arm 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-s390x 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-wasm32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-ia32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@next/swc-darwin-arm64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-darwin-x64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-gnu 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-x64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-arm64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-x64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/hyphenate-style-name 1.1.0:green_circle: 3.1
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Code-Review:warning: 0Found 1/24 approved changesets -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Security-Policy:warning: 0security policy file not detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:green_circle: 37 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:16:23Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/54#issuecomment-2694365855", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n
Scorecard details\n\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/prop-types 15.7.14:green_circle: 7.1
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/@emnapi/runtime 1.3.1:green_circle: 4.3
Details
CheckScoreReason
Maintained:green_circle: 1021 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10
Code-Review:warning: 0Found 1/18 approved changesets -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:warning: 0security policy file not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
npm/@img/sharp-darwin-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-darwin-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-libvips-darwin-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-darwin-x64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-arm 1.0.5 UnknownUnknown
npm/@img/sharp-libvips-linux-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-s390x 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-x64 1.0.4 UnknownUnknown
npm/@img/sharp-linux-arm 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-s390x 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-wasm32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-ia32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@next/swc-darwin-arm64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-darwin-x64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-gnu 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-x64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-arm64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-x64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@types/prop-types 15.7.14:green_circle: 7.1
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:18:27Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/55#issuecomment-2694367168", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n
Scorecard details\n\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@material-ui/utils 4.11.3:green_circle: 7.9
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 12 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 13/16 approved changesets -- score normalized to 8
Packaging:warning: -1packaging workflow not detected
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
CII-Best-Practices:green_circle: 5badge detected: Passing
Binary-Artifacts:green_circle: 10no binaries found in the repo
Signed-Releases:warning: -1no releases found
SAST:green_circle: 7SAST tool detected but not run on all commits
License:green_circle: 10license file detected
Pinned-Dependencies:green_circle: 9dependency not pinned by hash detected -- score normalized to 9
Branch-Protection:green_circle: 4branch protection is not maximal on development and all release branches
Fuzzing:warning: 0project is not fuzzed
CI-Tests:green_circle: 1027 out of 27 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 35 contributing companies or organizations
Vulnerabilities:green_circle: 37 existing vulnerabilities detected
npm/@emnapi/runtime 1.3.1:green_circle: 4.3
Details
CheckScoreReason
Maintained:green_circle: 1021 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10
Code-Review:warning: 0Found 1/18 approved changesets -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:warning: 0security policy file not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Packaging:green_circle: 10packaging workflow detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
npm/@img/sharp-darwin-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-darwin-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-libvips-darwin-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-darwin-x64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-arm 1.0.5 UnknownUnknown
npm/@img/sharp-libvips-linux-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linux-s390x 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-arm64 1.0.4 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-x64 1.0.4 UnknownUnknown
npm/@img/sharp-linux-arm 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linux-s390x 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-arm64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-linuxmusl-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-wasm32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-ia32 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@img/sharp-win32-x64 0.33.5:green_circle: 6.7
Details
CheckScoreReason
Security-Policy:green_circle: 10security policy file detected
Code-Review:warning: 1Found 4/30 approved changesets -- score normalized to 1
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 1030 commit(s) and 26 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
npm/@material-ui/utils 4.11.3:green_circle: 7.9
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 12 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 13/16 approved changesets -- score normalized to 8
Packaging:warning: -1packaging workflow not detected
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
CII-Best-Practices:green_circle: 5badge detected: Passing
Binary-Artifacts:green_circle: 10no binaries found in the repo
Signed-Releases:warning: -1no releases found
SAST:green_circle: 7SAST tool detected but not run on all commits
License:green_circle: 10license file detected
Pinned-Dependencies:green_circle: 9dependency not pinned by hash detected -- score normalized to 9
Branch-Protection:green_circle: 4branch protection is not maximal on development and all release branches
Fuzzing:warning: 0project is not fuzzed
CI-Tests:green_circle: 1027 out of 27 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 35 contributing companies or organizations
Vulnerabilities:green_circle: 37 existing vulnerabilities detected
npm/@next/swc-darwin-arm64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-darwin-x64 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-gnu 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-arm64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-linux-x64-musl 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-arm64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected
npm/@next/swc-win32-x64-msvc 15.2.0:green_circle: 4.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 4security policy file detected
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Binary-Artifacts:warning: 0binaries present in source code
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 0223 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-03T13:19:02Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/30#issuecomment-2731748475", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-18T05:49:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/57#issuecomment-2740477906", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@babel/runtime 7.26.10:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/29 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
License:green_circle: 10license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 2badge detected: InProgress
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 025 existing vulnerabilities detected
npm/regenerator-runtime 0.14.1:green_circle: 3.7
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:warning: 0project is archived
Code-Review:warning: 2Found 4/17 approved changesets -- score normalized to 2
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 9security policy file detected
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 010 existing vulnerabilities detected
npm/@babel/runtime 7.26.10:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/29 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
License:green_circle: 10license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 2badge detected: InProgress
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 025 existing vulnerabilities detected
npm/regenerator-runtime 0.14.1:green_circle: 3.7
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:warning: 0project is archived
Code-Review:warning: 2Found 4/17 approved changesets -- score normalized to 2
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 9security policy file detected
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 010 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-20T13:34:13Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/47#issuecomment-2742020449", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #58.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-21T01:37:06Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/58#issuecomment-2742020607", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
actions/jfrog/frogbot 33f9a2b4c61c9d85a35a17d5b5b2808e944572da:green_circle: 3.6
Details
CheckScoreReason
Maintained:green_circle: 1016 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 056 existing vulnerabilities detected
actions/jfrog/frogbot 33f9a2b4c61c9d85a35a17d5b5b2808e944572da:green_circle: 3.6
Details
CheckScoreReason
Maintained:green_circle: 1016 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 056 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/frogbot-scan-and-fix.yml
  • .github/workflows/frogbot-scan-pr.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-21T01:37:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/59#issuecomment-2749923262", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@babel/runtime 7.27.0:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 2badge detected: InProgress
License:green_circle: 10license file detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 026 existing vulnerabilities detected
npm/regenerator-runtime 0.14.1:green_circle: 3.7
Details
CheckScoreReason
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Code-Review:warning: 2Found 4/17 approved changesets -- score normalized to 2
Maintained:warning: 0project is archived
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
License:green_circle: 10license file detected
Security-Policy:green_circle: 9security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 010 existing vulnerabilities detected
npm/@babel/runtime 7.27.0:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 2badge detected: InProgress
License:green_circle: 10license file detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 026 existing vulnerabilities detected
npm/regenerator-runtime 0.14.1:green_circle: 3.7
Details
CheckScoreReason
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Code-Review:warning: 2Found 4/17 approved changesets -- score normalized to 2
Maintained:warning: 0project is archived
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:warning: 1dependency not pinned by hash detected -- score normalized to 1
License:green_circle: 10license file detected
Security-Policy:green_circle: 9security policy file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 010 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-25T02:55:09Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/58#issuecomment-2764924371", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #60.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-31T02:07:12Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/60#issuecomment-2764924972", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
actions/jfrog/frogbot 33f9a2b4c61c9d85a35a17d5b5b2808e944572da:green_circle: 3.6
Details
CheckScoreReason
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Maintained:green_circle: 1014 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 057 existing vulnerabilities detected
actions/jfrog/frogbot 33f9a2b4c61c9d85a35a17d5b5b2808e944572da:green_circle: 3.6
Details
CheckScoreReason
Code-Review:green_circle: 8Found 25/30 approved changesets -- score normalized to 8
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Maintained:green_circle: 1014 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 7binaries present in source code
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 057 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/frogbot-scan-and-fix.yml
  • .github/workflows/frogbot-scan-pr.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-31T02:07:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/60#issuecomment-2811522989", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #61.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-17T01:55:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/61#issuecomment-2811523341", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
actions/jfrog/frogbot 2d715d2ab6fe44a03c215de6fd399903d64e93e0:green_circle: 3.6
Details
CheckScoreReason
Maintained:green_circle: 911 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 9
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Code-Review:green_circle: 9Found 28/30 approved changesets -- score normalized to 9
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 7binaries present in source code
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 054 existing vulnerabilities detected
actions/jfrog/frogbot 2d715d2ab6fe44a03c215de6fd399903d64e93e0:green_circle: 3.6
Details
CheckScoreReason
Maintained:green_circle: 911 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 9
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
Code-Review:green_circle: 9Found 28/30 approved changesets -- score normalized to 9
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 7binaries present in source code
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 054 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/frogbot-scan-and-fix.yml
  • .github/workflows/frogbot-scan-pr.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-17T01:56:15Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/46#issuecomment-2829210224", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #62.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-25T02:02:07Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/62#issuecomment-2829210380", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/google-github-actions/auth 7b53cdc2a387814ed14eec026287aac689ae8c9b:green_circle: 7.2
Details
CheckScoreReason
Maintained:green_circle: 103 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Pinned-Dependencies:green_circle: 7dependency not pinned by hash detected -- score normalized to 7
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:green_circle: 4branch protection is not maximal on development and all release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 7SAST tool is not run on all commits -- score normalized to 7

Scanned Files

\n
  • .github/workflows/google.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-25T02:02:16Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/62#issuecomment-2833789539", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #63.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-28T01:44:12Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/63#issuecomment-2833789861", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/google-github-actions/auth ba79af03959ebeac9769e648f473a284504d9193:green_circle: 7.3
Details
CheckScoreReason
Maintained:green_circle: 108 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:green_circle: 7dependency not pinned by hash detected -- score normalized to 7
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:green_circle: 4branch protection is not maximal on development and all release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool is not run on all commits -- score normalized to 9

Scanned Files

\n
  • .github/workflows/google.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-28T01:44:33Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/59#issuecomment-2843899884", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #64.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-01T01:48:01Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/64#issuecomment-2843900338", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
npm/@babel/runtime 7.27.1:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/29 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
License:green_circle: 10license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 2badge detected: InProgress
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 025 existing vulnerabilities detected
npm/@babel/runtime 7.27.1:green_circle: 6.3
Details
CheckScoreReason
Code-Review:green_circle: 8Found 24/29 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
License:green_circle: 10license file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 2badge detected: InProgress
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
Security-Policy:green_circle: 10security policy file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:warning: 0project is not fuzzed
Vulnerabilities:warning: 025 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-01T01:48:18Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/61#issuecomment-2885383829", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of jfrog/frogbot exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-16T01:11:13Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/64#issuecomment-2914671840", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of @​babel/runtime exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-28T02:12:50Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/57#issuecomment-2914671855", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of @​babel/runtime exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-28T02:12:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/30#issuecomment-2915025280", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-28T05:50:21Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/54#issuecomment-2957461941", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "user": "https://github.com/dependabot[bot]", + "body": "A newer version of @​types/prop-types exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-10T01:51:26Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/66#issuecomment-2989677978", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 1 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
actions/ForAllSecure/mapi-action 1.*.*:warning: 1.8
Details
CheckScoreReason
Code-Review:green_circle: 6Found 9/13 approved changesets -- score normalized to 6
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:warning: 0dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 015 existing vulnerabilities detected
actions/actions/checkout 4.*.*:green_circle: 6.8
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:green_circle: 57 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Code-Review:green_circle: 10all changesets reviewed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
actions/github/codeql-action/upload-sarif 3.*.* UnknownUnknown

Scanned Files

\n
  • .github/workflows/mayhem-for-api.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-20T03:12:26Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/67#issuecomment-2989692257", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
actions/42Crunch/api-security-audit-action fc01ea7a89e6268875868f9d89598af7a9899ae0:green_circle: 4.3
Details
CheckScoreReason
Token-Permissions:warning: -1No tokens found
Maintained:green_circle: 79 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7
Packaging:warning: -1packaging workflow not detected
Code-Review:warning: 0Found 0/11 approved changesets -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Pinned-Dependencies:warning: 2dependency not pinned by hash detected -- score normalized to 2
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
actions/actions/checkout 4.*.*:green_circle: 6.8
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:green_circle: 57 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Code-Review:green_circle: 10all changesets reviewed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/crunch42.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-20T03:26:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/68#issuecomment-2989746805", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
actions/actions/checkout 4.*.*:green_circle: 6.8
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:green_circle: 57 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Code-Review:green_circle: 10all changesets reviewed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: -1internal error: error during GetBranch(releases/v2): error during branchesHandler.query: internal error: githubv4.Query: Resource not accessible by integration
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
actions/github/codeql-action/upload-sarif 3.*.* UnknownUnknown
actions/github/ossar-action 1.*.* UnknownUnknown

Scanned Files

\n
  • .github/workflows/ossar.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-20T04:17:47Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/70#issuecomment-3012385304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-27T09:44:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/74#issuecomment-3014032229", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-27T18:30:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/75#issuecomment-3021546286", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-01T02:47:19Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/63#issuecomment-3043559351", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-07T05:51:27Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/52#issuecomment-3043559396", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-07T05:51:28Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/51#issuecomment-3043559448", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-07T05:51:30Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/50#issuecomment-3043559489", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-07T05:51:31Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/48#issuecomment-3043559540", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-07T05:51:32Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/65#issuecomment-3060684441", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-11T05:51:47Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/63#issuecomment-3067925210", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-14T05:52:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/52#issuecomment-3067925243", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-14T05:52:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/51#issuecomment-3067925280", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-14T05:52:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/50#issuecomment-3067925304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-14T05:52:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/48#issuecomment-3067925335", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-14T05:52:56Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/76#issuecomment-3072034288", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

.github/workflows/octopusdeploy.yml

\n
PackageVersionLicenseIssue Type
OctopusDeploy/deploy-release-action32954ab4aca322ad8e1f134bd0bd6d53d6959b67NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/OctopusDeploy/deploy-release-action 32954ab4aca322ad8e1f134bd0bd6d53d6959b67:green_circle: 6.8
Details
CheckScoreReason
Maintained:green_circle: 1019 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Code-Review:green_circle: 10all changesets reviewed
Packaging:warning: -1packaging workflow not detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Pinned-Dependencies:warning: 2dependency not pinned by hash detected -- score normalized to 2
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 9license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:green_circle: 55 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/octopusdeploy.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-15T05:33:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/77#issuecomment-3072045637", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

.github/workflows/octopusdeploy.yml

\n
PackageVersionLicenseIssue Type
OctopusDeploy/create-release-action1c58525ed52e1af84afa68eb495486a52661d6daNullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/OctopusDeploy/create-release-action 1c58525ed52e1af84afa68eb495486a52661d6da:green_circle: 6.8
Details
CheckScoreReason
Maintained:green_circle: 1021 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 10no binaries found in the repo
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 10all changesets reviewed
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 2dependency not pinned by hash detected -- score normalized to 2
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 9license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 10security policy file detected
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:green_circle: 55 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/octopusdeploy.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-15T05:39:32Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/61#issuecomment-3072072706", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-15T05:53:14Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/78#issuecomment-3072098121", + "pull_request": "https://github.com/xc-link/networklist-org/pull/78", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/facebook/pyre-action 12b8d923443ea66cb657facc2e5faac1c8c86e64:green_circle: 4.1
Details
CheckScoreReason
Dangerous-Workflow:warning: -1no workflows found
Packaging:warning: -1packaging workflow not detected
Code-Review:warning: 2Found 2/9 approved changesets -- score normalized to 2
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Pinned-Dependencies:warning: -1no dependencies found
Token-Permissions:warning: -1No tokens found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:warning: 0project is not fuzzed
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Security-Policy:green_circle: 9security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

\n
  • .github/workflows/pyre.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-15T06:03:32Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/79#issuecomment-3072155546", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
actions/actions/setup-python 5.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 810 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 012 existing vulnerabilities detected
actions/actions/setup-python 5.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 810 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 012 existing vulnerabilities detected
actions/actions/setup-python 5.*.*:green_circle: 5.4
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 810 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Security-Policy:green_circle: 9security policy file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 012 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/mobsf.yml
  • .github/workflows/python-app.yml
  • .github/workflows/python-package-conda.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-15T06:21:11Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/80#issuecomment-3094372969", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-20T09:02:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/61#issuecomment-3101171461", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-22T05:53:18Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/81#issuecomment-3105440931", + "pull_request": "https://github.com/xc-link/networklist-org/pull/81", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n
PackageVersionScoreDetails
actions/slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml 2.1.0:green_circle: 7.7
Details
CheckScoreReason
Maintained:green_circle: 105 commit(s) and 29 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 10security policy file detected
Code-Review:green_circle: 9Found 22/23 approved changesets -- score normalized to 9
Binary-Artifacts:green_circle: 10no binaries found in the repo
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
CII-Best-Practices:green_circle: 5badge detected: Passing
SAST:green_circle: 10SAST tool is run on all commits
Signed-Releases:green_circle: 105 out of the last 5 releases have a total of 5 signed artifacts.
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: 2branch protection is not maximal on development and all release branches
CI-Tests:green_circle: 1027 out of 27 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 26 contributing companies or organizations
Vulnerabilities:warning: 017 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/generator-generic-ossf-slsa3-publish.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-07-23T02:23:19Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/64#issuecomment-3149231648", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/57#issuecomment-3149231697", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/56#issuecomment-3149231743", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:44Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/55#issuecomment-3149231791", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/53#issuecomment-3149231850", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/49#issuecomment-3149231910", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-04T06:01:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/30#issuecomment-3166663365", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-08T05:55:31Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/54#issuecomment-3170382568", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-09T05:49:45Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/64#issuecomment-3177802023", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/57#issuecomment-3177802031", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "user": "https://github.com/dependabot[bot]", + "body": "This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.\n\nTo ignore these dependencies, configure [ignore rules](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) in dependabot.yml", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/56#issuecomment-3177802079", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/55#issuecomment-3177802105", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:40Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/53#issuecomment-3177802163", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/49#issuecomment-3177802194", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T05:49:43Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/82#issuecomment-3178704959", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n
Scorecard details\n\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.2.1:green_circle: 6.9
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
License:green_circle: 9license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/typescript 5.9.2:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Packaging:warning: -1packaging workflow not detected
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
License:green_circle: 10license file detected
Branch-Protection:green_circle: 8branch protection is not maximal on development and all release branches
Binary-Artifacts:green_circle: 10no binaries found in the repo
SAST:green_circle: 9SAST tool detected but not run on all commits
Pinned-Dependencies:green_circle: 6dependency not pinned by hash detected -- score normalized to 6
Vulnerabilities:green_circle: 82 existing vulnerabilities detected
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
Contributors:green_circle: 10project has 35 contributing companies or organizations
npm/undici-types 7.10.0:green_circle: 8.1
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 9Found 23/24 approved changesets -- score normalized to 9
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool detected but not run on all commits
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations
npm/@emnapi/runtime 1.4.5:green_circle: 4.3
Details
CheckScoreReason
Maintained:green_circle: 1015 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10
Code-Review:warning: 0Found 1/25 approved changesets -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
License:green_circle: 10license file detected
Security-Policy:warning: 0security policy file not detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-darwin-arm64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-darwin-x64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-libvips-darwin-arm64 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-darwin-x64 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linux-arm 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linux-arm64 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linux-ppc64 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linux-s390x 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-arm64 1.1.0 UnknownUnknown
npm/@img/sharp-libvips-linuxmusl-x64 1.1.0 UnknownUnknown
npm/@img/sharp-linux-arm 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-linux-arm64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-linux-s390x 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-linuxmusl-arm64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-linuxmusl-x64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-wasm32 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-win32-arm64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-win32-ia32 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@img/sharp-win32-x64 0.34.2:green_circle: 6.6
Details
CheckScoreReason
Code-Review:warning: 0Found 2/30 approved changesets -- score normalized to 0
Maintained:green_circle: 1030 commit(s) and 23 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
npm/@next/swc-darwin-arm64 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-darwin-x64 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-linux-arm64-gnu 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-linux-arm64-musl 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-linux-x64-musl 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-win32-arm64-msvc 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@next/swc-win32-x64-msvc 15.3.3:green_circle: 5.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Packaging:green_circle: 10packaging workflow detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:warning: 0binaries present in source code
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Fuzzing:green_circle: 10project is fuzzed
Vulnerabilities:warning: 0229 existing vulnerabilities detected
npm/@types/node 24.2.1:green_circle: 6.9
Details
CheckScoreReason
Code-Review:green_circle: 8Found 26/30 approved changesets -- score normalized to 8
Maintained:green_circle: 1030 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
License:green_circle: 9license file detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.10.0:green_circle: 8.1
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 9Found 23/24 approved changesets -- score normalized to 9
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 3dependency not pinned by hash detected -- score normalized to 3
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool detected but not run on all commits
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T10:15:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/83#issuecomment-3178969351", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 5 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/csstype 3.1.3:warning: 2.9
Details
CheckScoreReason
Code-Review:warning: 1Found 3/25 approved changesets -- score normalized to 1
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 012 existing vulnerabilities detected
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0130 existing vulnerabilities detected
npm/jss-plugin-global 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0130 existing vulnerabilities detected
npm/typescript 5.9.2:green_circle: 8.5
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Branch-Protection:green_circle: 8branch protection is not maximal on development and all release branches
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Pinned-Dependencies:green_circle: 6dependency not pinned by hash detected -- score normalized to 6
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
Contributors:green_circle: 10project has 35 contributing companies or organizations
npm/jss 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0130 existing vulnerabilities detected
npm/jss-plugin-global 10.10.0:warning: 2.1
Details
CheckScoreReason
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Dangerous-Workflow:warning: -1no workflows found
Token-Permissions:warning: -1No tokens found
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 3Found 10/30 approved changesets -- score normalized to 3
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: -1no dependencies found
Security-Policy:warning: 0security policy file not detected
License:green_circle: 10license file detected
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
Fuzzing:warning: 0project is not fuzzed
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0130 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T11:44:09Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/84#issuecomment-3179103390", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/fbjs 3.0.5:green_circle: 3.8
Details
CheckScoreReason
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 4Found 5/12 approved changesets -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 9security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 037 existing vulnerabilities detected
npm/typescript 5.9.2:green_circle: 8.5
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Branch-Protection:green_circle: 8branch protection is not maximal on development and all release branches
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Pinned-Dependencies:green_circle: 6dependency not pinned by hash detected -- score normalized to 6
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
Contributors:green_circle: 10project has 35 contributing companies or organizations
npm/ua-parser-js 1.0.41:green_circle: 8.1
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 2branch protection is not maximal on development and all release branches
CI-Tests:green_circle: 84 out of 5 merged PRs checked by a CI test -- score normalized to 8
CII-Best-Practices:green_circle: 5badge detected: passing
Code-Review:warning: 15 out of last 30 changesets reviewed before merge -- score normalized to 1
Contributors:green_circle: 1014 different organizations found -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed with [OSSFuzz]
License:green_circle: 10license file detected
Maintained:green_circle: 1011 commit(s) out of 30 and 4 issue activity out of 30 found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10publishing workflow detected
Pinned-Dependencies:green_circle: 9dependency not pinned by hash detected -- score normalized to 9
SAST:green_circle: 7SAST tool detected but not run on all commmits
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9non read-only tokens detected in GitHub workflows
Vulnerabilities:warning: -1internal error: vulnerabilitiesClient.ListUnfixedVulnerabilities: osvscanner.DoScan: vulnerabilities found
npm/fbjs 3.0.5:green_circle: 3.8
Details
CheckScoreReason
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 4Found 5/12 approved changesets -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
License:green_circle: 10license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Security-Policy:green_circle: 9security policy file detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 037 existing vulnerabilities detected
npm/ua-parser-js 1.0.41:green_circle: 8.1
Details
CheckScoreReason
Binary-Artifacts:green_circle: 10no binaries found in the repo
Branch-Protection:warning: 2branch protection is not maximal on development and all release branches
CI-Tests:green_circle: 84 out of 5 merged PRs checked by a CI test -- score normalized to 8
CII-Best-Practices:green_circle: 5badge detected: passing
Code-Review:warning: 15 out of last 30 changesets reviewed before merge -- score normalized to 1
Contributors:green_circle: 1014 different organizations found -- score normalized to 10
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Fuzzing:green_circle: 10project is fuzzed with [OSSFuzz]
License:green_circle: 10license file detected
Maintained:green_circle: 1011 commit(s) out of 30 and 4 issue activity out of 30 found in the last 90 days -- score normalized to 10
Packaging:green_circle: 10publishing workflow detected
Pinned-Dependencies:green_circle: 9dependency not pinned by hash detected -- score normalized to 9
SAST:green_circle: 7SAST tool detected but not run on all commmits
Security-Policy:green_circle: 10security policy file detected
Signed-Releases:warning: -1no releases found
Token-Permissions:green_circle: 9non read-only tokens detected in GitHub workflows
Vulnerabilities:warning: -1internal error: vulnerabilitiesClient.ListUnfixedVulnerabilities: osvscanner.DoScan: vulnerabilities found

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T12:23:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/85#issuecomment-3179103409", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
npm/ws 8.18.3:green_circle: 5.8
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 62 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Code-Review:warning: 2Found 6/30 approved changesets -- score normalized to 2
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed
npm/ws 8.18.3:green_circle: 5.8
Details
CheckScoreReason
Packaging:warning: -1packaging workflow not detected
Maintained:green_circle: 62 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts:green_circle: 10no binaries found in the repo
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Code-Review:warning: 2Found 6/30 approved changesets -- score normalized to 2
Token-Permissions:green_circle: 10GitHub workflow tokens follow principle of least privilege
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
License:green_circle: 10license file detected
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Signed-Releases:warning: -1no releases found
Fuzzing:warning: 0project is not fuzzed

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-12T12:23:58Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/54#issuecomment-3194150615", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "user": "https://github.com/dependabot[bot]", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-17T05:49:10Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/86#issuecomment-3194927724", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 2 packages with OpenSSF Scorecard issues.
\nSee the Details below.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/react-transition-group 4.4.5:warning: 2.8
Details
CheckScoreReason
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 4Found 8/17 approved changesets -- score normalized to 4
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
License:green_circle: 9license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0161 existing vulnerabilities detected
npm/typescript 5.9.2:green_circle: 8.5
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 10security policy file detected
Packaging:warning: -1packaging workflow not detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Branch-Protection:green_circle: 8branch protection is not maximal on development and all release branches
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Pinned-Dependencies:green_circle: 6dependency not pinned by hash detected -- score normalized to 6
SAST:green_circle: 9SAST tool detected but not run on all commits
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
Contributors:green_circle: 10project has 35 contributing companies or organizations
npm/react-transition-group 4.4.5:warning: 2.8
Details
CheckScoreReason
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 4Found 8/17 approved changesets -- score normalized to 4
Binary-Artifacts:green_circle: 10no binaries found in the repo
Maintained:warning: 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Security-Policy:warning: 0security policy file not detected
License:green_circle: 9license file detected
Fuzzing:warning: 0project is not fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Vulnerabilities:warning: 0161 existing vulnerabilities detected

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-18T02:48:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/82#issuecomment-3194930763", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #87.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-18T02:50:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/87#issuecomment-3194930986", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.3.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/typescript 5.9.2:green_circle: 8.5
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Packaging:warning: -1packaging workflow not detected
Code-Review:green_circle: 10all changesets reviewed
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:green_circle: 9detected GitHub workflow tokens with excessive permissions
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Signed-Releases:warning: 0Project has not signed or included provenance with any releases.
Binary-Artifacts:green_circle: 10no binaries found in the repo
License:green_circle: 10license file detected
Branch-Protection:green_circle: 8branch protection is not maximal on development and all release branches
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Pinned-Dependencies:green_circle: 6dependency not pinned by hash detected -- score normalized to 6
SAST:green_circle: 9SAST tool detected but not run on all commits
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 929 out of 30 merged PRs checked by a CI test -- score normalized to 9
Contributors:green_circle: 10project has 34 contributing companies or organizations
npm/undici-types 7.10.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 8binaries present in source code
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: -1no releases found
SAST:green_circle: 10SAST tool is run on all commits
Fuzzing:green_circle: 10project is fuzzed
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations
npm/@types/node 24.3.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.10.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 8binaries present in source code
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: -1no releases found
SAST:green_circle: 10SAST tool is run on all commits
Fuzzing:green_circle: 10project is fuzzed
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-18T02:51:01Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/68#issuecomment-3199289191", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-19T05:47:18Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/67#issuecomment-3199289223", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-19T05:47:20Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/66#issuecomment-3199289265", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-19T05:47:21Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/69#issuecomment-3218917107", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-25T05:48:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/74#issuecomment-3226813006", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-27T05:46:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/70#issuecomment-3226813058", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-27T05:46:19Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/75#issuecomment-3238976061", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-30T05:45:56Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/89#issuecomment-3239224761", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "user": "https://github.com/github-actions[bot]", + "body": "# Dependency Review\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-08-30T12:12:05Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/70#issuecomment-3252195681", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "user": "https://github.com/xc-link", + "body": "你好,\r\n不要随意关闭PR,请给出影响安全的充足理由。\r\n\r\n\r\n\r\n发自我的iPhone\r\n\r\n\r\n------------------ Original ------------------\r\nFrom: github-actions[bot] ***@***.***>\r\nDate: Thu,Sep 4,2025 1:46 PM\r\nTo: xc-link/networklist-org ***@***.***>\r\nCc: xc ***@***.***>, Author ***@***.***>\r\nSubject: Re: [xc-link/networklist-org] Update d.yml (PR #70)", + "formatter": "email", + "reactions": [], + "created_at": "2025-09-04T06:56:32Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/74#issuecomment-3252204992", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "user": "https://github.com/xc-link", + "body": "你好,\r\n不要随意关闭PR,只要不影响安全前提下,建议以升级开发为最终目标,向前向上开发。\r\n\r\n\r\n\r\n发自我的iPhone\r\n\r\n\r\n------------------ Original ------------------\r\nFrom: github-actions[bot] ***@***.***>\r\nDate: Thu,Sep 4,2025 1:46 PM\r\nTo: xc-link/networklist-org ***@***.***>\r\nCc: xc ***@***.***>, Author ***@***.***>\r\nSubject: Re: [xc-link/networklist-org] Update apisec-scan.yml (PR #74)\r\n\r\n\r\n\r\n\r\n\r\n \r\nClosed #74.\r\n \r\n—\r\nReply to this email directly, view it on GitHub, or unsubscribe.\r\nYou are receiving this because you authored the thread.Message ID: ***@***.***>", + "formatter": "email", + "reactions": [], + "created_at": "2025-09-04T07:00:03Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/74#issuecomment-3252273117", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "user": "https://github.com/xc-link", + "body": "你好,\r\naction(bot),团队全员拉练跑步五公里,以激励一下大家的工作热情。\r\n\r\n\r\n\r\n发自我的iPhone\r\n\r\n\r\n------------------ Original ------------------\r\nFrom: 蔡立勇 ***@***.***>\r\nDate: Thu,Sep 4,2025 2:59 PM\r\nTo: reply+BLE4HWXNIO6MX4CRW4HN5BGGYUEMLEVBNHHL3RAYYY ***@***.***>, xc-link/networklist-org ***@***.***>\r\nCc: Author ***@***.***>\r\nSubject: Re: [xc-link/networklist-org] Update apisec-scan.yml (PR #74)\r\n\r\n\r\n\r\n你好,\r\n不要随意关闭PR,只要不影响安全前提下,建议以升级开发为最终目标,向前向上开发。\r\n\r\n\r\n\r\n发自我的iPhone\r\n\r\n\r\n------------------ Original ------------------\r\nFrom: github-actions[bot] ***@***.***>\r\nDate: Thu,Sep 4,2025 1:46 PM\r\nTo: xc-link/networklist-org ***@***.***>\r\nCc: xc ***@***.***>, Author ***@***.***>\r\nSubject: Re: [xc-link/networklist-org] Update apisec-scan.yml (PR #74)\r\n\r\n\r\n\r\n\r\n\r\n \r\nClosed #74.\r\n \r\n—\r\nReply to this email directly, view it on GitHub, or unsubscribe.\r\nYou are receiving this because you authored the thread.Message ID: ***@***.***>", + "formatter": "email", + "reactions": [], + "created_at": "2025-09-04T07:21:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/79#issuecomment-3256713104", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #90.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-05T01:14:33Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/90#issuecomment-3256714173", + "pull_request": "https://github.com/xc-link/networklist-org/pull/90", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n
PackageVersionScoreDetails
actions/actions/setup-python 6.*.*:green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1014 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/setup-python 6.*.*:green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1014 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected
actions/actions/setup-python 6.*.*:green_circle: 5.8
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1014 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 10no binaries found in the repo
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 10license file detected
Packaging:warning: -1packaging workflow not detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Fuzzing:warning: 0project is not fuzzed
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Signed-Releases:warning: -1no releases found
Pinned-Dependencies:warning: 0dependency not pinned by hash detected -- score normalized to 0
Security-Policy:green_circle: 9security policy file detected
Branch-Protection:warning: 0branch protection not enabled on development/release branches
SAST:green_circle: 10SAST tool is run on all commits
Vulnerabilities:warning: 28 existing vulnerabilities detected

Scanned Files

\n
  • .github/workflows/mobsf.yml
  • .github/workflows/python-app.yml
  • .github/workflows/python-package-conda.yml
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-05T01:14:43Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/87#issuecomment-3256724384", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #91.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-05T01:16:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/91#issuecomment-3256725017", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.3.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/@types/node 24.3.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-05T01:16:25Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/91#issuecomment-3290173427", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #92.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-15T01:23:28Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/92#issuecomment-3290173719", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 2 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

package-lock.json

\n
PackageVersionLicenseIssue Type
@types/node24.4.0NullUnknown License
\n

yarn.lock

\n
PackageVersionLicenseIssue Type
@types/node24.4.0NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.4.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.11.0:green_circle: 8.3
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations
npm/@types/node 24.4.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.11.0:green_circle: 8.3
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 77 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-15T01:23:43Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/92#issuecomment-3294505514", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #93.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-16T01:19:39Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/93#issuecomment-3294505676", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 2 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

package-lock.json

\n
PackageVersionLicenseIssue Type
@types/node24.5.0NullUnknown License
\n

yarn.lock

\n
PackageVersionLicenseIssue Type
@types/node24.5.0NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.5.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Code-Review:green_circle: 10all changesets reviewed
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Packaging:green_circle: 10packaging workflow detected
Signed-Releases:warning: -1no releases found
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.5.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Dependency-Update-Tool:green_circle: 10update tool detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Code-Review:green_circle: 10all changesets reviewed
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Packaging:green_circle: 10packaging workflow detected
Signed-Releases:warning: -1no releases found
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-16T01:19:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/93#issuecomment-3300846805", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #94.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-17T01:16:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/94#issuecomment-3300847019", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 2 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

package-lock.json

\n
PackageVersionLicenseIssue Type
@types/node24.5.1NullUnknown License
\n

yarn.lock

\n
PackageVersionLicenseIssue Type
@types/node24.5.1NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.5.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 9security policy file detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: -1no releases found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Packaging:green_circle: 10packaging workflow detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.5.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Dependency-Update-Tool:green_circle: 10update tool detected
Maintained:green_circle: 1030 commit(s) and 13 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Security-Policy:green_circle: 9security policy file detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Signed-Releases:warning: -1no releases found
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Packaging:green_circle: 10packaging workflow detected
License:green_circle: 10license file detected
Fuzzing:green_circle: 10project is fuzzed
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-17T01:17:00Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/94#issuecomment-3305034808", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #95.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-18T01:09:57Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/95#issuecomment-3305034977", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 2 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

package-lock.json

\n
PackageVersionLicenseIssue Type
@types/node24.5.2NullUnknown License
\n

yarn.lock

\n
PackageVersionLicenseIssue Type
@types/node24.5.2NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.5.2:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Code-Review:green_circle: 10all changesets reviewed
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:green_circle: 10project is fuzzed
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.5.2:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.12.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Code-Review:green_circle: 10all changesets reviewed
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Binary-Artifacts:green_circle: 8binaries present in source code
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Fuzzing:green_circle: 10project is fuzzed
Signed-Releases:warning: -1no releases found
Packaging:green_circle: 10packaging workflow detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 9SAST tool detected but not run on all commits
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-18T01:10:05Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/80#issuecomment-3310683641", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "user": "https://github.com/github-actions[bot]", + "body": "Stale pull request message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-19T05:46:23Z" + } +] \ No newline at end of file diff --git a/issue_comments_000003.json b/issue_comments_000003.json new file mode 100644 index 000000000..7b1a410d4 --- /dev/null +++ b/issue_comments_000003.json @@ -0,0 +1,452 @@ +[ + { + "type": "issue_comment", + "url": "https://github.com/xc-link/18-networklist-org/pull/1#issuecomment-2992410242", + "pull_request": "https://github.com/xc-link/18-networklist-org/pull/1", + "user": "https://github.com/github-actions[bot]", + "body": "\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n
Fails
:no_entry_sign:\n\n \"[Create codeql.yml](https://api.github.com/repos/xc-link/cli/git/commits/3cda59640cd9d1cc88657d82cde92aa55b06e023)\" is not using a valid commit message format. For commit guidelines, see: [CONTRIBUTING](https://github.com/snyk/snyk/blob/main/CONTRIBUTING.md#creating-commits).\n
\n\n\n\n\n

\n Generated by :no_entry_sign: dangerJS against 3cda59640cd9d1cc88657d82cde92aa55b06e023\n

\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-20T18:02:38Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#issuecomment-4133828447", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-03-26T11:28:01Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/BaiduSpider/pull/1#issuecomment-2702339908", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #3.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-05T23:52:31Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/17-networklist-org/pull/1#issuecomment-2863425830", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-08T15:15:52Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#issuecomment-3391578851", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #5.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-10T18:02:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#issuecomment-3915742867", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #8.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-02-17T16:28:53Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/72-networklist-org/pull/2#issuecomment-4131099890", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #5.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-03-26T02:21:46Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#issuecomment-4147477163", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #6.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-03-28T07:06:07Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/24-networklist-org/pull/1#issuecomment-2810947965", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-16T22:22:42Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/issues/65#issuecomment-3314609388", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "user": "https://github.com/github-actions[bot]", + "body": "Stale issue message", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-20T05:46:12Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/96#issuecomment-3349585401", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

\nNone\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-30T01:15:55Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/95#issuecomment-3349738838", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #97.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-30T02:47:54Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/97#issuecomment-3349739087", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.6.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 10SAST tool is run on all commits
Packaging:green_circle: 10packaging workflow detected
Signed-Releases:warning: -1no releases found
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.6.0:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Maintained:green_circle: 1030 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool:green_circle: 10update tool detected
Security-Policy:green_circle: 9security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 10SAST tool is run on all commits
Packaging:green_circle: 10packaging workflow detected
Signed-Releases:warning: -1no releases found
Fuzzing:green_circle: 10project is fuzzed
License:green_circle: 10license file detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-09-30T02:48:03Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/97#issuecomment-3354337896", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #98.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-01T01:24:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/98#issuecomment-3354338148", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\nThe following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 2 package(s) with unknown licenses.
\nSee the Details below.

License Issues

\n

package-lock.json

\n
PackageVersionLicenseIssue Type
@types/node24.6.1NullUnknown License
\n

yarn.lock

\n
PackageVersionLicenseIssue Type
@types/node24.6.1NullUnknown License
\n

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.6.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:green_circle: 10SAST tool is run on all commits
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.6.1:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Maintained:green_circle: 1030 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
Packaging:green_circle: 10packaging workflow detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
SAST:green_circle: 10SAST tool is run on all commits
Fuzzing:green_circle: 10project is fuzzed
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-01T01:24:30Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/98#issuecomment-3363801334", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #99.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-03T01:17:32Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/99#issuecomment-3363801555", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "user": "https://github.com/github-actions[bot]", + "body": "

Dependency Review

\n✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

\n\n\n \n\n \n\n \n\n \n
PackageVersionScoreDetails
npm/@types/node 24.6.2:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 10SAST tool is run on all commits
Packaging:green_circle: 10packaging workflow detected
Fuzzing:green_circle: 10project is fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations
npm/@types/node 24.6.2:green_circle: 6.7
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 6Found 19/29 approved changesets -- score normalized to 6
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
License:green_circle: 9license file detected
Packaging:warning: -1packaging workflow not detected
Security-Policy:green_circle: 10security policy file detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration
Signed-Releases:warning: -1no releases found
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:warning: 0SAST tool is not run on all commits -- score normalized to 0
Binary-Artifacts:green_circle: 10no binaries found in the repo
Pinned-Dependencies:green_circle: 8dependency not pinned by hash detected -- score normalized to 8
Fuzzing:warning: 0project is not fuzzed
npm/undici-types 7.13.0:green_circle: 8.3
Details
CheckScoreReason
Maintained:green_circle: 1030 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10
Code-Review:green_circle: 10all changesets reviewed
Security-Policy:green_circle: 9security policy file detected
Dependency-Update-Tool:green_circle: 10update tool detected
Dangerous-Workflow:green_circle: 10no dangerous workflow patterns detected
Binary-Artifacts:green_circle: 8binaries present in source code
Token-Permissions:warning: 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies:green_circle: 4dependency not pinned by hash detected -- score normalized to 4
License:green_circle: 10license file detected
CII-Best-Practices:warning: 0no effort to earn an OpenSSF best practices badge detected
Vulnerabilities:green_circle: 100 existing vulnerabilities detected
SAST:green_circle: 10SAST tool is run on all commits
Packaging:green_circle: 10packaging workflow detected
Fuzzing:green_circle: 10project is fuzzed
Signed-Releases:warning: -1no releases found
Branch-Protection:warning: -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests:green_circle: 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors:green_circle: 10project has 76 contributing companies or organizations

Scanned Files

\n
  • package-lock.json
  • yarn.lock
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-03T01:17:41Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/99#issuecomment-3374811904", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #100.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-07T01:19:09Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/100#issuecomment-3387954058", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #101.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-10T01:13:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/101#issuecomment-3395588461", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #102.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-13T01:20:49Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/102#issuecomment-3413434761", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #103.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-17T01:19:19Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/103#issuecomment-3420190421", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #104.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-20T01:19:33Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/104#issuecomment-3424303686", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #105.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-21T01:15:33Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/105#issuecomment-3459260117", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #106.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-10-29T01:20:25Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/96#issuecomment-3519411062", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #107.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-11-12T01:14:15Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/106#issuecomment-4474194790", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #108.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-05-18T04:03:04Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/77#issuecomment-4474201876", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #109.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-05-18T04:04:18Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/85#issuecomment-4474204136", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #110.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-05-18T04:04:31Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/networklist-org/pull/76#issuecomment-4474217702", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #111.", + "formatter": "markdown", + "reactions": [], + "created_at": "2026-05-18T04:06:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/70-networklist-org/pull/4#issuecomment-2779706932", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #11.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-04T20:50:48Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/70-networklist-org/pull/6#issuecomment-2810980551", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #15.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-16T22:39:22Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/68-networklist-org/pull/1#issuecomment-2744483414", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-21T21:29:10Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/68-networklist-org/pull/2#issuecomment-2819909336", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #3.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-22T02:37:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/37-networklist-org/pull/1#issuecomment-3555256597", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-11-20T00:50:43Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/20-networklist-org/pull/2#issuecomment-2993483889", + "pull_request": "https://github.com/xc-link/20-networklist-org/pull/2", + "user": "https://github.com/github-actions[bot]", + "body": "\n### Bundle Stats\n\nHey there, this message comes from a [GitHub action](https://github.com/github/webpack-bundlesize-compare-action) that helps you and reviewers to understand how these changes affect the size of this project's bundle.\n\nAs this PR is updated, I'll keep you updated on how the bundle size is impacted.\n\n**Total**\n\nFiles count | Total bundle size | % Changed\n----------- | ----------------- | ---------\n0 → 10 | 0 B → 646.32 kB (+646.32 kB) | -\n\n
\nView detailed bundle breakdown\n\n
\n\n**Added**\n\nAsset | File Size | % Changed\n----- | --------- | ---------\nweb3.min.js | 0 B → 627.37 kB (+627.37 kB) | -\n../lib/commonjs/index.d.ts | 0 B → 8.72 kB (+8.72 kB) | -\n../lib/commonjs/accounts.d.ts | 0 B → 3.19 kB (+3.19 kB) | -\n../lib/commonjs/types.d.ts | 0 B → 2.73 kB (+2.73 kB) | -\n../lib/commonjs/web3.d.ts | 0 B → 1.38 kB (+1.38 kB) | -\n../lib/commonjs/web3_eip6963.d.ts | 0 B → 1.27 kB (+1.27 kB) | -\n../lib/commonjs/abi.d.ts | 0 B → 1.14 kB (+1.14 kB) | -\n../lib/commonjs/eth.exports.d.ts | 0 B → 280 B (+280 B) | -\n../lib/commonjs/providers.exports.d.ts | 0 B → 183 B (+183 B) | -\n../lib/commonjs/version.d.ts | 0 B → 60 B (+60 B) | -\n\n**Removed**\n\nNo assets were removed\n\n**Bigger**\n\nNo assets were bigger\n\n**Smaller**\n\nNo assets were smaller\n\n**Unchanged**\n\nNo assets were unchanged\n\n
\n
\n\n\n", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-21T09:27:51Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/20-networklist-org/pull/2#issuecomment-2993486229", + "pull_request": "https://github.com/xc-link/20-networklist-org/pull/2", + "user": "https://github.com/codecov-commenter", + "body": "## Welcome to [Codecov](https://codecov.io?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=xc) :tada:\n\nOnce you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.\n\n:information_source: You can also turn on [project coverage checks](https://docs.codecov.com/docs/common-recipe-list#set-project-coverage-checks-on-a-pull-request) and [project coverage reporting on Pull Request comment](https://docs.codecov.com/docs/common-recipe-list#show-project-coverage-changes-on-the-pull-request-comment)\n\nThanks for integrating Codecov - We've got you covered :open_umbrella:", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-21T09:31:30Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/40-networklist-org/pull/1#issuecomment-3555019158", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-11-19T23:11:25Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/vcpkg/pull/1#issuecomment-2702784031", + "pull_request": "https://github.com/xc-link/vcpkg/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-03-06T04:38:09Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/66-networklist-org/pull/7#issuecomment-2837238111", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #10.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-29T02:08:01Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/39-networklist-org/pull/1#issuecomment-2810891491", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #3.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-16T21:49:29Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/34-networklist-org/pull/2#issuecomment-3555061903", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #4.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-11-19T23:26:20Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/39-networklist-org/pull/2#issuecomment-3555218585", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #6.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-11-20T00:35:17Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/63-networklist-org/pull/1#issuecomment-2815848237", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #2.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-04-18T16:58:23Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/63-networklist-org/pull/2#issuecomment-2923220097", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #3.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-05-30T18:56:37Z" + }, + { + "type": "issue_comment", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#issuecomment-3013545573", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "body": "Superseded by #4.", + "formatter": "markdown", + "reactions": [], + "created_at": "2025-06-27T16:00:41Z" + } +] \ No newline at end of file diff --git a/issue_events_000001.json b/issue_events_000001.json new file mode 100644 index 000000000..1bc1ca888 --- /dev/null +++ b/issue_events_000001.json @@ -0,0 +1,1118 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-14438476928", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "ready_for_review", + "created_at": "2024-09-28T01:42:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-14438477701", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "42c84ef6e1dc9d3d9d31b727dd66e2fc14a19154", + "created_at": "2024-09-28T01:43:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-14438477706", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-09-28T01:43:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-14438477750", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-09-28T01:43:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-14438477755", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "referenced", + "commit_id": "42c84ef6e1dc9d3d9d31b727dd66e2fc14a19154", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-09-28T01:43:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-14528493462", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-14528493466", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-14528493705", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-14528493707", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-14528493925", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-14528493929", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-14528494049", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-14528494050", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-14528494369", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-14528494376", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-05T17:36:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-14532813291", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/xc-link", + "event": "base_ref_force_pushed", + "ref": "main", + "before_commit_oid": "7af9aea5a2e56aa094a1c973d64e2555359e9836", + "after_commit_oid": "9b34289da8437920fdbe4428768edd01a7b503eb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-10-07T02:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-14532813302", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/xc-link", + "event": "base_ref_force_pushed", + "ref": "main", + "before_commit_oid": "7af9aea5a2e56aa094a1c973d64e2555359e9836", + "after_commit_oid": "9b34289da8437920fdbe4428768edd01a7b503eb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-10-07T02:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-14532813304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/xc-link", + "event": "base_ref_force_pushed", + "ref": "main", + "before_commit_oid": "7af9aea5a2e56aa094a1c973d64e2555359e9836", + "after_commit_oid": "9b34289da8437920fdbe4428768edd01a7b503eb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-10-07T02:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-14532813305", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/xc-link", + "event": "base_ref_force_pushed", + "ref": "main", + "before_commit_oid": "7af9aea5a2e56aa094a1c973d64e2555359e9836", + "after_commit_oid": "9b34289da8437920fdbe4428768edd01a7b503eb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-10-07T02:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-14532813320", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/xc-link", + "event": "base_ref_force_pushed", + "ref": "main", + "before_commit_oid": "7af9aea5a2e56aa094a1c973d64e2555359e9836", + "after_commit_oid": "9b34289da8437920fdbe4428768edd01a7b503eb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-10-07T02:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/8#event-14618415359", + "pull_request": "https://github.com/xc-link/networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-13T02:38:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/8#event-14618415361", + "pull_request": "https://github.com/xc-link/networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-13T02:38:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/8#event-14619906272", + "pull_request": "https://github.com/xc-link/networklist-org/pull/8", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-10-13T15:18:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/8#event-14619906282", + "pull_request": "https://github.com/xc-link/networklist-org/pull/8", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-10-13T15:18:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/9#event-14622626768", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/9#event-14622626774", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/10#event-14622626901", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/10#event-14622626903", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-14622627015", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-14622627020", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/12#event-14622627118", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/12#event-14622627120", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/13#event-14622627249", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/13#event-14622627250", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-10-14T01:40:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/14#event-14645629298", + "pull_request": "https://github.com/xc-link/networklist-org/pull/14", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-14T20:26:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/14#event-14645629304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/14", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-14T20:26:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/14#event-14650177865", + "pull_request": "https://github.com/xc-link/networklist-org/pull/14", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-10-15T03:49:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/14#event-14650177879", + "pull_request": "https://github.com/xc-link/networklist-org/pull/14", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-10-15T03:49:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/15#event-14769148537", + "pull_request": "https://github.com/xc-link/networklist-org/pull/15", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-21T18:02:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/15#event-14769148547", + "pull_request": "https://github.com/xc-link/networklist-org/pull/15", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-21T18:02:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/15#event-14773434435", + "pull_request": "https://github.com/xc-link/networklist-org/pull/15", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-10-22T01:06:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/15#event-14773434457", + "pull_request": "https://github.com/xc-link/networklist-org/pull/15", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-10-22T01:06:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/16#event-15023444315", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/16#event-15023444321", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/17#event-15023451609", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/17#event-15023451621", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/18#event-15023471379", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/18#event-15023471384", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/19#event-15023472221", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/19#event-15023472229", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:27:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/20#event-15023482862", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/20#event-15023482867", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/21#event-15023484604", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/21#event-15023484607", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/22#event-15023486643", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/22#event-15023486647", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/23#event-15023504354", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/23#event-15023504395", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/24#event-15023513475", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/24#event-15023513581", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:28:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/25#event-15023523305", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:29:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/25#event-15023523315", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:29:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/26#event-15023532137", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:29:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/26#event-15023532143", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:29:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/27#event-15023556651", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:30:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/27#event-15023556660", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-10-31T01:30:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-15258338376", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "1d6279d0bafd71021c27b4a5ef893fbf67da9c59", + "created_at": "2024-11-12T04:35:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-15258338383", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-11-12T04:35:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-15258338537", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-11-12T04:35:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/11#event-15258338547", + "pull_request": "https://github.com/xc-link/networklist-org/pull/11", + "actor": "https://github.com/xc-link", + "event": "referenced", + "commit_id": "1d6279d0bafd71021c27b4a5ef893fbf67da9c59", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-11-12T04:35:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15273503141", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-11-13T00:49:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15273503148", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-11-13T00:49:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15276526771", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "b85e5e365641db72e2a115008d348dfdb857f325", + "created_at": "2024-11-13T06:04:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15276526784", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2024-11-13T06:04:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15276526939", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2024-11-13T06:04:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/28#event-15276526952", + "pull_request": "https://github.com/xc-link/networklist-org/pull/28", + "actor": "https://github.com/xc-link", + "event": "referenced", + "commit_id": "b85e5e365641db72e2a115008d348dfdb857f325", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-11-13T06:04:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/29#event-15290916572", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-11-14T00:15:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/29#event-15290916579", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2024-11-14T00:15:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-15326642644", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/xc-link", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2024-11-17T23:02:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-15326642653", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/xc-link", + "event": "assigned", + "subject": "https://github.com/xc-link", + "created_at": "2024-11-17T23:02:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-15326950838", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "locked", + "created_at": "2024-11-18T00:44:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/2#event-15326954584", + "pull_request": "https://github.com/xc-link/networklist-org/pull/2", + "actor": "https://github.com/xc-link", + "event": "unlocked", + "created_at": "2024-11-18T00:45:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638806011", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:09:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/33#event-15638810660", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:10:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/34#event-15638812342", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:10:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/35#event-15638816209", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:10:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/36#event-15638819103", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:11:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/37#event-15638820934", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:11:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/38#event-15638822678", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:11:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/39#event-15638825024", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:11:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/40#event-15638832000", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:12:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/41#event-15638835833", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:12:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/42#event-15638836863", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:12:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/43#event-15638838528", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:13:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/44#event-15638840205", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:13:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638922680", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "base_ref_changed", + "title_was": "develop", + "title_is": "sammvio-patch-1", + "created_at": "2024-12-12T18:21:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638922750", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/npm_and_yarn-b47055a72a", + "before_commit_oid": "a8d0b2b9188fe6ccfe11e33e226300a892bac8bf", + "after_commit_oid": "6e6f239a49f22bb29563fe8d19eb3b02972e07d0", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-12-12T18:21:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638950174", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "base_ref_changed", + "title_was": "sammvio-patch-1", + "title_is": "sammvio-patch-2", + "created_at": "2024-12-12T18:24:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638950323", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/npm_and_yarn-b47055a72a", + "before_commit_oid": "6e6f239a49f22bb29563fe8d19eb3b02972e07d0", + "after_commit_oid": "5841b172d05e339913f4ecb300a7ae9fbf81ef1a", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-12-12T18:24:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638979101", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "base_ref_changed", + "title_was": "sammvio-patch-2", + "title_is": "sammvio-patch-3", + "created_at": "2024-12-12T18:27:09Z" + } +] \ No newline at end of file diff --git a/issue_events_000002.json b/issue_events_000002.json new file mode 100644 index 000000000..e6310611c --- /dev/null +++ b/issue_events_000002.json @@ -0,0 +1,960 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15638979163", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/npm_and_yarn-b47055a72a", + "before_commit_oid": "5841b172d05e339913f4ecb300a7ae9fbf81ef1a", + "after_commit_oid": "f299d9e0e86ef9e298101e1985834ce03824d7d4", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-12-12T18:27:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15639009011", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "base_ref_changed", + "title_was": "sammvio-patch-3", + "title_is": "feature/addchain", + "created_at": "2024-12-12T18:30:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15639009114", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/npm_and_yarn-b47055a72a", + "before_commit_oid": "f299d9e0e86ef9e298101e1985834ce03824d7d4", + "after_commit_oid": "2e1e55740607b582942808b0665b4121e214d74a", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2024-12-12T18:30:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15639047459", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2024-12-12T18:33:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/32#event-15639047741", + "pull_request": "https://github.com/xc-link/networklist-org/pull/32", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2024-12-12T18:33:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/45#event-15639053074", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2024-12-12T18:34:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/29#event-15898845063", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-13T05:49:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/13#event-15898845182", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-13T05:49:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/12#event-15898845315", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-13T05:50:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/10#event-15898845446", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-13T05:50:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/9#event-15898845562", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-13T05:50:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/29#event-16008384526", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-01-21T05:49:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/13#event-16008384642", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-01-21T05:49:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/12#event-16008384789", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-01-21T05:49:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/10#event-16008384898", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-01-21T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/9#event-16008384986", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-01-21T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/29#event-16008385608", + "pull_request": "https://github.com/xc-link/networklist-org/pull/29", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-01-21T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/12#event-16008385685", + "pull_request": "https://github.com/xc-link/networklist-org/pull/12", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-01-21T05:49:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/13#event-16008385740", + "pull_request": "https://github.com/xc-link/networklist-org/pull/13", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-01-21T05:49:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/9#event-16008385905", + "pull_request": "https://github.com/xc-link/networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-01-21T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/10#event-16008385961", + "pull_request": "https://github.com/xc-link/networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-01-21T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/27#event-16118282702", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/26#event-16118282818", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/25#event-16118282943", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/24#event-16118283045", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/23#event-16118283179", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/22#event-16118283281", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/21#event-16118283402", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/20#event-16118283508", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-30T05:49:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/19#event-16134339911", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-31T05:49:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/17#event-16134340417", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-31T05:49:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/16#event-16134340572", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-31T05:49:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-16134340767", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-01-31T05:50:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-16149016353", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-01T05:49:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-16149016402", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-01T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-16151936484", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-02T05:49:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/18#event-16172711544", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-04T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/27#event-16204659621", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/26#event-16204659729", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/25#event-16204659832", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/24#event-16204660874", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/23#event-16204661038", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/22#event-16204661200", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/21#event-16204661342", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/20#event-16204661451", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-06T05:49:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/27#event-16204661560", + "pull_request": "https://github.com/xc-link/networklist-org/pull/27", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:49:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/26#event-16204661694", + "pull_request": "https://github.com/xc-link/networklist-org/pull/26", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/25#event-16204661837", + "pull_request": "https://github.com/xc-link/networklist-org/pull/25", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:49:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/24#event-16204661971", + "pull_request": "https://github.com/xc-link/networklist-org/pull/24", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:49:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/23#event-16204662052", + "pull_request": "https://github.com/xc-link/networklist-org/pull/23", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:49:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/22#event-16204662182", + "pull_request": "https://github.com/xc-link/networklist-org/pull/22", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:50:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/21#event-16204662233", + "pull_request": "https://github.com/xc-link/networklist-org/pull/21", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:50:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/20#event-16204662378", + "pull_request": "https://github.com/xc-link/networklist-org/pull/20", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-06T05:50:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-16220111088", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-07T05:49:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/31#event-16233295539", + "pull_request": "https://github.com/xc-link/networklist-org/pull/31", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-08T05:49:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/19#event-16233295584", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/17#event-16233295612", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/16#event-16233295636", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-16233295659", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-16233295680", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-16233295712", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-08T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/19#event-16233295826", + "pull_request": "https://github.com/xc-link/networklist-org/pull/19", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/17#event-16233295832", + "pull_request": "https://github.com/xc-link/networklist-org/pull/17", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/16#event-16233295859", + "pull_request": "https://github.com/xc-link/networklist-org/pull/16", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/7#event-16233295868", + "pull_request": "https://github.com/xc-link/networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/6#event-16233295908", + "pull_request": "https://github.com/xc-link/networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/5#event-16233295948", + "pull_request": "https://github.com/xc-link/networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-08T05:49:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-16241688008", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-10T05:49:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/4#event-16241688913", + "pull_request": "https://github.com/xc-link/networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-10T05:49:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/45#event-16258854360", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/44#event-16258854500", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/43#event-16258854672", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/42#event-16258854846", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/41#event-16258854969", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/40#event-16258855135", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/39#event-16258855304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:49:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/38#event-16258855441", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-11T05:50:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/37#event-16275320089", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-12T05:49:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/36#event-16275320203", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-12T05:49:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/35#event-16275320336", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-12T05:49:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/34#event-16275320464", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-12T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/33#event-16290913980", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-02-13T05:50:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/18#event-16306346641", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-14T05:49:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/18#event-16306347602", + "pull_request": "https://github.com/xc-link/networklist-org/pull/18", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-14T05:50:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/31#event-16320619685", + "pull_request": "https://github.com/xc-link/networklist-org/pull/31", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-15T05:49:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-16323374131", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-16T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/3#event-16323374290", + "pull_request": "https://github.com/xc-link/networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-16T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/45#event-16359405259", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/44#event-16359405367", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/43#event-16359405453", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/42#event-16359405564", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/41#event-16359405644", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/40#event-16359405775", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/39#event-16359405868", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/38#event-16359405960", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/37#event-16359406042", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/36#event-16359406142", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-19T05:49:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/42#event-16363296726", + "pull_request": "https://github.com/xc-link/networklist-org/pull/42", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/38#event-16363296946", + "pull_request": "https://github.com/xc-link/networklist-org/pull/38", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/39#event-16363297025", + "pull_request": "https://github.com/xc-link/networklist-org/pull/39", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:15Z" + } +] \ No newline at end of file diff --git a/issue_events_000003.json b/issue_events_000003.json new file mode 100644 index 000000000..ec38ce00b --- /dev/null +++ b/issue_events_000003.json @@ -0,0 +1,1046 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/37#event-16363297036", + "pull_request": "https://github.com/xc-link/networklist-org/pull/37", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/41#event-16363297044", + "pull_request": "https://github.com/xc-link/networklist-org/pull/41", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/36#event-16363297231", + "pull_request": "https://github.com/xc-link/networklist-org/pull/36", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/45#event-16363299553", + "pull_request": "https://github.com/xc-link/networklist-org/pull/45", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/44#event-16363299631", + "pull_request": "https://github.com/xc-link/networklist-org/pull/44", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/43#event-16363299636", + "pull_request": "https://github.com/xc-link/networklist-org/pull/43", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:37:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/40#event-16363354309", + "pull_request": "https://github.com/xc-link/networklist-org/pull/40", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-19T10:40:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/35#event-16376330429", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-20T05:49:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/34#event-16376330579", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-20T05:49:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/35#event-16376331644", + "pull_request": "https://github.com/xc-link/networklist-org/pull/35", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-20T05:50:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/34#event-16376331927", + "pull_request": "https://github.com/xc-link/networklist-org/pull/34", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-20T05:50:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/33#event-16394525634", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-02-21T05:49:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/33#event-16394526565", + "pull_request": "https://github.com/xc-link/networklist-org/pull/33", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-02-21T05:49:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/46#event-16534196717", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/46#event-16534196731", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/47#event-16534197382", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/47#event-16534197395", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/48#event-16534198133", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/48#event-16534198146", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-16534198554", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-16534198564", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/50#event-16534199042", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/50#event-16534199049", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/51#event-16534199669", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/51#event-16534199678", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/docker", + "label_name": "docker", + "label_color": "21ceff", + "label_text_color": "000000", + "created_at": "2025-03-03T13:06:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/52#event-16534200542", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/52#event-16534200550", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/53#event-16534201755", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/53#event-16534201769", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/54#event-16534204598", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/54#event-16534204609", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:06:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/55#event-16534210541", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:07:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/55#event-16534210560", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:07:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-16534213429", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:07:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-16534213442", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-03T13:07:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-16821772213", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-03-18T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/57#event-16909603694", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-20T13:33:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/57#event-16909603712", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-20T13:33:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-16909605800", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-jss-plugin-vendor-prefixer-10.10.0", + "before_commit_oid": "27f1660b5fb3acc895417b6df0f94cf45c3c7303", + "after_commit_oid": "7ed816ae9b55027b42318d828002edf83692afed", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-03-20T13:33:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-16909608710", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-jss-plugin-camel-case-10.10.0", + "before_commit_oid": "bfc9eca2f947f6ad95f47fa377cce381ee986f31", + "after_commit_oid": "ce0668fb249045cee25a29c0f4aa4c6f02c330d0", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-03-20T13:33:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/58#event-16920278725", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-21T01:37:04Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/58#event-16920278726", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-21T01:37:04Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/47#event-16920278956", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-03-21T01:37:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/47#event-16920279087", + "pull_request": "https://github.com/xc-link/networklist-org/pull/47", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-03-21T01:37:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/59#event-16966243081", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-25T02:54:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/59#event-16966243097", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-25T02:54:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-16967808665", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-03-25T05:49:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-17040366604", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-03-28T23:18:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-17041953875", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-03-29T05:49:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/60#event-17050078963", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-31T02:07:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/60#event-17050078968", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-31T02:07:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/58#event-17050079088", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-03-31T02:07:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/58#event-17050079253", + "pull_request": "https://github.com/xc-link/networklist-org/pull/58", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-03-31T02:07:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/61#event-17298527402", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-17T01:55:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/61#event-17298527405", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-17T01:55:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/60#event-17298527578", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-17T01:55:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/60#event-17298527814", + "pull_request": "https://github.com/xc-link/networklist-org/pull/60", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-17T01:55:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/62#event-17399331256", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-25T02:02:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/62#event-17399331262", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-25T02:02:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/46#event-17399331408", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-25T02:02:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/46#event-17399331516", + "pull_request": "https://github.com/xc-link/networklist-org/pull/46", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-25T02:02:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/63#event-17425824618", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-28T01:44:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/63#event-17425824622", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-28T01:44:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/62#event-17425824765", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-28T01:44:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/62#event-17425824941", + "pull_request": "https://github.com/xc-link/networklist-org/pull/62", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-28T01:44:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/64#event-17482739399", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-01T01:47:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/64#event-17482739404", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-05-01T01:47:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/59#event-17482739665", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-05-01T01:48:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/59#event-17482739859", + "pull_request": "https://github.com/xc-link/networklist-org/pull/59", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-05-01T01:48:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-17843620917", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-05-28T05:50:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-17993722537", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-06-05T05:49:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-18044919669", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-06-08T14:36:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-18049352323", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-06-09T05:50:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-18328316854", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/xc-link", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/token_price_template", + "label_name": "token_price_template", + "label_color": "1fc72b", + "label_text_color": "000000", + "created_at": "2025-06-26T04:19:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/63#event-18497161071", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-07T05:51:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/52#event-18497161285", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-07T05:51:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/51#event-18497161508", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-07T05:51:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/50#event-18497161699", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-07T05:51:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/48#event-18497161941", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-07T05:51:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-18579092398", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-11T05:51:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/63#event-18610472026", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-14T05:52:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/52#event-18610472213", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-14T05:52:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/51#event-18610472407", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-14T05:52:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/50#event-18610472621", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-14T05:52:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/48#event-18610472826", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-14T05:52:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/63#event-18610473670", + "pull_request": "https://github.com/xc-link/networklist-org/pull/63", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-14T05:52:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/52#event-18610473759", + "pull_request": "https://github.com/xc-link/networklist-org/pull/52", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-14T05:52:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/51#event-18610473867", + "pull_request": "https://github.com/xc-link/networklist-org/pull/51", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-14T05:53:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/50#event-18610474131", + "pull_request": "https://github.com/xc-link/networklist-org/pull/50", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-14T05:53:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/48#event-18610474279", + "pull_request": "https://github.com/xc-link/networklist-org/pull/48", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-14T05:53:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-18630341555", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:33:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-18630341561", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:33:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-18630341615", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:33:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-18630341642", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:33:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-18630399092", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:38:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-18630399104", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:38:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-18630399353", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:38:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-18630399380", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T05:38:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/61#event-18630557726", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-15T05:53:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/78#event-18630676087", + "pull_request": "https://github.com/xc-link/networklist-org/pull/78", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:03:20Z" + } +] \ No newline at end of file diff --git a/issue_events_000004.json b/issue_events_000004.json new file mode 100644 index 000000000..efe461158 --- /dev/null +++ b/issue_events_000004.json @@ -0,0 +1,1067 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/78#event-18630676101", + "pull_request": "https://github.com/xc-link/networklist-org/pull/78", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:03:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/78#event-18630676391", + "pull_request": "https://github.com/xc-link/networklist-org/pull/78", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:03:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/78#event-18630676445", + "pull_request": "https://github.com/xc-link/networklist-org/pull/78", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:03:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-18630923525", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:20:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-18630923536", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:20:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-18630923623", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:20:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-18630923659", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-15T06:20:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-18693609587", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-18T05:53:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-18715639239", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-07-20T09:34:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-18721290712", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-07-21T05:54:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/61#event-18743594062", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-07-22T05:53:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/61#event-18743598209", + "pull_request": "https://github.com/xc-link/networklist-org/pull/61", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-07-22T05:53:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/81#event-18764010780", + "pull_request": "https://github.com/xc-link/networklist-org/pull/81", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-23T02:23:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/81#event-18764010787", + "pull_request": "https://github.com/xc-link/networklist-org/pull/81", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-23T02:23:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/81#event-18764010929", + "pull_request": "https://github.com/xc-link/networklist-org/pull/81", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-23T02:23:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/81#event-18764010963", + "pull_request": "https://github.com/xc-link/networklist-org/pull/81", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-07-23T02:23:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/64#event-18962768363", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/57#event-18962769001", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-18962769369", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/55#event-18962769938", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/53#event-18962770727", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-18962771074", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-04T06:01:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-19048007548", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-08T05:55:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/54#event-19065898550", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-09T05:49:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/64#event-19103528302", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/57#event-19103528503", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-19103528696", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/55#event-19103528912", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/53#event-19103529263", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-19103529471", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-12T05:49:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/57#event-19103529780", + "pull_request": "https://github.com/xc-link/networklist-org/pull/57", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/64#event-19103529874", + "pull_request": "https://github.com/xc-link/networklist-org/pull/64", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/56#event-19103530260", + "pull_request": "https://github.com/xc-link/networklist-org/pull/56", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/55#event-19103530354", + "pull_request": "https://github.com/xc-link/networklist-org/pull/55", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/53#event-19103530730", + "pull_request": "https://github.com/xc-link/networklist-org/pull/53", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/49#event-19103530875", + "pull_request": "https://github.com/xc-link/networklist-org/pull/49", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-12T05:49:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19108770338", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T10:15:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19108770347", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T10:15:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19108770438", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T10:15:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19108770481", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T10:15:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/83#event-19110437328", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T11:43:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/83#event-19110437334", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T11:43:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/83#event-19110437413", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T11:43:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/83#event-19110437463", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T11:43:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/84#event-19111257201", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/84#event-19111257206", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/84#event-19111257323", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/84#event-19111257379", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19111260388", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19111260406", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19111261073", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19111261201", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-12T12:23:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-19185039264", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-16T05:47:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-19185619131", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-08-16T08:23:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/54#event-19189934657", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-17T05:49:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/30#event-19189934703", + "issue": "https://github.com/xc-link/networklist-org/issues/30", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-17T05:49:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/54#event-19189934953", + "pull_request": "https://github.com/xc-link/networklist-org/pull/54", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-17T05:49:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/86#event-19194396600", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:48:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/86#event-19194396606", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:48:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/86#event-19194396698", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:48:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/86#event-19194396719", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:48:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19194416358", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:50:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19194416363", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:50:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19194416423", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:50:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19194416437", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-18T02:50:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19194416582", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-08-18T02:50:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/82#event-19194416735", + "pull_request": "https://github.com/xc-link/networklist-org/pull/82", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-08-18T02:50:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/68#event-19216758160", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-19T05:47:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/67#event-19216758391", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-19T05:47:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/66#event-19216758608", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-19T05:47:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-19315038586", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-25T05:48:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/88#event-19323224971", + "pull_request": "https://github.com/xc-link/networklist-org/pull/88", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "46cb18c7a7c6d4770aa319de375e2723c2549621", + "created_at": "2025-08-25T13:57:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/88#event-19323225002", + "pull_request": "https://github.com/xc-link/networklist-org/pull/88", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-08-25T13:57:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/88#event-19323225451", + "pull_request": "https://github.com/xc-link/networklist-org/pull/88", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-08-25T13:57:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/68#event-19335945142", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-26T05:47:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/67#event-19335945332", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-26T05:47:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/66#event-19335945507", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-08-26T05:47:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19361394191", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-27T05:46:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19361394432", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-27T05:46:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/66#event-19419527319", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-08-29T21:23:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/67#event-19419584190", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-08-29T21:26:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/68#event-19419591519", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-08-29T21:27:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/75#event-19422520759", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-30T05:45:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/68#event-19422520853", + "pull_request": "https://github.com/xc-link/networklist-org/pull/68", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-30T05:45:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/67#event-19422520876", + "pull_request": "https://github.com/xc-link/networklist-org/pull/67", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-30T05:46:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/66#event-19422520904", + "pull_request": "https://github.com/xc-link/networklist-org/pull/66", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-08-30T05:46:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/89#event-19423643930", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-30T12:11:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/89#event-19423643933", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-30T12:11:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/89#event-19423643969", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-08-30T12:11:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/89#event-19423643982", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-08-30T12:11:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/83#event-19425979305", + "pull_request": "https://github.com/xc-link/networklist-org/pull/83", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-jss-plugin-global-10.10.0", + "before_commit_oid": "e9b7a4590593fe039a46fb6f5db3e7f35a91f271", + "after_commit_oid": "b1aecaed6cbfb2c3c787129e1dc4cec9095dd370", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/84#event-19425979384", + "pull_request": "https://github.com/xc-link/networklist-org/pull/84", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-fbjs-3.0.5", + "before_commit_oid": "8cc5d4393ed0b9741ed355bae431eb89899c4276", + "after_commit_oid": "adf08f47d9d5452a3fc88bf95c212388aae8b3b3", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19425979469", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-ws-8.18.3", + "before_commit_oid": "a1e31647da1a35ae24c274bafe6fb12df50cb048", + "after_commit_oid": "85ecf78a99915dcc8b9586896126535af14d1697", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19425979497", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-types-node-24.3.0", + "before_commit_oid": "c21bedae4fcebfc552dddbe4cf78377415a2f660", + "after_commit_oid": "2a4528e26cf2ccf85340f7525b5aa49c1be12e76", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/86#event-19425980089", + "pull_request": "https://github.com/xc-link/networklist-org/pull/86", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-react-transition-group-4.4.5", + "before_commit_oid": "0d673c67972e378247cce816bc1a9dafe53e04ee", + "after_commit_oid": "0fd6087ca4bdbe6b49e8782f0f237ce08adef252", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/89#event-19425980675", + "pull_request": "https://github.com/xc-link/networklist-org/pull/89", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-npm_and_yarn-2e97db7cf2", + "before_commit_oid": "fc6cf3f26f666d9d5574186714a0065f970801d5", + "after_commit_oid": "cab20b001870ff204c00ff99ad4baf534ccd8ce1", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-08-30T23:16:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-19451733064", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-02T05:46:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-19462378761", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-09-02T14:47:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-19474105110", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-09-03T05:46:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19496026296", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-04T05:46:24Z" + } +] \ No newline at end of file diff --git a/issue_events_000005.json b/issue_events_000005.json new file mode 100644 index 000000000..5e5673c74 --- /dev/null +++ b/issue_events_000005.json @@ -0,0 +1,1037 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19496026464", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-04T05:46:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19496966657", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-09-04T06:51:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19496987971", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "234acddf8dc53a432c29ae14ffeda5a0dc0ca885", + "created_at": "2025-09-04T06:52:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19496987994", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-09-04T06:52:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/70#event-19496988275", + "pull_request": "https://github.com/xc-link/networklist-org/pull/70", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-09-04T06:52:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19497001052", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-09-04T06:53:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19497007037", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "436115ec97bf56a78b5bbbcba2461de2c0e4b621", + "created_at": "2025-09-04T06:54:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19497007063", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-09-04T06:54:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/74#event-19497007375", + "pull_request": "https://github.com/xc-link/networklist-org/pull/74", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-09-04T06:54:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/90#event-19519939418", + "pull_request": "https://github.com/xc-link/networklist-org/pull/90", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:14:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/90#event-19519939425", + "pull_request": "https://github.com/xc-link/networklist-org/pull/90", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:14:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/90#event-19519939592", + "pull_request": "https://github.com/xc-link/networklist-org/pull/90", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:14:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/90#event-19519939618", + "pull_request": "https://github.com/xc-link/networklist-org/pull/90", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:14:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-19519939655", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-05T01:14:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/79#event-19519939793", + "pull_request": "https://github.com/xc-link/networklist-org/pull/79", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-05T01:14:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19519956836", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:16:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19519956844", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:16:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19519957007", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:16:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19519957039", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-05T01:16:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19519957091", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-05T01:16:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19519957268", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-05T01:16:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19538140026", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/xc-link", + "event": "head_ref_restored", + "created_at": "2025-09-06T00:33:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19538141289", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-09-06T00:34:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19538144769", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "78a9006af157b22a0ef96a3e4aed9772d48ca8a5", + "created_at": "2025-09-06T00:34:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19538144777", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-09-06T00:34:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/87#event-19538144877", + "pull_request": "https://github.com/xc-link/networklist-org/pull/87", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-09-06T00:34:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-19538151245", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-ws-8.18.3", + "before_commit_oid": "85ecf78a99915dcc8b9586896126535af14d1697", + "after_commit_oid": "699cc4fec0c276e3d49e23616cf548a1a659eefb", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-09-06T00:36:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19538152151", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot-npm_and_yarn-types-node-24.3.1", + "before_commit_oid": "39d005a69958704ed887bda4e0b53efae3bac43e", + "after_commit_oid": "791361dd16204c18e880e04de3e26b26f8db4712", + "commit_repository": "https://github.com/xc-link/networklist-org", + "created_at": "2025-09-06T00:36:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/75#event-19539581094", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-06T05:46:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19689956515", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-15T01:23:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19689956520", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-15T01:23:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19689956600", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-15T01:23:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19689956627", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-15T01:23:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19689956790", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-15T01:23:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/91#event-19689956923", + "pull_request": "https://github.com/xc-link/networklist-org/pull/91", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-15T01:23:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19713606216", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-16T01:19:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19713606226", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-16T01:19:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19713606276", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-16T01:19:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19713606304", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-16T01:19:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19713606457", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-16T01:19:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/92#event-19713606616", + "pull_request": "https://github.com/xc-link/networklist-org/pull/92", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-16T01:19:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19738642312", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-17T01:16:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19738642323", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-17T01:16:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19738642381", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-17T01:16:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19738642408", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-17T01:16:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19738642580", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-17T01:16:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/93#event-19738642789", + "pull_request": "https://github.com/xc-link/networklist-org/pull/93", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-17T01:16:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19762692191", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-18T01:09:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19762692197", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-18T01:09:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19762692269", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-18T01:09:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19762692295", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-18T01:09:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19762692415", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-18T01:09:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/94#event-19762692577", + "pull_request": "https://github.com/xc-link/networklist-org/pull/94", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-18T01:09:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-19791060264", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "label_name": "no-pr-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-09-19T05:46:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-19814307451", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-09-20T05:46:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-19934378446", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-26T05:46:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-19956539488", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "closed", + "created_at": "2025-09-27T05:46:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-19975509663", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-09-29T06:40:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-19996709234", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-30T01:15:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-19996709245", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/docker", + "label_name": "docker", + "label_color": "21ceff", + "label_text_color": "000000", + "created_at": "2025-09-30T01:15:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-19996709348", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-30T01:15:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-19996709388", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/docker", + "label_name": "docker", + "label_color": "21ceff", + "label_text_color": "000000", + "created_at": "2025-09-30T01:15:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-19997618894", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-30T02:47:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-19997618898", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-30T02:47:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-19997618984", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-30T02:47:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-19997619009", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-09-30T02:47:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19997619251", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-09-30T02:47:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/95#event-19997619406", + "pull_request": "https://github.com/xc-link/networklist-org/pull/95", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-09-30T02:47:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-19999527385", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/github-actions[bot]", + "event": "unlabeled", + "label": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "label_name": "no-issue-activity", + "label_color": "ededed", + "label_text_color": "000000", + "created_at": "2025-09-30T05:46:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20022880390", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-01T01:24:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20022880402", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-01T01:24:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20022880513", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-01T01:24:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20022880563", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-01T01:24:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-20022880803", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-01T01:24:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/97#event-20022881031", + "pull_request": "https://github.com/xc-link/networklist-org/pull/97", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-01T01:24:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20071717195", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-03T01:17:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20071717202", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-03T01:17:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20071717368", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-03T01:17:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20071717388", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-03T01:17:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20071717492", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-03T01:17:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/98#event-20071717616", + "pull_request": "https://github.com/xc-link/networklist-org/pull/98", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-03T01:17:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20129909954", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-07T01:19:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20129909959", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-07T01:19:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20129910072", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-07T01:19:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20129910100", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-07T01:19:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20129910146", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-07T01:19:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/99#event-20129910820", + "pull_request": "https://github.com/xc-link/networklist-org/pull/99", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-07T01:19:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20196512619", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-10T01:13:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20196512623", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-10T01:13:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20196512697", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-10T01:13:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20196512728", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-10T01:13:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20196512886", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-10T01:13:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/100#event-20196513085", + "pull_request": "https://github.com/xc-link/networklist-org/pull/100", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-10T01:13:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20236629620", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-13T01:20:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20236629628", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-13T01:20:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20236629699", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-13T01:20:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20236629717", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-13T01:20:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20236629778", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-13T01:20:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/101#event-20236629919", + "pull_request": "https://github.com/xc-link/networklist-org/pull/101", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-13T01:20:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20332213669", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-17T01:19:18Z" + } +] \ No newline at end of file diff --git a/issue_events_000006.json b/issue_events_000006.json new file mode 100644 index 000000000..17d22f2eb --- /dev/null +++ b/issue_events_000006.json @@ -0,0 +1,1077 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/1#event-16367011373", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-19T14:52:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/2#event-16935808211", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-21T21:29:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/2#event-16935808220", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/68-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-03-21T21:29:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/1#event-16935808579", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-03-21T21:29:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/1#event-16935808823", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-03-21T21:29:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/3#event-17345851291", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-22T02:37:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/3#event-17345851295", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/68-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-04-22T02:37:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/2#event-17345851470", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-22T02:37:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/1#event-16320890483", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-15T07:43:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/2#event-16325968832", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/3#event-16325968849", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/4#event-16325969252", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/5#event-16325969319", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/6#event-16325969428", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/1#event-16325969848", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "before_commit_oid": "8ac341887542a71df21242ae77a6f02077da2698", + "after_commit_oid": "101597e0b8fd1c8793652f105936575cdafe396d", + "commit_repository": "https://github.com/xc-link/66-networklist-org", + "created_at": "2025-02-17T01:08:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/7#event-16325970556", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:08:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/8#event-16642033777", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-08T11:59:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/8#event-16642033780", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-08T11:59:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/9#event-17040793730", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-29T00:16:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/9#event-17040793781", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-03-29T00:16:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/10#event-17446002337", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-29T02:08:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/10#event-17446002340", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/66-networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-04-29T02:08:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/7#event-17446002569", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-29T02:08:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/66-networklist-org/pull/7#event-17446002733", + "pull_request": "https://github.com/xc-link/66-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-29T02:08:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/49-networklist-org/pull/1#event-18596368093", + "pull_request": "https://github.com/xc-link/49-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/49-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T02:04:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/49-networklist-org/pull/1#event-18596368096", + "pull_request": "https://github.com/xc-link/49-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/49-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T02:04:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20332213674", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-17T01:19:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20332213794", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-17T01:19:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20332213816", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-17T01:19:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20332213888", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-17T01:19:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/102#event-20332214048", + "pull_request": "https://github.com/xc-link/networklist-org/pull/102", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-17T01:19:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20369736455", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-20T01:19:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20369736465", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-20T01:19:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20369736581", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-20T01:19:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20369736625", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-20T01:19:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20369736788", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-20T01:19:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/103#event-20369736968", + "pull_request": "https://github.com/xc-link/networklist-org/pull/103", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-20T01:19:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20392102264", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-21T01:15:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20392102274", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-21T01:15:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20392102331", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-21T01:15:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20392102360", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-21T01:15:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20392102596", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-21T01:15:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/104#event-20392102774", + "pull_request": "https://github.com/xc-link/networklist-org/pull/104", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-21T01:15:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-20568038676", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-29T01:20:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-20568038694", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-29T01:20:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-20568038862", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-29T01:20:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-20568038901", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-10-29T01:20:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20568039031", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-29T01:20:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/105#event-20568039201", + "pull_request": "https://github.com/xc-link/networklist-org/pull/105", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-29T01:20:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/75#event-20681186792", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-11-03T17:43:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-20681208508", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/xc-link", + "event": "reopened", + "created_at": "2025-11-03T17:44:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/107#event-20875687873", + "pull_request": "https://github.com/xc-link/networklist-org/pull/107", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-12T01:14:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/107#event-20875687883", + "pull_request": "https://github.com/xc-link/networklist-org/pull/107", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/docker", + "label_name": "docker", + "label_color": "21ceff", + "label_text_color": "000000", + "created_at": "2025-11-12T01:14:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/107#event-20875687964", + "pull_request": "https://github.com/xc-link/networklist-org/pull/107", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-12T01:14:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/107#event-20875687998", + "pull_request": "https://github.com/xc-link/networklist-org/pull/107", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/docker", + "label_name": "docker", + "label_color": "21ceff", + "label_text_color": "000000", + "created_at": "2025-11-12T01:14:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-20875688157", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-11-12T01:14:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/96#event-20875688361", + "pull_request": "https://github.com/xc-link/networklist-org/pull/96", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-11-12T01:14:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-21912372461", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "ae037a4dcb02832e061ef1e2bc2d8d0519460878", + "created_at": "2026-01-08T02:54:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-21912372471", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2026-01-08T02:54:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/80#event-21912372627", + "pull_request": "https://github.com/xc-link/networklist-org/pull/80", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2026-01-08T02:54:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/69#event-24280882272", + "issue": "https://github.com/xc-link/networklist-org/issues/69", + "actor": "https://github.com/xc-link", + "event": "assigned", + "subject": "https://github.com/xc-link", + "created_at": "2026-04-08T03:23:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/issues/65#event-24280907759", + "issue": "https://github.com/xc-link/networklist-org/issues/65", + "actor": "https://github.com/xc-link", + "event": "assigned", + "subject": "https://github.com/xc-link", + "created_at": "2026-04-08T03:25:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/108#event-25639864938", + "pull_request": "https://github.com/xc-link/networklist-org/pull/108", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:03:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/108#event-25639864949", + "pull_request": "https://github.com/xc-link/networklist-org/pull/108", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:03:03Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/108#event-25639865168", + "pull_request": "https://github.com/xc-link/networklist-org/pull/108", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:03:04Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/108#event-25639865281", + "pull_request": "https://github.com/xc-link/networklist-org/pull/108", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:03:04Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-25639865745", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-05-18T04:03:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/106#event-25639866233", + "pull_request": "https://github.com/xc-link/networklist-org/pull/106", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-05-18T04:03:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/109#event-25639888242", + "pull_request": "https://github.com/xc-link/networklist-org/pull/109", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/109#event-25639888263", + "pull_request": "https://github.com/xc-link/networklist-org/pull/109", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/109#event-25639888644", + "pull_request": "https://github.com/xc-link/networklist-org/pull/109", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/109#event-25639888720", + "pull_request": "https://github.com/xc-link/networklist-org/pull/109", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-25639889101", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-05-18T04:04:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/77#event-25639889965", + "pull_request": "https://github.com/xc-link/networklist-org/pull/77", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-05-18T04:04:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/110#event-25639892813", + "pull_request": "https://github.com/xc-link/networklist-org/pull/110", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/110#event-25639892830", + "pull_request": "https://github.com/xc-link/networklist-org/pull/110", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/110#event-25639893013", + "pull_request": "https://github.com/xc-link/networklist-org/pull/110", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/110#event-25639893095", + "pull_request": "https://github.com/xc-link/networklist-org/pull/110", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:04:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-25639893957", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-05-18T04:04:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/85#event-25639894437", + "pull_request": "https://github.com/xc-link/networklist-org/pull/85", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-05-18T04:04:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/111#event-25639936730", + "pull_request": "https://github.com/xc-link/networklist-org/pull/111", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:06:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/111#event-25639936744", + "pull_request": "https://github.com/xc-link/networklist-org/pull/111", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:06:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/111#event-25639937050", + "pull_request": "https://github.com/xc-link/networklist-org/pull/111", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:06:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/111#event-25639937105", + "pull_request": "https://github.com/xc-link/networklist-org/pull/111", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/networklist-org/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2026-05-18T04:06:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-25639937705", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-05-18T04:06:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/76#event-25639938331", + "pull_request": "https://github.com/xc-link/networklist-org/pull/76", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-05-18T04:06:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/75#event-25641963417", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2026-05-18T05:37:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/networklist-org/pull/75#event-25641963526", + "pull_request": "https://github.com/xc-link/networklist-org/pull/75", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2026-05-18T05:37:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/NetLicensing-Zapier/pull/1#event-16374711218", + "pull_request": "https://github.com/xc-link/NetLicensing-Zapier/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/NetLicensing-Zapier/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-20T02:09:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/1#event-17837231412", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-27T19:56:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/1#event-17837231417", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-27T19:56:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/1#event-17837231461", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-27T19:56:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/1#event-17837231507", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-27T19:56:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/2#event-21680350904", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-19T23:07:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/2#event-21680350914", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-12-19T23:07:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/2#event-21680351074", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-19T23:07:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/32-networklist-org/pull/2#event-21680351100", + "pull_request": "https://github.com/xc-link/32-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/32-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-12-19T23:07:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/pull/1#event-16374712611", + "pull_request": "https://github.com/xc-link/NetLicensingClient-javascript/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/NetLicensingClient-javascript/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-20T02:09:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/harmony-ipfs/pull/1#event-16286317997", + "pull_request": "https://github.com/xc-link/harmony-ipfs/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/harmony-ipfs/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-12T19:51:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/harmony-ipfs/pull/2#event-16320891093", + "pull_request": "https://github.com/xc-link/harmony-ipfs/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/harmony-ipfs/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-15T07:43:43Z" + } +] \ No newline at end of file diff --git a/issue_events_000007.json b/issue_events_000007.json new file mode 100644 index 000000000..0571a7f7d --- /dev/null +++ b/issue_events_000007.json @@ -0,0 +1,1147 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/pull/1#event-16023743494", + "pull_request": "https://github.com/xc-link/TP-Inicial-Laboratorio/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-22T05:49:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/21-networklist-org/pull/1#event-16374710999", + "pull_request": "https://github.com/xc-link/21-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/21-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-20T02:09:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/1#event-16722227155", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-12T23:01:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/1#event-16722227160", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-12T23:01:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/2#event-17252093630", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-14T16:23:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/2#event-17252093637", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-14T16:23:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/3#event-17295200023", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-16T20:03:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/3#event-17295200034", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-16T20:03:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/4#event-21055506487", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:26:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/4#event-21055506496", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:26:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/4#event-21055506594", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:26:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/4#event-21055506627", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:26:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/2#event-21055506815", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-11-19T23:26:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/2#event-21055507123", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-11-19T23:26:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/5#event-21055685252", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:42:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/5#event-21055685261", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:42:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/5#event-21055685353", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:42:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/5#event-21055685385", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:42:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/6#event-21374960999", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-05T02:41:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/6#event-21374961012", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-12-05T02:41:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/6#event-21374961244", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-05T02:41:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/34-networklist-org/pull/6#event-21374961281", + "pull_request": "https://github.com/xc-link/34-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/34-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-12-05T02:41:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/icloud-tcp-gateway/pull/1#event-15810280858", + "pull_request": "https://github.com/xc-link/icloud-tcp-gateway/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/icloud-tcp-gateway/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-03T19:12:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/icloud-tcp-gateway/pull/2#event-16144626172", + "pull_request": "https://github.com/xc-link/icloud-tcp-gateway/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/icloud-tcp-gateway/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-31T19:15:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/app-space/pull/1#event-16286247284", + "pull_request": "https://github.com/xc-link/app-space/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/app-space/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-12T19:45:15Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/1#event-16723068259", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-13T00:58:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/1#event-16723068262", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-13T00:58:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/2#event-17296752384", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-16T22:22:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/2#event-17296752387", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-16T22:22:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/1#event-17296752585", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-16T22:22:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/1#event-17296752747", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-16T22:22:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/3#event-18238643442", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/3", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "8562e6273b1951770cd4e281db112f6736c09c44", + "created_at": "2025-06-20T03:07:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/3#event-18238643451", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/3", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-06-20T03:07:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/3#event-18238643549", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/3", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-06-20T03:07:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/4#event-23701493552", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-19T01:07:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/24-networklist-org/pull/4#event-23701493562", + "pull_request": "https://github.com/xc-link/24-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/24-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2026-03-19T01:07:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/68-networklist-org/pull/2#event-17345851635", + "pull_request": "https://github.com/xc-link/68-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-22T02:37:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/50-networklist-org/pull/1#event-18596191119", + "pull_request": "https://github.com/xc-link/50-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/50-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:34:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/50-networklist-org/pull/1#event-18596191128", + "pull_request": "https://github.com/xc-link/50-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/50-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:34:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/50-networklist-org/pull/1#event-18596191201", + "pull_request": "https://github.com/xc-link/50-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/50-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:34:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/50-networklist-org/pull/1#event-18596191217", + "pull_request": "https://github.com/xc-link/50-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/50-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:34:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/20-networklist-org/pull/1#event-16021378750", + "pull_request": "https://github.com/xc-link/20-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/20-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-21T23:24:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/1#event-16291103832", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-13T06:08:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/pull/1#event-16291104101", + "pull_request": "https://github.com/xc-link/scatter-demo-eosjs2/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/scatter-demo-eosjs2/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-13T06:08:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/2#event-16326158748", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/3#event-16326159279", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/4#event-16326159393", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:20Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/5#event-16326159532", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/6#event-16326159690", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/7#event-16326159744", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-17T01:45:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/1#event-16326160303", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "before_commit_oid": "d2441e0aa4e734ed6e70e09cc072d76a037ea27f", + "after_commit_oid": "635fd3ab6659543f24a382627ec3c4dbe6e32b38", + "commit_repository": "https://github.com/xc-link/smEncrypt", + "created_at": "2025-02-17T01:45:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/smEncrypt/pull/1#event-16326166363", + "pull_request": "https://github.com/xc-link/smEncrypt/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "before_commit_oid": "635fd3ab6659543f24a382627ec3c4dbe6e32b38", + "after_commit_oid": "7aa6a7a07fe7bddba9fe84a1ad755f4980594275", + "commit_repository": "https://github.com/xc-link/smEncrypt", + "created_at": "2025-02-17T01:46:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/51-networklist-org/pull/1#event-18596014211", + "pull_request": "https://github.com/xc-link/51-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/51-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:03:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/51-networklist-org/pull/1#event-18596014215", + "pull_request": "https://github.com/xc-link/51-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/51-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:03:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/51-networklist-org/pull/1#event-18596014269", + "pull_request": "https://github.com/xc-link/51-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/51-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:03:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/51-networklist-org/pull/1#event-18596014280", + "pull_request": "https://github.com/xc-link/51-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/51-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:03:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/distware/pull/1#event-16022860270", + "pull_request": "https://github.com/xc-link/distware/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/distware/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-22T03:26:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/distware/pull/1#event-16022860273", + "pull_request": "https://github.com/xc-link/distware/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/distware/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-01-22T03:26:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/distware/pull/2#event-16721744885", + "pull_request": "https://github.com/xc-link/distware/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/distware/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-12T22:01:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/distware/pull/2#event-16721744897", + "pull_request": "https://github.com/xc-link/distware/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/distware/labels/php", + "label_name": "php", + "label_color": "45229e", + "label_text_color": "ffffff", + "created_at": "2025-03-12T22:01:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/1#event-15856750857", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/BaiduSpider/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-08T16:30:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/2#event-16272816907", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/BaiduSpider/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-12T00:01:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/3#event-16608411925", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/BaiduSpider/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-05T23:52:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/3#event-16608411931", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/BaiduSpider/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-03-05T23:52:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/1#event-16608412167", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-03-05T23:52:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/BaiduSpider/pull/1#event-16608412376", + "pull_request": "https://github.com/xc-link/BaiduSpider/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-03-05T23:52:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/1#event-17720757121", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-19T19:15:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/1#event-17720757131", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-05-19T19:15:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/1#event-17720757331", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-19T19:15:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/1#event-17720757369", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-05-19T19:15:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/2#event-18066386445", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T03:50:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/2#event-18066386452", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T03:50:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-22688939982", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T23:09:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-22688939988", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T23:09:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-22688940186", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T23:09:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-22688940223", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T23:09:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/4#event-22962160571", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-20T23:31:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/4#event-22962160576", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-02-20T23:31:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/4#event-22962160713", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-20T23:31:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/4#event-22962160742", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-02-20T23:31:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/5#event-23914755036", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T02:21:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/5#event-23914755044", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T02:21:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/5#event-23914755209", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T02:21:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/5#event-23914755265", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T02:21:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/2#event-23914755534", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-03-26T02:21:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/2#event-23914755894", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-03-26T02:21:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/6#event-23994915965", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-28T07:06:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/6#event-23994915991", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-28T07:06:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/6#event-23994916161", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-28T07:06:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/6#event-23994916218", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/72-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-28T07:06:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-23994916465", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-03-28T07:06:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/72-networklist-org/pull/3#event-23994916579", + "pull_request": "https://github.com/xc-link/72-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-03-28T07:06:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/LtePlatform/pull/1#event-16082676915", + "pull_request": "https://github.com/xc-link/LtePlatform/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/LtePlatform/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-27T18:49:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-18072273731", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T10:31:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-18072273740", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T10:31:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-18072273846", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T10:31:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/33-networklist-org/pull/1#event-21375003918", + "pull_request": "https://github.com/xc-link/33-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/33-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-05T02:45:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/33-networklist-org/pull/1#event-21375003925", + "pull_request": "https://github.com/xc-link/33-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/33-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-12-05T02:45:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/33-networklist-org/pull/1#event-21375004047", + "pull_request": "https://github.com/xc-link/33-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/33-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-05T02:46:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/33-networklist-org/pull/1#event-21375004075", + "pull_request": "https://github.com/xc-link/33-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/33-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-12-05T02:46:00Z" + } +] \ No newline at end of file diff --git a/issue_events_000008.json b/issue_events_000008.json new file mode 100644 index 000000000..fa292f529 --- /dev/null +++ b/issue_events_000008.json @@ -0,0 +1,1130 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/halo-dal/pull/1#event-16144568996", + "pull_request": "https://github.com/xc-link/halo-dal/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/halo-dal/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-31T19:09:06Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/1#event-17253632787", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-14T18:17:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/1#event-17253632800", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-14T18:17:39Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/2#event-21056523065", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-20T00:50:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/2#event-21056523074", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-20T00:50:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/2#event-21056523190", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-20T00:50:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/2#event-21056523221", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/37-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-20T00:50:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/1#event-21056523733", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-11-20T00:50:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/37-networklist-org/pull/1#event-21056524365", + "pull_request": "https://github.com/xc-link/37-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-11-20T00:50:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/1#event-16936844626", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-21T23:27:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/1#event-16936844649", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-03-21T23:27:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/2#event-17322653846", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-18T16:58:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/2#event-17322653849", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-04-18T16:58:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/1#event-17322654237", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-18T16:58:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/1#event-17322654341", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-18T16:58:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/3#event-17890201872", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-30T18:56:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/3#event-17890201878", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-05-30T18:56:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/3#event-17890202021", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-30T18:56:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/3#event-17890202061", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-05-30T18:56:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/2#event-17890202129", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-05-30T18:56:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/2#event-17890202413", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-05-30T18:56:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/server-sql/pull/1#event-24628990528", + "pull_request": "https://github.com/xc-link/server-sql/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/server-sql/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-04-18T01:32:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/server-sql/pull/1#event-24628990542", + "pull_request": "https://github.com/xc-link/server-sql/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/server-sql/labels/.NET", + "label_name": ".NET", + "label_color": "7121c6", + "label_text_color": "ffffff", + "created_at": "2026-04-18T01:32:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/server-sql/pull/1#event-24628990826", + "pull_request": "https://github.com/xc-link/server-sql/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/server-sql/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-04-18T01:32:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/server-sql/pull/1#event-24628990844", + "pull_request": "https://github.com/xc-link/server-sql/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/server-sql/labels/.NET", + "label_name": ".NET", + "label_color": "7121c6", + "label_text_color": "ffffff", + "created_at": "2026-04-18T01:32:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/4#event-25173820143", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-05T11:38:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/4#event-25173820192", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-05-05T11:38:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/4#event-25173820582", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-05-05T11:38:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/63-networklist-org/pull/4#event-25173820684", + "pull_request": "https://github.com/xc-link/63-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/63-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-05-05T11:38:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/nginx-proxy-manager/pull/1#event-16024587678", + "pull_request": "https://github.com/xc-link/nginx-proxy-manager/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/nginx-proxy-manager/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-22T07:28:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/sql-server-samples/pull/1#event-16082729111", + "pull_request": "https://github.com/xc-link/sql-server-samples/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/sql-server-samples/labels/.NET", + "label_name": ".NET", + "label_color": "7121c6", + "label_text_color": "ffffff", + "created_at": "2025-01-27T18:53:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/sql-server-samples/pull/1#event-16082729129", + "pull_request": "https://github.com/xc-link/sql-server-samples/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/sql-server-samples/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-27T18:53:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/sql-server-samples/pull/2#event-16270021894", + "pull_request": "https://github.com/xc-link/sql-server-samples/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/sql-server-samples/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-11T19:13:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/sql-server-samples/pull/2#event-16270021904", + "pull_request": "https://github.com/xc-link/sql-server-samples/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/sql-server-samples/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-02-11T19:13:14Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/1#event-16722815389", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-13T00:25:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/1#event-16722815393", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-13T00:25:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/2#event-17253610656", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-14T18:16:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/2#event-17253610666", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-14T18:16:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/3#event-17296465305", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-16T21:49:27Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/3#event-17296465314", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-16T21:49:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/1#event-17296465558", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-16T21:49:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/1#event-17296465731", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-16T21:49:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/4#event-18083031913", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T21:24:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/4#event-18083031929", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-06-10T21:24:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/5#event-18705200695", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-18T18:06:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/5#event-18705200711", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-07-18T18:06:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/5#event-18705200769", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-18T18:06:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/5#event-18705200810", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-07-18T18:06:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/6#event-21056335739", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-20T00:35:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/6#event-21056335745", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-20T00:35:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/6#event-21056335862", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-20T00:35:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/6#event-21056335903", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-20T00:35:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/2#event-21056336051", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-11-20T00:35:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/2#event-21056336336", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-11-20T00:35:19Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/7#event-22658722362", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T00:31:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/7#event-22658722383", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2026-02-10T00:31:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/7#event-22658722541", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-10T00:31:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/39-networklist-org/pull/7#event-22658722586", + "pull_request": "https://github.com/xc-link/39-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/39-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2026-02-10T00:31:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-18072273879", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-06-10T10:31:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/2#event-23928921341", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T11:28:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/2#event-23928921408", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T11:28:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/2#event-23928922474", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T11:28:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/2#event-23928922686", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-03-26T11:28:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-23928923539", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-03-26T11:28:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/1#event-23928924464", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-03-26T11:28:04Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/3#event-24466961801", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-04-13T23:56:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/3#event-24466961810", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-04-13T23:56:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/3#event-24466962089", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-04-13T23:56:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/61-networklist-org/pull/3#event-24466962178", + "pull_request": "https://github.com/xc-link/61-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/61-networklist-org/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2026-04-13T23:56:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/get_cnip/pull/1#event-16166664035", + "pull_request": "https://github.com/xc-link/get_cnip/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/get_cnip/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-03T18:25:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/1#event-16662668934", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-10T22:57:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/1#event-16662668939", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-03-10T22:57:16Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-17575942093", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-08T15:15:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-17575942110", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-05-08T15:15:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-17575942362", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-08T15:15:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-17575942622", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-05-08T15:15:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/1#event-17575943261", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-05-08T15:15:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/1#event-17575944005", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-05-08T15:15:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/4#event-19757090243", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-17T18:34:28Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/4#event-19757090256", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-09-17T18:34:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/4#event-19757090478", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-09-17T18:34:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/4#event-19757090521", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-09-17T18:34:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-20214303092", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-10T18:02:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-20214303098", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-10-10T18:02:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-20214303297", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-10-10T18:02:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-20214303344", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-10-10T18:02:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-20214303569", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-10-10T18:02:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/2#event-20214303913", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-10-10T18:02:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/6#event-21800022505", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-30T21:09:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/6#event-21800022516", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-12-30T21:09:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/6#event-21800022590", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-30T21:09:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/6#event-21800022617", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2025-12-30T21:09:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/1#event-17251694356", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-14T15:56:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/1#event-17251694364", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-14T15:56:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/2#event-21055290600", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:11:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/2#event-21055290610", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:11:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/2#event-21055290721", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-19T23:11:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/2#event-21055290756", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/40-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-11-19T23:11:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/1#event-21055290896", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-11-19T23:11:26Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/40-networklist-org/pull/1#event-21055291159", + "pull_request": "https://github.com/xc-link/40-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-11-19T23:11:27Z" + } +] \ No newline at end of file diff --git a/issue_events_000009.json b/issue_events_000009.json new file mode 100644 index 000000000..002b292f9 --- /dev/null +++ b/issue_events_000009.json @@ -0,0 +1,1186 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/1#event-17855672811", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T18:00:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/1#event-17855672826", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T18:00:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/1#event-17855673289", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T18:01:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/1#event-17855673321", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T18:01:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/2#event-18551736038", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-09T18:45:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/2#event-18551736049", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-09T18:45:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/3#event-20922010277", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-13T16:38:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/3#event-20922010301", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-11-13T16:38:32Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/3#event-20922010563", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-13T16:38:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/3#event-20922010626", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-11-13T16:38:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/4#event-22630681928", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/4#event-22630681933", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/4#event-22630682041", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/4#event-22630682089", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/5#event-22630682333", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/5#event-22630682347", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/5#event-22630682427", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/5#event-22630682470", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:58Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/6#event-22630682534", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/6#event-22630682543", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/6#event-22630682604", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:20:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/6#event-22630682645", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:20:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/7#event-22630682779", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:21:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/7#event-22630682790", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:21:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/7#event-22630682904", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T02:21:00Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/41-networklist-org/pull/7#event-22630682941", + "pull_request": "https://github.com/xc-link/41-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/41-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-02-09T02:21:01Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/1#event-17836937682", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-27T19:35:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/1#event-17836937693", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-27T19:35:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/1#event-17836937774", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-27T19:35:46Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/1#event-17836937802", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-27T19:35:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/2#event-17855586990", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T17:54:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/2#event-17855587001", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T17:54:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/2#event-17855587211", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T17:54:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/2#event-17855587257", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T17:54:57Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18030612329", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-07T00:43:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18030612334", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-06-07T00:43:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18030612414", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-07T00:43:12Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18030612426", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-06-07T00:43:13Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/4#event-18360472173", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-27T16:00:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/4#event-18360472189", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-06-27T16:00:40Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/4#event-18360472323", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-06-27T16:00:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/4#event-18360472369", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-06-27T16:00:41Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18360472544", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-06-27T16:00:42Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/3#event-18360472956", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-06-27T16:00:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/5#event-18551607864", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-09T18:35:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/5#event-18551607885", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-09T18:35:43Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/5#event-18551608113", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-09T18:35:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/5#event-18551608142", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-09T18:35:44Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/6#event-18596279855", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:46:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/6#event-18596279857", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:46:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/6#event-18596279880", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-12T01:46:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/6#event-18596279886", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-12T01:46:54Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/7#event-20922012355", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-13T16:38:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/7#event-20922012376", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-11-13T16:38:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/7#event-20922012741", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-11-13T16:38:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/7#event-20922012853", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-11-13T16:38:38Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/8#event-21680830845", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-20T00:04:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/8#event-21680830848", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-12-20T00:04:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/8#event-21680830893", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-12-20T00:04:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/8#event-21680830913", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-12-20T00:04:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/9#event-21954628575", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-01-09T19:40:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/9#event-21954628589", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-01-09T19:40:17Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/9#event-21954628726", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-01-09T19:40:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/29-networklist-org/pull/9#event-21954628804", + "pull_request": "https://github.com/xc-link/29-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/29-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-01-09T19:40:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/1#event-16019812851", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-21T20:25:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/2#event-16020862282", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-21T22:16:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/2#event-16020862294", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-01-21T22:16:59Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/3#event-16023278846", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-22T04:38:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/3#event-16023278852", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/javascript", + "label_name": "javascript", + "label_color": "168700", + "label_text_color": "ffffff", + "created_at": "2025-01-22T04:38:37Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/4#event-16167001468", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-03T18:53:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/4#event-16167001474", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-02-03T18:53:22Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/5#event-16635562957", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-07T17:12:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/5#event-16635562966", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-07T17:12:18Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/6#event-16723194315", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-13T01:17:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/6#event-16723194319", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-13T01:17:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/1#event-17855669634", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T18:00:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/1#event-17855669639", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T18:00:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/1#event-17855669699", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-05-28T18:00:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/1#event-17855669749", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-05-28T18:00:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/2#event-18551736227", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-09T18:45:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/2#event-18551736236", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-09T18:45:34Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/2#event-18551736422", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-07-09T18:45:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/2#event-18551736459", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2025-07-09T18:45:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/3#event-21954713529", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_force_pushed", + "ref": "dependabot/maven/com.alibaba-fastjson-1.2.83", + "before_commit_oid": "b00840fd9fe265e8186bffbbda217a0743d82f37", + "after_commit_oid": "2b5d65a83a271b0717f3a27c5fcd4e471908ef39", + "commit_repository": "https://github.com/xc-link/28-networklist-org", + "created_at": "2026-01-09T19:45:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/3#event-21954713536", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-01-09T19:45:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/3#event-21954713548", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-01-09T19:45:35Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/3#event-21954713651", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-01-09T19:45:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/28-networklist-org/pull/3#event-21954713712", + "pull_request": "https://github.com/xc-link/28-networklist-org/pull/3", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/28-networklist-org/labels/java", + "label_name": "java", + "label_color": "ffa221", + "label_text_color": "000000", + "created_at": "2026-01-09T19:45:36Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/7#event-22656092334", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-09T22:12:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/7#event-22656092363", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2026-02-09T22:12:05Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/8#event-22858758392", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-17T16:28:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/8#event-22858758436", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2026-02-17T16:28:51Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/8#event-22858759057", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-02-17T16:28:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/8#event-22858759158", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2026-02-17T16:28:52Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-22858759724", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2026-02-17T16:28:53Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/5#event-22858760493", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/5", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2026-02-17T16:28:55Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/9#event-23835312172", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-24T01:59:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/9#event-23835312190", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2026-03-24T01:59:48Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/9#event-23835312392", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2026-03-24T01:59:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/17-networklist-org/pull/9#event-23835312427", + "pull_request": "https://github.com/xc-link/17-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "label_name": "ruby", + "label_color": "ce2d2d", + "label_text_color": "ffffff", + "created_at": "2026-03-24T01:59:49Z" + } +] \ No newline at end of file diff --git a/issue_events_000010.json b/issue_events_000010.json new file mode 100644 index 000000000..cf3d43612 --- /dev/null +++ b/issue_events_000010.json @@ -0,0 +1,399 @@ +[ + { + "type": "issue_event", + "url": "https://github.com/xc-link/solidity/pull/1#event-15949075325", + "pull_request": "https://github.com/xc-link/solidity/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/solidity/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-15T23:33:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/solidity/pull/1#event-15949075331", + "pull_request": "https://github.com/xc-link/solidity/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/solidity/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-01-15T23:33:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/solidity/pull/2#event-15949075621", + "pull_request": "https://github.com/xc-link/solidity/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/solidity/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-15T23:33:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/solidity/pull/2#event-15949075644", + "pull_request": "https://github.com/xc-link/solidity/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/solidity/labels/github_actions", + "label_name": "github_actions", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-01-15T23:33:33Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/7#event-16816483381", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-18T00:18:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/7#event-16816483387", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/7", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-03-18T00:18:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/8#event-16816517087", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-18T00:21:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/8#event-16816517094", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/8", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-18T00:21:45Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/9#event-16936360452", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-21T22:28:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/9#event-16936360535", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/9", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-03-21T22:28:56Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/10#event-17101898767", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-02T22:39:30Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/10#event-17101898777", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/10", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-02T22:39:31Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/11#event-17135713293", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/11", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-04T20:50:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/11#event-17135713298", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/11", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-04T20:50:47Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/4#event-17135713554", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-04T20:50:49Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/4#event-17135713741", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/4", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-04T20:50:50Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/12#event-17162835825", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/12", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-08T02:10:09Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/12#event-17162835835", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/12", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-08T02:10:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/13#event-17207956626", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/13", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-10T14:41:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/13#event-17207956644", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/13", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/rust", + "label_name": "rust", + "label_color": "000000", + "label_text_color": "ffffff", + "created_at": "2025-04-10T14:41:29Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/14#event-17253945646", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/14", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-14T18:36:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/14#event-17253945657", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/14", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-14T18:36:02Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/15#event-17296909532", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/15", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-04-16T22:39:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/15#event-17296909535", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/15", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/70-networklist-org/labels/go", + "label_name": "go", + "label_color": "16e2e2", + "label_text_color": "000000", + "created_at": "2025-04-16T22:39:21Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/6#event-17296909691", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-04-16T22:39:23Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/70-networklist-org/pull/6#event-17296909825", + "pull_request": "https://github.com/xc-link/70-networklist-org/pull/6", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-04-16T22:39:24Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/15-networklist-org/pull/1#event-18261955970", + "pull_request": "https://github.com/xc-link/15-networklist-org/pull/1", + "actor": "https://github.com/xc-link", + "event": "merged", + "commit_id": "3cf4df6042eac210f345a053d85b874dae5d199d", + "created_at": "2025-06-22T16:56:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/15-networklist-org/pull/1#event-18261955978", + "pull_request": "https://github.com/xc-link/15-networklist-org/pull/1", + "actor": "https://github.com/xc-link", + "event": "closed", + "created_at": "2025-06-22T16:56:07Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/15-networklist-org/pull/1#event-18261956030", + "pull_request": "https://github.com/xc-link/15-networklist-org/pull/1", + "actor": "https://github.com/xc-link", + "event": "head_ref_deleted", + "created_at": "2025-06-22T16:56:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/vcpkg/pull/1#event-15860383561", + "pull_request": "https://github.com/xc-link/vcpkg/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/vcpkg/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-08T21:48:25Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/71-networklist-org/pull/1#event-15884427867", + "pull_request": "https://github.com/xc-link/71-networklist-org/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/71-networklist-org/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-01-10T16:20:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/vcpkg/pull/2#event-16610867799", + "pull_request": "https://github.com/xc-link/vcpkg/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/vcpkg/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-03-06T04:38:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/vcpkg/pull/2#event-16610867806", + "pull_request": "https://github.com/xc-link/vcpkg/pull/2", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/vcpkg/labels/python", + "label_name": "python", + "label_color": "2b67c6", + "label_text_color": "ffffff", + "created_at": "2025-03-06T04:38:08Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/vcpkg/pull/1#event-16610868004", + "pull_request": "https://github.com/xc-link/vcpkg/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "closed", + "created_at": "2025-03-06T04:38:10Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/vcpkg/pull/1#event-16610868124", + "pull_request": "https://github.com/xc-link/vcpkg/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "head_ref_deleted", + "created_at": "2025-03-06T04:38:11Z" + }, + { + "type": "issue_event", + "url": "https://github.com/xc-link/cardano-sl/pull/1#event-16291103529", + "pull_request": "https://github.com/xc-link/cardano-sl/pull/1", + "actor": "https://github.com/dependabot[bot]", + "event": "labeled", + "label": "https://github.com/xc-link/cardano-sl/labels/dependencies", + "label_name": "dependencies", + "label_color": "0366d6", + "label_text_color": "ffffff", + "created_at": "2025-02-13T06:08:27Z" + } +] \ No newline at end of file diff --git a/issues_000001.json b/issues_000001.json new file mode 100644 index 000000000..5ec9552e8 --- /dev/null +++ b/issues_000001.json @@ -0,0 +1,60 @@ +[ + { + "type": "issue", + "url": "https://github.com/xc-link/networklist-org/issues/30", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "jstestissues", + "body": null, + "assignee": "https://github.com/xc-link", + "assignees": [ + "https://github.com/xc-link" + ], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "closed_at": null, + "created_at": "2024-11-17T23:02:10Z", + "updated_at": "2025-08-17T05:49:10Z" + }, + { + "type": "issue", + "url": "https://github.com/xc-link/networklist-org/issues/65", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "B", + "body": null, + "assignee": "https://github.com/xc-link", + "assignees": [ + "https://github.com/xc-link" + ], + "milestone": null, + "labels": [], + "reactions": [], + "closed_at": null, + "created_at": "2025-05-11T17:16:39Z", + "updated_at": "2026-04-08T03:25:14Z" + }, + { + "type": "issue", + "url": "https://github.com/xc-link/networklist-org/issues/69", + "repository": "https://github.com/xc-link/networklist-org", + "user": "https://github.com/xc-link", + "title": "consenlabs#1636", + "body": "block.cc 链接:https://mifengcha.com/coin/0x\n代币简称:USDT\n合约地址:\n0x17fc8498F0806e5DB371C8e54e40413451A2c4FB\nEtherscan链接:\nhttps://etherscan.io/token/0x17fc8498F0806e5DB371C8e54e40413451A2c4FB", + "assignee": "https://github.com/xc-link", + "assignees": [ + "https://github.com/xc-link" + ], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/token_price_template" + ], + "reactions": [], + "closed_at": null, + "created_at": "2025-06-26T04:19:47Z", + "updated_at": "2026-04-08T03:23:39Z" + } +] \ No newline at end of file diff --git a/mcp.json b/mcp.json new file mode 100644 index 000000000..fd2c34670 --- /dev/null +++ b/mcp.json @@ -0,0 +1,59 @@ +// If you copy and paste this example, you will need to remove the comments prefixed with `//`, which are not valid JSON. + +{ + "mcpServers": { + "playwright": { + "command": "docker", + "args": ["run", "-i", "--rm", "--init", "mcp/playwright"], + "tools": ["*"] + }, + + "sentry": { + "command": "npx", + // We can use the $SENTRY_HOST environment variable which is passed to + // the server because of the `env` value below. + "args": ["@sentry/mcp-server@latest", "--host=$SENTRY_HOST"], + "tools": ["get_issue_details", "get_issue_summary"], + "env": { + // We can specify an environment variable value as a string... + "SENTRY_HOST": "https://contoso.sentry.io", + // or refer to a GitHub Actions secret with a name starting with + // `COPILOT_MCP_` + "SENTRY_AUTH_TOKEN": "COPILOT_MCP_SENTRY_AUTH_TOKEN" + }, + }, + + "notionApi": { + "command": "docker", + "args": [ + "run", + "--rm", + "-i", + "-e", + // We can use the $NOTION_API_KEY environment variable which is passed to + // the server because of the `env` value below. + "OPENAPI_MCP_HEADERS={\"Authorization\": \"Bearer $NOTION_API_KEY\", \"Notion-Version\": \"2022-06-28\"}", + "mcp/notion" + ], + "env": { + // The value of the `COPILOT_MCP_NOTION_API_KEY` secret will be passed to the + // server command as an environment variable called `NOTION_API_KEY` + "NOTION_API_KEY": "COPILOT_MCP_NOTION_API_KEY" + }, + "tools": ["*"] + }, + + "Azure": { + "command": "npx", + "args": [ + "-y", + "@azure/mcp@latest", + "server", + "start" + ], + "tools": ["*"] + }, + + + }, +} diff --git a/mv.js b/mv.js new file mode 100644 index 000000000..feab056d9 --- /dev/null +++ b/mv.js @@ -0,0 +1,137 @@ +//Fetch + +var requestOptions = { + method: 'GET', + redirect: 'follow' +}; + +fetch("https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=", requestOptions) + .then(response => response.text()) + .then(result => console.log(result)) + .catch(error => console.log('error', error)); + + + +//Axios + + +var axios = require('axios'); + +var config = { + method: 'get', + url: 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=', + headers: { } +}; + +axios(config) +.then(function (response) { + console.log(JSON.stringify(response.data)); +}) +.catch(function (error) { + console.log(error); +}); + + + + + +//jQuery + +var settings = { + "url": "https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=", + "method": "GET", + "timeout": 0, +}; + +$.ajax(settings).done(function (response) { + console.log(response); +}); + + +//XHR + + +// WARNING: For GET requests, body is set to null by browsers. + +var xhr = new XMLHttpRequest(); +xhr.withCredentials = true; + +xhr.addEventListener("readystatechange", function() { + if(this.readyState === 4) { + console.log(this.responseText); + } +}); + +xhr.open("GET", "https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level="); + +xhr.send(); + + + +//Native + + +var https = require('follow-redirects').https; +var fs = require('fs'); + +var options = { + 'method': 'GET', + 'hostname': 'keyauth.win', + 'path': '/api/seller/?sellerkey=&type=addsub&name=&level=', + 'headers': { + }, + 'maxRedirects': 20 +}; + +var req = https.request(options, function (res) { + var chunks = []; + + res.on("data", function (chunk) { + chunks.push(chunk); + }); + + res.on("end", function (chunk) { + var body = Buffer.concat(chunks); + console.log(body.toString()); + }); + + res.on("error", function (error) { + console.error(error); + }); +}); + +req.end(); + + + + +//Request + + +var request = require('request'); +var options = { + 'method': 'GET', + 'url': 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=', + 'headers': { + } +}; +request(options, function (error, response) { + if (error) throw new Error(error); + console.log(response.body); +}); + + + +//Unirest + +var unirest = require('unirest'); +var req = unirest('GET', 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=') + .end(function (res) { + if (res.error) throw new Error(res.error); + console.log(res.raw_body); + }); + + + + + diff --git a/networklist-org-1.0.0.tgz b/networklist-org-1.0.0.tgz new file mode 100644 index 000000000..0dec5a5cc Binary files /dev/null and b/networklist-org-1.0.0.tgz differ diff --git a/package-cleanup_job-lock.json b/package-cleanup_job-lock.json new file mode 100644 index 000000000..413d1fcca --- /dev/null +++ b/package-cleanup_job-lock.json @@ -0,0 +1,13 @@ + +{ + "command": "cleanup_job", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": {} +} diff --git a/package-lock.json b/package-lock.json index 13e914034..e9e22a733 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,46 +1,30 @@ { - "name": "networklist", + "name": "networklist-org", "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "networklist", + "name": "networklist-org", "version": "1.0.0", + "license": "ISC", "dependencies": { "@material-ui/core": "^4.11.3", "@material-ui/icons": "^4.11.2", "@material-ui/lab": "^4.0.0-alpha.57", "flux": "^4.0.1", - "next": "10.0.7", + "next": "^15.3.3", "react": "17.0.1", "react-dom": "17.0.1", "swr": "^0.5.6", - "web3": "^1.3.4" + "web3": "^4.16.0" } }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" - }, - "node_modules/@babel/highlight": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz", - "integrity": "sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } + "node_modules/@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==", + "license": "MIT" }, "node_modules/@babel/runtime": { "version": "7.12.5", @@ -50,14 +34,14 @@ "regenerator-runtime": "^0.13.4" } }, - "node_modules/@babel/types": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", - "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", + "node_modules/@emnapi/runtime": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz", + "integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==", + "license": "MIT", + "optional": true, "dependencies": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" + "tslib": "^2.4.0" } }, "node_modules/@emotion/hash": { @@ -65,228 +49,413 @@ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" }, - "node_modules/@ethersproject/abi": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz", - "integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==", - "dependencies": { - "@ethersproject/address": "^5.0.4", - "@ethersproject/bignumber": "^5.0.7", - "@ethersproject/bytes": "^5.0.4", - "@ethersproject/constants": "^5.0.4", - "@ethersproject/hash": "^5.0.4", - "@ethersproject/keccak256": "^5.0.3", - "@ethersproject/logger": "^5.0.5", - "@ethersproject/properties": "^5.0.3", - "@ethersproject/strings": "^5.0.4" - } - }, - "node_modules/@ethersproject/abstract-provider": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.9.tgz", - "integrity": "sha512-X9fMkqpeu9ayC3JyBkeeZhn35P4xQkpGX/l+FrxDtEW9tybf/UWXSMi8bGThpPtfJ6q6U2LDetXSpSwK4TfYQQ==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/networks": "^5.0.7", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/transactions": "^5.0.9", - "@ethersproject/web": "^5.0.12" - } - }, - "node_modules/@ethersproject/abstract-signer": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.13.tgz", - "integrity": "sha512-VBIZEI5OK0TURoCYyw0t3w+TEO4kdwnI9wvt4kqUwyxSn3YCRpXYVl0Xoe7XBR/e5+nYOi2MyFGJ3tsFwONecQ==", - "dependencies": { - "@ethersproject/abstract-provider": "^5.0.8", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7" + "node_modules/@ethereumjs/rlp": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", + "integrity": "sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp" + }, + "engines": { + "node": ">=14" } }, - "node_modules/@ethersproject/address": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.10.tgz", - "integrity": "sha512-70vqESmW5Srua1kMDIN6uVfdneZMaMyRYH4qPvkAXGkbicrCOsA9m01vIloA4wYiiF+HLEfL1ENKdn5jb9xiAw==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/rlp": "^5.0.7" + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.2.tgz", + "integrity": "sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.1.0" } }, - "node_modules/@ethersproject/base64": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.8.tgz", - "integrity": "sha512-PNbpHOMgZpZ1skvQl119pV2YkCPXmZTxw+T92qX0z7zaMFPypXWTZBzim+hUceb//zx4DFjeGT4aSjZRTOYThg==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9" + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.2.tgz", + "integrity": "sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.1.0" } }, - "node_modules/@ethersproject/bignumber": { - "version": "5.0.14", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.14.tgz", - "integrity": "sha512-Q4TjMq9Gg3Xzj0aeJWqJgI3tdEiPiET7Y5OtNtjTAODZ2kp4y9jMNg97zVcvPedFvGROdpGDyCI77JDFodUzOw==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "bn.js": "^4.4.0" + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz", + "integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/bignumber/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz", + "integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/bytes": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.10.tgz", - "integrity": "sha512-vpu0v1LZ1j1s9kERQIMnVU69MyHEzUff7nqK9XuCU4vx+AM8n9lU2gj7jtJIvGSt9HzatK/6I6bWusI5nyuaTA==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz", + "integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/constants": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.9.tgz", - "integrity": "sha512-2uAKH89UcaJP/Sc+54u92BtJtZ4cPgcS1p0YbB1L3tlkavwNvth+kNCUplIB1Becqs7BOZr0B/3dMNjhJDy4Dg==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13" + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz", + "integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/hash": { - "version": "5.0.11", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.11.tgz", - "integrity": "sha512-H3KJ9fk33XWJ2djAW03IL7fg3DsDMYjO1XijiUb1hJ85vYfhvxu0OmsU7d3tg2Uv1H1kFSo8ghr3WFQ8c+NL3g==", - "dependencies": { - "@ethersproject/abstract-signer": "^5.0.10", - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "node_modules/@ethersproject/keccak256": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.8.tgz", - "integrity": "sha512-zoGbwXcWWs9MX4NOAZ7N0hhgIRl4Q/IO/u9c/RHRY4WqDy3Ywm0OLamEV53QDwhjwn3YiiVwU1Ve5j7yJ0a/KQ==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "js-sha3": "0.5.7" + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz", + "integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/keccak256/node_modules/js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz", + "integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/logger": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.9.tgz", - "integrity": "sha512-kV3Uamv3XOH99Xf3kpIG3ZkS7mBNYcLDM00JSDtNgNB4BihuyxpQzIZPRIDmRi+95Z/R1Bb0X2kUNHa/kJoVrw==" + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz", + "integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/networks": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.8.tgz", - "integrity": "sha512-PYpptlO2Tu5f/JEBI5hdlMds5k1DY1QwVbh3LKPb3un9dQA2bC51vd2/gRWAgSBpF3kkmZOj4FhD7ATLX4H+DA==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz", + "integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/properties": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.8.tgz", - "integrity": "sha512-zEnLMze2Eu2VDPj/05QwCwMKHh506gpT9PP9KPVd4dDB+5d6AcROUYVLoIIQgBYK7X/Gw0UJmG3oVtnxOQafAw==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz", + "integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/rlp": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.8.tgz", - "integrity": "sha512-E4wdFs8xRNJfzNHmnkC8w5fPeT4Wd1U2cust3YeT16/46iSkLT8nn8ilidC6KhR7hfuSZE4UqSPzyk76p7cdZg==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.2.tgz", + "integrity": "sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.1.0" } }, - "node_modules/@ethersproject/signing-key": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.10.tgz", - "integrity": "sha512-w5it3GbFOvN6e0mTd5gDNj+bwSe6L9jqqYjU+uaYS8/hAEp4qYLk5p8ZjbJJkNn7u1p0iwocp8X9oH/OdK8apA==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "elliptic": "6.5.4" + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.2.tgz", + "integrity": "sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.1.0" } }, - "node_modules/@ethersproject/strings": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.9.tgz", - "integrity": "sha512-ogxBpcUpdO524CYs841MoJHgHxEPUy0bJFDS4Ezg8My+WYVMfVAOlZSLss0Rurbeeam8CpUVDzM4zUn09SU66Q==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.2.tgz", + "integrity": "sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.1.0" } }, - "node_modules/@ethersproject/transactions": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.10.tgz", - "integrity": "sha512-Tqpp+vKYQyQdJQQk4M73tDzO7ODf2D42/sJOcKlDAAbdSni13v6a+31hUdo02qYXhVYwIs+ZjHnO4zKv5BNk8w==", - "dependencies": { - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/rlp": "^5.0.7", - "@ethersproject/signing-key": "^5.0.8" - } - }, - "node_modules/@ethersproject/web": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.13.tgz", - "integrity": "sha512-G3x/Ns7pQm21ALnWLbdBI5XkW/jrsbXXffI9hKNPHqf59mTxHYtlNiSwxdoTSwCef3Hn7uvGZpaSgTyxs7IufQ==", - "dependencies": { - "@ethersproject/base64": "^5.0.7", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.2.tgz", + "integrity": "sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.1.0" } }, - "node_modules/@hapi/accept": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", - "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.2.tgz", + "integrity": "sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.1.0" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.2.tgz", + "integrity": "sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.1.0" } }, - "node_modules/@hapi/boom": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.1.tgz", - "integrity": "sha512-VNR8eDbBrOxBgbkddRYIe7+8DZ+vSbV6qlmaN2x7eWjsUjy2VmQgChkOKcVZIeupEZYj+I0dqNg430OhwzagjA==", + "node_modules/@img/sharp-wasm32": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.2.tgz", + "integrity": "sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, "dependencies": { - "@hapi/hoek": "9.x.x" + "@emnapi/runtime": "^1.4.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.2.tgz", + "integrity": "sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.2.tgz", + "integrity": "sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@hapi/hoek": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", - "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==" + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.2.tgz", + "integrity": "sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } }, "node_modules/@material-ui/core": { "version": "4.11.3", @@ -395,157 +564,224 @@ } }, "node_modules/@next/env": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.7.tgz", - "integrity": "sha512-/vnz2SL/mk3Tei58WfRtVnvz5xHmAqcBmZL5sTBEy1CZG6OtZGNx0qAFCjtVkeJ5m1Bh4Ut+WFh/RF333wx8Sg==" - }, - "node_modules/@next/polyfill-module": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.7.tgz", - "integrity": "sha512-HxqzRpoSgmZP0kRIWwH+e0SgtAXqJ0VkYtwWcsQFED8+xF4Eqn+7Twyp4uE6hutC8gr8IFSFqH+DEYhRtg1ltQ==" - }, - "node_modules/@next/react-dev-overlay": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.7.tgz", - "integrity": "sha512-yq71MDHVqN2N+IqOvZDiFsMpQrBcymrdpTx1ShhAADX7cWQvW4dhcIir4BbfrS10vS1LLz/3a8uKZkGdNoJj3w==", - "dependencies": { - "@babel/code-frame": "7.12.11", - "anser": "1.4.9", - "chalk": "4.0.0", - "classnames": "2.2.6", - "css.escape": "1.5.1", - "data-uri-to-buffer": "3.0.1", - "platform": "1.3.6", - "shell-quote": "1.7.2", - "source-map": "0.8.0-beta.0", - "stacktrace-parser": "0.1.10", - "strip-ansi": "6.0.0" - } - }, - "node_modules/@next/react-dev-overlay/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.3.tgz", + "integrity": "sha512-OdiMrzCl2Xi0VTjiQQUK0Xh7bJHnOuET2s+3V+Y40WJBAXrJeGA3f+I8MZJ/YQ3mVGi5XGR1L66oFlgqXhQ4Vw==", + "license": "MIT" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.3.tgz", + "integrity": "sha512-WRJERLuH+O3oYB4yZNVahSVFmtxRNjNF1I1c34tYMoJb0Pve+7/RaLAJJizyYiFhjYNGHRAE1Ri2Fd23zgDqhg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/chalk": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", - "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/@next/swc-darwin-x64": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.3.tgz", + "integrity": "sha512-XHdzH/yBc55lu78k/XwtuFR/ZXUTcflpRXcsu0nKmF45U96jt1tsOZhVrn5YH+paw66zOANpOnFQ9i6/j+UYvw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.3.tgz", + "integrity": "sha512-VZ3sYL2LXB8znNGcjhocikEkag/8xiLgnvQts41tq6i+wql63SMS1Q6N8RVXHw5pEUjiof+II3HkDd7GFcgkzw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=7.0.0" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@next/react-dev-overlay/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@next/swc-linux-arm64-musl": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.3.tgz", + "integrity": "sha512-h6Y1fLU4RWAp1HPNJWDYBQ+e3G7sLckyBXhmH9ajn8l/RSMnhbuPBV/fXmy3muMcVwoJdHL+UtzRzs0nXOf9SA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.3.tgz", + "integrity": "sha512-jJ8HRiF3N8Zw6hGlytCj5BiHyG/K+fnTKVDEKvUCyiQ/0r5tgwO7OgaRiOjjRoIx2vwLR+Rz8hQoPrnmFbJdfw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@next/react-refresh-utils": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.7.tgz", - "integrity": "sha512-d/71vtQglv6m7sh4W1O9drc2hYti7UnAdEXfBLZAS354g2S80lvCRGIhbDrMx4w0rpShoxBIZboE2++LihAESg==" - }, - "node_modules/@opentelemetry/api": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", - "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", - "dependencies": { - "@opentelemetry/context-base": "^0.14.0" - }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.3.tgz", + "integrity": "sha512-HrUcTr4N+RgiiGn3jjeT6Oo208UT/7BuTr7K0mdKRBtTbT4v9zJqCDKO97DUqqoBK1qyzP1RwvrWTvU6EPh/Cw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8.0.0" + "node": ">= 10" } }, - "node_modules/@opentelemetry/context-base": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", - "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==", + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.3.tgz", + "integrity": "sha512-SxorONgi6K7ZUysMtRF3mIeHC5aA3IQLmKFQzU0OuhuUYwpOBc1ypaLJLP5Bf3M9k53KUUUj4vTPwzGvl/NwlQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8.0.0" + "node": ">= 10" } }, - "node_modules/@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "node_modules/@next/swc-win32-x64-msvc": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.3.tgz", + "integrity": "sha512-4QZG6F8enl9/S2+yIiOiju0iCTFd93d8VC1q9LZS4p/Xuk81W2QDjCFeoogmrWWkAD59z8ZxepBQap2dKS5ruw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6" + "node": ">= 10" } }, - "node_modules/@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "node_modules/@noble/curves": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", + "license": "MIT", "dependencies": { - "defer-to-connect": "^1.0.1" + "@noble/hashes": "1.4.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", + "license": "MIT", "engines": { - "node": ">=6" + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", - "dependencies": { - "@types/node": "*" + "node_modules/@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@types/node": { - "version": "12.20.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", - "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" - }, - "node_modules/@types/pbkdf2": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", + "node_modules/@scure/bip32": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", + "license": "MIT", "dependencies": { - "@types/node": "*" + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@types/prop-types": { - "version": "15.7.3", + "node_modules/@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "license": "Apache-2.0" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@types/node": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.3.0.tgz", + "integrity": "sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==", + "dependencies": { + "undici-types": "~7.10.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.3", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" }, @@ -571,10602 +807,3128 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/@types/secp256k1": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz", - "integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==", + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, - "node_modules/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "node_modules/abitype": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz", + "integrity": "sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==", + "license": "MIT", + "peerDependencies": { + "typescript": ">=4.9.4", + "zod": "^3 >=3.19.1" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "node_modules/anser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", - "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" - }, - "node_modules/ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "streamsearch": "^1.1.0" + }, "engines": { - "node": ">=8" + "node": ">=10.16.0" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" } }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "optional": true - }, - "node_modules/are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "optional": true, + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "license": "MIT", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/are-we-there-yet/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "optional": true + "node_modules/caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" }, - "node_modules/are-we-there-yet/node_modules/string_decoder": { + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clsx": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "dependencies": { - "safe-buffer": "~5.1.0" + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "engines": { + "node": ">=6" } }, - "node_modules/array-filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", - "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - }, - "node_modules/array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "optional": true - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "optional": true, "dependencies": { - "safer-buffer": "~2.1.0" + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" } }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "optional": true, "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT", + "optional": true }, - "node_modules/assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "optional": true, "dependencies": { - "object-assign": "^4.1.1", - "util": "0.10.3" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "license": "Apache-2.0", + "bin": { + "crc32": "bin/crc32.njs" + }, "engines": { "node": ">=0.8" } }, - "node_modules/assert/node_modules/inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - }, - "node_modules/assert/node_modules/util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "node_modules/cross-fetch": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", + "license": "MIT", "dependencies": { - "inherits": "2.0.1" + "node-fetch": "^2.7.0" } }, - "node_modules/ast-types": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", - "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==", - "engines": { - "node": ">=4" + "node_modules/css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "dependencies": { + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" } }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "node_modules/csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" }, - "node_modules/available-typed-arrays": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", - "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", "dependencies": { - "array-filter": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "node_modules/dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "node_modules/babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "node_modules/base-x": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", - "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", + "node_modules/detect-libc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", "dependencies": { - "safe-buffer": "^5.0.1" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + "node_modules/dom-helpers/node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", "dependencies": { - "tweetnacl": "^0.14.3" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", "engines": { - "node": "*" + "node": ">= 0.4" } }, - "node_modules/bignumber.js": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz", - "integrity": "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", "engines": { - "node": "*" + "node": ">= 0.4" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "optional": true, + "node_modules/ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", + "license": "MIT", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" } }, - "node_modules/blakejs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz", - "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U=" + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "dependencies": { + "fbjs": "^3.0.0" + } }, - "node_modules/bn.js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", - "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + "node_modules/fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", + "dependencies": { + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" }, - "node_modules/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "node_modules/flux": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", + "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", "dependencies": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "engines": { - "node": ">= 0.8" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" } }, - "node_modules/body-parser/node_modules/http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" + "is-callable": "^1.2.7" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/body-parser/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/body-parser/node_modules/raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "node_modules/browserify-aes": { + "node_modules/gopd": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/browserify-des": { + "node_modules/has-property-descriptors": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", "dependencies": { - "pako": "~1.0.5" + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/browserslist": { - "version": "4.16.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", - "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001173", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.634", - "escalade": "^3.1.1", - "node-releases": "^1.1.69" - }, - "bin": { - "browserslist": "cli.js" + "function-bind": "^1.1.2" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">= 0.4" } }, - "node_modules/bs58": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dependencies": { - "base-x": "^3.0.2" + "react-is": "^16.7.0" } }, - "node_modules/bs58check": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", - "dependencies": { - "bs58": "^4.0.0", - "create-hash": "^1.1.0", - "safe-buffer": "^5.1.2" - } + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" }, - "node_modules/buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "node_modules/indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" + "symbol-observable": "1.2.0" } }, - "node_modules/buffer-to-arraybuffer": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, - "node_modules/bufferutil": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.3.tgz", - "integrity": "sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw==", - "hasInstallScript": true, + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "license": "MIT", "dependencies": { - "node-gyp-build": "^4.2.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT", + "optional": true }, - "node_modules/bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" + "node": ">= 0.4" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "license": "MIT", "dependencies": { - "pump": "^3.0.0" + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } + "node_modules/is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" }, - "node_modules/caniuse-lite": { - "version": "1.0.30001196", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz", - "integrity": "sha512-CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg==" - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "license": "MIT", "dependencies": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "which-typed-array": "^1.1.16" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "fsevents": "~2.3.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "node_modules/cids": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", - "dependencies": { - "buffer": "^5.5.0", - "class-is": "^1.1.0", - "multibase": "~0.6.0", - "multicodec": "^1.0.0", - "multihashes": "~0.4.15" - }, - "engines": { - "node": ">=4.0.0", - "npm": ">=3.0.0" + "node_modules/isomorphic-ws": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", + "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", + "license": "MIT", + "peerDependencies": { + "ws": "*" } }, - "node_modules/cids/node_modules/multicodec": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", - "dependencies": { - "buffer": "^5.6.0", - "varint": "^5.0.0" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "node_modules/jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" } }, - "node_modules/class-is": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" - }, - "node_modules/classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - }, - "node_modules/clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "node_modules/jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", "dependencies": { - "mimic-response": "^1.0.0" + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" } }, - "node_modules/clone-response/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" + "node_modules/jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", - "engines": { - "node": ">=6" + "node_modules/jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "optional": true, - "engines": { - "node": ">=0.10.0" + "node_modules/jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "node_modules/color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "optional": true, + "node_modules/jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", "dependencies": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", "dependencies": { - "color-name": "1.1.3" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "node_modules/color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "optional": true, + "node_modules/jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" } }, - "node_modules/colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + "node_modules/jss/node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { - "delayed-stream": "~1.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">= 0.8" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "node_modules/console-control-strings": { + "node_modules/math-intrinsics": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "optional": true - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "node_modules/content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "dependencies": { - "safe-buffer": "5.1.2" - }, + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.4" } }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/content-hash": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", - "dependencies": { - "cids": "^0.7.1", - "multicodec": "^0.5.5", - "multihashes": "^0.4.15" + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "node_modules/next": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/next/-/next-15.3.3.tgz", + "integrity": "sha512-JqNj29hHNmCLtNvd090SyRbXJiivQ+58XjCcrC50Crb5g5u2zi7Y2YivbsEfzk6AtVI80akdOQbaMZwWB1Hthw==", + "license": "MIT", + "dependencies": { + "@next/env": "15.3.3", + "@swc/counter": "0.1.3", + "@swc/helpers": "0.5.15", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, "engines": { - "node": ">= 0.6" + "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "15.3.3", + "@next/swc-darwin-x64": "15.3.3", + "@next/swc-linux-arm64-gnu": "15.3.3", + "@next/swc-linux-arm64-musl": "15.3.3", + "@next/swc-linux-x64-gnu": "15.3.3", + "@next/swc-linux-x64-musl": "15.3.3", + "@next/swc-win32-arm64-msvc": "15.3.3", + "@next/swc-win32-x64-msvc": "15.3.3", + "sharp": "^0.34.1" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.41.2", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } } }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.1" + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/convert-source-map/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, - "node_modules/cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" + "node_modules/popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "object-assign": "^4", - "vary": "^1" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">= 0.10" + "node": "^10 || ^12 || >=14" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "asap": "~2.0.3" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", - "dependencies": { - "node-fetch": "2.6.1" - } - }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "node_modules/react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" }, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/css-vendor": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", - "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "node_modules/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", "dependencies": { - "@babel/runtime": "^7.8.3", - "is-in-browser": "^1.0.2" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "node_modules/cssnano-preset-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", - "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", + "node_modules/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", "dependencies": { - "caniuse-lite": "^1.0.30001179", - "postcss": "^7.0.32" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" } }, - "node_modules/cssnano-preset-simple/node_modules/postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "node_modules/regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "license": "MIT", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" }, "engines": { - "node": ">=6.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cssnano-preset-simple/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" + "node_modules/scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "node_modules/cssnano-preset-simple/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" + "node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/cssnano-simple": { + "node_modules/set-function-length": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", - "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", - "dependencies": { - "cssnano-preset-simple": "1.2.2", - "postcss": "^7.0.32" - } - }, - "node_modules/cssnano-simple/node_modules/postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" }, "engines": { - "node": ">=6.0.0" + "node": ">= 0.4" } }, - "node_modules/cssnano-simple/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" }, - "node_modules/cssnano-simple/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "node_modules/sharp": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.2.tgz", + "integrity": "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, "dependencies": { - "has-flag": "^3.0.0" + "color": "^4.2.3", + "detect-libc": "^2.0.4", + "semver": "^7.7.2" }, "engines": { - "node": ">=6" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.2", + "@img/sharp-darwin-x64": "0.34.2", + "@img/sharp-libvips-darwin-arm64": "1.1.0", + "@img/sharp-libvips-darwin-x64": "1.1.0", + "@img/sharp-libvips-linux-arm": "1.1.0", + "@img/sharp-libvips-linux-arm64": "1.1.0", + "@img/sharp-libvips-linux-ppc64": "1.1.0", + "@img/sharp-libvips-linux-s390x": "1.1.0", + "@img/sharp-libvips-linux-x64": "1.1.0", + "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", + "@img/sharp-libvips-linuxmusl-x64": "1.1.0", + "@img/sharp-linux-arm": "0.34.2", + "@img/sharp-linux-arm64": "0.34.2", + "@img/sharp-linux-s390x": "0.34.2", + "@img/sharp-linux-x64": "0.34.2", + "@img/sharp-linuxmusl-arm64": "0.34.2", + "@img/sharp-linuxmusl-x64": "0.34.2", + "@img/sharp-wasm32": "0.34.2", + "@img/sharp-win32-arm64": "0.34.2", + "@img/sharp-win32-ia32": "0.34.2", + "@img/sharp-win32-x64": "0.34.2" } }, - "node_modules/csstype": { - "version": "2.6.16", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", - "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" - }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "optional": true, "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "is-arrayish": "^0.3.1" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dependencies": { - "assert-plus": "^1.0.0" - }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", "engines": { - "node": ">=0.10" + "node": ">=0.10.0" } }, - "node_modules/data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", "engines": { - "node": ">= 6" + "node": ">=10.0.0" } }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "client-only": "0.0.1" + }, "engines": { - "node": ">=0.10" + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "optional": true, + "node_modules/swr": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", + "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", "dependencies": { - "mimic-response": "^2.0.0" - }, - "engines": { - "node": ">=8" + "dequal": "2.0.2" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "optional": true, + "node_modules/symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "engines": { - "node": ">=4.0.0" + "node": ">=0.10.0" } }, - "node_modules/defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dependencies": { - "object-keys": "^1.0.12" + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">= 0.4" + "node": ">=14.17" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "node_modules/ua-parser-js": { + "version": "0.7.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz", + "integrity": "sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, "engines": { - "node": ">=0.4.0" + "node": "*" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "optional": true + "node_modules/undici-types": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", + "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==" }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "engines": { - "node": ">= 0.6" + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "node_modules/dequal": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", - "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==", - "engines": { - "node": ">=6" + "node_modules/web3": { + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz", + "integrity": "sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==", + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-contract": "^4.7.2", + "web3-eth-ens": "^4.4.0", + "web3-eth-iban": "^4.0.7", + "web3-eth-personal": "^4.1.0", + "web3-net": "^4.1.0", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-rpc-providers": "^1.0.0-rc.4", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.12.0" } }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "node_modules/web3-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz", + "integrity": "sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==", + "license": "LGPL-3.0", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", - "optional": true, - "bin": { - "detect-libc": "bin/detect-libc.js" + "web3-errors": "^1.3.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-iban": "^4.0.7", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">=0.10" + "node": ">=14", + "npm": ">=6.12.0" + }, + "optionalDependencies": { + "web3-providers-ipc": "^4.0.7" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "node_modules/web3-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz", + "integrity": "sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==", + "license": "LGPL-3.0", "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "web3-types": "^1.10.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/dom-helpers": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", - "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", + "node_modules/web3-eth": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz", + "integrity": "sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w==", + "license": "LGPL-3.0", "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "setimmediate": "^1.0.5", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-net": "^4.1.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/dom-helpers/node_modules/csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - }, - "node_modules/dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "node_modules/domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "node_modules/web3-eth-abi": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz", + "integrity": "sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg==", + "license": "LGPL-3.0", + "dependencies": { + "abitype": "0.7.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">=0.4", - "npm": ">=1.2" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "node_modules/web3-eth-accounts": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz", + "integrity": "sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ==", + "license": "LGPL-3.0", "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "@ethereumjs/rlp": "^4.0.1", + "crc-32": "^1.2.2", + "ethereum-cryptography": "^2.0.0", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "node_modules/electron-to-chromium": { - "version": "1.3.680", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.680.tgz", - "integrity": "sha512-XBACJT9RdpdWtoMXQPR8Be3ZtmizWWbxfw8cY2b5feUwiDO3FUl8qo4W2jXoq/WnnA3xBRqafu1XbpczqyUvlA==" - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "node_modules/web3-eth-contract": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz", + "integrity": "sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA==", + "license": "LGPL-3.0", "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "@ethereumjs/rlp": "^5.0.2", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">= 0.10" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "node_modules/web3-eth-contract/node_modules/@ethereumjs/rlp": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz", + "integrity": "sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp.cjs" + }, "engines": { - "node": ">= 0.8" + "node": ">=18" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/web3-eth-ens": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz", + "integrity": "sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ==", + "license": "LGPL-3.0", "dependencies": { - "once": "^1.4.0" + "@adraffy/ens-normalize": "^1.8.8", + "web3-core": "^4.5.0", + "web3-errors": "^1.2.0", + "web3-eth": "^4.8.0", + "web3-eth-contract": "^4.5.0", + "web3-net": "^4.1.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.0", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "node_modules/web3-eth-iban": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz", + "integrity": "sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==", + "license": "LGPL-3.0", "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7", + "web3-validator": "^2.0.3" }, "engines": { - "node": ">= 0.4" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/web3-eth-personal": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz", + "integrity": "sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ==", + "license": "LGPL-3.0", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "web3-core": "^4.6.0", + "web3-eth": "^4.9.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.8.0", + "web3-utils": "^4.3.1", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">= 0.4" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "node_modules/web3-net": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz", + "integrity": "sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA==", + "license": "LGPL-3.0", "dependencies": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" + "web3-core": "^4.4.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.6.0", + "web3-utils": "^4.3.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "node_modules/web3-providers-http": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz", + "integrity": "sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ==", + "license": "LGPL-3.0", "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" + "cross-fetch": "^4.0.0", + "web3-errors": "^1.3.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "node_modules/web3-providers-http/node_modules/cross-fetch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz", + "integrity": "sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==", + "license": "MIT", "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "node-fetch": "^2.7.0" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/web3-providers-ipc": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz", + "integrity": "sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==", + "license": "LGPL-3.0", + "optional": true, + "dependencies": { + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7" + }, "engines": { - "node": ">=6" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "node_modules/web3-providers-ws": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz", + "integrity": "sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw==", + "license": "LGPL-3.0", + "dependencies": { + "@types/ws": "8.5.3", + "isomorphic-ws": "^5.0.0", + "web3-errors": "^1.2.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1", + "ws": "^8.17.1" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" + } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "node_modules/web3-rpc-methods": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz", + "integrity": "sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig==", + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "^4.4.0", + "web3-types": "^1.6.0", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">=0.8.0" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/web3-rpc-providers": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz", + "integrity": "sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw==", + "license": "LGPL-3.0", + "dependencies": { + "web3-errors": "^1.3.1", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">=0.10.0" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "node_modules/web3-types": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz", + "integrity": "sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==", + "license": "LGPL-3.0", "engines": { - "node": ">= 0.6" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/eth-ens-namehash": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha1-IprEbsqG1S4MmR58sq74P/D2i88=", + "node_modules/web3-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz", + "integrity": "sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==", + "license": "LGPL-3.0", "dependencies": { - "idna-uts46-hx": "^2.3.1", - "js-sha3": "^0.5.7" + "ethereum-cryptography": "^2.0.0", + "eventemitter3": "^5.0.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/eth-ens-namehash/node_modules/js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" - }, - "node_modules/eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/eth-lib/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/ethereum-bloom-filters": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.9.tgz", - "integrity": "sha512-GiK/RQkAkcVaEdxKVkPcG07PQ5vD7v2MFSHgZmBJSfMzNRHimntdBithsHAT89tAXnIpzVDWt8iaCD1DvkaxGg==", - "dependencies": { - "js-sha3": "^0.8.0" - } - }, - "node_modules/ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "dependencies": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "node_modules/ethereumjs-common": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz", - "integrity": "sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==" - }, - "node_modules/ethereumjs-tx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", - "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", - "dependencies": { - "ethereumjs-common": "^1.5.0", - "ethereumjs-util": "^6.0.0" - } - }, - "node_modules/ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "dependencies": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - } - }, - "node_modules/ethereumjs-util/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=", - "dependencies": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/ethjs-unit/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - }, - "node_modules/ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", - "dependencies": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "dependencies": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "dependencies": { - "type": "^2.0.0" - } - }, - "node_modules/ext/node_modules/type": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", - "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "dependencies": { - "fbjs": "^3.0.0" - } - }, - "node_modules/fbjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", - "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", - "dependencies": { - "cross-fetch": "^3.0.4", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - } - }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/flux": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", - "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", - "dependencies": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.0" - } - }, - "node_modules/foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "optional": true - }, - "node_modules/fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "node_modules/fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "dependencies": { - "minipass": "^2.6.0" - } - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "optional": true, - "dependencies": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "node_modules/gauge/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gauge/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", - "optional": true - }, - "node_modules/glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "dependencies": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "node_modules/got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/got/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/got/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", - "engines": { - "node": "*" - } - }, - "node_modules/has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "dependencies": { - "has-symbol-support-x": "^1.4.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "optional": true - }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "bin": { - "he": "bin/he" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - }, - "node_modules/http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=" - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "node_modules/hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "dependencies": { - "punycode": "2.1.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/idna-uts46-hx/node_modules/punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=", - "engines": { - "node": ">=6" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "node_modules/indefinite-observable": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", - "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", - "dependencies": { - "symbol-observable": "1.2.0" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "optional": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", - "dependencies": { - "call-bind": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "optional": true - }, - "node_modules/is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "dependencies": { - "call-bind": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "optional": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "node_modules/is-generator-function": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz", - "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=", - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/is-in-browser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" - }, - "node_modules/is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "dependencies": { - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", - "dependencies": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", - "foreach": "^2.0.5", - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "node_modules/isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "dependencies": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "node_modules/json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" - }, - "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "node_modules/jss": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", - "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "csstype": "^3.0.2", - "indefinite-observable": "^2.0.1", - "is-in-browser": "^1.1.3", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-camel-case": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", - "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "hyphenate-style-name": "^1.0.3", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-default-unit": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", - "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-global": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", - "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-nested": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", - "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-props-sort": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", - "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-rule-value-function": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", - "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-vendor-prefixer": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", - "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "css-vendor": "^2.0.8", - "jss": "10.5.1" - } - }, - "node_modules/jss/node_modules/csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - }, - "node_modules/keccak": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz", - "integrity": "sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==", - "hasInstallScript": true, - "dependencies": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/keccak/node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - }, - "node_modules/keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "dependencies": { - "json-buffer": "3.0.0" - } - }, - "node_modules/line-column": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", - "integrity": "sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=", - "dependencies": { - "isarray": "^1.0.0", - "isobject": "^2.0.0" - } - }, - "node_modules/loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", - "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", - "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", - "dependencies": { - "mime-db": "1.46.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "dependencies": { - "dom-walk": "^0.1.0" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "node_modules/minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "node_modules/minipass/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "dependencies": { - "minipass": "^2.9.0" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "optional": true - }, - "node_modules/mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", - "dependencies": { - "mkdirp": "*" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mock-fs": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.13.0.tgz", - "integrity": "sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==" - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "node_modules/multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "dependencies": { - "varint": "^5.0.0" - } - }, - "node_modules/multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/multihashes/node_modules/multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=" - }, - "node_modules/nanoid": { - "version": "3.1.20", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", - "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "optional": true - }, - "node_modules/native-url": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", - "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", - "dependencies": { - "querystring": "^0.2.0" - } - }, - "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/next": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/next/-/next-10.0.7.tgz", - "integrity": "sha512-We0utmwwfkvO12eLyUZd3tX9VLDE3FPpOaHpH3kqKdUTxJzUKt8FLBXCTm0mwsTKW5XColWG8mJvz2OLu3+3QA==", - "dependencies": { - "@babel/runtime": "7.12.5", - "@hapi/accept": "5.0.1", - "@next/env": "10.0.7", - "@next/polyfill-module": "10.0.7", - "@next/react-dev-overlay": "10.0.7", - "@next/react-refresh-utils": "10.0.7", - "@opentelemetry/api": "0.14.0", - "ast-types": "0.13.2", - "browserslist": "4.16.1", - "buffer": "5.6.0", - "caniuse-lite": "^1.0.30001179", - "chalk": "2.4.2", - "chokidar": "3.5.1", - "crypto-browserify": "3.12.0", - "cssnano-simple": "1.2.2", - "etag": "1.8.1", - "find-cache-dir": "3.3.1", - "jest-worker": "24.9.0", - "native-url": "0.3.4", - "node-fetch": "2.6.1", - "node-html-parser": "1.4.9", - "node-libs-browser": "^2.2.1", - "p-limit": "3.1.0", - "path-browserify": "1.0.1", - "pnp-webpack-plugin": "1.6.4", - "postcss": "8.1.7", - "process": "0.11.10", - "prop-types": "15.7.2", - "raw-body": "2.4.1", - "react-is": "16.13.1", - "react-refresh": "0.8.3", - "sharp": "0.26.3", - "stream-browserify": "3.0.0", - "styled-jsx": "3.3.2", - "use-subscription": "1.5.1", - "vm-browserify": "1.1.2", - "watchpack": "2.0.0-beta.13" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=10.13.0" - }, - "optionalDependencies": { - "sharp": "0.26.3" - } - }, - "node_modules/next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "node_modules/node-abi": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz", - "integrity": "sha512-6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg==", - "optional": true, - "dependencies": { - "semver": "^5.4.1" - } - }, - "node_modules/node-abi/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/node-addon-api": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz", - "integrity": "sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==", - "optional": true - }, - "node_modules/node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "engines": { - "node": "4.x || >=6.0.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz", - "integrity": "sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-html-parser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", - "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", - "dependencies": { - "he": "1.2.0" - } - }, - "node_modules/node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dependencies": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "node_modules/node-libs-browser/node_modules/path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "node_modules/node-libs-browser/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "node_modules/node-libs-browser/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/readable-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/node-libs-browser/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/node-libs-browser/node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "node_modules/noop-logger": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", - "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=", - "optional": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "optional": true, - "dependencies": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=", - "dependencies": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/number-to-bn/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha1-VVQoTFQ6ImbXo48X4HOCH73jk80=", - "dependencies": { - "http-https": "^1.0.0" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "node_modules/p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "node_modules/pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "node_modules/picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "engines": { - "node": ">=8.6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/platform": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" - }, - "node_modules/pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "dependencies": { - "ts-pnp": "^1.1.6" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/popper.js": { - "version": "1.16.1-lts", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", - "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" - }, - "node_modules/postcss": { - "version": "8.1.7", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", - "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", - "dependencies": { - "colorette": "^1.2.1", - "line-column": "^1.0.2", - "nanoid": "^3.1.16", - "source-map": "^0.6.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prebuild-install": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz", - "integrity": "sha512-7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ==", - "optional": true, - "dependencies": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.7.0", - "noop-logger": "^0.1.1", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0", - "which-pm-runs": "^1.0.0" - }, - "bin": { - "prebuild-install": "bin.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/prebuild-install/node_modules/simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", - "optional": true, - "dependencies": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", - "engines": { - "node": ">=4" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dependencies": { - "asap": "~2.0.3" - } - }, - "node_modules/prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "dependencies": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", - "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", - "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.3", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "optional": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/react": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", - "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", - "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.1" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "dependencies": { - "lowercase-keys": "^1.0.0" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rlp": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz", - "integrity": "sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==", - "dependencies": { - "bn.js": "^4.11.1" - }, - "bin": { - "rlp": "bin/rlp" - } - }, - "node_modules/rlp/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scheduler": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", - "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" - }, - "node_modules/secp256k1": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz", - "integrity": "sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==", - "hasInstallScript": true, - "dependencies": { - "elliptic": "^6.5.2", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/secp256k1/node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "dependencies": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - }, - "node_modules/serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", - "dependencies": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "optional": true - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/sharp": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.26.3.tgz", - "integrity": "sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg==", - "hasInstallScript": true, - "optional": true, - "dependencies": { - "array-flatten": "^3.0.0", - "color": "^3.1.3", - "detect-libc": "^1.0.3", - "node-addon-api": "^3.0.2", - "npmlog": "^4.1.2", - "prebuild-install": "^6.0.0", - "semver": "^7.3.2", - "simple-get": "^4.0.0", - "tar-fs": "^2.1.1", - "tunnel-agent": "^0.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/sharp/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "optional": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "node_modules/signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "optional": true - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - }, - "node_modules/simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", - "optional": true, - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/simple-get/node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "optional": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/simple-get/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "optional": true, - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/stream-http/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/stream-http/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/stream-http/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" - }, - "node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "optional": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-hex-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", - "dependencies": { - "is-hex-prefixed": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/styled-jsx": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", - "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", - "dependencies": { - "@babel/types": "7.8.3", - "babel-plugin-syntax-jsx": "6.18.0", - "convert-source-map": "1.7.0", - "loader-utils": "1.2.3", - "source-map": "0.7.3", - "string-hash": "1.1.3", - "stylis": "3.5.4", - "stylis-rule-sheet": "0.0.10" - } - }, - "node_modules/styled-jsx/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - }, - "node_modules/stylis-rule-sheet": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js": { - "version": "0.1.40", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.40.tgz", - "integrity": "sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==", - "dependencies": { - "bluebird": "^3.5.0", - "buffer": "^5.0.5", - "eth-lib": "^0.1.26", - "fs-extra": "^4.0.2", - "got": "^7.1.0", - "mime-types": "^2.1.16", - "mkdirp-promise": "^5.0.1", - "mock-fs": "^4.1.0", - "setimmediate": "^1.0.5", - "tar": "^4.0.2", - "xhr-request": "^1.0.1" - } - }, - "node_modules/swarm-js/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", - "dependencies": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/swarm-js/node_modules/url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "dependencies": { - "prepend-http": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/swr": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", - "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", - "dependencies": { - "dequal": "2.0.2" - } - }, - "node_modules/symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", - "dependencies": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - }, - "engines": { - "node": ">=4.5" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "optional": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "optional": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/tar/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dependencies": { - "setimmediate": "^1.0.4" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - }, - "node_modules/to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/ua-parser-js": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", - "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==", - "engines": { - "node": "*" - } - }, - "node_modules/ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" - }, - "node_modules/unbox-primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", - "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.0", - "has-symbols": "^1.0.0", - "which-boxed-primitive": "^1.0.1" - } - }, - "node_modules/underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", - "dependencies": { - "prepend-http": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/url-set-query": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=" - }, - "node_modules/url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", - "engines": { - "node": ">= 4" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - }, - "node_modules/url/node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/use-subscription": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", - "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", - "dependencies": { - "object-assign": "^4.1.1" - } - }, - "node_modules/utf-8-validate": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz", - "integrity": "sha512-MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==", - "hasInstallScript": true, - "dependencies": { - "node-gyp-build": "^4.2.0" - } - }, - "node_modules/utf8": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" - }, - "node_modules/util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, - "node_modules/watchpack": { - "version": "2.0.0-beta.13", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.0.0-beta.13.tgz", - "integrity": "sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/web3": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.3.4.tgz", - "integrity": "sha512-D6cMb2EtTMLHgdGbkTPGl/Qi7DAfczR+Lp7iFX3bcu/bsD9V8fZW69hA8v5cRPNGzXUwVQebk3bS17WKR4cD2w==", - "dependencies": { - "web3-bzz": "1.3.4", - "web3-core": "1.3.4", - "web3-eth": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-shh": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-bzz": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.3.4.tgz", - "integrity": "sha512-DBRVQB8FAgoAtZCpp2GAGPCJjgBgsuwOKEasjV044AAZiONpXcKHbkO6G1SgItIixnrJsRJpoGLGw52Byr6FKw==", - "dependencies": { - "@types/node": "^12.12.6", - "got": "9.6.0", - "swarm-js": "^0.1.40", - "underscore": "1.9.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.3.4.tgz", - "integrity": "sha512-7OJu46RpCEfTerl+gPvHXANR2RkLqAfW7l2DAvQ7wN0pnCzl9nEfdgW6tMhr31k3TR2fWucwKzCyyxMGzMHeSA==", - "dependencies": { - "@types/bn.js": "^4.11.5", - "@types/node": "^12.12.6", - "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-requestmanager": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-helpers": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.3.4.tgz", - "integrity": "sha512-n7BqDalcTa1stncHMmrnFtyTgDhX5Fy+avNaHCf6qcOP2lwTQC8+mdHVBONWRJ6Yddvln+c8oY/TAaB6PzWK0A==", - "dependencies": { - "underscore": "1.9.1", - "web3-eth-iban": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-method": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.3.4.tgz", - "integrity": "sha512-JxmQrujsAWYRRN77P/RY7XuZDCzxSiiQJrgX/60Lfyf7FF1Y0le4L/UMCi7vUJnuYkbU1Kfl9E0udnqwyPqlvQ==", - "dependencies": { - "@ethersproject/transactions": "^5.0.0-beta.135", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-promievent": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.3.4.tgz", - "integrity": "sha512-V61dZIeBwogg6hhZZUt0qL9hTp1WDhnsdjP++9fhTDr4vy/Gz8T5vibqT2LLg6lQC8i+Py33yOpMeMNjztaUaw==", - "dependencies": { - "eventemitter3": "4.0.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-requestmanager": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.3.4.tgz", - "integrity": "sha512-xriouCrhVnVDYQ04TZXdEREZm0OOJzkSEsoN5bu4JYsA6e/HzROeU+RjDpMUxFMzN4wxmFZ+HWbpPndS3QwMag==", - "dependencies": { - "underscore": "1.9.1", - "util": "^0.12.0", - "web3-core-helpers": "1.3.4", - "web3-providers-http": "1.3.4", - "web3-providers-ipc": "1.3.4", - "web3-providers-ws": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-requestmanager/node_modules/util": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.3.tgz", - "integrity": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/web3-core-subscriptions": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.3.4.tgz", - "integrity": "sha512-drVHVDxh54hv7xmjIm44g4IXjfGj022fGw4/meB5R2D8UATFI40F73CdiBlyqk3DysP9njDOLTJFSQvEkLFUOg==", - "dependencies": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.3.4.tgz", - "integrity": "sha512-8OIVMLbvmx+LB5RZ4tDhXuFGWSdNMrCZ4HM0+PywQ08uEcmAcqTMFAn4vdPii+J8gCatZR501r1KdzX3SDLoPw==", - "dependencies": { - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-accounts": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-eth-ens": "1.3.4", - "web3-eth-iban": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-abi": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.3.4.tgz", - "integrity": "sha512-PVSLXJ2dzdXsC+R24llIIEOS6S1KhG5qwNznJjJvXZFe3sqgdSe47eNvwUamZtCBjcrdR/HQr+L/FTxqJSf80Q==", - "dependencies": { - "@ethersproject/abi": "5.0.7", - "underscore": "1.9.1", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.3.4.tgz", - "integrity": "sha512-gz9ReSmQEjqbYAjpmAx+UZF4CVMbyS4pfjSYWGAnNNI+Xz0f0u0kCIYXQ1UEaE+YeLcYiE+ZlZdgg6YoatO5nA==", - "dependencies": { - "crypto-browserify": "3.12.0", - "eth-lib": "0.2.8", - "ethereumjs-common": "^1.3.2", - "ethereumjs-tx": "^2.1.1", - "scrypt-js": "^3.0.1", - "underscore": "1.9.1", - "uuid": "3.3.2", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-eth-accounts/node_modules/eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/web3-eth-accounts/node_modules/uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/web3-eth-contract": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.3.4.tgz", - "integrity": "sha512-Fvy8ZxUksQY2ePt+XynFfOiSqxgQtMn4m2NJs6VXRl2Inl17qyRi/nIJJVKTcENLocm+GmZ/mxq2eOE5u02nPg==", - "dependencies": { - "@types/bn.js": "^4.11.5", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-ens": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.3.4.tgz", - "integrity": "sha512-b0580tQyQwpV2wyacwQiBEfQmjCUln5iPhge3IBIMXaI43BUNtH3lsCL9ERFQeOdweB4o+6rYyNYr6xbRcSytg==", - "dependencies": { - "content-hash": "^2.5.2", - "eth-ens-namehash": "2.0.8", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-iban": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.3.4.tgz", - "integrity": "sha512-Y7/hLjVvIN/OhaAyZ8L/hxbTqVX6AFTl2RwUXR6EEU9oaLydPcMjAx/Fr8mghUvQS3QJSr+UGubP3W4SkyNiYw==", - "dependencies": { - "bn.js": "^4.11.9", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-iban/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-eth-personal": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.3.4.tgz", - "integrity": "sha512-JiTbaktYVk1j+S2EDooXAhw5j/VsdvZfKRmHtXUe/HizPM9ETXmj1+ne4RT6m+950jQ7DJwUF3XU1FKYNtEDwQ==", - "dependencies": { - "@types/node": "^12.12.6", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-net": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.3.4.tgz", - "integrity": "sha512-wVyqgVC3Zt/0uGnBiR3GpnsS8lvOFTDgWZMxAk9C6Guh8aJD9MUc7pbsw5rHrPUVe6S6RUfFJvh/Xq8oMIQgSw==", - "dependencies": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-http": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.3.4.tgz", - "integrity": "sha512-aIg/xHXvxpqpFU70sqfp+JC3sGkLfAimRKTUhG4oJZ7U+tTcYTHoxBJj+4A3Id4JAoKiiv0k1/qeyQ8f3rMC3g==", - "dependencies": { - "web3-core-helpers": "1.3.4", - "xhr2-cookies": "1.1.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ipc": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.3.4.tgz", - "integrity": "sha512-E0CvXEJElr/TIlG1YfJeO3Le5NI/4JZM+1SsEdiPIfBUAJN18oOoum138EBGKv5+YaLKZUtUuJSXWjIIOR/0Ig==", - "dependencies": { - "oboe": "2.1.5", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ws": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.3.4.tgz", - "integrity": "sha512-WBd9hk2fUAdrbA3kUyUk94ZeILtE6txLeoVVvIKAw2bPegx+RjkLyxC1Du0oceKgQ/qQWod8CCzl1E/GgTP+MQ==", - "dependencies": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "websocket": "^1.0.32" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-shh": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.3.4.tgz", - "integrity": "sha512-zoeww5mxLh3xKcqbX85irQbtFe5pc5XwrgjvmdMkhkOdZzPASlWOgqzUFtaPykpLwC3yavVx4jG5RqifweXLUA==", - "dependencies": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-net": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.4.tgz", - "integrity": "sha512-/vC2v0MaZNpWooJfpRw63u0Y3ag2gNjAWiLtMSL6QQLmCqCy4SQIndMt/vRyx0uMoeGt1YTwSXEcHjUzOhLg0A==", - "dependencies": { - "bn.js": "^4.11.9", - "eth-lib": "0.2.8", - "ethereum-bloom-filters": "^1.0.6", - "ethjs-unit": "0.1.6", - "number-to-bn": "1.7.0", - "randombytes": "^2.1.0", - "underscore": "1.9.1", - "utf8": "3.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-utils/node_modules/eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "node_modules/websocket": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.33.tgz", - "integrity": "sha512-XwNqM2rN5eh3G2CUQE3OHZj+0xfdH42+OFK6LdC2yqiC0YU8e5UK0nYre220T0IyyN031V/XOvtHvXozvJYFWA==", - "dependencies": { - "bufferutil": "^4.0.1", - "debug": "^2.2.0", - "es5-ext": "^0.10.50", - "typedarray-to-buffer": "^3.1.5", - "utf-8-validate": "^5.0.2", - "yaeti": "^0.0.6" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "node_modules/which-pm-runs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", - "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", - "optional": true - }, - "node_modules/which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", - "dependencies": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", - "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "optional": true, - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "node_modules/ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", - "dependencies": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - } - }, - "node_modules/ws/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "dependencies": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/xhr-request": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "dependencies": { - "buffer-to-arraybuffer": "^0.0.5", - "object-assign": "^4.1.1", - "query-string": "^5.0.1", - "simple-get": "^2.7.0", - "timed-out": "^4.0.1", - "url-set-query": "^1.0.0", - "xhr": "^2.0.4" - } - }, - "node_modules/xhr-request-promise": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", - "dependencies": { - "xhr-request": "^1.1.0" - } - }, - "node_modules/xhr-request/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/xhr-request/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/xhr-request/node_modules/simple-get": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", - "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", - "dependencies": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/xhr2-cookies": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz", - "integrity": "sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=", - "dependencies": { - "cookiejar": "^2.1.1" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yaeti": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=", - "engines": { - "node": ">=0.10.32" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" - }, - "@babel/highlight": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz", - "integrity": "sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==", - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/runtime": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", - "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/types": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", - "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - }, - "@ethersproject/abi": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz", - "integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==", - "requires": { - "@ethersproject/address": "^5.0.4", - "@ethersproject/bignumber": "^5.0.7", - "@ethersproject/bytes": "^5.0.4", - "@ethersproject/constants": "^5.0.4", - "@ethersproject/hash": "^5.0.4", - "@ethersproject/keccak256": "^5.0.3", - "@ethersproject/logger": "^5.0.5", - "@ethersproject/properties": "^5.0.3", - "@ethersproject/strings": "^5.0.4" - } - }, - "@ethersproject/abstract-provider": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.9.tgz", - "integrity": "sha512-X9fMkqpeu9ayC3JyBkeeZhn35P4xQkpGX/l+FrxDtEW9tybf/UWXSMi8bGThpPtfJ6q6U2LDetXSpSwK4TfYQQ==", - "requires": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/networks": "^5.0.7", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/transactions": "^5.0.9", - "@ethersproject/web": "^5.0.12" - } - }, - "@ethersproject/abstract-signer": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.13.tgz", - "integrity": "sha512-VBIZEI5OK0TURoCYyw0t3w+TEO4kdwnI9wvt4kqUwyxSn3YCRpXYVl0Xoe7XBR/e5+nYOi2MyFGJ3tsFwONecQ==", - "requires": { - "@ethersproject/abstract-provider": "^5.0.8", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7" - } - }, - "@ethersproject/address": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.10.tgz", - "integrity": "sha512-70vqESmW5Srua1kMDIN6uVfdneZMaMyRYH4qPvkAXGkbicrCOsA9m01vIloA4wYiiF+HLEfL1ENKdn5jb9xiAw==", - "requires": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/rlp": "^5.0.7" - } - }, - "@ethersproject/base64": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.8.tgz", - "integrity": "sha512-PNbpHOMgZpZ1skvQl119pV2YkCPXmZTxw+T92qX0z7zaMFPypXWTZBzim+hUceb//zx4DFjeGT4aSjZRTOYThg==", - "requires": { - "@ethersproject/bytes": "^5.0.9" - } - }, - "@ethersproject/bignumber": { - "version": "5.0.14", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.14.tgz", - "integrity": "sha512-Q4TjMq9Gg3Xzj0aeJWqJgI3tdEiPiET7Y5OtNtjTAODZ2kp4y9jMNg97zVcvPedFvGROdpGDyCI77JDFodUzOw==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "bn.js": "^4.4.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "@ethersproject/bytes": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.10.tgz", - "integrity": "sha512-vpu0v1LZ1j1s9kERQIMnVU69MyHEzUff7nqK9XuCU4vx+AM8n9lU2gj7jtJIvGSt9HzatK/6I6bWusI5nyuaTA==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/constants": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.9.tgz", - "integrity": "sha512-2uAKH89UcaJP/Sc+54u92BtJtZ4cPgcS1p0YbB1L3tlkavwNvth+kNCUplIB1Becqs7BOZr0B/3dMNjhJDy4Dg==", - "requires": { - "@ethersproject/bignumber": "^5.0.13" - } - }, - "@ethersproject/hash": { - "version": "5.0.11", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.11.tgz", - "integrity": "sha512-H3KJ9fk33XWJ2djAW03IL7fg3DsDMYjO1XijiUb1hJ85vYfhvxu0OmsU7d3tg2Uv1H1kFSo8ghr3WFQ8c+NL3g==", - "requires": { - "@ethersproject/abstract-signer": "^5.0.10", - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "@ethersproject/keccak256": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.8.tgz", - "integrity": "sha512-zoGbwXcWWs9MX4NOAZ7N0hhgIRl4Q/IO/u9c/RHRY4WqDy3Ywm0OLamEV53QDwhjwn3YiiVwU1Ve5j7yJ0a/KQ==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "js-sha3": "0.5.7" - }, - "dependencies": { - "js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" - } - } - }, - "@ethersproject/logger": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.9.tgz", - "integrity": "sha512-kV3Uamv3XOH99Xf3kpIG3ZkS7mBNYcLDM00JSDtNgNB4BihuyxpQzIZPRIDmRi+95Z/R1Bb0X2kUNHa/kJoVrw==" - }, - "@ethersproject/networks": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.8.tgz", - "integrity": "sha512-PYpptlO2Tu5f/JEBI5hdlMds5k1DY1QwVbh3LKPb3un9dQA2bC51vd2/gRWAgSBpF3kkmZOj4FhD7ATLX4H+DA==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/properties": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.8.tgz", - "integrity": "sha512-zEnLMze2Eu2VDPj/05QwCwMKHh506gpT9PP9KPVd4dDB+5d6AcROUYVLoIIQgBYK7X/Gw0UJmG3oVtnxOQafAw==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/rlp": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.8.tgz", - "integrity": "sha512-E4wdFs8xRNJfzNHmnkC8w5fPeT4Wd1U2cust3YeT16/46iSkLT8nn8ilidC6KhR7hfuSZE4UqSPzyk76p7cdZg==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/signing-key": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.10.tgz", - "integrity": "sha512-w5it3GbFOvN6e0mTd5gDNj+bwSe6L9jqqYjU+uaYS8/hAEp4qYLk5p8ZjbJJkNn7u1p0iwocp8X9oH/OdK8apA==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "elliptic": "6.5.4" - } - }, - "@ethersproject/strings": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.9.tgz", - "integrity": "sha512-ogxBpcUpdO524CYs841MoJHgHxEPUy0bJFDS4Ezg8My+WYVMfVAOlZSLss0Rurbeeam8CpUVDzM4zUn09SU66Q==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/transactions": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.10.tgz", - "integrity": "sha512-Tqpp+vKYQyQdJQQk4M73tDzO7ODf2D42/sJOcKlDAAbdSni13v6a+31hUdo02qYXhVYwIs+ZjHnO4zKv5BNk8w==", - "requires": { - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/rlp": "^5.0.7", - "@ethersproject/signing-key": "^5.0.8" - } - }, - "@ethersproject/web": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.13.tgz", - "integrity": "sha512-G3x/Ns7pQm21ALnWLbdBI5XkW/jrsbXXffI9hKNPHqf59mTxHYtlNiSwxdoTSwCef3Hn7uvGZpaSgTyxs7IufQ==", - "requires": { - "@ethersproject/base64": "^5.0.7", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "@hapi/accept": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", - "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/boom": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.1.tgz", - "integrity": "sha512-VNR8eDbBrOxBgbkddRYIe7+8DZ+vSbV6qlmaN2x7eWjsUjy2VmQgChkOKcVZIeupEZYj+I0dqNg430OhwzagjA==", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/hoek": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", - "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==" - }, - "@material-ui/core": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", - "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/styles": "^4.11.3", - "@material-ui/system": "^4.11.3", - "@material-ui/types": "^5.1.0", - "@material-ui/utils": "^4.11.2", - "@types/react-transition-group": "^4.2.0", - "clsx": "^1.0.4", - "hoist-non-react-statics": "^3.3.2", - "popper.js": "1.16.1-lts", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0", - "react-transition-group": "^4.4.0" - } - }, - "@material-ui/icons": { - "version": "4.11.2", - "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", - "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", - "requires": { - "@babel/runtime": "^7.4.4" - } - }, - "@material-ui/lab": { - "version": "4.0.0-alpha.57", - "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", - "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.11.2", - "clsx": "^1.0.4", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0" - } - }, - "@material-ui/styles": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", - "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", - "requires": { - "@babel/runtime": "^7.4.4", - "@emotion/hash": "^0.8.0", - "@material-ui/types": "^5.1.0", - "@material-ui/utils": "^4.11.2", - "clsx": "^1.0.4", - "csstype": "^2.5.2", - "hoist-non-react-statics": "^3.3.2", - "jss": "^10.5.1", - "jss-plugin-camel-case": "^10.5.1", - "jss-plugin-default-unit": "^10.5.1", - "jss-plugin-global": "^10.5.1", - "jss-plugin-nested": "^10.5.1", - "jss-plugin-props-sort": "^10.5.1", - "jss-plugin-rule-value-function": "^10.5.1", - "jss-plugin-vendor-prefixer": "^10.5.1", - "prop-types": "^15.7.2" - } - }, - "@material-ui/system": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", - "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.11.2", - "csstype": "^2.5.2", - "prop-types": "^15.7.2" - } - }, - "@material-ui/types": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", - "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" - }, - "@material-ui/utils": { - "version": "4.11.2", - "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", - "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", - "requires": { - "@babel/runtime": "^7.4.4", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0" - } - }, - "@next/env": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.7.tgz", - "integrity": "sha512-/vnz2SL/mk3Tei58WfRtVnvz5xHmAqcBmZL5sTBEy1CZG6OtZGNx0qAFCjtVkeJ5m1Bh4Ut+WFh/RF333wx8Sg==" - }, - "@next/polyfill-module": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.7.tgz", - "integrity": "sha512-HxqzRpoSgmZP0kRIWwH+e0SgtAXqJ0VkYtwWcsQFED8+xF4Eqn+7Twyp4uE6hutC8gr8IFSFqH+DEYhRtg1ltQ==" - }, - "@next/react-dev-overlay": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.7.tgz", - "integrity": "sha512-yq71MDHVqN2N+IqOvZDiFsMpQrBcymrdpTx1ShhAADX7cWQvW4dhcIir4BbfrS10vS1LLz/3a8uKZkGdNoJj3w==", - "requires": { - "@babel/code-frame": "7.12.11", - "anser": "1.4.9", - "chalk": "4.0.0", - "classnames": "2.2.6", - "css.escape": "1.5.1", - "data-uri-to-buffer": "3.0.1", - "platform": "1.3.6", - "shell-quote": "1.7.2", - "source-map": "0.8.0-beta.0", - "stacktrace-parser": "0.1.10", - "strip-ansi": "6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", - "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@next/react-refresh-utils": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.7.tgz", - "integrity": "sha512-d/71vtQglv6m7sh4W1O9drc2hYti7UnAdEXfBLZAS354g2S80lvCRGIhbDrMx4w0rpShoxBIZboE2++LihAESg==" - }, - "@opentelemetry/api": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", - "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", - "requires": { - "@opentelemetry/context-base": "^0.14.0" - } - }, - "@opentelemetry/context-base": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", - "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==" - }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "requires": { - "defer-to-connect": "^1.0.1" - } - }, - "@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", - "requires": { - "@types/node": "*" - } - }, - "@types/node": { - "version": "12.20.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", - "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" - }, - "@types/pbkdf2": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", - "requires": { - "@types/node": "*" - } - }, - "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" - }, - "@types/react": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", - "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", - "requires": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "@types/react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", - "requires": { - "@types/react": "*" - } - }, - "@types/secp256k1": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz", - "integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==", - "requires": { - "@types/node": "*" - } - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "anser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", - "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "array-filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", - "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - }, - "array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "optional": true - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "ast-types": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", - "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "available-typed-arrays": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", - "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", - "requires": { - "array-filter": "^1.0.0" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "base-x": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", - "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "bignumber.js": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz", - "integrity": "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "optional": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "blakejs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz", - "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U=" - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bn.js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", - "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.16.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", - "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", - "requires": { - "caniuse-lite": "^1.0.30001173", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.634", - "escalade": "^3.1.1", - "node-releases": "^1.1.69" - } - }, - "bs58": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", - "requires": { - "base-x": "^3.0.2" - } - }, - "bs58check": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", - "requires": { - "bs58": "^4.0.0", - "create-hash": "^1.1.0", - "safe-buffer": "^5.1.2" - } - }, - "buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" - } - }, - "buffer-to-arraybuffer": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - }, - "bufferutil": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.3.tgz", - "integrity": "sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw==", - "requires": { - "node-gyp-build": "^4.2.0" - } - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caniuse-lite": { - "version": "1.0.30001196", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz", - "integrity": "sha512-CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "cids": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", - "requires": { - "buffer": "^5.5.0", - "class-is": "^1.1.0", - "multibase": "~0.6.0", - "multicodec": "^1.0.0", - "multihashes": "~0.4.15" - }, - "dependencies": { - "multicodec": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", - "requires": { - "buffer": "^5.6.0", - "varint": "^5.0.0" - } - } - } - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-is": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" - }, - "classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", - "requires": { - "mimic-response": "^1.0.0" - }, - "dependencies": { - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - } - }, - "clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "optional": true - }, - "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "optional": true, - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "optional": true, - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "optional": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "content-hash": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", - "requires": { - "cids": "^0.7.1", - "multicodec": "^0.5.5", - "multihashes": "^0.4.15" - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", - "requires": { - "node-fetch": "2.6.1" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css-vendor": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", - "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", - "requires": { - "@babel/runtime": "^7.8.3", - "is-in-browser": "^1.0.2" - } - }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - }, - "cssnano-preset-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", - "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", - "requires": { - "caniuse-lite": "^1.0.30001179", - "postcss": "^7.0.32" - }, - "dependencies": { - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "cssnano-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", - "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", - "requires": { - "cssnano-preset-simple": "1.2.2", - "postcss": "^7.0.32" - }, - "dependencies": { - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "csstype": { - "version": "2.6.16", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", - "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "optional": true, - "requires": { - "mimic-response": "^2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "optional": true - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "optional": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "dequal": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", - "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==" - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", - "optional": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "dom-helpers": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", - "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "electron-to-chromium": { - "version": "1.3.680", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.680.tgz", - "integrity": "sha512-XBACJT9RdpdWtoMXQPR8Be3ZtmizWWbxfw8cY2b5feUwiDO3FUl8qo4W2jXoq/WnnA3xBRqafu1XbpczqyUvlA==" - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "eth-ens-namehash": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha1-IprEbsqG1S4MmR58sq74P/D2i88=", - "requires": { - "idna-uts46-hx": "^2.3.1", - "js-sha3": "^0.5.7" - }, - "dependencies": { - "js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" - } - } - }, - "eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "ethereum-bloom-filters": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.9.tgz", - "integrity": "sha512-GiK/RQkAkcVaEdxKVkPcG07PQ5vD7v2MFSHgZmBJSfMzNRHimntdBithsHAT89tAXnIpzVDWt8iaCD1DvkaxGg==", - "requires": { - "js-sha3": "^0.8.0" - } - }, - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-common": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz", - "integrity": "sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==" - }, - "ethereumjs-tx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", - "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", - "requires": { - "ethereumjs-common": "^1.5.0", - "ethereumjs-util": "^6.0.0" - } - }, - "ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "requires": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=", - "requires": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - } - } - }, - "ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", - "requires": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" - } - }, - "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "optional": true - }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "requires": { - "type": "^2.0.0" - }, - "dependencies": { - "type": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", - "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "requires": { - "fbjs": "^3.0.0" - } - }, - "fbjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", - "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", - "requires": { - "cross-fetch": "^3.0.4", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - } - }, - "fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "flux": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", - "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", - "requires": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.0" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "optional": true - }, - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" - } - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "requires": { - "pump": "^3.0.0" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", - "optional": true - }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "requires": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - } - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "requires": { - "has-symbol-support-x": "^1.4.1" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "optional": true - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - }, - "http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - }, - "http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=" - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "requires": { - "punycode": "2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=" - } - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "indefinite-observable": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", - "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", - "requires": { - "symbol-observable": "1.2.0" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "optional": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "optional": true - }, - "is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "is-generator-function": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz", - "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=" - }, - "is-in-browser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" - }, - "is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - } - }, - "is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", - "requires": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", - "foreach": "^2.0.5", - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "requires": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - } - }, - "jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jss": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", - "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", - "requires": { - "@babel/runtime": "^7.3.1", - "csstype": "^3.0.2", - "indefinite-observable": "^2.0.1", - "is-in-browser": "^1.1.3", - "tiny-warning": "^1.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "jss-plugin-camel-case": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", - "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", - "requires": { - "@babel/runtime": "^7.3.1", - "hyphenate-style-name": "^1.0.3", - "jss": "10.5.1" - } - }, - "jss-plugin-default-unit": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", - "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "jss-plugin-global": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", - "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "jss-plugin-nested": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", - "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" + "node_modules/web3-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz", + "integrity": "sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg==", + "license": "LGPL-3.0", + "dependencies": { + "ethereum-cryptography": "^2.0.0", + "util": "^0.12.5", + "web3-errors": "^1.2.0", + "web3-types": "^1.6.0", + "zod": "^3.21.4" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "jss-plugin-props-sort": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", - "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" }, - "jss-plugin-rule-value-function": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", - "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "jss-plugin-vendor-prefixer": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", - "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "css-vendor": "^2.0.8", - "jss": "10.5.1" + "node_modules/which-typed-array": { + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "keccak": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz", - "integrity": "sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==", - "requires": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" + "node_modules/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" }, - "dependencies": { - "node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true } } }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "requires": { - "json-buffer": "3.0.0" - } - }, - "line-column": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", - "integrity": "sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=", - "requires": { - "isarray": "^1.0.0", - "isobject": "^2.0.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" + "node_modules/zod": { + "version": "3.24.2", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", + "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" } + } + }, + "dependencies": { + "@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==" }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" + "regenerator-runtime": "^0.13.4" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "@emnapi/runtime": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz", + "integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==", "optional": true, "requires": { - "yallist": "^4.0.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { - "semver": "^6.0.0" - } - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "tslib": "^2.4.0" } }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" }, - "miller-rabin": { + "@ethereumjs/rlp": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", + "integrity": "sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==" }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", - "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==" - }, - "mime-types": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", - "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "@img/sharp-darwin-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.2.tgz", + "integrity": "sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==", + "optional": true, "requires": { - "mime-db": "1.46.0" + "@img/sharp-libvips-darwin-arm64": "1.1.0" } }, - "mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "optional": true - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "@img/sharp-darwin-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.2.tgz", + "integrity": "sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==", + "optional": true, "requires": { - "dom-walk": "^0.1.0" + "@img/sharp-libvips-darwin-x64": "1.1.0" } }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "@img/sharp-libvips-darwin-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz", + "integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==", + "optional": true }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - }, - "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } + "@img/sharp-libvips-darwin-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz", + "integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==", + "optional": true }, - "minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "requires": { - "minipass": "^2.9.0" - } + "@img/sharp-libvips-linux-arm": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz", + "integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==", + "optional": true }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "@img/sharp-libvips-linux-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz", + "integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==", + "optional": true }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "@img/sharp-libvips-linux-ppc64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz", + "integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==", "optional": true }, - "mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", - "requires": { - "mkdirp": "*" - } + "@img/sharp-libvips-linux-s390x": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz", + "integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==", + "optional": true }, - "mock-fs": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.13.0.tgz", - "integrity": "sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==" + "@img/sharp-libvips-linux-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz", + "integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==", + "optional": true }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz", + "integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==", + "optional": true }, - "multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } + "@img/sharp-libvips-linuxmusl-x64": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz", + "integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==", + "optional": true }, - "multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", + "@img/sharp-linux-arm": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.2.tgz", + "integrity": "sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==", + "optional": true, "requires": { - "varint": "^5.0.0" + "@img/sharp-libvips-linux-arm": "1.1.0" } }, - "multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", + "@img/sharp-linux-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.2.tgz", + "integrity": "sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==", + "optional": true, "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - }, - "dependencies": { - "multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - } + "@img/sharp-libvips-linux-arm64": "1.1.0" } }, - "nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=" - }, - "nanoid": { - "version": "3.1.20", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", - "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" - }, - "napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "optional": true - }, - "native-url": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", - "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", + "@img/sharp-linux-s390x": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.2.tgz", + "integrity": "sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==", + "optional": true, "requires": { - "querystring": "^0.2.0" + "@img/sharp-libvips-linux-s390x": "1.1.0" } }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" - }, - "next": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/next/-/next-10.0.7.tgz", - "integrity": "sha512-We0utmwwfkvO12eLyUZd3tX9VLDE3FPpOaHpH3kqKdUTxJzUKt8FLBXCTm0mwsTKW5XColWG8mJvz2OLu3+3QA==", - "requires": { - "@babel/runtime": "7.12.5", - "@hapi/accept": "5.0.1", - "@next/env": "10.0.7", - "@next/polyfill-module": "10.0.7", - "@next/react-dev-overlay": "10.0.7", - "@next/react-refresh-utils": "10.0.7", - "@opentelemetry/api": "0.14.0", - "ast-types": "0.13.2", - "browserslist": "4.16.1", - "buffer": "5.6.0", - "caniuse-lite": "^1.0.30001179", - "chalk": "2.4.2", - "chokidar": "3.5.1", - "crypto-browserify": "3.12.0", - "cssnano-simple": "1.2.2", - "etag": "1.8.1", - "find-cache-dir": "3.3.1", - "jest-worker": "24.9.0", - "native-url": "0.3.4", - "node-fetch": "2.6.1", - "node-html-parser": "1.4.9", - "node-libs-browser": "^2.2.1", - "p-limit": "3.1.0", - "path-browserify": "1.0.1", - "pnp-webpack-plugin": "1.6.4", - "postcss": "8.1.7", - "process": "0.11.10", - "prop-types": "15.7.2", - "raw-body": "2.4.1", - "react-is": "16.13.1", - "react-refresh": "0.8.3", - "sharp": "0.26.3", - "stream-browserify": "3.0.0", - "styled-jsx": "3.3.2", - "use-subscription": "1.5.1", - "vm-browserify": "1.1.2", - "watchpack": "2.0.0-beta.13" - } - }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "node-abi": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz", - "integrity": "sha512-6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg==", + "@img/sharp-linux-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.2.tgz", + "integrity": "sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==", "optional": true, "requires": { - "semver": "^5.4.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "optional": true - } + "@img/sharp-libvips-linux-x64": "1.1.0" } }, - "node-addon-api": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz", - "integrity": "sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==", - "optional": true - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" - }, - "node-gyp-build": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz", - "integrity": "sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==" - }, - "node-html-parser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", - "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", + "@img/sharp-linuxmusl-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.2.tgz", + "integrity": "sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==", + "optional": true, "requires": { - "he": "1.2.0" + "@img/sharp-libvips-linuxmusl-arm64": "1.1.0" } }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "@img/sharp-linuxmusl-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.2.tgz", + "integrity": "sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==", + "optional": true, "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - } + "@img/sharp-libvips-linuxmusl-x64": "1.1.0" } }, - "node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "noop-logger": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", - "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=", - "optional": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "@img/sharp-wasm32": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.2.tgz", + "integrity": "sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==", "optional": true, "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "@emnapi/runtime": "^1.4.3" } }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "@img/sharp-win32-arm64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.2.tgz", + "integrity": "sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ==", "optional": true }, - "number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=", - "requires": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - } - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + "@img/sharp-win32-ia32": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.2.tgz", + "integrity": "sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw==", + "optional": true }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "@img/sharp-win32-x64": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.2.tgz", + "integrity": "sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw==", + "optional": true }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "@material-ui/core": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", + "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" + "@babel/runtime": "^7.4.4", + "@material-ui/styles": "^4.11.3", + "@material-ui/system": "^4.11.3", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "@types/react-transition-group": "^4.2.0", + "clsx": "^1.0.4", + "hoist-non-react-statics": "^3.3.2", + "popper.js": "1.16.1-lts", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0", + "react-transition-group": "^4.4.0" } }, - "oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha1-VVQoTFQ6ImbXo48X4HOCH73jk80=", + "@material-ui/icons": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", + "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", "requires": { - "http-https": "^1.0.0" + "@babel/runtime": "^7.4.4" } }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "@material-ui/lab": { + "version": "4.0.0-alpha.57", + "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", + "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", "requires": { - "ee-first": "1.1.1" + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" } }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "@material-ui/styles": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", + "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", "requires": { - "wrappy": "1" + "@babel/runtime": "^7.4.4", + "@emotion/hash": "^0.8.0", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "csstype": "^2.5.2", + "hoist-non-react-statics": "^3.3.2", + "jss": "^10.5.1", + "jss-plugin-camel-case": "^10.5.1", + "jss-plugin-default-unit": "^10.5.1", + "jss-plugin-global": "^10.5.1", + "jss-plugin-nested": "^10.5.1", + "jss-plugin-props-sort": "^10.5.1", + "jss-plugin-rule-value-function": "^10.5.1", + "jss-plugin-vendor-prefixer": "^10.5.1", + "prop-types": "^15.7.2" } }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "@material-ui/system": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", + "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", "requires": { - "yocto-queue": "^0.1.0" + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "csstype": "^2.5.2", + "prop-types": "^15.7.2" } }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - } - } + "@material-ui/types": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", + "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" }, - "p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "@material-ui/utils": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", "requires": { - "p-finally": "^1.0.0" + "@babel/runtime": "^7.4.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "@next/env": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.3.tgz", + "integrity": "sha512-OdiMrzCl2Xi0VTjiQQUK0Xh7bJHnOuET2s+3V+Y40WJBAXrJeGA3f+I8MZJ/YQ3mVGi5XGR1L66oFlgqXhQ4Vw==" + }, + "@next/swc-darwin-arm64": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.3.tgz", + "integrity": "sha512-WRJERLuH+O3oYB4yZNVahSVFmtxRNjNF1I1c34tYMoJb0Pve+7/RaLAJJizyYiFhjYNGHRAE1Ri2Fd23zgDqhg==", + "optional": true }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } + "@next/swc-darwin-x64": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.3.tgz", + "integrity": "sha512-XHdzH/yBc55lu78k/XwtuFR/ZXUTcflpRXcsu0nKmF45U96jt1tsOZhVrn5YH+paw66zOANpOnFQ9i6/j+UYvw==", + "optional": true }, - "parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" + "@next/swc-linux-arm64-gnu": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.3.tgz", + "integrity": "sha512-VZ3sYL2LXB8znNGcjhocikEkag/8xiLgnvQts41tq6i+wql63SMS1Q6N8RVXHw5pEUjiof+II3HkDd7GFcgkzw==", + "optional": true }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "@next/swc-linux-arm64-musl": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.3.tgz", + "integrity": "sha512-h6Y1fLU4RWAp1HPNJWDYBQ+e3G7sLckyBXhmH9ajn8l/RSMnhbuPBV/fXmy3muMcVwoJdHL+UtzRzs0nXOf9SA==", + "optional": true }, - "path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + "@next/swc-linux-x64-gnu": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.3.tgz", + "integrity": "sha512-jJ8HRiF3N8Zw6hGlytCj5BiHyG/K+fnTKVDEKvUCyiQ/0r5tgwO7OgaRiOjjRoIx2vwLR+Rz8hQoPrnmFbJdfw==", + "optional": true }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } + "@next/swc-linux-x64-musl": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.3.tgz", + "integrity": "sha512-HrUcTr4N+RgiiGn3jjeT6Oo208UT/7BuTr7K0mdKRBtTbT4v9zJqCDKO97DUqqoBK1qyzP1RwvrWTvU6EPh/Cw==", + "optional": true }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "@next/swc-win32-arm64-msvc": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.3.tgz", + "integrity": "sha512-SxorONgi6K7ZUysMtRF3mIeHC5aA3IQLmKFQzU0OuhuUYwpOBc1ypaLJLP5Bf3M9k53KUUUj4vTPwzGvl/NwlQ==", + "optional": true }, - "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + "@next/swc-win32-x64-msvc": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.3.tgz", + "integrity": "sha512-4QZG6F8enl9/S2+yIiOiju0iCTFd93d8VC1q9LZS4p/Xuk81W2QDjCFeoogmrWWkAD59z8ZxepBQap2dKS5ruw==", + "optional": true }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "@noble/curves": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", "requires": { - "find-up": "^4.0.0" + "@noble/hashes": "1.4.0" } }, - "platform": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" - }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "requires": { - "ts-pnp": "^1.1.6" - } + "@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==" }, - "popper.js": { - "version": "1.16.1-lts", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", - "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + "@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==" }, - "postcss": { - "version": "8.1.7", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", - "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", + "@scure/bip32": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", "requires": { - "colorette": "^1.2.1", - "line-column": "^1.0.2", - "nanoid": "^3.1.16", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" } }, - "prebuild-install": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz", - "integrity": "sha512-7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ==", - "optional": true, + "@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", "requires": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.7.0", - "noop-logger": "^0.1.1", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0", - "which-pm-runs": "^1.0.0" - }, - "dependencies": { - "simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", - "optional": true, - "requires": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - } + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" } }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } + "@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" }, - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" + "tslib": "^2.8.0" } }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "@types/node": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.3.0.tgz", + "integrity": "sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==", "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" + "undici-types": "~7.10.0" } }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "@types/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", + "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "@types/prop-types": "*", + "csstype": "^3.0.2" }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "@types/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "@types/react": "*" } }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - }, - "query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "requires": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "@types/node": "*" } }, - "querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "abitype": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz", + "integrity": "sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==", + "requires": {} }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" - } + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" + "possible-typed-array-names": "^1.0.0" } }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", - "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.3", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "streamsearch": "^1.1.0" } }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "optional": true, + "call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" } }, - "react": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", - "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" } }, - "react-dom": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", - "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.1" + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" } }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==" }, - "react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, - "react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } + "clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "optional": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "color-convert": "^2.0.1", + "color-string": "^1.9.0" } }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "optional": true, "requires": { - "picomatch": "^2.2.1" + "color-name": "~1.1.4" } }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "optional": true }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "optional": true, "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - } + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "requires": { - "lowercase-keys": "^1.0.0" - } + "crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "cross-fetch": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "node-fetch": "^2.7.0" } }, - "rlp": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz", - "integrity": "sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==", + "css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", "requires": { - "bn.js": "^4.11.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" } }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" }, - "scheduler": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", - "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" } }, - "scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" + "dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==" }, - "secp256k1": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz", - "integrity": "sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==", - "requires": { - "elliptic": "^6.5.2", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "dependencies": { - "node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - } - } + "detect-libc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", + "optional": true }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" }, "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "requires": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "optional": true + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" }, - "setprototypeof": { + "es-object-atoms": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "es-errors": "^1.3.0" } }, - "sharp": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.26.3.tgz", - "integrity": "sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg==", - "optional": true, + "ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", "requires": { - "array-flatten": "^3.0.0", - "color": "^3.1.3", - "detect-libc": "^1.0.3", - "node-addon-api": "^3.0.2", - "npmlog": "^4.1.2", - "prebuild-install": "^6.0.0", - "semver": "^7.3.2", - "simple-get": "^4.0.0", - "tar-fs": "^2.1.1", - "tunnel-agent": "^0.6.0" - }, - "dependencies": { - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "optional": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" } }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "optional": true - }, - "simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + "eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" }, - "simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", - "optional": true, + "fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", "requires": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - }, - "dependencies": { - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "optional": true, - "requires": { - "mimic-response": "^3.1.0" - } - }, - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "optional": true - } + "fbjs": "^3.0.0" } }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "optional": true, + "fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", "requires": { - "is-arrayish": "^0.3.1" + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" } }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "flux": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", + "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", "requires": { - "whatwg-url": "^7.0.0" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" } }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "requires": { - "type-fest": "^0.7.1" + "is-callable": "^1.2.7" } }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, - "stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + } + }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "requires": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" } }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "es-define-property": "^1.0.0" } }, - "strict-uri-encode": { + "has-symbols": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "requires": { - "safe-buffer": "~5.2.0" + "has-symbols": "^1.0.3" } }, - "string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "optional": true, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "react-is": "^16.7.0" } }, - "string.prototype.trimend": { + "hyphenate-style-name": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "symbol-observable": "1.2.0" } }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" } }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "optional": true + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", "requires": { - "ansi-regex": "^5.0.0" + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" } }, - "strip-hex-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", + "is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + }, + "is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "requires": { - "is-hex-prefixed": "1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" } }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "optional": true + "is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "requires": { + "which-typed-array": "^1.1.16" + } }, - "styled-jsx": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", - "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", + "isomorphic-ws": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", + "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", + "requires": {} + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", "requires": { - "@babel/types": "7.8.3", - "babel-plugin-syntax-jsx": "6.18.0", - "convert-source-map": "1.7.0", - "loader-utils": "1.2.3", - "source-map": "0.7.3", - "string-hash": "1.1.3", - "stylis": "3.5.4", - "stylis-rule-sheet": "0.0.10" + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" }, "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - }, - "stylis-rule-sheet": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" + "jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", + "requires": { + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" + } }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", "requires": { - "has-flag": "^3.0.0" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "swarm-js": { - "version": "0.1.40", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.40.tgz", - "integrity": "sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==", + "jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", "requires": { - "bluebird": "^3.5.0", - "buffer": "^5.0.5", - "eth-lib": "^0.1.26", - "fs-extra": "^4.0.2", - "got": "^7.1.0", - "mime-types": "^2.1.16", - "mkdirp-promise": "^5.0.1", - "mock-fs": "^4.1.0", - "setimmediate": "^1.0.5", - "tar": "^4.0.2", - "xhr-request": "^1.0.1" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", - "requires": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "requires": { - "prepend-http": "^1.0.1" - } - } + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "swr": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", - "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", + "jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", "requires": { - "dequal": "2.0.2" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" + "jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } }, - "tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - }, - "dependencies": { - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "optional": true, + "jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" } }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "optional": true, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "js-tokens": "^3.0.0 || ^4.0.0" } }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==" + }, + "next": { + "version": "15.3.3", + "resolved": "https://registry.npmjs.org/next/-/next-15.3.3.tgz", + "integrity": "sha512-JqNj29hHNmCLtNvd090SyRbXJiivQ+58XjCcrC50Crb5g5u2zi7Y2YivbsEfzk6AtVI80akdOQbaMZwWB1Hthw==", + "requires": { + "@next/env": "15.3.3", + "@next/swc-darwin-arm64": "15.3.3", + "@next/swc-darwin-x64": "15.3.3", + "@next/swc-linux-arm64-gnu": "15.3.3", + "@next/swc-linux-arm64-musl": "15.3.3", + "@next/swc-linux-x64-gnu": "15.3.3", + "@next/swc-linux-x64-musl": "15.3.3", + "@next/swc-win32-arm64-msvc": "15.3.3", + "@next/swc-win32-x64-msvc": "15.3.3", + "@swc/counter": "0.1.3", + "@swc/helpers": "0.5.15", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "sharp": "^0.34.1", + "styled-jsx": "5.1.6" + } }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "requires": { - "setimmediate": "^1.0.4" + "whatwg-url": "^5.0.0" } }, - "tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" }, - "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + "possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "requires": { - "is-number": "^7.0.0" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "asap": "~2.0.3" } }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", "requires": { - "punycode": "^2.1.0" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" } }, - "ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", "requires": { - "safe-buffer": "^5.0.1" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" } }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", "requires": { - "is-typedarray": "^1.0.0" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" } }, - "ua-parser-js": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", - "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==" - }, - "ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" }, - "unbox-primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", - "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", + "safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.0", - "has-symbols": "^1.0.0", - "which-boxed-primitive": "^1.0.1" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" } }, - "underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "optional": true }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "requires": { - "punycode": "^2.1.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" } }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "sharp": { + "version": "0.34.2", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.2.tgz", + "integrity": "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg==", + "optional": true, "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - } + "@img/sharp-darwin-arm64": "0.34.2", + "@img/sharp-darwin-x64": "0.34.2", + "@img/sharp-libvips-darwin-arm64": "1.1.0", + "@img/sharp-libvips-darwin-x64": "1.1.0", + "@img/sharp-libvips-linux-arm": "1.1.0", + "@img/sharp-libvips-linux-arm64": "1.1.0", + "@img/sharp-libvips-linux-ppc64": "1.1.0", + "@img/sharp-libvips-linux-s390x": "1.1.0", + "@img/sharp-libvips-linux-x64": "1.1.0", + "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", + "@img/sharp-libvips-linuxmusl-x64": "1.1.0", + "@img/sharp-linux-arm": "0.34.2", + "@img/sharp-linux-arm64": "0.34.2", + "@img/sharp-linux-s390x": "0.34.2", + "@img/sharp-linux-x64": "0.34.2", + "@img/sharp-linuxmusl-arm64": "0.34.2", + "@img/sharp-linuxmusl-x64": "0.34.2", + "@img/sharp-wasm32": "0.34.2", + "@img/sharp-win32-arm64": "0.34.2", + "@img/sharp-win32-ia32": "0.34.2", + "@img/sharp-win32-x64": "0.34.2", + "color": "^4.2.3", + "detect-libc": "^2.0.4", + "semver": "^7.7.2" } }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "optional": true, "requires": { - "prepend-http": "^2.0.0" + "is-arrayish": "^0.3.1" } }, - "url-set-query": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=" - }, - "url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" }, - "use-subscription": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", - "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", - "requires": { - "object-assign": "^4.1.1" - } + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" }, - "utf-8-validate": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz", - "integrity": "sha512-MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==", + "styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", "requires": { - "node-gyp-build": "^4.2.0" + "client-only": "0.0.1" } }, - "utf8": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "swr": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", + "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "dequal": "2.0.2" } }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, - "varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "peer": true }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } + "ua-parser-js": { + "version": "0.7.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz", + "integrity": "sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==" }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "undici-types": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", + "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==" }, - "watchpack": { - "version": "2.0.0-beta.13", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.0.0-beta.13.tgz", - "integrity": "sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==", + "util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, "web3": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.3.4.tgz", - "integrity": "sha512-D6cMb2EtTMLHgdGbkTPGl/Qi7DAfczR+Lp7iFX3bcu/bsD9V8fZW69hA8v5cRPNGzXUwVQebk3bS17WKR4cD2w==", - "requires": { - "web3-bzz": "1.3.4", - "web3-core": "1.3.4", - "web3-eth": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-shh": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-bzz": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.3.4.tgz", - "integrity": "sha512-DBRVQB8FAgoAtZCpp2GAGPCJjgBgsuwOKEasjV044AAZiONpXcKHbkO6G1SgItIixnrJsRJpoGLGw52Byr6FKw==", - "requires": { - "@types/node": "^12.12.6", - "got": "9.6.0", - "swarm-js": "^0.1.40", - "underscore": "1.9.1" + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz", + "integrity": "sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==", + "requires": { + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-contract": "^4.7.2", + "web3-eth-ens": "^4.4.0", + "web3-eth-iban": "^4.0.7", + "web3-eth-personal": "^4.1.0", + "web3-net": "^4.1.0", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-rpc-providers": "^1.0.0-rc.4", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-core": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.3.4.tgz", - "integrity": "sha512-7OJu46RpCEfTerl+gPvHXANR2RkLqAfW7l2DAvQ7wN0pnCzl9nEfdgW6tMhr31k3TR2fWucwKzCyyxMGzMHeSA==", - "requires": { - "@types/bn.js": "^4.11.5", - "@types/node": "^12.12.6", - "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-requestmanager": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-helpers": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.3.4.tgz", - "integrity": "sha512-n7BqDalcTa1stncHMmrnFtyTgDhX5Fy+avNaHCf6qcOP2lwTQC8+mdHVBONWRJ6Yddvln+c8oY/TAaB6PzWK0A==", - "requires": { - "underscore": "1.9.1", - "web3-eth-iban": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-method": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.3.4.tgz", - "integrity": "sha512-JxmQrujsAWYRRN77P/RY7XuZDCzxSiiQJrgX/60Lfyf7FF1Y0le4L/UMCi7vUJnuYkbU1Kfl9E0udnqwyPqlvQ==", - "requires": { - "@ethersproject/transactions": "^5.0.0-beta.135", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-promievent": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.3.4.tgz", - "integrity": "sha512-V61dZIeBwogg6hhZZUt0qL9hTp1WDhnsdjP++9fhTDr4vy/Gz8T5vibqT2LLg6lQC8i+Py33yOpMeMNjztaUaw==", - "requires": { - "eventemitter3": "4.0.4" - } - }, - "web3-core-requestmanager": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.3.4.tgz", - "integrity": "sha512-xriouCrhVnVDYQ04TZXdEREZm0OOJzkSEsoN5bu4JYsA6e/HzROeU+RjDpMUxFMzN4wxmFZ+HWbpPndS3QwMag==", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz", + "integrity": "sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==", "requires": { - "underscore": "1.9.1", - "util": "^0.12.0", - "web3-core-helpers": "1.3.4", - "web3-providers-http": "1.3.4", - "web3-providers-ipc": "1.3.4", - "web3-providers-ws": "1.3.4" - }, - "dependencies": { - "util": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.3.tgz", - "integrity": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - } + "web3-errors": "^1.3.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-iban": "^4.0.7", + "web3-providers-http": "^4.2.0", + "web3-providers-ipc": "^4.0.7", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, - "web3-core-subscriptions": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.3.4.tgz", - "integrity": "sha512-drVHVDxh54hv7xmjIm44g4IXjfGj022fGw4/meB5R2D8UATFI40F73CdiBlyqk3DysP9njDOLTJFSQvEkLFUOg==", + "web3-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz", + "integrity": "sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==", "requires": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" + "web3-types": "^1.10.0" } }, "web3-eth": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.3.4.tgz", - "integrity": "sha512-8OIVMLbvmx+LB5RZ4tDhXuFGWSdNMrCZ4HM0+PywQ08uEcmAcqTMFAn4vdPii+J8gCatZR501r1KdzX3SDLoPw==", + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz", + "integrity": "sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w==", "requires": { - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-accounts": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-eth-ens": "1.3.4", - "web3-eth-iban": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" + "setimmediate": "^1.0.5", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-net": "^4.1.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-abi": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.3.4.tgz", - "integrity": "sha512-PVSLXJ2dzdXsC+R24llIIEOS6S1KhG5qwNznJjJvXZFe3sqgdSe47eNvwUamZtCBjcrdR/HQr+L/FTxqJSf80Q==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz", + "integrity": "sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg==", "requires": { - "@ethersproject/abi": "5.0.7", - "underscore": "1.9.1", - "web3-utils": "1.3.4" + "abitype": "0.7.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-accounts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.3.4.tgz", - "integrity": "sha512-gz9ReSmQEjqbYAjpmAx+UZF4CVMbyS4pfjSYWGAnNNI+Xz0f0u0kCIYXQ1UEaE+YeLcYiE+ZlZdgg6YoatO5nA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz", + "integrity": "sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ==", "requires": { - "crypto-browserify": "3.12.0", - "eth-lib": "0.2.8", - "ethereumjs-common": "^1.3.2", - "ethereumjs-tx": "^2.1.1", - "scrypt-js": "^3.0.1", - "underscore": "1.9.1", - "uuid": "3.3.2", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - } + "@ethereumjs/rlp": "^4.0.1", + "crc-32": "^1.2.2", + "ethereum-cryptography": "^2.0.0", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-contract": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.3.4.tgz", - "integrity": "sha512-Fvy8ZxUksQY2ePt+XynFfOiSqxgQtMn4m2NJs6VXRl2Inl17qyRi/nIJJVKTcENLocm+GmZ/mxq2eOE5u02nPg==", - "requires": { - "@types/bn.js": "^4.11.5", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-utils": "1.3.4" + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz", + "integrity": "sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA==", + "requires": { + "@ethereumjs/rlp": "^5.0.2", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "dependencies": { + "@ethereumjs/rlp": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz", + "integrity": "sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==" + } } }, "web3-eth-ens": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.3.4.tgz", - "integrity": "sha512-b0580tQyQwpV2wyacwQiBEfQmjCUln5iPhge3IBIMXaI43BUNtH3lsCL9ERFQeOdweB4o+6rYyNYr6xbRcSytg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz", + "integrity": "sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ==", "requires": { - "content-hash": "^2.5.2", - "eth-ens-namehash": "2.0.8", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-utils": "1.3.4" + "@adraffy/ens-normalize": "^1.8.8", + "web3-core": "^4.5.0", + "web3-errors": "^1.2.0", + "web3-eth": "^4.8.0", + "web3-eth-contract": "^4.5.0", + "web3-net": "^4.1.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.0", + "web3-validator": "^2.0.6" } }, "web3-eth-iban": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.3.4.tgz", - "integrity": "sha512-Y7/hLjVvIN/OhaAyZ8L/hxbTqVX6AFTl2RwUXR6EEU9oaLydPcMjAx/Fr8mghUvQS3QJSr+UGubP3W4SkyNiYw==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz", + "integrity": "sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==", "requires": { - "bn.js": "^4.11.9", - "web3-utils": "1.3.4" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7", + "web3-validator": "^2.0.3" } }, "web3-eth-personal": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.3.4.tgz", - "integrity": "sha512-JiTbaktYVk1j+S2EDooXAhw5j/VsdvZfKRmHtXUe/HizPM9ETXmj1+ne4RT6m+950jQ7DJwUF3XU1FKYNtEDwQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz", + "integrity": "sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ==", "requires": { - "@types/node": "^12.12.6", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" + "web3-core": "^4.6.0", + "web3-eth": "^4.9.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.8.0", + "web3-utils": "^4.3.1", + "web3-validator": "^2.0.6" } }, "web3-net": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.3.4.tgz", - "integrity": "sha512-wVyqgVC3Zt/0uGnBiR3GpnsS8lvOFTDgWZMxAk9C6Guh8aJD9MUc7pbsw5rHrPUVe6S6RUfFJvh/Xq8oMIQgSw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz", + "integrity": "sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA==", "requires": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" + "web3-core": "^4.4.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.6.0", + "web3-utils": "^4.3.0" } }, "web3-providers-http": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.3.4.tgz", - "integrity": "sha512-aIg/xHXvxpqpFU70sqfp+JC3sGkLfAimRKTUhG4oJZ7U+tTcYTHoxBJj+4A3Id4JAoKiiv0k1/qeyQ8f3rMC3g==", - "requires": { - "web3-core-helpers": "1.3.4", - "xhr2-cookies": "1.1.0" - } - }, - "web3-providers-ipc": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.3.4.tgz", - "integrity": "sha512-E0CvXEJElr/TIlG1YfJeO3Le5NI/4JZM+1SsEdiPIfBUAJN18oOoum138EBGKv5+YaLKZUtUuJSXWjIIOR/0Ig==", - "requires": { - "oboe": "2.1.5", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - } - }, - "web3-providers-ws": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.3.4.tgz", - "integrity": "sha512-WBd9hk2fUAdrbA3kUyUk94ZeILtE6txLeoVVvIKAw2bPegx+RjkLyxC1Du0oceKgQ/qQWod8CCzl1E/GgTP+MQ==", - "requires": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "websocket": "^1.0.32" - } - }, - "web3-shh": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.3.4.tgz", - "integrity": "sha512-zoeww5mxLh3xKcqbX85irQbtFe5pc5XwrgjvmdMkhkOdZzPASlWOgqzUFtaPykpLwC3yavVx4jG5RqifweXLUA==", - "requires": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-net": "1.3.4" - } - }, - "web3-utils": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.4.tgz", - "integrity": "sha512-/vC2v0MaZNpWooJfpRw63u0Y3ag2gNjAWiLtMSL6QQLmCqCy4SQIndMt/vRyx0uMoeGt1YTwSXEcHjUzOhLg0A==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz", + "integrity": "sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ==", "requires": { - "bn.js": "^4.11.9", - "eth-lib": "0.2.8", - "ethereum-bloom-filters": "^1.0.6", - "ethjs-unit": "0.1.6", - "number-to-bn": "1.7.0", - "randombytes": "^2.1.0", - "underscore": "1.9.1", - "utf8": "3.0.0" + "cross-fetch": "^4.0.0", + "web3-errors": "^1.3.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1" }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", + "cross-fetch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz", + "integrity": "sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==", "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" + "node-fetch": "^2.7.0" } } } }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "websocket": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.33.tgz", - "integrity": "sha512-XwNqM2rN5eh3G2CUQE3OHZj+0xfdH42+OFK6LdC2yqiC0YU8e5UK0nYre220T0IyyN031V/XOvtHvXozvJYFWA==", - "requires": { - "bufferutil": "^4.0.1", - "debug": "^2.2.0", - "es5-ext": "^0.10.50", - "typedarray-to-buffer": "^3.1.5", - "utf-8-validate": "^5.0.2", - "yaeti": "^0.0.6" - } - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "web3-providers-ipc": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz", + "integrity": "sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==", + "optional": true, "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7" } }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "web3-providers-ws": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz", + "integrity": "sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw==", "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "@types/ws": "8.5.3", + "isomorphic-ws": "^5.0.0", + "web3-errors": "^1.2.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1", + "ws": "^8.17.1" } }, - "which-pm-runs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", - "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", - "optional": true - }, - "which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "web3-rpc-methods": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz", + "integrity": "sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig==", "requires": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", - "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" + "web3-core": "^4.4.0", + "web3-types": "^1.6.0", + "web3-validator": "^2.0.6" } }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "optional": true, + "web3-rpc-providers": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz", + "integrity": "sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw==", "requires": { - "string-width": "^1.0.2 || 2" + "web3-errors": "^1.3.1", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "web3-types": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz", + "integrity": "sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==" }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "web3-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz", + "integrity": "sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==", "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "ethereum-cryptography": "^2.0.0", + "eventemitter3": "^5.0.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-validator": "^2.0.6" } }, - "xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "web3-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz", + "integrity": "sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg==", "requires": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" + "ethereum-cryptography": "^2.0.0", + "util": "^0.12.5", + "web3-errors": "^1.2.0", + "web3-types": "^1.6.0", + "zod": "^3.21.4" } }, - "xhr-request": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "requires": { - "buffer-to-arraybuffer": "^0.0.5", - "object-assign": "^4.1.1", - "query-string": "^5.0.1", - "simple-get": "^2.7.0", - "timed-out": "^4.0.1", - "url-set-query": "^1.0.0", - "xhr": "^2.0.4" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "simple-get": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", - "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", - "requires": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - } - } + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, - "xhr-request-promise": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "requires": { - "xhr-request": "^1.1.0" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "xhr2-cookies": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz", - "integrity": "sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=", + "which-typed-array": { + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", "requires": { - "cookiejar": "^2.1.1" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" } }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "yaeti": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "requires": {} + }, + "zod": { + "version": "3.24.2", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", + "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==" } } } diff --git a/package-prepare_job-lock.json b/package-prepare_job-lock.json new file mode 100644 index 000000000..4e5aff41d --- /dev/null +++ b/package-prepare_job-lock.json @@ -0,0 +1,81 @@ + +{ + "command": "prepare_job", + "responseFile": "/users/octocat/runner/_work/{guid}.json", + "state": {}, + "args": { + "jobContainer": { + "image": "node:18" + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": { + "username": "octocat", + "password": "examplePassword", + "serverUrl": "https://index.docker.io/v1" + }, + "portMappings": { "80": "801" } + }, + "services": [ + { + "contextName": "redis", + "image": "redis", + "createOptions": "--cpus 1", + "environmentVariables": {}, + "userMountVolumes": [], + "portMappings": { "80": "801" }, + "registry": { + "username": "octocat", + "password": "examplePassword", + "serverUrl": "https://index.docker.io/v1" + } + } + ] + } +} diff --git a/package-prepare_job_responseFile.json b/package-prepare_job_responseFile.json new file mode 100644 index 000000000..2675bb0c0 --- /dev/null +++ b/package-prepare_job_responseFile.json @@ -0,0 +1,26 @@ + +{ + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "context": { + "container": { + "id": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "network": "example_network_53269bd575972817b43f7733536b200c" + }, + "services": { + "redis": { + "id": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105", + "ports": { + "8080": "8080" + }, + "network": "example_network_53269bd575972817b43f7733536b200c" + } + }, + "isAlpine": true + } +} diff --git a/package-run_container_step_or_docker_file.json b/package-run_container_step_or_docker_file.json new file mode 100644 index 000000000..0f217479e --- /dev/null +++ b/package-run_container_step_or_docker_file.json @@ -0,0 +1,69 @@ +{ + "command": "run_container_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "services": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "image": null, + "dockerfile": "/__w/_actions/foo/dockerfile", + "entryPointArgs": ["hello world"], + "entryPoint": "echo", + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": null, + "portMappings": { "80": "801" } + } +} diff --git a/package-run_container_step_or_docker_image.json b/package-run_container_step_or_docker_image.json new file mode 100644 index 000000000..b96841d8c --- /dev/null +++ b/package-run_container_step_or_docker_image.json @@ -0,0 +1,70 @@ + +{ + "command": "run_container_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "image": "node:18", + "dockerfile": null, + "entryPointArgs": ["-f", "/dev/null"], + "entryPoint": "tail", + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": null, + "portMappings": { "80": "801" } + } +} diff --git a/package-run_script_step-lock.json b/package-run_script_step-lock.json new file mode 100644 index 000000000..86cdee9cf --- /dev/null +++ b/package-run_script_step-lock.json @@ -0,0 +1,20 @@ +{ + "command": "run_script_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "entryPointArgs": ["-e", "/runner/temp/example.sh"], + "entryPoint": "bash", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "workingDirectory": "/__w/octocat-test2/octocat-test2" + } +} diff --git a/package.json b/package.json index 03cb75713..e85cec387 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "networklist", + "name": "networklist-org", "version": "1.0.0", "private": true, "scripts": { @@ -14,10 +14,14 @@ "@material-ui/icons": "^4.11.2", "@material-ui/lab": "^4.0.0-alpha.57", "flux": "^4.0.1", - "next": "10.0.7", + "next": "^15.3.3", "react": "17.0.1", "react-dom": "17.0.1", "swr": "^0.5.6", - "web3": "^1.3.4" - } + "web3": "^4.16.0" + }, + "description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).", + "main": "mv.js", + "author": "cai_liyong@qq.com", + "license": "ISC" } diff --git a/pull_requests_000001.json b/pull_requests_000001.json new file mode 100644 index 000000000..85c5450c8 --- /dev/null +++ b/pull_requests_000001.json @@ -0,0 +1,3516 @@ +[ + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/2", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Create Api.js", + "body": null, + "base": { + "ref": "main", + "sha": "b93603b127cb2891a8ec6ac34e7853a05df5f5bd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "0d6aa4233d100bdbd63ea4109858c62c554eb4ea", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2024-09-28T01:43:06Z", + "closed_at": "2024-09-28T01:43:06Z", + "created_at": "2024-09-28T01:40:53Z", + "merge_commit_sha": "42c84ef6e1dc9d3d9d31b727dd66e2fc14a19154" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @ethersproject/logger from 5.0.9 to 5.7.0", + "body": "Bumps [@ethersproject/logger](https://github.com/ethers-io/ethers.js/tree/HEAD/packages/logger) from 5.0.9 to 5.7.0.\n
\nRelease notes\n

Sourced from @​ethersproject/logger's releases.

\n
\n

ethers/v5.7.0 (2022-08-18 16:17)

\n
    \n
  • Update PocketProvider to newer URL format. (#2980; 10d07ca)
  • \n
  • Add new ENS normalization specification for wider UTF-8 support. (#42, #2376, #2754; 14bf407, fce9aaa, f274104)
  • \n
  • Added ACTION_REJECTED error for UI-based Signers. (d9897e0)
  • \n
  • Include current baseFee in feeData for easier custom fee calculation. (8314236)
  • \n
  • Add restrictions for new UTF-8 specification ENS names. (#42, #2376, #2754; e52fbfb)
  • \n
  • Expand the definition of a WebSocketLike. (#2843; 00114d7)
  • \n
  • Expanded type for queryFitler to allow string. (#2882; 60da870)
  • \n
  • Added finalized and safe blockTags. (#3091; 549168c)
  • \n
  • Added arbitrum-goerli to Networks and AlchemyProvider. (#3246; e72d13e)
  • \n
  • Add EIP-712 type exports. (#221; 7ce41cd)
  • \n
  • Added optimism-goerli to AlchemyProvider. (#3246; f1cb0d2)
  • \n
  • Updated EtherscanProvider for new CommunityResource API throttling. (6bd13c3)
  • \n
  • Fix old events from being emitted at the beginning of a filter. (#3069, #3094; ea2d245)
  • \n
  • Fixed Interface signautres missing strings as eventFragments. (#3157; c004ae5)
  • \n
  • Fix bug in EIP1193Bridge forwarding to the wrong method. (#3166; 17676e9)
  • \n
  • Use updated Web3 Secret Storage format for JSON wallets. (#3075; 6f57e8b)
  • \n
  • Relaxed nameprep length requirement dropping RFC-5891 section 4.2.4. (#3161; abdf2e3)
  • \n
  • Switch to hash.js for ripemd160 on node as it was removed from the default crypto provider in node 17. (#3082; 450694e)
  • \n
  • Add optimism-kovan to EtherscanProvider. (#3135; 4d3e586)
  • \n
  • Forward any blockTag along in the FallbackProvider during call. (#3168; ab43e7d)
  • \n
  • Allow browser fetch option overrides. (#3096; c309df8)
  • \n
\n
\n

Embedding UMD with SRI:

\n
<script type="text/javascript"\n        integrity="sha384-EQi5ynMqKKWGuwfjllsutXzvDo0ubfkYMhKrz5WJJB7PUXnkSo5qxWSy80hu/Zh9"\n        crossorigin="anonymous"\n        src="https://cdn-cors.ethers.io/lib/ethers-5.7.0.umd.min.js">\n</script>\n
\n

ethers/v5.6.9 (2022-06-17 14:44)

\n
    \n
  • Removed Ankr for Ropsten default provider; the merge seems to have broke it. (3790671)
  • \n
  • Fix NonceManager for increment 0 and provided nonce. (#3062, #3085; 0a28679)
  • \n
  • Fixed topic filters for numeric types with string values. (#3013; 0078e02)
  • \n
\n
\n

Embedding UMD with SRI:

\n
<script type="text/javascript"\n        integrity="sha384-qU3nvpskWirnJuSLmQWFfAFKbiN5+JKbAEEoTOcPYJu3s1xCe66b66sUER3x5wVF"\n        crossorigin="anonymous"\n        src="https://cdn-cors.ethers.io/lib/ethers-5.6.9.umd.min.js">\n</script>\n
\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from @​ethersproject/logger's changelog.

\n
\n

ethers/v5.7.0 (2022-08-18 16:17)

\n
    \n
  • Update PocketProvider to newer URL format. (#2980; 10d07ca)
  • \n
  • Add new ENS normalization specification for wider UTF-8 support. (#42, #2376, #2754; 14bf407, fce9aaa, f274104)
  • \n
  • Added ACTION_REJECTED error for UI-based Signers. (d9897e0)
  • \n
  • Include current baseFee in feeData for easier custom fee calculation. (8314236)
  • \n
  • Add restrictions for new UTF-8 specification ENS names. (#42, #2376, #2754; e52fbfb)
  • \n
  • Expand the definition of a WebSocketLike. (#2843; 00114d7)
  • \n
  • Expanded type for queryFitler to allow string. (#2882; 60da870)
  • \n
  • Added finalized and safe blockTags. (#3091; 549168c)
  • \n
  • Added arbitrum-goerli to Networks and AlchemyProvider. (#3246; e72d13e)
  • \n
  • Add EIP-712 type exports. (#221; 7ce41cd)
  • \n
  • Added optimism-goerli to AlchemyProvider. (#3246; f1cb0d2)
  • \n
  • Updated EtherscanProvider for new CommunityResource API throttling. (6bd13c3)
  • \n
  • Fix old events from being emitted at the beginning of a filter. (#3069, #3094; ea2d245)
  • \n
  • Fixed Interface signautres missing strings as eventFragments. (#3157; c004ae5)
  • \n
  • Fix bug in EIP1193Bridge forwarding to the wrong method. (#3166; 17676e9)
  • \n
  • Use updated Web3 Secret Storage format for JSON wallets. (#3075; 6f57e8b)
  • \n
  • Relaxed nameprep length requirement dropping RFC-5891 section 4.2.4. (#3161; abdf2e3)
  • \n
  • Switch to hash.js for ripemd160 on node as it was removed from the default crypto provider in node 17. (#3082; 450694e)
  • \n
  • Add optimism-kovan to EtherscanProvider. (#3135; 4d3e586)
  • \n
  • Forward any blockTag along in the FallbackProvider during call. (#3168; ab43e7d)
  • \n
  • Allow browser fetch option overrides. (#3096; c309df8)
  • \n
\n

ethers/v5.6.9 (2022-06-17 14:44)

\n
    \n
  • Removed Ankr for Ropsten default provider; the merge seems to have broke it. (3790671)
  • \n
  • Fix NonceManager for increment 0 and provided nonce. (#3062, #3085; 0a28679)
  • \n
  • Fixed topic filters for numeric types with string values. (#3013; 0078e02)
  • \n
\n

ethers/v5.6.8 (2022-05-24 11:50)

\n\n

ethers/v5.6.7 (2022-05-20 19:11)

\n\n

ethers/v5.6.6 (2022-05-12 17:29)

\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@ethersproject/logger&package-manager=npm_and_yarn&previous-version=5.0.9&new-version=5.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9b34289da8437920fdbe4428768edd01a7b503eb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-ethersproject-logger-5.7.0", + "sha": "1d776d46e54e4854b536a50ebdcb03da9949be74", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-16T05:49:43Z", + "created_at": "2024-10-05T17:35:59Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump pbkdf2 from 3.1.1 to 3.1.2", + "body": "Bumps [pbkdf2](https://github.com/crypto-browserify/pbkdf2) from 3.1.1 to 3.1.2.\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pbkdf2&package-manager=npm_and_yarn&previous-version=3.1.1&new-version=3.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9b34289da8437920fdbe4428768edd01a7b503eb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-pbkdf2-3.1.2", + "sha": "c9e870bd549f92dd73dbdd898d0482724231f022", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-10T05:49:35Z", + "created_at": "2024-10-05T17:36:10Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jss-plugin-props-sort from 10.5.1 to 10.10.0", + "body": "Bumps [jss-plugin-props-sort](https://github.com/cssinjs/jss/tree/HEAD/packages/jss-plugin-props-sort) from 10.5.1 to 10.10.0.\n
\nRelease notes\n

Sourced from jss-plugin-props-sort's releases.

\n
\n

v10.10.0

\n

Improvements

\n\n

v10.9.2

\n

Bug fixes

\n
    \n
  • [react-jss] Fix import useInsertionEffect 1627
  • \n
\n

v10.9.1

\n

No release notes provided.

\n

v10.9.1-alpha.2

\n

Bug fixes

\n
    \n
  • [jss] Update stylesheet if !important flag is set before and after the update 1612
  • \n
\n

v10.9.1-alpha.1

\n

Bug fixes

\n
    \n
  • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
  • \n
\n

v10.9.1-alpha.0

\n

Improvements

\n
    \n
  • [react-jss] Use useInsertionEffect 1608, 1604
  • \n
\n

v10.9.0

\n

Bug fixes

\n
    \n
  • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
  • \n
\n

Improvements

\n
    \n
  • Keep classes ref when sheet and dynamicRules have not any change 1573
  • \n
\n

v10.8.2

\n

Bug fixes

\n
    \n
  • Reverting 1563 because of regression 1565
  • \n
\n

v10.8.1

\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from jss-plugin-props-sort's changelog.

\n
\n

10.10.0 (2023-2-9)

\n

Improvements

\n\n

10.9.2 (2022-7-31)

\n

Bug fixes

\n
    \n
  • [react-jss] Fix import useInsertionEffect 1627
  • \n
\n

10.9.1 (2022-7-21)

\n

Bug fixes

\n
    \n
  • [jss] Update stylesheet if !important flag is set before and after the update 1612
  • \n
\n

10.9.1-alpha.2 (2022-4-24)

\n

Bug fixes

\n
    \n
  • [jss] Update stylesheet if !important flag is set before and after the update 1612
  • \n
\n

10.9.1-alpha.1 (2022-4-23)

\n

Bug fixes

\n
    \n
  • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
  • \n
\n

10.9.1-alpha.0 (2022-4-16)

\n

Improvements

\n
    \n
  • [react-jss] Use useInsertionEffect 1608, 1604
  • \n
\n

10.9.0 (2021-12-8)

\n

Bug fixes

\n
    \n
  • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
  • \n
\n

Improvements

\n
    \n
  • Keep classes ref when sheet and dynamicRules have not any change 1573
  • \n
\n

10.8.2 (2021-10-25)

\n

Bug fixes

\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jss-plugin-props-sort&package-manager=npm_and_yarn&previous-version=10.5.1&new-version=10.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9b34289da8437920fdbe4428768edd01a7b503eb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-jss-plugin-props-sort-10.10.0", + "sha": "2da1e5c5b2420fcb7032b9cb795135a3aab4e408", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:47Z", + "created_at": "2024-10-05T17:36:18Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump color-string from 1.5.4 to 1.9.1", + "body": "Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.4 to 1.9.1.\n
\nRelease notes\n

Sourced from color-string's releases.

\n
\n

1.9.0

\n

Minor Release 1.9.0

\n
    \n
  • Add parsing of exponential alpha values for HWB and HSL (#66)
  • \n
\n

Thanks to @​babycannotsay for their contribution!

\n

1.8.2

\n

Patch release 1.8.2

\n
    \n
  • Fix incorrect handling of optional comma in rgb() regex (#65)
  • \n
\n

Thanks to @​gerdasi and @​mastertheblaster for reporting and confirming the bug!

\n

1.8.1

\n

Patch release 1.8.1

\n
    \n
  • Fix rgb alpha percentage parsing from int to float (#61)
  • \n
\n

Thanks to @​clytras for their contribution!

\n

1.8.0

\n

Minor release 1.8.0

\n
    \n
  • Add anchors to keyword regex (#64)
  • \n
\n

Thanks to @​cq360767996 for their contribution!

\n

1.7.4

\n

Patch Release 1.7.4

\n
    \n
  • Fix bug in .to.hex() output if the inputs aren't rounded numbers (#25)
  • \n
\n

1.7.3

\n

Patch Release 1.7.3

\n
    \n
  • Fix hue modulo operation (#50)
  • \n
\n

Thanks to @​adroitwhiz for their contributions.

\n

1.7.2

\n

Patch Release 1.7.2

\n
    \n
  • Fix issue where color-string with incorrectly return a color for properties on Object's prototype like "constructor". (#45)
  • \n
\n

Thanks to @​tolmasky for their contributions.

\n

1.7.1

\n

Patch release 1.7.1

\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=color-string&package-manager=npm_and_yarn&previous-version=1.5.4&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9b34289da8437920fdbe4428768edd01a7b503eb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-color-string-1.9.1", + "sha": "5f7e57a37c30b727a4a03429aff14d3a2c99131d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:46Z", + "created_at": "2024-10-05T17:36:24Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ethereum-bloom-filters from 1.0.9 to 1.2.0", + "body": "Bumps [ethereum-bloom-filters](https://github.com/joshstevens19/ethereum-bloom-filters) from 1.0.9 to 1.2.0.\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ethereum-bloom-filters&package-manager=npm_and_yarn&previous-version=1.0.9&new-version=1.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9b34289da8437920fdbe4428768edd01a7b503eb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-ethereum-bloom-filters-1.2.0", + "sha": "f4d72230dc3d34320a5ec0b5f05320db66f581e6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:46Z", + "created_at": "2024-10-05T17:36:35Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump the npm_and_yarn group with 2 updates", + "body": "Bumps the npm_and_yarn group with 2 updates: [elliptic](https://github.com/indutny/elliptic) and [web3](https://github.com/ChainSafe/web3.js).\n\nUpdates `elliptic` from 6.5.4 to 6.5.7\n
\nCommits\n\n
\n
\n\nUpdates `web3` from 1.3.4 to 4.13.0\n
\nRelease notes\n

Sourced from web3's releases.

\n
\n

web3-eth@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-eth@4.0.0-alpha.0

\n

web3-core-requestmanager@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

\n

web3-providers-http@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-providers-http@4.0.0-alpha.0

\n

web3-providers-base@1.0.0-alpha.1

\n

Changed

\n
    \n
  • Update version to 1.0.0-alpha.1 for web3-providers-base
  • \n
  • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
  • \n
\n

web3-utils@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-utils@4.0.0-alpha.0

\n

web3-packagetemplate@1.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-packagetemplate@1.0.0-alpha.0

\n
\n
\n
\nChangelog\n

Sourced from web3's changelog.

\n
\n

[1.3.4]

\n

Changed

\n
    \n
  • Fixed mutation of inputs to encoding and decoding functions (#3748)
  • \n
  • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
  • \n
  • ethjs-signer test (#3876)
  • \n
  • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
  • \n
  • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
  • \n
  • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
  • \n
  • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
  • \n
  • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Update dependencies for web3-eth2-core (#3878)
  • \n
\n

Removed

\n
    \n
  • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
  • \n
  • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
  • \n
  • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
  • \n
  • schema.ts from web3-eth2-core (#3878)
  • \n
  • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
  • \n
\n

Added

\n
    \n
  • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Deprecation of bzz warning (#3872)
  • \n
  • Deprecation of shh warning (#3888)
  • \n
\n

[1.3.5]

\n

Added

\n
    \n
  • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
  • \n
  • Added description to documentation on how to connect using a remote node provider (#3884)
  • \n
  • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
  • \n
  • .nvmrc file using Node.js version v.14.15.1 (#3817)
  • \n
  • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
  • \n
\n

Changed

\n
    \n
  • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
  • \n
  • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
  • \n
  • moved deprecation warnings to postinstall scripts (#3917)
  • \n
  • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
  • \n
  • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
  • \n
  • Rewrite web3-eth-iban in ES6 (#3955)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by luu-alex, a new releaser for web3 since your current version.

\n
\n
\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
", + "base": { + "ref": "main", + "sha": "4d5da2ce2ce05f5f7f05244425d20898cddcc206", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-aa7081ab4f", + "sha": "2ecf66d4cf5eb33bedffec3cb5659e150ad934b1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2024-10-13T15:18:39Z", + "created_at": "2024-10-13T02:38:14Z", + "merge_commit_sha": "d9e3680642f8e91d9fd5c8f3485fc10aba0072c2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ossf/scorecard-action from 2.3.1 to 2.4.0", + "body": "Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.3.1 to 2.4.0.\n
\nRelease notes\n

Sourced from ossf/scorecard-action's releases.

\n
\n

v2.4.0

\n

What's Changed

\n

This update bumps the Scorecard version to the v5 release. For a complete list of changes, please refer to the v5.0.0 release notes. Of special note to Scorecard Action is the Maintainer Annotation feature, which can be used to suppress some Code Scanning false positives. Alerts will not be generated for any Scorecard Check with an annotation.

\n\n

Documentation

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.3.3...v2.4.0

\n

v2.3.3

\n
\n

[!NOTE]
\nThere is no v2.3.2 release as a step was skipped in the release process. This was fixed and re-released under the v2.3.3 tag

\n
\n

What's Changed

\n\n

For a full changelist of what these include, see the v5.0.0-rc1 and v5.0.0-rc2 release notes.

\n

Documentation

\n\n

Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.3.1...v2.3.3

\n
\n
\n
\nCommits\n
    \n
  • 62b2cac bump docker tag to v2.4.0 for release (#1414)
  • \n
  • c09630c lower license score alert threshold to 9 (#1411)
  • \n
  • cf8594c :seedling: Bump github.com/sigstore/cosign/v2 from 2.2.4 to 2.3.0 (#1413)
  • \n
  • de5fcb9 :seedling: Bump the github-actions group with 2 updates (#1412)
  • \n
  • a46b90b bump scorecard to v5.0.0 release (#1410)
  • \n
  • 9fc518d :seedling: Bump golang in the docker-images group (#1407)
  • \n
  • a8eaa1b :seedling: Bump the github-actions group with 2 updates (#1408)
  • \n
  • 873d5fd :seedling: Bump the github-actions group across 1 directory with 2 updates (#...
  • \n
  • 54cc1fe :seedling: Bump the docker-images group with 2 updates (#1401)
  • \n
  • 82bcb91 :seedling: Bump golang.org/x/net from 0.26.0 to 0.27.0 (#1400)
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ossf/scorecard-action&package-manager=github_actions&previous-version=2.3.1&new-version=2.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "25ef8736376d88fe1bae71fecdebcd5e7beaf962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-ossf-scorecard-action-2.4.0", + "sha": "6c69fd37ba06656b9aa0cecd5f57cb630eac87a8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-01-21T05:49:47Z", + "created_at": "2024-10-14T01:40:24Z", + "merge_commit_sha": "b66ebda33cdc0ed839ff7b1f3d134f551c2fcf79" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/10", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump security-code-scan/security-code-scan-add-action from f8ff4f2763ed6f229eded80b1f9af82ae7f32a0d to 2439fb4aaeda4ad590a7c8bde327d159d03875fd", + "body": "Bumps [security-code-scan/security-code-scan-add-action](https://github.com/security-code-scan/security-code-scan-add-action) from f8ff4f2763ed6f229eded80b1f9af82ae7f32a0d to 2439fb4aaeda4ad590a7c8bde327d159d03875fd.\n
\nCommits\n\n
\n
\n\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "25ef8736376d88fe1bae71fecdebcd5e7beaf962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-security-code-scan-security-code-scan-add-action-2439fb4aaeda4ad590a7c8bde327d159d03875fd", + "sha": "e2a47616c0b6e4565d7707d05af2eec522a9d482", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-01-21T05:49:47Z", + "created_at": "2024-10-14T01:40:26Z", + "merge_commit_sha": "cb12f0201cd3f2ea7a1fe3f0e41b2df7cb6572f9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/11", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump SonarSource/sonarqube-scan-action from 1.1.0 to 3.0.0", + "body": "Bumps [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) from 1.1.0 to 3.0.0.\n
\nRelease notes\n

Sourced from SonarSource/sonarqube-scan-action's releases.

\n
\n

v3.0.0

\n

What's Changed

\n\n

Full Changelog: https://github.com/SonarSource/sonarqube-scan-action/compare/v2...v3.0.0

\n

v2.3.0

\n

What's Changed

\n\n

Full Changelog: https://github.com/SonarSource/sonarqube-scan-action/compare/v2...v2.3.0

\n

v2.2.0

\n

What's Changed

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/SonarSource/sonarqube-scan-action/compare/v2...v2.2

\n

What's Changed

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/SonarSource/sonarqube-scan-action/compare/v2.1.0...v2.2.0

\n

v2.1.0

\n

What's Changed

\n\n

Full Changelog: https://github.com/SonarSource/sonarqube-scan-action/compare/v2...v2.1.0

\n\n
\n

... (truncated)

\n
\n
\nCommits\n
    \n
  • 884b794 SQSCANGHA-42 Update Scanner CLI Docker to 11.1
  • \n
  • f885e52 BUILD-6088 Create SECURITY.md
  • \n
  • 2af7c4b Revert "SQSCANGHA-42 Update scanner cli to v11.0"
  • \n
  • 0c0f395 SQSCANGHA-42 Update scanner cli to v11.0
  • \n
  • 8c8682d Prevent globbing and word splitting in cleanup.sh
  • \n
  • bfafdf2 NO-JIRA Bump madhead/semver-utils
  • \n
  • aecaf43 SQSCANGHA-40 Restore permission fix for files in the project basedir
  • \n
  • 540792c Revert "SQSCANGHA-28 Support passing args with spaces"
  • \n
  • e56fc17 SQSCANGHA-37 Update C++/C recommendation adding AutoScan recommendation
  • \n
  • 94ac847 SQSCANGHA-30 Replace secrets.SONAR_HOST_URL with vars.SONAR_HOST_URL
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=SonarSource/sonarqube-scan-action&package-manager=github_actions&previous-version=1.1.0&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
", + "base": { + "ref": "main", + "sha": "25ef8736376d88fe1bae71fecdebcd5e7beaf962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-SonarSource-sonarqube-scan-action-3.0.0", + "sha": "7bb0b6a7230c5a3e4eebd85da0282e6f3123da78", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2024-11-12T04:35:00Z", + "closed_at": "2024-11-12T04:35:00Z", + "created_at": "2024-10-14T01:40:28Z", + "merge_commit_sha": "1d6279d0bafd71021c27b4a5ef893fbf67da9c59" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/12", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ZscalerCWP/Zscaler-IaC-Action from 1.3.0 to 1.5.1", + "body": "Bumps [ZscalerCWP/Zscaler-IaC-Action](https://github.com/zscalercwp/zscaler-iac-action) from 1.3.0 to 1.5.1.\n
\nRelease notes\n

Sourced from ZscalerCWP/Zscaler-IaC-Action's releases.

\n
\n

Release 1.5.1

\n

What's Changed

\n\n

Full Changelog: https://github.com/ZscalerCWP/Zscaler-IaC-Action/compare/v1.5.0...v1.5.1

\n

Release 1.5.0

\n

What's Changed

\n\n

Release 1.4.0

\n

Removed warnings from the console output.

\n
\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ZscalerCWP/Zscaler-IaC-Action&package-manager=github_actions&previous-version=1.3.0&new-version=1.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "25ef8736376d88fe1bae71fecdebcd5e7beaf962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-ZscalerCWP-Zscaler-IaC-Action-1.5.1", + "sha": "1c048b0a106f285e98306c6610e515570e1783e8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-01-21T05:49:46Z", + "created_at": "2024-10-14T01:40:31Z", + "merge_commit_sha": "b084ae34287a1255a42f130a6d619d9d9b018df0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/13", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump codacy/codacy-analysis-cli-action from 1.1.0 to 4.4.5", + "body": "Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 1.1.0 to 4.4.5.\n
\nRelease notes\n

Sourced from codacy/codacy-analysis-cli-action's releases.

\n
\n

v4.4.5

\n

What's Changed

\n\n

v4.4.4

\n

What's Changed

\n\n

v4.4.3

\n

What's Changed

\n\n

v4.4.2

\n

What's Changed

\n\n

New Contributors

\n\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=codacy/codacy-analysis-cli-action&package-manager=github_actions&previous-version=1.1.0&new-version=4.4.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
\n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "25ef8736376d88fe1bae71fecdebcd5e7beaf962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-codacy-codacy-analysis-cli-action-4.4.5", + "sha": "605b9b7578bc206adea42d79abd2d6e81b704663", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-01-21T05:49:45Z", + "created_at": "2024-10-14T01:40:32Z", + "merge_commit_sha": "28d9ace957491593bf3ad95065175e983cae9b77" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/14", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump next from 10.0.7 to 14.2.10 in the npm_and_yarn group", + "body": "Bumps the npm_and_yarn group with 1 update: [next](https://github.com/vercel/next.js).\n\nUpdates `next` from 10.0.7 to 14.2.10\n
\nRelease notes\n

Sourced from next's releases.

\n
\n

v14.2.10

\n
\n

[!NOTE]
\nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

\n
\n

Core Changes

\n\n

Credits

\n

Huge thanks to @​huozhi and @​ijjk for helping!

\n

v14.2.9

\n
\n

[!NOTE]
\nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

\n
\n

Core Changes

\n
    \n
  • Revert "Fix esm property def in flight loader (#66990)" (#69749)
  • \n
  • Disable experimental.optimizeServer by default to fix failed server action (#69788)
  • \n
  • Fix middleware fallback: false case (#69799)
  • \n
  • Fix status code for /_not-found route (#64058) (#69808)
  • \n
  • Fix metadata prop merging (#69807)
  • \n
  • create-next-app: fix font file corruption when using import alias (#69806)
  • \n
\n

Credits

\n

Huge thanks to @​huozhi, @​ztanner, @​ijjk, and @​lubieowoce for helping!

\n

v14.2.8

\n

What's Changed

\n
\n

[!NOTE]
\nThis release is backporting bug fixes and minor improvements. It does not include all pending features/changes on canary.

\n
\n

Support esmExternals in app directory

\n
    \n
  • Support esm externals in app router (#65041)
  • \n
  • Turbopack: Allow client components from foreign code in app routes (#64751)
  • \n
  • Turbopack: add support for esm externals in app dir (#64918)
  • \n
  • other related PRs: #66990 #66727 #66286 #65519
  • \n
\n

Reading cookies set in middleware in components and actions

\n
    \n
  • initialize ALS with cookies in middleware (#65008)
  • \n
  • fix middleware cookie initialization (#65820)
  • \n
  • ensure cookies set in middleware can be read in a server action (#67924)
  • \n
  • fix: merged middleware cookies should preserve options (#67956)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by vercel-release-bot, a new releaser for next since your current version.

\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=next&package-manager=npm_and_yarn&previous-version=10.0.7&new-version=14.2.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
", + "base": { + "ref": "main", + "sha": "20a16822940de81865d30a05a496c1c95f88df79", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-862843ec32", + "sha": "7979199c48bdef0cd5d9c74df06e97b4552cd488", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2024-10-15T03:49:39Z", + "created_at": "2024-10-14T20:26:36Z", + "merge_commit_sha": "474706d1262f0fc117e7f9666c7fecc88aa225fe" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/15", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump secp256k1 from 4.0.2 to 4.0.4 in the npm_and_yarn group", + "body": "Bumps the npm_and_yarn group with 1 update: [secp256k1](https://github.com/cryptocoinjs/secp256k1-node).\n\nUpdates `secp256k1` from 4.0.2 to 4.0.4\n
\nRelease notes\n

Sourced from secp256k1's releases.

\n
\n

v4.0.3

\n
    \n
  • 95b6176 Update prebuildify (#187)
  • \n
  • 4223dd4 Update elliptic to 6.5.4 (CVE-2020-28498) (#186)
  • \n
\n
\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=secp256k1&package-manager=npm_and_yarn&previous-version=4.0.2&new-version=4.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
", + "base": { + "ref": "main", + "sha": "c165a18139e41d4f741d6b67811a9a146bb37b32", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-38c118d439", + "sha": "00d2ada022e5a0a28652ca97c2f233dd18297438", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2024-10-22T01:06:41Z", + "created_at": "2024-10-21T18:02:05Z", + "merge_commit_sha": "e52c91a96723a689febf95498fc2a0fb9aed81bb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/16", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump the npm_and_yarn group with 14 updates", + "body": "Bumps the npm_and_yarn group with 15 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [next](https://github.com/vercel/next.js) | `10.0.7` | `14.2.10` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.3.4` | `1.5.3` |\n| [body-parser](https://github.com/expressjs/body-parser) | `1.19.0` | `1.20.3` |\n| [browserify-sign](https://github.com/crypto-browserify/browserify-sign) | `4.2.1` | `4.2.3` |\n| [cookie](https://github.com/jshttp/cookie) | `0.4.0` | `0.7.1` |\n| [cookiejar](https://github.com/bmeck/node-cookiejar) | `2.1.2` | `2.1.4` |\n| [cross-fetch](https://github.com/lquixada/cross-fetch) | `3.0.6` | `3.1.8` |\n| [postcss](https://github.com/postcss/postcss) | `7.0.35` | `8.4.31` |\n| [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) | `0.2.0` | `0.2.2` |\n| [elliptic](https://github.com/indutny/elliptic) | `6.5.4` | `removed` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.5.3` | `4.14.0` |\n| [nanoid](https://github.com/ai/nanoid) | `3.1.20` | `3.3.7` |\n| [node-fetch](https://github.com/node-fetch/node-fetch) | `2.6.1` | `2.7.0` |\n| [ua-parser-js](https://github.com/faisalman/ua-parser-js) | `0.7.24` | `0.7.39` |\n| [ws](https://github.com/websockets/ws) | `3.3.3` | `8.18.0` |\n\nUpdates `next` from 10.0.7 to 14.2.10\n
\nRelease notes\n

Sourced from next's releases.

\n
\n

v14.2.10

\n
\n

[!NOTE]
\nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

\n
\n

Core Changes

\n\n

Credits

\n

Huge thanks to @​huozhi and @​ijjk for helping!

\n

v14.2.9

\n
\n

[!NOTE]
\nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

\n
\n

Core Changes

\n
    \n
  • Revert "Fix esm property def in flight loader (#66990)" (#69749)
  • \n
  • Disable experimental.optimizeServer by default to fix failed server action (#69788)
  • \n
  • Fix middleware fallback: false case (#69799)
  • \n
  • Fix status code for /_not-found route (#64058) (#69808)
  • \n
  • Fix metadata prop merging (#69807)
  • \n
  • create-next-app: fix font file corruption when using import alias (#69806)
  • \n
\n

Credits

\n

Huge thanks to @​huozhi, @​ztanner, @​ijjk, and @​lubieowoce for helping!

\n

v14.2.8

\n

What's Changed

\n
\n

[!NOTE]
\nThis release is backporting bug fixes and minor improvements. It does not include all pending features/changes on canary.

\n
\n

Support esmExternals in app directory

\n
    \n
  • Support esm externals in app router (#65041)
  • \n
  • Turbopack: Allow client components from foreign code in app routes (#64751)
  • \n
  • Turbopack: add support for esm externals in app dir (#64918)
  • \n
  • other related PRs: #66990 #66727 #66286 #65519
  • \n
\n

Reading cookies set in middleware in components and actions

\n
    \n
  • initialize ALS with cookies in middleware (#65008)
  • \n
  • fix middleware cookie initialization (#65820)
  • \n
  • ensure cookies set in middleware can be read in a server action (#67924)
  • \n
  • fix: merged middleware cookies should preserve options (#67956)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by vercel-release-bot, a new releaser for next since your current version.

\n
\n
\n\nUpdates `web3` from 1.3.4 to 1.5.3\n
\nRelease notes\n

Sourced from web3's releases.

\n
\n

web3-eth@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-eth@4.0.0-alpha.0

\n

web3-core-requestmanager@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

\n

web3-providers-http@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-providers-http@4.0.0-alpha.0

\n

web3-providers-base@1.0.0-alpha.1

\n

Changed

\n
    \n
  • Update version to 1.0.0-alpha.1 for web3-providers-base
  • \n
  • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
  • \n
\n

web3-utils@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-utils@4.0.0-alpha.0

\n

web3-packagetemplate@1.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-packagetemplate@1.0.0-alpha.0

\n
\n
\n
\nChangelog\n

Sourced from web3's changelog.

\n
\n

[1.3.4]

\n

Changed

\n
    \n
  • Fixed mutation of inputs to encoding and decoding functions (#3748)
  • \n
  • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
  • \n
  • ethjs-signer test (#3876)
  • \n
  • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
  • \n
  • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
  • \n
  • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
  • \n
  • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
  • \n
  • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Update dependencies for web3-eth2-core (#3878)
  • \n
\n

Removed

\n
    \n
  • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
  • \n
  • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
  • \n
  • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
  • \n
  • schema.ts from web3-eth2-core (#3878)
  • \n
  • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
  • \n
\n

Added

\n
    \n
  • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Deprecation of bzz warning (#3872)
  • \n
  • Deprecation of shh warning (#3888)
  • \n
\n

[1.3.5]

\n

Added

\n
    \n
  • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
  • \n
  • Added description to documentation on how to connect using a remote node provider (#3884)
  • \n
  • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
  • \n
  • .nvmrc file using Node.js version v.14.15.1 (#3817)
  • \n
  • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
  • \n
\n

Changed

\n
    \n
  • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
  • \n
  • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
  • \n
  • moved deprecation warnings to postinstall scripts (#3917)
  • \n
  • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
  • \n
  • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
  • \n
  • Rewrite web3-eth-iban in ES6 (#3955)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

\n
\n
\n\nUpdates `body-parser` from 1.19.0 to 1.20.3\n
\nRelease notes\n

Sourced from body-parser's releases.

\n
\n

1.20.3

\n

What's Changed

\n

Important

\n
    \n
  • deps: qs@6.13.0
  • \n
  • add depth option to customize the depth level in the parser
  • \n
  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity). Documentation
  • \n
\n

Other changes

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/expressjs/body-parser/compare/1.20.2...1.20.3

\n

1.20.2

\n
    \n
  • Fix strict json error message on Node.js 19+
  • \n
  • deps: content-type@~1.0.5\n
      \n
    • perf: skip value escaping when unnecessary
    • \n
    \n
  • \n
  • deps: raw-body@2.5.2
  • \n
\n

1.20.1

\n
    \n
  • deps: qs@6.11.0
  • \n
  • perf: remove unnecessary object clone
  • \n
\n

1.20.0

\n
    \n
  • Fix error message for json parse whitespace in strict
  • \n
  • Fix internal error when inflated body exceeds limit
  • \n
  • Prevent loss of async hooks context
  • \n
  • Prevent hanging when request already read
  • \n
  • deps: depd@2.0.0\n
      \n
    • Replace internal eval usage with Function constructor
    • \n
    • Use instance methods on process to check for listeners
    • \n
    \n
  • \n
  • deps: http-errors@2.0.0\n
      \n
    • deps: depd@2.0.0
    • \n
    • deps: statuses@2.0.1
    • \n
    \n
  • \n
  • deps: on-finished@2.4.1
  • \n
  • deps: qs@6.10.3
  • \n
\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from body-parser's changelog.

\n
\n

1.20.3 / 2024-09-10

\n
    \n
  • deps: qs@6.13.0
  • \n
  • add depth option to customize the depth level in the parser
  • \n
  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • \n
\n

1.20.2 / 2023-02-21

\n
    \n
  • Fix strict json error message on Node.js 19+
  • \n
  • deps: content-type@~1.0.5\n
      \n
    • perf: skip value escaping when unnecessary
    • \n
    \n
  • \n
  • deps: raw-body@2.5.2
  • \n
\n

1.20.1 / 2022-10-06

\n
    \n
  • deps: qs@6.11.0
  • \n
  • perf: remove unnecessary object clone
  • \n
\n

1.20.0 / 2022-04-02

\n
    \n
  • Fix error message for json parse whitespace in strict
  • \n
  • Fix internal error when inflated body exceeds limit
  • \n
  • Prevent loss of async hooks context
  • \n
  • Prevent hanging when request already read
  • \n
  • deps: depd@2.0.0\n
      \n
    • Replace internal eval usage with Function constructor
    • \n
    • Use instance methods on process to check for listeners
    • \n
    \n
  • \n
  • deps: http-errors@2.0.0\n
      \n
    • deps: depd@2.0.0
    • \n
    • deps: statuses@2.0.1
    • \n
    \n
  • \n
  • deps: on-finished@2.4.1
  • \n
  • deps: qs@6.10.3
  • \n
  • deps: raw-body@2.5.1\n
      \n
    • deps: http-errors@2.0.0
    • \n
    \n
  • \n
\n

1.19.2 / 2022-02-15

\n
    \n
  • deps: bytes@3.1.2
  • \n
  • deps: qs@6.9.7\n
      \n
    • Fix handling of __proto__ keys
    • \n
    \n
  • \n
  • deps: raw-body@2.4.3\n
      \n
    • deps: bytes@3.1.2
    • \n
    \n
  • \n
\n

1.19.1 / 2021-12-10

\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.

\n
\n
\n\nUpdates `browserify-sign` from 4.2.1 to 4.2.3\n
\nChangelog\n

Sourced from browserify-sign's changelog.

\n
\n

v4.2.3 - 2024-03-05

\n

Commits

\n\n

v4.2.2 - 2023-10-25

\n

Fixed

\n\n

Commits

\n
    \n
  • Only apps should have lockfiles 09a8995
  • \n
  • [eslint] switch to eslint 83fe463
  • \n
  • [meta] add npmignore and auto-changelog 4418183
  • \n
  • [meta] fix package.json indentation 9ac5a5e
  • \n
  • [Tests] migrate from travis to github actions d845d85
  • \n
  • [Fix] sign: throw on unsupported padding scheme 8767739
  • \n
  • [Fix] properly check the upper bound for DSA signatures 85994cd
  • \n
  • [Tests] handle openSSL not supporting a scheme f5f17c2
  • \n
  • [Deps] update bn.js, browserify-rsa, elliptic, parse-asn1, readable-stream, safe-buffer a67d0eb
  • \n
  • [Dev Deps] update nyc, standard, tape cc5350b
  • \n
  • [Tests] always run coverage; downgrade nyc 75ce1d5
  • \n
  • [meta] add safe-publish-latest dcf49ce
  • \n
  • [Tests] add npm run posttest 75dd8fd
  • \n
  • [Dev Deps] update tape 3aec038
  • \n
  • [Tests] skip unsupported schemes 703c83e
  • \n
  • [Tests] node < 6 lacks array includes 3aa43cf
  • \n
  • [Dev Deps] fix eslint range 98d4e0d
  • \n
\n
\n
\n
\nCommits\n
    \n
  • bf2c3ec v4.2.3
  • \n
  • 9247adf [patch] widen support to 0.12
  • \n
  • f427270 [Deps] update `parse-asn1
  • \n
  • 87f3a35 [Dev Deps] update aud, npmignore, tape
  • \n
  • fb261ce [Deps] update elliptic
  • \n
  • 4d0ee49 [patch] drop minimum node support to v1
  • \n
  • 9e2bf12 [Deps] pin hash-base to ~3.0, due to a breaking change
  • \n
  • 168e16f [Deps] pin elliptic due to a breaking change
  • \n
  • 37a4758 [actions] remove redundant finisher
  • \n
  • 4af5a90 v4.2.2
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\nMaintainer changes\n

This version was pushed to npm by ljharb, a new releaser for browserify-sign since your current version.

\n
\n
\n\nUpdates `cookie` from 0.4.0 to 0.7.1\n
\nRelease notes\n

Sourced from cookie's releases.

\n
\n

0.7.1

\n

Fixed

\n
    \n
  • Allow leading dot for domain (#174)\n
      \n
    • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
    • \n
    \n
  • \n
  • Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
  • \n
\n

https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1

\n

0.7.0

\n\n

https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0

\n

0.6.0

\n
    \n
  • Add partitioned option
  • \n
\n

0.5.0

\n
    \n
  • Add priority option
  • \n
  • Fix expires option to reject invalid dates
  • \n
  • pref: improve default decode speed
  • \n
  • pref: remove slow string split in parse
  • \n
\n

0.4.2

\n
    \n
  • pref: read value only when assigning in parse
  • \n
  • pref: remove unnecessary regexp in parse
  • \n
\n

0.4.1

\n
    \n
  • Fix maxAge option to reject invalid values
  • \n
\n
\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.

\n
\n
\n\nUpdates `cookiejar` from 2.1.2 to 2.1.4\n
\nCommits\n\n
\n
\n\nUpdates `cross-fetch` from 3.0.6 to 3.1.8\n
\nRelease notes\n

Sourced from cross-fetch's releases.

\n
\n

v3.1.8

\n

What's Changed

\n
    \n
  • Restored caret range to node-fetch version for automatic feature and fix updates.
  • \n
\n

Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.7...v3.1.8

\n

v3.1.7

\n

What's Changed

\n
    \n
  • Updated node-fetch version to 2.6.12
  • \n
\n

Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.6...v3.1.7

\n

v3.1.6

\n

What's Changed

\n
    \n
  • Updated node-fetch version to 2.6.11
  • \n
  • Added caret range to node-fetch version for automatic feature and fix updates.
  • \n
\n

Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.5...v3.1.6

\n

v3.1.5

\n

What's Changed

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.4...v3.1.5

\n

v3.1.4

\n

🐞 fixed typescript errors.

\n

v3.1.3

\n

🐞 fixed typescript compilation error causing #95, #101, #102.

\n

v3.1.2

\n

🐞 added missing Headers interface augmentation from lib.dom.iterable.d.ts (#97)

\n

v3.1.1

\n

🐞 fixed missing fetch api types from constructor signatures #96 (thanks @​jstewmon)

\n

v3.1.0

\n

⚡️ improved TypeScript support with own fetch API type definitions (thanks @​jstewmon)\n⚡️ set fetch.ponyfill to true when custom ponyfill implementation is used.\n💡 set the same fetch API test suite to run against node-fetch, whatwg-fetch and native fetch.

\n
\n
\n
\nChangelog\n

Sourced from cross-fetch's changelog.

\n
\n

3.1.8 (2023-07-02)

\n

Bug Fixes

\n
    \n
  • restored caret on node-fetch version (6669927)
  • \n
\n

3.1.7 (2023-07-01)

\n

3.1.6 (2023-05-14)

\n

Features

\n
    \n
  • allowed minor and patch update of node-fetch (#132) (425395b), closes #129
  • \n
\n

Bug Fixes

\n
    \n
  • fixed ESTree.StaticBlock error (a66f21b)
  • \n
\n
\n
\n
\nCommits\n
    \n
  • 0922089 chore(release): 3.1.8
  • \n
  • 6669927 fix: restored caret on node-fetch version
  • \n
  • ff14bdd chore: improved release script
  • \n
  • d625e0d chore: release workflow now uses .nvmrc
  • \n
  • 098ed1e chore: improved release workflow
  • \n
  • cc2663b chore(release): 3.1.7
  • \n
  • 7c1fdde chore: updated node-fetch to 2.6.12
  • \n
  • e298dbb chore: reordered if statement
  • \n
  • 81049e1 chore: removed github publish pipeline
  • \n
  • a80be7c chore: removed console log from specs
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\n\nUpdates `postcss` from 7.0.35 to 8.4.31\n
\nRelease notes\n

Sourced from postcss's releases.

\n
\n

8.4.31

\n
    \n
  • Fixed \\r parsing to fix CVE-2023-44270.
  • \n
\n

8.4.30

\n\n

8.4.29

\n\n

8.4.28

\n
    \n
  • Fixed Root.source.end for better source map (by @​romainmenke).
  • \n
  • Fixed Result.root types when process() has no parser.
  • \n
\n

8.4.27

\n
    \n
  • Fixed Container clone methods types.
  • \n
\n

8.4.26

\n
    \n
  • Fixed clone methods types.
  • \n
\n

8.4.25

\n\n

8.4.24

\n
    \n
  • Fixed Plugin types.
  • \n
\n

8.4.23

\n
    \n
  • Fixed warnings in TypeDoc.
  • \n
\n

8.4.22

\n\n

8.4.21

\n\n

8.4.20

\n
    \n
  • Fixed source map generation for childless at-rules like @layer.
  • \n
\n

8.4.19

\n
    \n
  • Fixed whitespace preserving after AST transformations (by @​romainmenke).
  • \n
\n

8.4.18

\n
    \n
  • Fixed an error on absolute: true with empty sourceContent (by @​KingSora).
  • \n
\n

8.4.17

\n\n

8.4.16

\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from postcss's changelog.

\n
\n

8.4.31

\n
    \n
  • Fixed \\r parsing to fix CVE-2023-44270.
  • \n
\n

8.4.30

\n
    \n
  • Improved source map performance (by Romain Menke).
  • \n
\n

8.4.29

\n
    \n
  • Fixed Node#source.offset (by Ido Rosenthal).
  • \n
  • Fixed docs (by Christian Oliff).
  • \n
\n

8.4.28

\n
    \n
  • Fixed Root.source.end for better source map (by Romain Menke).
  • \n
  • Fixed Result.root types when process() has no parser.
  • \n
\n

8.4.27

\n
    \n
  • Fixed Container clone methods types.
  • \n
\n

8.4.26

\n
    \n
  • Fixed clone methods types.
  • \n
\n

8.4.25

\n\n

8.4.24

\n
    \n
  • Fixed Plugin types.
  • \n
\n

8.4.23

\n
    \n
  • Fixed warnings in TypeDoc.
  • \n
\n

8.4.22

\n
    \n
  • Fixed TypeScript support with node16 (by Remco Haszing).
  • \n
\n

8.4.21

\n
    \n
  • Fixed Input#error types (by Aleks Hudochenkov).
  • \n
\n

8.4.20

\n
    \n
  • Fixed source map generation for childless at-rules like @layer.
  • \n
\n

8.4.19

\n
    \n
  • Fixed whitespace preserving after AST transformations (by Romain Menke).
  • \n
\n

8.4.18

\n
    \n
  • Fixed an error on absolute: true with empty sourceContent (by Rene Haas).
  • \n
\n

8.4.17

\n
    \n
  • Fixed Node.before() unexpected behavior (by Romain Menke).
  • \n
  • Added TOC to docs (by Mikhail Dedov).
  • \n
\n

8.4.16

\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\nUpdates `decode-uri-component` from 0.2.0 to 0.2.2\n
\nRelease notes\n

Sourced from decode-uri-component's releases.

\n
\n

v0.2.2

\n
    \n
  • Prevent overwriting previously decoded tokens 980e0bf
  • \n
\n

https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

\n

v0.2.1

\n
    \n
  • Switch to GitHub workflows 76abc93
  • \n
  • Fix issue where decode throws - fixes #6 746ca5d
  • \n
  • Update license (#1) 486d7e2
  • \n
  • Tidelift tasks a650457
  • \n
  • Meta tweaks 66e1c28
  • \n
\n

https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

\n
\n
\n
\nCommits\n\n
\n
\n\nRemoves `elliptic`\n\nUpdates `web3` from 1.5.3 to 4.14.0\n
\nRelease notes\n

Sourced from web3's releases.

\n
\n

web3-eth@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-eth@4.0.0-alpha.0

\n

web3-core-requestmanager@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

\n

web3-providers-http@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-providers-http@4.0.0-alpha.0

\n

web3-providers-base@1.0.0-alpha.1

\n

Changed

\n
    \n
  • Update version to 1.0.0-alpha.1 for web3-providers-base
  • \n
  • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
  • \n
\n

web3-utils@4.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-utils@4.0.0-alpha.0

\n

web3-packagetemplate@1.0.0-alpha.0

\n

Initial alpha release

\n

Install with yarn add web3-packagetemplate@1.0.0-alpha.0

\n
\n
\n
\nChangelog\n

Sourced from web3's changelog.

\n
\n

[1.3.4]

\n

Changed

\n
    \n
  • Fixed mutation of inputs to encoding and decoding functions (#3748)
  • \n
  • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
  • \n
  • ethjs-signer test (#3876)
  • \n
  • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
  • \n
  • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
  • \n
  • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
  • \n
  • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
  • \n
  • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Update dependencies for web3-eth2-core (#3878)
  • \n
\n

Removed

\n
    \n
  • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
  • \n
  • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
  • \n
  • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
  • \n
  • schema.ts from web3-eth2-core (#3878)
  • \n
  • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
  • \n
\n

Added

\n
    \n
  • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
  • \n
  • Deprecation of bzz warning (#3872)
  • \n
  • Deprecation of shh warning (#3888)
  • \n
\n

[1.3.5]

\n

Added

\n
    \n
  • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
  • \n
  • Added description to documentation on how to connect using a remote node provider (#3884)
  • \n
  • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
  • \n
  • .nvmrc file using Node.js version v.14.15.1 (#3817)
  • \n
  • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
  • \n
\n

Changed

\n
    \n
  • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
  • \n
  • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
  • \n
  • moved deprecation warnings to postinstall scripts (#3917)
  • \n
  • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
  • \n
  • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
  • \n
  • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
  • \n
  • Rewrite web3-eth-iban in ES6 (#3955)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

\n
\n
\n\nUpdates `nanoid` from 3.1.20 to 3.3.7\n
\nChangelog\n

Sourced from nanoid's changelog.

\n
\n

3.3.7

\n
    \n
  • Fixed node16 TypeScript support (by Saadi Myftija).
  • \n
\n

3.3.6

\n
    \n
  • Fixed package.
  • \n
\n

3.3.5

\n
    \n
  • Backport funding information.
  • \n
\n

3.3.4

\n\n

3.3.3

\n
    \n
  • Reduced size (by Anton Khlynovskiy).
  • \n
\n

3.3.2

\n
    \n
  • Fixed enhanced-resolve support.
  • \n
\n

3.3.1

\n
    \n
  • Reduced package size.
  • \n
\n

3.3

\n
    \n
  • Added size argument to function from customAlphabet (by Stefan Sundin).
  • \n
\n

3.2

\n
    \n
  • Added --size and --alphabet arguments to binary (by Vitaly Baev).
  • \n
\n

3.1.32

\n
    \n
  • Reduced async exports size (by Artyom Arutyunyan).
  • \n
  • Moved from Jest to uvu (by Vitaly Baev).
  • \n
\n

3.1.31

\n
    \n
  • Fixed collision vulnerability on object in size (by Artyom Arutyunyan).
  • \n
\n

3.1.30

\n
    \n
  • Reduced size for project with brotli compression (by Anton Khlynovskiy).
  • \n
\n

3.1.29

\n
    \n
  • Reduced npm package size.
  • \n
\n

3.1.28

\n
    \n
  • Reduced npm package size.
  • \n
\n

3.1.27

\n
    \n
  • Cleaned dependencies from development tools.
  • \n
\n

3.1.26

\n
    \n
  • Improved performance (by Eitan Har-Shoshanim).
  • \n
  • Reduced npm package size.
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n
    \n
  • **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-3d68ced9ed", + "sha": "f62cc1819514c7b3299bd982f7c81958bf41439b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:45Z", + "created_at": "2024-10-31T01:27:08Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/17", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump http-cache-semantics from 4.1.0 to 4.1.1", + "body": "Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-cache-semantics&package-manager=npm_and_yarn&previous-version=4.1.0&new-version=4.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-http-cache-semantics-4.1.1", + "sha": "f30c55b15ad445c602575d3e9279d6e73a0ae382", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:44Z", + "created_at": "2024-10-31T01:27:25Z", + "merge_commit_sha": "debff020ef8d07aa5d20efe46e3be7f2609ffe60" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/18", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump express from 4.17.1 to 4.21.1", + "body": "Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.21.1.\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n

    4.19.0 / 2024-03-20

    \n
      \n
    • Prevent open redirect allow list bypass due to encodeurl
    • \n
    • deps: cookie@0.6.0
    • \n
    \n

    4.18.3 / 2024-02-29

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ulisesgascon, a new releaser for express since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.17.1&new-version=4.21.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-express-4.21.1", + "sha": "3a64b23d0c6f687ecaa3d62dd5ce828bc18996a6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-14T05:49:59Z", + "created_at": "2024-10-31T01:27:36Z", + "merge_commit_sha": "9b10ecbcd3cb8a092637f206bd0ca2b849ad7c4d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/19", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump minimist from 1.2.5 to 1.2.8", + "body": "Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8.\n
    \nChangelog\n

    Sourced from minimist's changelog.

    \n
    \n

    v1.2.8 - 2023-02-09

    \n

    Merged

    \n\n

    Fixed

    \n\n

    Commits

    \n
      \n
    • Merge tag 'v0.2.3' a026794
    • \n
    • [eslint] fix indentation and whitespace 5368ca4
    • \n
    • [eslint] fix indentation and whitespace e5f5067
    • \n
    • [eslint] more cleanup 62fde7d
    • \n
    • [eslint] more cleanup 36ac5d0
    • \n
    • [meta] add auto-changelog 73923d2
    • \n
    • [actions] add reusable workflows d80727d
    • \n
    • [eslint] add eslint; rules to enable later are warnings 48bc06a
    • \n
    • [eslint] fix indentation 34b0f1c
    • \n
    • [readme] rename and add badges 5df0fe4
    • \n
    • [Dev Deps] switch from covert to nyc a48b128
    • \n
    • [Dev Deps] update covert, tape; remove unnecessary tap f0fb958
    • \n
    • [meta] create FUNDING.yml; add funding in package.json 3639e0c
    • \n
    • [meta] use npmignore to autogenerate an npmignore file be2e038
    • \n
    • Only apps should have lockfiles 282b570
    • \n
    • isConstructorOrProto adapted from PR ef9153f
    • \n
    • [Dev Deps] update @ljharb/eslint-config, aud 098873c
    • \n
    • [Dev Deps] update @ljharb/eslint-config, aud 3124ed3
    • \n
    • [meta] add safe-publish-latest 4b927de
    • \n
    • [Tests] add aud in posttest b32d9bd
    • \n
    • [meta] update repo URLs f9fdfc0
    • \n
    • [actions] Avoid 0.6 tests due to build failures ba92fe6
    • \n
    • [Dev Deps] update tape 950eaa7
    • \n
    • [Dev Deps] add missing npmignore dev dep 3226afa
    • \n
    • Merge tag 'v0.2.2' 980d7ac
    • \n
    \n

    v1.2.7 - 2022-10-10

    \n

    Commits

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 6901ee2 v1.2.8
    • \n
    • a026794 Merge tag 'v0.2.3'
    • \n
    • c0b2661 v0.2.3
    • \n
    • 63b8fee [Fix] Fix long option followed by single dash (#17)
    • \n
    • 72239e6 [Tests] Remove duplicate test (#12)
    • \n
    • 34b0f1c [eslint] fix indentation
    • \n
    • 3226afa [Dev Deps] add missing npmignore dev dep
    • \n
    • 098873c [Dev Deps] update @ljharb/eslint-config, aud
    • \n
    • 9ec4d27 [Fix] Fix long option followed by single dash
    • \n
    • ba92fe6 [actions] Avoid 0.6 tests due to build failures
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ljharb, a new releaser for minimist since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=minimist&package-manager=npm_and_yarn&previous-version=1.2.5&new-version=1.2.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-minimist-1.2.8", + "sha": "215e4148333c5100e7313bec5478641676dd3e62", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-08T05:49:43Z", + "created_at": "2024-10-31T01:27:46Z", + "merge_commit_sha": "f74055155c5c0a953d7c9cd77d688109da67e23a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/20", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump normalize-url from 4.5.0 to 4.5.1", + "body": "Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 4.5.0 to 4.5.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=normalize-url&package-manager=npm_and_yarn&previous-version=4.5.0&new-version=4.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-normalize-url-4.5.1", + "sha": "44eac2ba3eb2bf18cc12c4add9ab92136bc1a148", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:53Z", + "created_at": "2024-10-31T01:28:05Z", + "merge_commit_sha": "e9908b9fe8e0d45f25b25257703c2e8c1d1aea65" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/21", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump glob-parent from 5.1.1 to 5.1.2", + "body": "Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2.\n
    \nRelease notes\n

    Sourced from glob-parent's releases.

    \n
    \n

    v5.1.2

    \n

    Bug Fixes

    \n\n
    \n
    \n
    \nChangelog\n

    Sourced from glob-parent's changelog.

    \n
    \n

    5.1.2 (2021-03-06)

    \n

    Bug Fixes

    \n\n

    6.0.2 (2021-09-29)

    \n

    Bug Fixes

    \n\n

    6.0.1 (2021-07-20)

    \n

    Bug Fixes

    \n
      \n
    • Resolve ReDoS vulnerability from CVE-2021-35065 (#49) (3e9f04a)
    • \n
    \n

    6.0.0 (2021-05-03)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Correct mishandled escaped path separators (#34)
    • \n
    • upgrade scaffold, dropping node <10 support
    • \n
    \n

    Bug Fixes

    \n
      \n
    • Correct mishandled escaped path separators (#34) (32f6d52), closes #32
    • \n
    \n

    Miscellaneous Chores

    \n
      \n
    • upgrade scaffold, dropping node <10 support (e83d0c5)
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=glob-parent&package-manager=npm_and_yarn&previous-version=5.1.1&new-version=5.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-glob-parent-5.1.2", + "sha": "704e3dd41589a91fc6882b18d26cd79b7395cd9a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:52Z", + "created_at": "2024-10-31T01:28:15Z", + "merge_commit_sha": "98e870b0cb7d767ddd48954a8e81ef0381170ec4" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/22", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump json5 from 1.0.1 to 1.0.2", + "body": "Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.\n
    \nRelease notes\n

    Sourced from json5's releases.

    \n
    \n

    v1.0.2

    \n
      \n
    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295). This has been backported to v1. (#298)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from json5's changelog.

    \n
    \n

    Unreleased [code, diff]

    \n

    v2.2.3 [code, diff]

    \n
      \n
    • Fix: json5@2.2.3 is now the 'latest' release according to npm instead of\nv1.0.2. (#299)
    • \n
    \n

    v2.2.2 [code, diff]

    \n
      \n
    • Fix: Properties with the name __proto__ are added to objects and arrays.\n(#199) This also fixes a prototype pollution vulnerability reported by\nJonathan Gregson! (#295).
    • \n
    \n

    v2.2.1 [code, diff]

    \n
      \n
    • Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)
    • \n
    \n

    v2.2.0 [code, diff]

    \n
      \n
    • New: Accurate and documented TypeScript declarations are now included. There\nis no need to install @types/json5. (#236, #244)
    • \n
    \n

    v2.1.3 [code, diff]

    \n
      \n
    • Fix: An out of memory bug when parsing numbers has been fixed. (#228,\n#229)
    • \n
    \n

    v2.1.2 [code, diff]

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=json5&package-manager=npm_and_yarn&previous-version=1.0.1&new-version=1.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-json5-1.0.2", + "sha": "e6515a249b6b17667de24303f3150e6e93c5b179", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:51Z", + "created_at": "2024-10-31T01:28:25Z", + "merge_commit_sha": "b68e0da2a2d4614a9d6b0f63b016f5b22fe6034a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/23", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump secp256k1 from 4.0.2 to 4.0.4", + "body": "Bumps [secp256k1](https://github.com/cryptocoinjs/secp256k1-node) from 4.0.2 to 4.0.4.\n
    \nRelease notes\n

    Sourced from secp256k1's releases.

    \n
    \n

    v4.0.3

    \n
      \n
    • 95b6176 Update prebuildify (#187)
    • \n
    • 4223dd4 Update elliptic to 6.5.4 (CVE-2020-28498) (#186)
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=secp256k1&package-manager=npm_and_yarn&previous-version=4.0.2&new-version=4.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-secp256k1-4.0.4", + "sha": "d8098cd710b9191c892be2b37a29348bcf8611be", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:50Z", + "created_at": "2024-10-31T01:28:37Z", + "merge_commit_sha": "e79b52d72ccd636dcdc75b4cdb0aaeec20f717a7" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/24", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump simple-get", + "body": "Bumps and [simple-get](https://github.com/feross/simple-get). These dependencies needed to be updated together.\nUpdates `simple-get` from 3.1.0 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\nUpdates `simple-get` from 4.0.0 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\nUpdates `simple-get` from 2.8.1 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-multi-ccda6b46b9", + "sha": "187fc98dbbc658c9c1702ea8eed9e8a93c4ad4ef", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:49Z", + "created_at": "2024-10-31T01:28:51Z", + "merge_commit_sha": "8720bbffb5b2a72eea9e77e09f75d622eed1d8b0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/25", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump es5-ext from 0.10.53 to 0.10.64", + "body": "Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.53 to 0.10.64.\n
    \nRelease notes\n

    Sourced from es5-ext's releases.

    \n
    \n

    0.10.64 (2024-02-27)

    \n

    Bug Fixes

    \n
      \n
    • Revert update to postinstall script meant to fix Powershell issue, as it's a regression for some Linux terminals (c2e2bb9)
    • \n
    \n
    \n

    Comparison since last release

    \n

    0.10.63 (2024-02-23)

    \n

    Bug Fixes

    \n
      \n
    • Do not rely on problematic regex (3551cdd), addresses #201
    • \n
    • Support ES2015+ function definitions in function#toStringTokens() (a52e957), addresses #021
    • \n
    • Ensure postinstall script does not crash on Windows, fixes #181 (bf8ed79)
    • \n
    \n

    Maintenance Improvements

    \n
      \n
    • Simplify the manifest message (7855319)
    • \n
    \n
    \n

    Comparison since last release

    \n

    0.10.62 (2022-08-02)

    \n

    Maintenance Improvements

    \n\n
    \n

    Comparison since last release

    \n

    0.10.61 (2022-04-20)

    \n

    Bug Fixes

    \n
      \n
    • Ensure postinstall script does not error (a0be4fd)
    • \n
    \n

    Maintenance Improvements

    \n\n
    \n

    Comparison since last release

    \n

    0.10.60 (2022-04-07)

    \n

    Maintenance Improvements

    \n
      \n
    • Improve postinstall script configuration (ab6b121)
    • \n
    \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from es5-ext's changelog.

    \n
    \n

    0.10.64 (2024-02-27)

    \n

    Bug Fixes

    \n
      \n
    • Revert update to postinstall script meant to fix Powershell issue, as it's a regression for some Linux terminals (c2e2bb9)
    • \n
    \n

    0.10.63 (2024-02-23)

    \n

    Bug Fixes

    \n
      \n
    • Do not rely on problematic regex (3551cdd), addresses #201
    • \n
    • Support ES2015+ function definitions in function#toStringTokens() (a52e957), addresses #021
    • \n
    • Ensure postinstall script does not crash on Windows, fixes #181 (bf8ed79)
    • \n
    \n

    Maintenance Improvements

    \n
      \n
    • Simplify the manifest message (7855319)
    • \n
    \n

    0.10.62 (2022-08-02)

    \n

    Maintenance Improvements

    \n\n

    0.10.61 (2022-04-20)

    \n

    Bug Fixes

    \n
      \n
    • Ensure postinstall script does not error (a0be4fd)
    • \n
    \n

    Maintenance Improvements

    \n\n

    0.10.60 (2022-04-07)

    \n

    Maintenance Improvements

    \n
      \n
    • Improve postinstall script configuration (ab6b121)
    • \n
    \n

    0.10.59 (2022-03-17)

    \n

    Maintenance Improvements

    \n\n

    0.10.58 (2022-03-11)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • f76b03d chore: Release v0.10.64
    • \n
    • 2881acd chore: Bump dependencies
    • \n
    • c2e2bb9 fix: Revert update meant to fix Powershell issue, as it's a regression
    • \n
    • 16f2b72 docs: Fix date in the changelog
    • \n
    • de4e03c chore: Release v0.10.63
    • \n
    • 3fd53b7 chore: Upgrade lint-staged to v13
    • \n
    • bf8ed79 chore: Ensure postinstall script does not crash on Windows
    • \n
    • 2cbbb07 chore: Bump dependencies
    • \n
    • 22d0416 chore: Bump LICENSE year
    • \n
    • a52e957 fix: Support ES2015+ function definitions in function#toStringTokens()
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=es5-ext&package-manager=npm_and_yarn&previous-version=0.10.53&new-version=0.10.64)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-es5-ext-0.10.64", + "sha": "95720b151b894cdee70ea70d7bce60e86d1e159e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:47Z", + "created_at": "2024-10-31T01:29:01Z", + "merge_commit_sha": "577e106ffc4c7647f1a4b4b2fc8be151c69691ee" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/26", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ansi-regex from 5.0.0 to 5.0.1", + "body": "Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1.\n
    \nRelease notes\n

    Sourced from ansi-regex's releases.

    \n
    \n

    v5.0.1

    \n

    Fixes (backport of 6.0.1 to v5)

    \n

    This is a backport of the minor ReDos vulnerability in ansi-regex@<6.0.1, as requested in #38.

    \n
      \n
    • Fix ReDoS in certain cases (#37)\nYou are only really affected if you run the regex on untrusted user input in a server context, which it's very unlikely anyone is doing, since this regex is mainly used in command-line tools.
    • \n
    \n

    CVE-2021-3807

    \n

    https://github.com/chalk/ansi-regex/compare/v5.0.0..v5.0.1

    \n

    Thank you @​yetingli for the patch and reproduction case!

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ansi-regex&package-manager=npm_and_yarn&previous-version=5.0.0&new-version=5.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-ansi-regex-5.0.1", + "sha": "d44612d46e1300f99cfe479f53b3bb063aa3a605", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:46Z", + "created_at": "2024-10-31T01:29:20Z", + "merge_commit_sha": "ff1531360d13648ca6e55791b9845f0276d5bf02" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/27", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump braces from 3.0.2 to 3.0.3", + "body": "Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=braces&package-manager=npm_and_yarn&previous-version=3.0.2&new-version=3.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "5cb3d7936c47cd97a8e2c904962783ae80588510", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-braces-3.0.3", + "sha": "273dc7d80073e073a2216fa8cf6aa3abeb6c04ce", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-06T05:49:45Z", + "created_at": "2024-10-31T01:30:01Z", + "merge_commit_sha": "b4e50e1ff2cd69f7da4a880a4c943d5ee315fdf9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/28", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump codescan-io/codescan-scanner-action from 1.2 to 1.6", + "body": "Bumps [codescan-io/codescan-scanner-action](https://github.com/codescan-io/codescan-scanner-action) from 1.2 to 1.6.\n
    \nRelease notes\n

    Sourced from codescan-io/codescan-scanner-action's releases.

    \n
    \n

    Updated codescan-scanner-action and workflow files to use Node v20 instead of v16

    \n

    CD-5218 : Update codescan-scanner-action and workflow files to use Node v20 instead of v16

    \n

    Added new option to scan and analyze only PR files

    \n

    CD-5161 - Add support to only scan PR files

    \n

    CD-2922: Added new option allowing to validate QualityGate in Github …

    \n

    No release notes provided.

    \n

    Use Codescan client side report generation

    \n

    Implemented generation of SARIF report on the side of Github Action process being running.

    \n
    \n
    \n
    \nCommits\n
      \n
    • 6793740 CD-5218 Update dependencies to use node v20 (#7)
    • \n
    • f7aafe5 CD-5161 - Update readme to add information about new flag (#5)
    • \n
    • e0c872f Merge pull request #4 from codescan-io/CD-5161_PR_files_only
    • \n
    • 7c078b0 CD-5161 - Update logic to only fetch PR branch
    • \n
    • 9c908de CD-5161 - Add support to only scan PR files
    • \n
    • 34bb123 CD-2922: Added new option allowing to validate QualityGate in Github Action
    • \n
    • 701450b CD-2348 Use Codescan client side report generation (#1)
    • \n
    • See full diff in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=codescan-io/codescan-scanner-action&package-manager=github_actions&previous-version=1.2&new-version=1.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "1d6279d0bafd71021c27b4a5ef893fbf67da9c59", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-codescan-io-codescan-scanner-action-1.6", + "sha": "25d0b58ceedb130d909906e1faf414138586312a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2024-11-13T06:04:01Z", + "closed_at": "2024-11-13T06:04:01Z", + "created_at": "2024-11-13T00:49:13Z", + "merge_commit_sha": "b85e5e365641db72e2a115008d348dfdb857f325" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/29", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump actions/cache from 3 to 4", + "body": "Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.\n
    \nRelease notes\n

    Sourced from actions/cache's releases.

    \n
    \n

    v4.0.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/cache/compare/v3...v4.0.0

    \n

    v3.3.3

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/cache/compare/v3...v3.3.3

    \n

    v3.3.2

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/cache/compare/v3...v3.3.2

    \n

    v3.3.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/actions/cache/compare/v3...v3.3.1

    \n

    v3.3.0

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from actions/cache's changelog.

    \n
    \n

    Releases

    \n

    4.1.2

    \n
      \n
    • Add GitHub Enterprise Cloud instances hostname filters to inform API endpoint choices - #1474
    • \n
    • Security fix: Bump braces from 3.0.2 to 3.0.3 - #1475
    • \n
    \n

    4.1.1

    \n
      \n
    • Restore original behavior of cache-hit output - #1467
    • \n
    \n

    4.1.0

    \n
      \n
    • Ensure cache-hit output is set when a cache is missed - #1404
    • \n
    • Deprecate save-always input - #1452
    • \n
    \n

    4.0.2

    \n
      \n
    • Fixed restore fail-on-cache-miss not working.
    • \n
    \n

    4.0.1

    \n
      \n
    • Updated isGhes check
    • \n
    \n

    4.0.0

    \n
      \n
    • Updated minimum runner version support from node 12 -> node 20
    • \n
    \n

    3.3.3

    \n
      \n
    • Updates @​actions/cache to v3.2.3 to fix accidental mutated path arguments to getCacheVersion actions/toolkit#1378
    • \n
    • Additional audit fixes of npm package(s)
    • \n
    \n

    3.3.2

    \n
      \n
    • Fixes bug with Azure SDK causing blob downloads to get stuck.
    • \n
    \n

    3.3.1

    \n
      \n
    • Reduced segment size to 128MB and segment timeout to 10 minutes to fail fast in case the cache download is stuck.
    • \n
    \n

    3.3.0

    \n
      \n
    • Added option to lookup cache without downloading it.
    • \n
    \n

    3.2.6

    \n
      \n
    • Fix zstd not being used after zstd version upgrade to 1.5.4 on hosted runners.
    • \n
    \n

    3.2.5

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 6849a64 Release 4.1.2 #1477
    • \n
    • 5a1720c Merge branch 'Link-/prep-4.1.2' of https://github.com/actions/cache into Link...
    • \n
    • d9fef48 Merge branch 'main' into Link-/prep-4.1.2
    • \n
    • a50e8d0 Merge branch 'main' into Link-/prep-4.1.2
    • \n
    • acc9ae5 Merge pull request #1481 from actions/dependabot/github_actions/actions/setup...
    • \n
    • 1ea5f18 Merge branch 'main' into Link-/prep-4.1.2
    • \n
    • cc679ff Merge branch 'main' into dependabot/github_actions/actions/setup-node-4
    • \n
    • 366d43d Merge pull request #1483 from actions/dependabot/github_actions/github/codeql...
    • \n
    • 02bf319 Bump github/codeql-action from 2 to 3
    • \n
    • 6f6220b Merge branch 'main' into dependabot/github_actions/actions/setup-node-4
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/cache&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "b85e5e365641db72e2a115008d348dfdb857f325", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-actions-cache-4", + "sha": "81433e3fbf947831255d69560882ff561342b487", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-01-21T05:49:44Z", + "created_at": "2024-11-14T00:15:48Z", + "merge_commit_sha": "3acbdeed43716aa4c336b11a4bd1317141a1ea5e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/31", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Xc link patch 1", + "body": null, + "base": { + "ref": "main", + "sha": "a8aa2702c80a452a57f411494061a09677647897", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "1fe7454af019c7a68954e40e736ff28fc4e541e8", + "user": "https://github.com/xc-xyz", + "repo": null + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-15T05:49:48Z", + "created_at": "2024-12-10T00:01:27Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/32", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump the npm_and_yarn group across 1 directory with 14 updates", + "body": "Bumps the npm_and_yarn group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [next](https://github.com/vercel/next.js) | `10.0.7` | `14.2.10` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.3.4` | `1.5.3` |\n| [cross-fetch](https://github.com/lquixada/cross-fetch) | `3.0.6` | `3.1.8` |\n| [elliptic](https://github.com/indutny/elliptic) | `6.5.4` | `removed` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.5.3` | `4.16.0` |\n| [ua-parser-js](https://github.com/faisalman/ua-parser-js) | `0.7.24` | `0.7.39` |\n\n\nUpdates `next` from 10.0.7 to 14.2.10\n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by vercel-release-bot, a new releaser for next since your current version.

    \n
    \n
    \n\nUpdates `web3` from 1.3.4 to 1.5.3\n
    \nRelease notes\n

    Sourced from web3's releases.

    \n
    \n

    web3-eth@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-eth@4.0.0-alpha.0

    \n

    web3-core-requestmanager@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

    \n

    web3-providers-http@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-providers-http@4.0.0-alpha.0

    \n

    web3-providers-base@1.0.0-alpha.1

    \n

    Changed

    \n
      \n
    • Update version to 1.0.0-alpha.1 for web3-providers-base
    • \n
    • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
    • \n
    \n

    web3-utils@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-utils@4.0.0-alpha.0

    \n

    web3-packagetemplate@1.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-packagetemplate@1.0.0-alpha.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from web3's changelog.

    \n
    \n

    [1.3.4]

    \n

    Changed

    \n
      \n
    • Fixed mutation of inputs to encoding and decoding functions (#3748)
    • \n
    • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
    • \n
    • ethjs-signer test (#3876)
    • \n
    • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
    • \n
    • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
    • \n
    • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
    • \n
    • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
    • \n
    • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Update dependencies for web3-eth2-core (#3878)
    • \n
    \n

    Removed

    \n
      \n
    • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
    • \n
    • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
    • \n
    • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
    • \n
    • schema.ts from web3-eth2-core (#3878)
    • \n
    • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
    • \n
    \n

    Added

    \n
      \n
    • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Deprecation of bzz warning (#3872)
    • \n
    • Deprecation of shh warning (#3888)
    • \n
    \n

    [1.3.5]

    \n

    Added

    \n
      \n
    • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
    • \n
    • Added description to documentation on how to connect using a remote node provider (#3884)
    • \n
    • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
    • \n
    • .nvmrc file using Node.js version v.14.15.1 (#3817)
    • \n
    • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
    • \n
    \n

    Changed

    \n
      \n
    • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
    • \n
    • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
    • \n
    • moved deprecation warnings to postinstall scripts (#3917)
    • \n
    • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
    • \n
    • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
    • \n
    • Rewrite web3-eth-iban in ES6 (#3955)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

    \n
    \n
    \n\nUpdates `body-parser` from 1.19.0 to 1.20.3\n
    \nRelease notes\n

    Sourced from body-parser's releases.

    \n
    \n

    1.20.3

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • deps: qs@6.13.0
    • \n
    • add depth option to customize the depth level in the parser
    • \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity). Documentation
    • \n
    \n

    Other changes

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/body-parser/compare/1.20.2...1.20.3

    \n

    1.20.2

    \n
      \n
    • Fix strict json error message on Node.js 19+
    • \n
    • deps: content-type@~1.0.5\n
        \n
      • perf: skip value escaping when unnecessary
      • \n
      \n
    • \n
    • deps: raw-body@2.5.2
    • \n
    \n

    1.20.1

    \n
      \n
    • deps: qs@6.11.0
    • \n
    • perf: remove unnecessary object clone
    • \n
    \n

    1.20.0

    \n
      \n
    • Fix error message for json parse whitespace in strict
    • \n
    • Fix internal error when inflated body exceeds limit
    • \n
    • Prevent loss of async hooks context
    • \n
    • Prevent hanging when request already read
    • \n
    • deps: depd@2.0.0\n
        \n
      • Replace internal eval usage with Function constructor
      • \n
      • Use instance methods on process to check for listeners
      • \n
      \n
    • \n
    • deps: http-errors@2.0.0\n
        \n
      • deps: depd@2.0.0
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    • deps: on-finished@2.4.1
    • \n
    • deps: qs@6.10.3
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from body-parser's changelog.

    \n
    \n

    1.20.3 / 2024-09-10

    \n
      \n
    • deps: qs@6.13.0
    • \n
    • add depth option to customize the depth level in the parser
    • \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    \n

    1.20.2 / 2023-02-21

    \n
      \n
    • Fix strict json error message on Node.js 19+
    • \n
    • deps: content-type@~1.0.5\n
        \n
      • perf: skip value escaping when unnecessary
      • \n
      \n
    • \n
    • deps: raw-body@2.5.2
    • \n
    \n

    1.20.1 / 2022-10-06

    \n
      \n
    • deps: qs@6.11.0
    • \n
    • perf: remove unnecessary object clone
    • \n
    \n

    1.20.0 / 2022-04-02

    \n
      \n
    • Fix error message for json parse whitespace in strict
    • \n
    • Fix internal error when inflated body exceeds limit
    • \n
    • Prevent loss of async hooks context
    • \n
    • Prevent hanging when request already read
    • \n
    • deps: depd@2.0.0\n
        \n
      • Replace internal eval usage with Function constructor
      • \n
      • Use instance methods on process to check for listeners
      • \n
      \n
    • \n
    • deps: http-errors@2.0.0\n
        \n
      • deps: depd@2.0.0
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    • deps: on-finished@2.4.1
    • \n
    • deps: qs@6.10.3
    • \n
    • deps: raw-body@2.5.1\n
        \n
      • deps: http-errors@2.0.0
      • \n
      \n
    • \n
    \n

    1.19.2 / 2022-02-15

    \n
      \n
    • deps: bytes@3.1.2
    • \n
    • deps: qs@6.9.7\n
        \n
      • Fix handling of __proto__ keys
      • \n
      \n
    • \n
    • deps: raw-body@2.4.3\n
        \n
      • deps: bytes@3.1.2
      • \n
      \n
    • \n
    \n

    1.19.1 / 2021-12-10

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.

    \n
    \n
    \n\nUpdates `browserify-sign` from 4.2.1 to 4.2.3\n
    \nChangelog\n

    Sourced from browserify-sign's changelog.

    \n
    \n

    v4.2.3 - 2024-03-05

    \n

    Commits

    \n\n

    v4.2.2 - 2023-10-25

    \n

    Fixed

    \n\n

    Commits

    \n
      \n
    • Only apps should have lockfiles 09a8995
    • \n
    • [eslint] switch to eslint 83fe463
    • \n
    • [meta] add npmignore and auto-changelog 4418183
    • \n
    • [meta] fix package.json indentation 9ac5a5e
    • \n
    • [Tests] migrate from travis to github actions d845d85
    • \n
    • [Fix] sign: throw on unsupported padding scheme 8767739
    • \n
    • [Fix] properly check the upper bound for DSA signatures 85994cd
    • \n
    • [Tests] handle openSSL not supporting a scheme f5f17c2
    • \n
    • [Deps] update bn.js, browserify-rsa, elliptic, parse-asn1, readable-stream, safe-buffer a67d0eb
    • \n
    • [Dev Deps] update nyc, standard, tape cc5350b
    • \n
    • [Tests] always run coverage; downgrade nyc 75ce1d5
    • \n
    • [meta] add safe-publish-latest dcf49ce
    • \n
    • [Tests] add npm run posttest 75dd8fd
    • \n
    • [Dev Deps] update tape 3aec038
    • \n
    • [Tests] skip unsupported schemes 703c83e
    • \n
    • [Tests] node < 6 lacks array includes 3aa43cf
    • \n
    • [Dev Deps] fix eslint range 98d4e0d
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • bf2c3ec v4.2.3
    • \n
    • 9247adf [patch] widen support to 0.12
    • \n
    • f427270 [Deps] update `parse-asn1
    • \n
    • 87f3a35 [Dev Deps] update aud, npmignore, tape
    • \n
    • fb261ce [Deps] update elliptic
    • \n
    • 4d0ee49 [patch] drop minimum node support to v1
    • \n
    • 9e2bf12 [Deps] pin hash-base to ~3.0, due to a breaking change
    • \n
    • 168e16f [Deps] pin elliptic due to a breaking change
    • \n
    • 37a4758 [actions] remove redundant finisher
    • \n
    • 4af5a90 v4.2.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ljharb, a new releaser for browserify-sign since your current version.

    \n
    \n
    \n\nUpdates `cookie` from 0.4.0 to 0.7.1\n
    \nRelease notes\n

    Sourced from cookie's releases.

    \n
    \n

    0.7.1

    \n

    Fixed

    \n
      \n
    • Allow leading dot for domain (#174)\n
        \n
      • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
      • \n
      \n
    • \n
    • Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
    • \n
    \n

    https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1

    \n

    0.7.0

    \n\n

    https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0

    \n

    0.6.0

    \n
      \n
    • Add partitioned option
    • \n
    \n

    0.5.0

    \n
      \n
    • Add priority option
    • \n
    • Fix expires option to reject invalid dates
    • \n
    • pref: improve default decode speed
    • \n
    • pref: remove slow string split in parse
    • \n
    \n

    0.4.2

    \n
      \n
    • pref: read value only when assigning in parse
    • \n
    • pref: remove unnecessary regexp in parse
    • \n
    \n

    0.4.1

    \n
      \n
    • Fix maxAge option to reject invalid values
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.

    \n
    \n
    \n\nUpdates `cookiejar` from 2.1.2 to 2.1.4\n
    \nCommits\n\n
    \n
    \n\nUpdates `cross-fetch` from 3.0.6 to 3.1.8\n
    \nRelease notes\n

    Sourced from cross-fetch's releases.

    \n
    \n

    v3.1.8

    \n

    What's Changed

    \n
      \n
    • Restored caret range to node-fetch version for automatic feature and fix updates.
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.7...v3.1.8

    \n

    v3.1.7

    \n

    What's Changed

    \n
      \n
    • Updated node-fetch version to 2.6.12
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.6...v3.1.7

    \n

    v3.1.6

    \n

    What's Changed

    \n
      \n
    • Updated node-fetch version to 2.6.11
    • \n
    • Added caret range to node-fetch version for automatic feature and fix updates.
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.5...v3.1.6

    \n

    v3.1.5

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.4...v3.1.5

    \n

    v3.1.4

    \n

    🐞 fixed typescript errors.

    \n

    v3.1.3

    \n

    🐞 fixed typescript compilation error causing #95, #101, #102.

    \n

    v3.1.2

    \n

    🐞 added missing Headers interface augmentation from lib.dom.iterable.d.ts (#97)

    \n

    v3.1.1

    \n

    🐞 fixed missing fetch api types from constructor signatures #96 (thanks @​jstewmon)

    \n

    v3.1.0

    \n

    ⚡️ improved TypeScript support with own fetch API type definitions (thanks @​jstewmon)\n⚡️ set fetch.ponyfill to true when custom ponyfill implementation is used.\n💡 set the same fetch API test suite to run against node-fetch, whatwg-fetch and native fetch.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from cross-fetch's changelog.

    \n
    \n

    3.1.8 (2023-07-02)

    \n

    Bug Fixes

    \n
      \n
    • restored caret on node-fetch version (6669927)
    • \n
    \n

    3.1.7 (2023-07-01)

    \n

    3.1.6 (2023-05-14)

    \n

    Features

    \n
      \n
    • allowed minor and patch update of node-fetch (#132) (425395b), closes #129
    • \n
    \n

    Bug Fixes

    \n
      \n
    • fixed ESTree.StaticBlock error (a66f21b)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 0922089 chore(release): 3.1.8
    • \n
    • 6669927 fix: restored caret on node-fetch version
    • \n
    • ff14bdd chore: improved release script
    • \n
    • d625e0d chore: release workflow now uses .nvmrc
    • \n
    • 098ed1e chore: improved release workflow
    • \n
    • cc2663b chore(release): 3.1.7
    • \n
    • 7c1fdde chore: updated node-fetch to 2.6.12
    • \n
    • e298dbb chore: reordered if statement
    • \n
    • 81049e1 chore: removed github publish pipeline
    • \n
    • a80be7c chore: removed console log from specs
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\nUpdates `postcss` from 7.0.35 to 8.4.31\n
    \nRelease notes\n

    Sourced from postcss's releases.

    \n
    \n

    8.4.31

    \n
      \n
    • Fixed \\r parsing to fix CVE-2023-44270.
    • \n
    \n

    8.4.30

    \n\n

    8.4.29

    \n\n

    8.4.28

    \n
      \n
    • Fixed Root.source.end for better source map (by @​romainmenke).
    • \n
    • Fixed Result.root types when process() has no parser.
    • \n
    \n

    8.4.27

    \n
      \n
    • Fixed Container clone methods types.
    • \n
    \n

    8.4.26

    \n
      \n
    • Fixed clone methods types.
    • \n
    \n

    8.4.25

    \n\n

    8.4.24

    \n
      \n
    • Fixed Plugin types.
    • \n
    \n

    8.4.23

    \n
      \n
    • Fixed warnings in TypeDoc.
    • \n
    \n

    8.4.22

    \n\n

    8.4.21

    \n\n

    8.4.20

    \n
      \n
    • Fixed source map generation for childless at-rules like @layer.
    • \n
    \n

    8.4.19

    \n
      \n
    • Fixed whitespace preserving after AST transformations (by @​romainmenke).
    • \n
    \n

    8.4.18

    \n
      \n
    • Fixed an error on absolute: true with empty sourceContent (by @​KingSora).
    • \n
    \n

    8.4.17

    \n\n

    8.4.16

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from postcss's changelog.

    \n
    \n

    8.4.31

    \n
      \n
    • Fixed \\r parsing to fix CVE-2023-44270.
    • \n
    \n

    8.4.30

    \n
      \n
    • Improved source map performance (by Romain Menke).
    • \n
    \n

    8.4.29

    \n
      \n
    • Fixed Node#source.offset (by Ido Rosenthal).
    • \n
    • Fixed docs (by Christian Oliff).
    • \n
    \n

    8.4.28

    \n
      \n
    • Fixed Root.source.end for better source map (by Romain Menke).
    • \n
    • Fixed Result.root types when process() has no parser.
    • \n
    \n

    8.4.27

    \n
      \n
    • Fixed Container clone methods types.
    • \n
    \n

    8.4.26

    \n
      \n
    • Fixed clone methods types.
    • \n
    \n

    8.4.25

    \n\n

    8.4.24

    \n
      \n
    • Fixed Plugin types.
    • \n
    \n

    8.4.23

    \n
      \n
    • Fixed warnings in TypeDoc.
    • \n
    \n

    8.4.22

    \n
      \n
    • Fixed TypeScript support with node16 (by Remco Haszing).
    • \n
    \n

    8.4.21

    \n
      \n
    • Fixed Input#error types (by Aleks Hudochenkov).
    • \n
    \n

    8.4.20

    \n
      \n
    • Fixed source map generation for childless at-rules like @layer.
    • \n
    \n

    8.4.19

    \n
      \n
    • Fixed whitespace preserving after AST transformations (by Romain Menke).
    • \n
    \n

    8.4.18

    \n
      \n
    • Fixed an error on absolute: true with empty sourceContent (by Rene Haas).
    • \n
    \n

    8.4.17

    \n
      \n
    • Fixed Node.before() unexpected behavior (by Romain Menke).
    • \n
    • Added TOC to docs (by Mikhail Dedov).
    • \n
    \n

    8.4.16

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `decode-uri-component` from 0.2.0 to 0.2.2\n
    \nRelease notes\n

    Sourced from decode-uri-component's releases.

    \n
    \n

    v0.2.2

    \n
      \n
    • Prevent overwriting previously decoded tokens 980e0bf
    • \n
    \n

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

    \n

    v0.2.1

    \n
      \n
    • Switch to GitHub workflows 76abc93
    • \n
    • Fix issue where decode throws - fixes #6 746ca5d
    • \n
    • Update license (#1) 486d7e2
    • \n
    • Tidelift tasks a650457
    • \n
    • Meta tweaks 66e1c28
    • \n
    \n

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nRemoves `elliptic`\n\nUpdates `web3` from 1.5.3 to 4.16.0\n
    \nRelease notes\n

    Sourced from web3's releases.

    \n
    \n

    web3-eth@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-eth@4.0.0-alpha.0

    \n

    web3-core-requestmanager@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

    \n

    web3-providers-http@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-providers-http@4.0.0-alpha.0

    \n

    web3-providers-base@1.0.0-alpha.1

    \n

    Changed

    \n
      \n
    • Update version to 1.0.0-alpha.1 for web3-providers-base
    • \n
    • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
    • \n
    \n

    web3-utils@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-utils@4.0.0-alpha.0

    \n

    web3-packagetemplate@1.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-packagetemplate@1.0.0-alpha.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from web3's changelog.

    \n
    \n

    [1.3.4]

    \n

    Changed

    \n
      \n
    • Fixed mutation of inputs to encoding and decoding functions (#3748)
    • \n
    • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
    • \n
    • ethjs-signer test (#3876)
    • \n
    • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
    • \n
    • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
    • \n
    • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
    • \n
    • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
    • \n
    • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Update dependencies for web3-eth2-core (#3878)
    • \n
    \n

    Removed

    \n
      \n
    • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
    • \n
    • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
    • \n
    • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
    • \n
    • schema.ts from web3-eth2-core (#3878)
    • \n
    • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
    • \n
    \n

    Added

    \n
      \n
    • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Deprecation of bzz warning (#3872)
    • \n
    • Deprecation of shh warning (#3888)
    • \n
    \n

    [1.3.5]

    \n

    Added

    \n
      \n
    • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
    • \n
    • Added description to documentation on how to connect using a remote node provider (#3884)
    • \n
    • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
    • \n
    • .nvmrc file using Node.js version v.14.15.1 (#3817)
    • \n
    • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
    • \n
    \n

    Changed

    \n
      \n
    • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
    • \n
    • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
    • \n
    • moved deprecation warnings to postinstall scripts (#3917)
    • \n
    • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
    • \n
    • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
    • \n
    • Rewrite web3-eth-iban in ES6 (#3955)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

    \n
    \n
    \n\nUpdates `nanoid` from 3.1.20 to 3.3.8\n
    \nChangelog\n

    Sourced from nanoid's changelog.

    \n
    \n

    3.3.8

    \n
      \n
    • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).
    • \n
    \n

    3.3.7

    \n
      \n
    • Fixed node16 TypeScript support (by Saadi Myftija).
    • \n
    \n

    3.3.6

    \n
      \n
    • Fixed package.
    • \n
    \n

    3.3.5

    \n
      \n
    • Backport funding information.
    • \n
    \n

    3.3.4

    \n\n

    3.3.3

    \n
      \n
    • Reduced size (by Anton Khlynovskiy).
    • \n
    \n

    3.3.2

    \n
      \n
    • Fixed enhanced-resolve support.
    • \n
    \n

    3.3.1

    \n
      \n
    • Reduced package size.
    • \n
    \n

    3.3

    \n
      \n
    • Added size argument to function from customAlphabet (by Stefan Sundin).
    • \n
    \n

    3.2

    \n
      \n
    • Added --size and --alphabet arguments to binary (by Vitaly Baev).
    • \n
    \n

    3.1.32

    \n
      \n
    • Reduced async exports size (by Artyom Arutyunyan).
    • \n
    • Moved from Jest to uvu (by Vitaly Baev).
    • \n
    \n

    3.1.31

    \n
      \n
    • Fixed collision vulnerability on object in size (by Artyom Arutyunyan).
    • \n
    \n

    3.1.30

    \n
      \n
    • Reduced size for project with brotli compression (by Anton Khlynovskiy).
    • \n
    \n

    3.1.29

    \n
      \n
    • Reduced npm package size.
    • \n
    \n

    3.1.28

    \n
      \n
    • Reduced npm package size.
    • \n
    \n

    3.1.27

    \n
      \n
    • Cleaned dependencies from development tools.
    • \n
    \n

    3.1.26

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `node-fetch` from 2.6.1 to 2.7.0\n
    \nRelease notes\n

    Sourced from node-fetch's releases.

    \n
    \n

    v2.7.0

    \n

    2.7.0 (2023-08-23)

    \n

    Features

    \n\n

    v2.6.13

    \n

    2.6.13 (2023-08-18)

    \n

    Bug Fixes

    \n\n

    v2.6.12

    \n

    2.6.12 (2023-06-29)

    \n

    Bug Fixes

    \n\n

    v2.6.11

    \n

    2.6.11 (2023-05-09)

    \n

    Reverts

    \n\n

    v2.6.10

    \n

    2.6.10 (2023-05-08)

    \n

    Bug Fixes

    \n\n

    v2.6.9

    \n

    2.6.9 (2023-01-30)

    \n

    Bug Fixes

    \n\n

    v2.6.8

    \n

    2.6.8 (2023-01-13)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-cache-semantics&package-manager=npm_and_yarn&previous-version=4.1.0&new-version=4.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/http-cache-semantics-4.1.1", + "sha": "83d053c417194dea7094671aa10c9a6233a810bb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-21T05:49:37Z", + "created_at": "2024-12-12T18:10:24Z", + "merge_commit_sha": "5d021bbb179eef99790e70e591d36df48c1ccb6b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/34", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump normalize-url from 4.5.0 to 4.5.1", + "body": "Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 4.5.0 to 4.5.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=normalize-url&package-manager=npm_and_yarn&previous-version=4.5.0&new-version=4.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/normalize-url-4.5.1", + "sha": "77ff7d8ee7a20822076b4de32f687282f16f464f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-20T05:49:58Z", + "created_at": "2024-12-12T18:10:34Z", + "merge_commit_sha": "d687d26df1007132691f716f77c0fc73803be3f1" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/35", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump express from 4.17.1 to 4.21.2", + "body": "Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.21.2.\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.17.1&new-version=4.21.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/express-4.21.2", + "sha": "6837c4237662ef294ddb9d12e9cec8202557ca15", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-20T05:49:57Z", + "created_at": "2024-12-12T18:10:57Z", + "merge_commit_sha": "4148b7e75470c76505689806cd87df370984785d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/36", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump color-string from 1.5.4 to 1.9.1", + "body": "Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.4 to 1.9.1.\n
    \nRelease notes\n

    Sourced from color-string's releases.

    \n
    \n

    1.9.0

    \n

    Minor Release 1.9.0

    \n
      \n
    • Add parsing of exponential alpha values for HWB and HSL (#66)
    • \n
    \n

    Thanks to @​babycannotsay for their contribution!

    \n

    1.8.2

    \n

    Patch release 1.8.2

    \n
      \n
    • Fix incorrect handling of optional comma in rgb() regex (#65)
    • \n
    \n

    Thanks to @​gerdasi and @​mastertheblaster for reporting and confirming the bug!

    \n

    1.8.1

    \n

    Patch release 1.8.1

    \n
      \n
    • Fix rgb alpha percentage parsing from int to float (#61)
    • \n
    \n

    Thanks to @​clytras for their contribution!

    \n

    1.8.0

    \n

    Minor release 1.8.0

    \n
      \n
    • Add anchors to keyword regex (#64)
    • \n
    \n

    Thanks to @​cq360767996 for their contribution!

    \n

    1.7.4

    \n

    Patch Release 1.7.4

    \n
      \n
    • Fix bug in .to.hex() output if the inputs aren't rounded numbers (#25)
    • \n
    \n

    1.7.3

    \n

    Patch Release 1.7.3

    \n
      \n
    • Fix hue modulo operation (#50)
    • \n
    \n

    Thanks to @​adroitwhiz for their contributions.

    \n

    1.7.2

    \n

    Patch Release 1.7.2

    \n
      \n
    • Fix issue where color-string with incorrectly return a color for properties on Object's prototype like "constructor". (#45)
    • \n
    \n

    Thanks to @​tolmasky for their contributions.

    \n

    1.7.1

    \n

    Patch release 1.7.1

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=color-string&package-manager=npm_and_yarn&previous-version=1.5.4&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/color-string-1.9.1", + "sha": "360080a5e2fcd155307e3fad117ebb0e4170e3f0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:56Z", + "created_at": "2024-12-12T18:11:14Z", + "merge_commit_sha": "73734c153f1052349aafb658beae91df1836cfac" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/37", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump es5-ext from 0.10.53 to 0.10.64", + "body": "Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.53 to 0.10.64.\n
    \nRelease notes\n

    Sourced from es5-ext's releases.

    \n
    \n

    0.10.64 (2024-02-27)

    \n

    Bug Fixes

    \n
      \n
    • Revert update to postinstall script meant to fix Powershell issue, as it's a regression for some Linux terminals (c2e2bb9)
    • \n
    \n
    \n

    Comparison since last release

    \n

    0.10.63 (2024-02-23)

    \n

    Bug Fixes

    \n
      \n
    • Do not rely on problematic regex (3551cdd), addresses #201
    • \n
    • Support ES2015+ function definitions in function#toStringTokens() (a52e957), addresses #021
    • \n
    • Ensure postinstall script does not crash on Windows, fixes #181 (bf8ed79)
    • \n
    \n

    Maintenance Improvements

    \n
      \n
    • Simplify the manifest message (7855319)
    • \n
    \n
    \n

    Comparison since last release

    \n

    0.10.62 (2022-08-02)

    \n

    Maintenance Improvements

    \n\n
    \n

    Comparison since last release

    \n

    0.10.61 (2022-04-20)

    \n

    Bug Fixes

    \n
      \n
    • Ensure postinstall script does not error (a0be4fd)
    • \n
    \n

    Maintenance Improvements

    \n\n
    \n

    Comparison since last release

    \n

    0.10.60 (2022-04-07)

    \n

    Maintenance Improvements

    \n
      \n
    • Improve postinstall script configuration (ab6b121)
    • \n
    \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from es5-ext's changelog.

    \n
    \n

    0.10.64 (2024-02-27)

    \n

    Bug Fixes

    \n
      \n
    • Revert update to postinstall script meant to fix Powershell issue, as it's a regression for some Linux terminals (c2e2bb9)
    • \n
    \n

    0.10.63 (2024-02-23)

    \n

    Bug Fixes

    \n
      \n
    • Do not rely on problematic regex (3551cdd), addresses #201
    • \n
    • Support ES2015+ function definitions in function#toStringTokens() (a52e957), addresses #021
    • \n
    • Ensure postinstall script does not crash on Windows, fixes #181 (bf8ed79)
    • \n
    \n

    Maintenance Improvements

    \n
      \n
    • Simplify the manifest message (7855319)
    • \n
    \n

    0.10.62 (2022-08-02)

    \n

    Maintenance Improvements

    \n\n

    0.10.61 (2022-04-20)

    \n

    Bug Fixes

    \n
      \n
    • Ensure postinstall script does not error (a0be4fd)
    • \n
    \n

    Maintenance Improvements

    \n\n

    0.10.60 (2022-04-07)

    \n

    Maintenance Improvements

    \n
      \n
    • Improve postinstall script configuration (ab6b121)
    • \n
    \n

    0.10.59 (2022-03-17)

    \n

    Maintenance Improvements

    \n\n

    0.10.58 (2022-03-11)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • f76b03d chore: Release v0.10.64
    • \n
    • 2881acd chore: Bump dependencies
    • \n
    • c2e2bb9 fix: Revert update meant to fix Powershell issue, as it's a regression
    • \n
    • 16f2b72 docs: Fix date in the changelog
    • \n
    • de4e03c chore: Release v0.10.63
    • \n
    • 3fd53b7 chore: Upgrade lint-staged to v13
    • \n
    • bf8ed79 chore: Ensure postinstall script does not crash on Windows
    • \n
    • 2cbbb07 chore: Bump dependencies
    • \n
    • 22d0416 chore: Bump LICENSE year
    • \n
    • a52e957 fix: Support ES2015+ function definitions in function#toStringTokens()
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=es5-ext&package-manager=npm_and_yarn&previous-version=0.10.53&new-version=0.10.64)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/es5-ext-0.10.64", + "sha": "79354686cb3c00480258eff49938316802d34d75", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:55Z", + "created_at": "2024-12-12T18:11:25Z", + "merge_commit_sha": "09b4702da78b917865ac74e3e8d1c40d5568593a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/38", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump secp256k1 from 4.0.2 to 4.0.4", + "body": "Bumps [secp256k1](https://github.com/cryptocoinjs/secp256k1-node) from 4.0.2 to 4.0.4.\n
    \nRelease notes\n

    Sourced from secp256k1's releases.

    \n
    \n

    v4.0.3

    \n
      \n
    • 95b6176 Update prebuildify (#187)
    • \n
    • 4223dd4 Update elliptic to 6.5.4 (CVE-2020-28498) (#186)
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=secp256k1&package-manager=npm_and_yarn&previous-version=4.0.2&new-version=4.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/secp256k1-4.0.4", + "sha": "5ddaabf02cf63d724d9b0b0ff9f4994eefea2f31", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:54Z", + "created_at": "2024-12-12T18:11:35Z", + "merge_commit_sha": "560afe1d0cbf3d08bdbc3d2f1fd081ca0330af35" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/39", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump glob-parent from 5.1.1 to 5.1.2", + "body": "Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2.\n
    \nRelease notes\n

    Sourced from glob-parent's releases.

    \n
    \n

    v5.1.2

    \n

    Bug Fixes

    \n\n
    \n
    \n
    \nChangelog\n

    Sourced from glob-parent's changelog.

    \n
    \n

    5.1.2 (2021-03-06)

    \n

    Bug Fixes

    \n\n

    6.0.2 (2021-09-29)

    \n

    Bug Fixes

    \n\n

    6.0.1 (2021-07-20)

    \n

    Bug Fixes

    \n
      \n
    • Resolve ReDoS vulnerability from CVE-2021-35065 (#49) (3e9f04a)
    • \n
    \n

    6.0.0 (2021-05-03)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Correct mishandled escaped path separators (#34)
    • \n
    • upgrade scaffold, dropping node <10 support
    • \n
    \n

    Bug Fixes

    \n
      \n
    • Correct mishandled escaped path separators (#34) (32f6d52), closes #32
    • \n
    \n

    Miscellaneous Chores

    \n
      \n
    • upgrade scaffold, dropping node <10 support (e83d0c5)
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=glob-parent&package-manager=npm_and_yarn&previous-version=5.1.1&new-version=5.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/glob-parent-5.1.2", + "sha": "350ef4e83c7cdbe1d513d71347c4382cfeff2f36", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:53Z", + "created_at": "2024-12-12T18:11:48Z", + "merge_commit_sha": "5aa8e69474b9a851423dcb3a0e80647e13d023ab" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/40", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump json5 from 1.0.1 to 1.0.2", + "body": "Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.\n
    \nRelease notes\n

    Sourced from json5's releases.

    \n
    \n

    v1.0.2

    \n
      \n
    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295). This has been backported to v1. (#298)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from json5's changelog.

    \n
    \n

    Unreleased [code, diff]

    \n

    v2.2.3 [code, diff]

    \n
      \n
    • Fix: json5@2.2.3 is now the 'latest' release according to npm instead of\nv1.0.2. (#299)
    • \n
    \n

    v2.2.2 [code, diff]

    \n
      \n
    • Fix: Properties with the name __proto__ are added to objects and arrays.\n(#199) This also fixes a prototype pollution vulnerability reported by\nJonathan Gregson! (#295).
    • \n
    \n

    v2.2.1 [code, diff]

    \n
      \n
    • Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)
    • \n
    \n

    v2.2.0 [code, diff]

    \n
      \n
    • New: Accurate and documented TypeScript declarations are now included. There\nis no need to install @types/json5. (#236, #244)
    • \n
    \n

    v2.1.3 [code, diff]

    \n
      \n
    • Fix: An out of memory bug when parsing numbers has been fixed. (#228,\n#229)
    • \n
    \n

    v2.1.2 [code, diff]

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=json5&package-manager=npm_and_yarn&previous-version=1.0.1&new-version=1.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/json5-1.0.2", + "sha": "81df5b48c21461fdd76a693939730064ee86a9b6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:52Z", + "created_at": "2024-12-12T18:12:29Z", + "merge_commit_sha": "bc4c0bdfef586cff6179ba42f50d70936f882f78" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/41", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump simple-get", + "body": "Bumps and [simple-get](https://github.com/feross/simple-get). These dependencies needed to be updated together.\nUpdates `simple-get` from 3.1.0 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\nUpdates `simple-get` from 4.0.0 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\nUpdates `simple-get` from 2.8.1 to 4.0.1\n
    \nCommits\n\n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-ccda6b46b9", + "sha": "c5df7d7b66d9e4baf1f8afd2a063f1594cee95d5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:51Z", + "created_at": "2024-12-12T18:12:52Z", + "merge_commit_sha": "020a4598f1b19d80da33a9ccf232053f9fbeb1c8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/42", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ansi-regex from 5.0.0 to 5.0.1", + "body": "Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1.\n
    \nRelease notes\n

    Sourced from ansi-regex's releases.

    \n
    \n

    v5.0.1

    \n

    Fixes (backport of 6.0.1 to v5)

    \n

    This is a backport of the minor ReDos vulnerability in ansi-regex@<6.0.1, as requested in #38.

    \n
      \n
    • Fix ReDoS in certain cases (#37)\nYou are only really affected if you run the regex on untrusted user input in a server context, which it's very unlikely anyone is doing, since this regex is mainly used in command-line tools.
    • \n
    \n

    CVE-2021-3807

    \n

    https://github.com/chalk/ansi-regex/compare/v5.0.0..v5.0.1

    \n

    Thank you @​yetingli for the patch and reproduction case!

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ansi-regex&package-manager=npm_and_yarn&previous-version=5.0.0&new-version=5.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/ansi-regex-5.0.1", + "sha": "11d28fe8e684fd06e4017f797da16f7b270c2adb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:50Z", + "created_at": "2024-12-12T18:12:58Z", + "merge_commit_sha": "91821957d9ccf1dbf2c130ca48d6b53550b9ab16" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/43", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump braces from 3.0.2 to 3.0.3", + "body": "Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=braces&package-manager=npm_and_yarn&previous-version=3.0.2&new-version=3.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/braces-3.0.3", + "sha": "35e0e1582d02a25bca899d97b02a0ce050c9c58b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:49Z", + "created_at": "2024-12-12T18:13:09Z", + "merge_commit_sha": "16625275c74eb82c94e91a5bcbc3ba4f1e310622" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/44", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump tar from 4.4.13 to 4.4.19", + "body": "Bumps [tar](https://github.com/isaacs/node-tar) from 4.4.13 to 4.4.19.\n
    \nCommits\n
      \n
    • 9a6faa0 4.4.19
    • \n
    • 70ef812 drop dirCache for symlink on all platforms
    • \n
    • 3e35515 4.4.18
    • \n
    • 52b09e3 fix: prevent path escape using drive-relative paths
    • \n
    • bb93ba2 fix: reserve paths properly for unicode, windows
    • \n
    • 2f1bca0 fix: prune dirCache properly for unicode, windows
    • \n
    • 9bf70a8 4.4.17
    • \n
    • 6aafff0 fix: skip extract if linkpath is stripped entirely
    • \n
    • 5c5059a fix: reserve paths case-insensitively
    • \n
    • fd6accb 4.4.16
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tar&package-manager=npm_and_yarn&previous-version=4.4.13&new-version=4.4.19)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "428129b5a5568e2340b3141f0a3dcbceb4a7bde2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/tar-4.4.19", + "sha": "0475e07a4f9476f08de3d29157fcf65a1dd4fdd9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-02-19T05:49:48Z", + "created_at": "2024-12-12T18:13:20Z", + "merge_commit_sha": "cc771b7844086131ec0b146fd8d5253f2b87ee94" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/45", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump the npm_and_yarn group across 1 directory with 13 updates", + "body": "Bumps the npm_and_yarn group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [next](https://github.com/vercel/next.js) | `10.0.7` | `14.2.10` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.3.4` | `1.5.3` |\n| [cross-fetch](https://github.com/lquixada/cross-fetch) | `3.0.6` | `3.1.8` |\n| [elliptic](https://github.com/indutny/elliptic) | `6.5.4` | `removed` |\n| [web3](https://github.com/ChainSafe/web3.js) | `1.5.3` | `4.16.0` |\n| [ua-parser-js](https://github.com/faisalman/ua-parser-js) | `0.7.24` | `0.7.39` |\n\n\nUpdates `next` from 10.0.7 to 14.2.10\n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by vercel-release-bot, a new releaser for next since your current version.

    \n
    \n
    \n\nUpdates `web3` from 1.3.4 to 1.5.3\n
    \nRelease notes\n

    Sourced from web3's releases.

    \n
    \n

    web3-eth@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-eth@4.0.0-alpha.0

    \n

    web3-core-requestmanager@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

    \n

    web3-providers-http@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-providers-http@4.0.0-alpha.0

    \n

    web3-providers-base@1.0.0-alpha.1

    \n

    Changed

    \n
      \n
    • Update version to 1.0.0-alpha.1 for web3-providers-base
    • \n
    • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
    • \n
    \n

    web3-utils@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-utils@4.0.0-alpha.0

    \n

    web3-packagetemplate@1.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-packagetemplate@1.0.0-alpha.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from web3's changelog.

    \n
    \n

    [1.3.4]

    \n

    Changed

    \n
      \n
    • Fixed mutation of inputs to encoding and decoding functions (#3748)
    • \n
    • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
    • \n
    • ethjs-signer test (#3876)
    • \n
    • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
    • \n
    • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
    • \n
    • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
    • \n
    • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
    • \n
    • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Update dependencies for web3-eth2-core (#3878)
    • \n
    \n

    Removed

    \n
      \n
    • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
    • \n
    • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
    • \n
    • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
    • \n
    • schema.ts from web3-eth2-core (#3878)
    • \n
    • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
    • \n
    \n

    Added

    \n
      \n
    • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Deprecation of bzz warning (#3872)
    • \n
    • Deprecation of shh warning (#3888)
    • \n
    \n

    [1.3.5]

    \n

    Added

    \n
      \n
    • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
    • \n
    • Added description to documentation on how to connect using a remote node provider (#3884)
    • \n
    • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
    • \n
    • .nvmrc file using Node.js version v.14.15.1 (#3817)
    • \n
    • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
    • \n
    \n

    Changed

    \n
      \n
    • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
    • \n
    • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
    • \n
    • moved deprecation warnings to postinstall scripts (#3917)
    • \n
    • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
    • \n
    • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
    • \n
    • Rewrite web3-eth-iban in ES6 (#3955)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

    \n
    \n
    \n\nUpdates `body-parser` from 1.19.0 to 1.20.3\n
    \nRelease notes\n

    Sourced from body-parser's releases.

    \n
    \n

    1.20.3

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • deps: qs@6.13.0
    • \n
    • add depth option to customize the depth level in the parser
    • \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity). Documentation
    • \n
    \n

    Other changes

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/body-parser/compare/1.20.2...1.20.3

    \n

    1.20.2

    \n
      \n
    • Fix strict json error message on Node.js 19+
    • \n
    • deps: content-type@~1.0.5\n
        \n
      • perf: skip value escaping when unnecessary
      • \n
      \n
    • \n
    • deps: raw-body@2.5.2
    • \n
    \n

    1.20.1

    \n
      \n
    • deps: qs@6.11.0
    • \n
    • perf: remove unnecessary object clone
    • \n
    \n

    1.20.0

    \n
      \n
    • Fix error message for json parse whitespace in strict
    • \n
    • Fix internal error when inflated body exceeds limit
    • \n
    • Prevent loss of async hooks context
    • \n
    • Prevent hanging when request already read
    • \n
    • deps: depd@2.0.0\n
        \n
      • Replace internal eval usage with Function constructor
      • \n
      • Use instance methods on process to check for listeners
      • \n
      \n
    • \n
    • deps: http-errors@2.0.0\n
        \n
      • deps: depd@2.0.0
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    • deps: on-finished@2.4.1
    • \n
    • deps: qs@6.10.3
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from body-parser's changelog.

    \n
    \n

    1.20.3 / 2024-09-10

    \n
      \n
    • deps: qs@6.13.0
    • \n
    • add depth option to customize the depth level in the parser
    • \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    \n

    1.20.2 / 2023-02-21

    \n
      \n
    • Fix strict json error message on Node.js 19+
    • \n
    • deps: content-type@~1.0.5\n
        \n
      • perf: skip value escaping when unnecessary
      • \n
      \n
    • \n
    • deps: raw-body@2.5.2
    • \n
    \n

    1.20.1 / 2022-10-06

    \n
      \n
    • deps: qs@6.11.0
    • \n
    • perf: remove unnecessary object clone
    • \n
    \n

    1.20.0 / 2022-04-02

    \n
      \n
    • Fix error message for json parse whitespace in strict
    • \n
    • Fix internal error when inflated body exceeds limit
    • \n
    • Prevent loss of async hooks context
    • \n
    • Prevent hanging when request already read
    • \n
    • deps: depd@2.0.0\n
        \n
      • Replace internal eval usage with Function constructor
      • \n
      • Use instance methods on process to check for listeners
      • \n
      \n
    • \n
    • deps: http-errors@2.0.0\n
        \n
      • deps: depd@2.0.0
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    • deps: on-finished@2.4.1
    • \n
    • deps: qs@6.10.3
    • \n
    • deps: raw-body@2.5.1\n
        \n
      • deps: http-errors@2.0.0
      • \n
      \n
    • \n
    \n

    1.19.2 / 2022-02-15

    \n
      \n
    • deps: bytes@3.1.2
    • \n
    • deps: qs@6.9.7\n
        \n
      • Fix handling of __proto__ keys
      • \n
      \n
    • \n
    • deps: raw-body@2.4.3\n
        \n
      • deps: bytes@3.1.2
      • \n
      \n
    • \n
    \n

    1.19.1 / 2021-12-10

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.

    \n
    \n
    \n\nUpdates `browserify-sign` from 4.2.1 to 4.2.3\n
    \nChangelog\n

    Sourced from browserify-sign's changelog.

    \n
    \n

    v4.2.3 - 2024-03-05

    \n

    Commits

    \n\n

    v4.2.2 - 2023-10-25

    \n

    Fixed

    \n\n

    Commits

    \n
      \n
    • Only apps should have lockfiles 09a8995
    • \n
    • [eslint] switch to eslint 83fe463
    • \n
    • [meta] add npmignore and auto-changelog 4418183
    • \n
    • [meta] fix package.json indentation 9ac5a5e
    • \n
    • [Tests] migrate from travis to github actions d845d85
    • \n
    • [Fix] sign: throw on unsupported padding scheme 8767739
    • \n
    • [Fix] properly check the upper bound for DSA signatures 85994cd
    • \n
    • [Tests] handle openSSL not supporting a scheme f5f17c2
    • \n
    • [Deps] update bn.js, browserify-rsa, elliptic, parse-asn1, readable-stream, safe-buffer a67d0eb
    • \n
    • [Dev Deps] update nyc, standard, tape cc5350b
    • \n
    • [Tests] always run coverage; downgrade nyc 75ce1d5
    • \n
    • [meta] add safe-publish-latest dcf49ce
    • \n
    • [Tests] add npm run posttest 75dd8fd
    • \n
    • [Dev Deps] update tape 3aec038
    • \n
    • [Tests] skip unsupported schemes 703c83e
    • \n
    • [Tests] node < 6 lacks array includes 3aa43cf
    • \n
    • [Dev Deps] fix eslint range 98d4e0d
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • bf2c3ec v4.2.3
    • \n
    • 9247adf [patch] widen support to 0.12
    • \n
    • f427270 [Deps] update `parse-asn1
    • \n
    • 87f3a35 [Dev Deps] update aud, npmignore, tape
    • \n
    • fb261ce [Deps] update elliptic
    • \n
    • 4d0ee49 [patch] drop minimum node support to v1
    • \n
    • 9e2bf12 [Deps] pin hash-base to ~3.0, due to a breaking change
    • \n
    • 168e16f [Deps] pin elliptic due to a breaking change
    • \n
    • 37a4758 [actions] remove redundant finisher
    • \n
    • 4af5a90 v4.2.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ljharb, a new releaser for browserify-sign since your current version.

    \n
    \n
    \n\nUpdates `cookie` from 0.4.0 to 0.7.1\n
    \nRelease notes\n

    Sourced from cookie's releases.

    \n
    \n

    0.7.1

    \n

    Fixed

    \n
      \n
    • Allow leading dot for domain (#174)\n
        \n
      • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
      • \n
      \n
    • \n
    • Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
    • \n
    \n

    https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1

    \n

    0.7.0

    \n\n

    https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0

    \n

    0.6.0

    \n
      \n
    • Add partitioned option
    • \n
    \n

    0.5.0

    \n
      \n
    • Add priority option
    • \n
    • Fix expires option to reject invalid dates
    • \n
    • pref: improve default decode speed
    • \n
    • pref: remove slow string split in parse
    • \n
    \n

    0.4.2

    \n
      \n
    • pref: read value only when assigning in parse
    • \n
    • pref: remove unnecessary regexp in parse
    • \n
    \n

    0.4.1

    \n
      \n
    • Fix maxAge option to reject invalid values
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.

    \n
    \n
    \n\nUpdates `cross-fetch` from 3.0.6 to 3.1.8\n
    \nRelease notes\n

    Sourced from cross-fetch's releases.

    \n
    \n

    v3.1.8

    \n

    What's Changed

    \n
      \n
    • Restored caret range to node-fetch version for automatic feature and fix updates.
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.7...v3.1.8

    \n

    v3.1.7

    \n

    What's Changed

    \n
      \n
    • Updated node-fetch version to 2.6.12
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.6...v3.1.7

    \n

    v3.1.6

    \n

    What's Changed

    \n
      \n
    • Updated node-fetch version to 2.6.11
    • \n
    • Added caret range to node-fetch version for automatic feature and fix updates.
    • \n
    \n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.5...v3.1.6

    \n

    v3.1.5

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/lquixada/cross-fetch/compare/v3.1.4...v3.1.5

    \n

    v3.1.4

    \n

    🐞 fixed typescript errors.

    \n

    v3.1.3

    \n

    🐞 fixed typescript compilation error causing #95, #101, #102.

    \n

    v3.1.2

    \n

    🐞 added missing Headers interface augmentation from lib.dom.iterable.d.ts (#97)

    \n

    v3.1.1

    \n

    🐞 fixed missing fetch api types from constructor signatures #96 (thanks @​jstewmon)

    \n

    v3.1.0

    \n

    ⚡️ improved TypeScript support with own fetch API type definitions (thanks @​jstewmon)\n⚡️ set fetch.ponyfill to true when custom ponyfill implementation is used.\n💡 set the same fetch API test suite to run against node-fetch, whatwg-fetch and native fetch.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from cross-fetch's changelog.

    \n
    \n

    3.1.8 (2023-07-02)

    \n

    Bug Fixes

    \n
      \n
    • restored caret on node-fetch version (6669927)
    • \n
    \n

    3.1.7 (2023-07-01)

    \n

    3.1.6 (2023-05-14)

    \n

    Features

    \n
      \n
    • allowed minor and patch update of node-fetch (#132) (425395b), closes #129
    • \n
    \n

    Bug Fixes

    \n
      \n
    • fixed ESTree.StaticBlock error (a66f21b)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 0922089 chore(release): 3.1.8
    • \n
    • 6669927 fix: restored caret on node-fetch version
    • \n
    • ff14bdd chore: improved release script
    • \n
    • d625e0d chore: release workflow now uses .nvmrc
    • \n
    • 098ed1e chore: improved release workflow
    • \n
    • cc2663b chore(release): 3.1.7
    • \n
    • 7c1fdde chore: updated node-fetch to 2.6.12
    • \n
    • e298dbb chore: reordered if statement
    • \n
    • 81049e1 chore: removed github publish pipeline
    • \n
    • a80be7c chore: removed console log from specs
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\nUpdates `decode-uri-component` from 0.2.0 to 0.2.2\n
    \nRelease notes\n

    Sourced from decode-uri-component's releases.

    \n
    \n

    v0.2.2

    \n
      \n
    • Prevent overwriting previously decoded tokens 980e0bf
    • \n
    \n

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

    \n

    v0.2.1

    \n
      \n
    • Switch to GitHub workflows 76abc93
    • \n
    • Fix issue where decode throws - fixes #6 746ca5d
    • \n
    • Update license (#1) 486d7e2
    • \n
    • Tidelift tasks a650457
    • \n
    • Meta tweaks 66e1c28
    • \n
    \n

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nRemoves `elliptic`\n\nUpdates `web3` from 1.5.3 to 4.16.0\n
    \nRelease notes\n

    Sourced from web3's releases.

    \n
    \n

    web3-eth@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-eth@4.0.0-alpha.0

    \n

    web3-core-requestmanager@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-core-requestmanager@4.0.0-alpha.0

    \n

    web3-providers-http@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-providers-http@4.0.0-alpha.0

    \n

    web3-providers-base@1.0.0-alpha.1

    \n

    Changed

    \n
      \n
    • Update version to 1.0.0-alpha.1 for web3-providers-base
    • \n
    • Update version to 4.0.0-alpha.0 for web3-utils in web3-providers-base
    • \n
    \n

    web3-utils@4.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-utils@4.0.0-alpha.0

    \n

    web3-packagetemplate@1.0.0-alpha.0

    \n

    Initial alpha release

    \n

    Install with yarn add web3-packagetemplate@1.0.0-alpha.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from web3's changelog.

    \n
    \n

    [1.3.4]

    \n

    Changed

    \n
      \n
    • Fixed mutation of inputs to encoding and decoding functions (#3748)
    • \n
    • Fix default value for fromBlock option for logs subscriptions (defaults to latest) (#3883)
    • \n
    • ethjs-signer test (#3876)
    • \n
    • Rename web3-eth2-base to web3-eth2-core and web3-eth2-beacon to web3-eth2-beaconchain (#3833)
    • \n
    • Bump ts-node from version ^8.10.2 to ^9.0.0 (#3856)
    • \n
    • Ran npm audit fix which fixed 4 vulnerabilities (#3856)
    • \n
    • Correct web3-eth2-beaconchain type declarations (#3859) and (#3865)
    • \n
    • Move interfaces IBaseAPISchema and IBaseAPIMethodSchema to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Update dependencies for web3-eth2-core (#3878)
    • \n
    \n

    Removed

    \n
      \n
    • Remove notImplemented flag from ETH2 Beacon Chain package methods schema (#3861)
    • \n
    • Removes IETH2BeaconChain interface in favor of exporting a class type: ETH2BeaconChain (#3878)
    • \n
    • Remove index.d.ts files in favor of types.ts for web3-eth2-core and web3-eth2-beaconchain (#3878)
    • \n
    • schema.ts from web3-eth2-core (#3878)
    • \n
    • dtslint npm command from web3-eth2-core and web3-eth2-beaconchain as index.d.ts files were removed (#3878)
    • \n
    \n

    Added

    \n
      \n
    • Add ETH2Core class export to index.d.ts for web3-eth2-core (#3878)
    • \n
    • Deprecation of bzz warning (#3872)
    • \n
    • Deprecation of shh warning (#3888)
    • \n
    \n

    [1.3.5]

    \n

    Added

    \n
      \n
    • GitHub action for running tests for web3-eth2-core and web3-eth2-beaconchain packages (#3892)
    • \n
    • Added description to documentation on how to connect using a remote node provider (#3884)
    • \n
    • Added Security risk warning to docs for web3.utils.soliditySha3 (#3908)
    • \n
    • .nvmrc file using Node.js version v.14.15.1 (#3817)
    • \n
    • Add commitment to semantic versioning since version 1.3.0 and onwards (#3961)
    • \n
    \n

    Changed

    \n
      \n
    • Unified babel compiler for web3-eth2-core and web3-eth2-beaconchain (#3892)
    • \n
    • Renamed the tsc script in all packages to compile; updates the corresponding lerna run usage in the main package.json (#3894)
    • \n
    • moved deprecation warnings to postinstall scripts (#3917)
    • \n
    • Upgrade @chainsafe/geth-dev-assistant from 0.1.5 to 0.1.9 (#3950)
    • \n
    • Replaced hardcoded infura link with GitHub Secret for some tests (#3943)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-eth-accounts (#3941)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-bzz (#3940)
    • \n
    • Bump elliptic from 6.5.3 to 6.5.4 for web3-core-requestmanager (#3945)
    • \n
    • Rewrite web3-eth-iban in ES6 (#3955)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by spacesailor, a new releaser for web3 since your current version.

    \n
    \n
    \n\nUpdates `nanoid` from 3.1.20 to 3.3.8\n
    \nChangelog\n

    Sourced from nanoid's changelog.

    \n
    \n

    3.3.8

    \n
      \n
    • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).
    • \n
    \n

    3.3.7

    \n
      \n
    • Fixed node16 TypeScript support (by Saadi Myftija).
    • \n
    \n

    3.3.6

    \n
      \n
    • Fixed package.
    • \n
    \n

    3.3.5

    \n
      \n
    • Backport funding information.
    • \n
    \n

    3.3.4

    \n\n

    3.3.3

    \n
      \n
    • Reduced size (by Anton Khlynovskiy).
    • \n
    \n

    3.3.2

    \n
      \n
    • Fixed enhanced-resolve support.
    • \n
    \n

    3.3.1

    \n
      \n
    • Reduced package size.
    • \n
    \n

    3.3

    \n
      \n
    • Added size argument to function from customAlphabet (by Stefan Sundin).
    • \n
    \n

    3.2

    \n
      \n
    • Added --size and --alphabet arguments to binary (by Vitaly Baev).
    • \n
    \n

    3.1.32

    \n
      \n
    • Reduced async exports size (by Artyom Arutyunyan).
    • \n
    • Moved from Jest to uvu (by Vitaly Baev).
    • \n
    \n

    3.1.31

    \n
      \n
    • Fixed collision vulnerability on object in size (by Artyom Arutyunyan).
    • \n
    \n

    3.1.30

    \n
      \n
    • Reduced size for project with brotli compression (by Anton Khlynovskiy).
    • \n
    \n

    3.1.29

    \n
      \n
    • Reduced npm package size.
    • \n
    \n

    3.1.28

    \n
      \n
    • Reduced npm package size.
    • \n
    \n

    3.1.27

    \n
      \n
    • Cleaned dependencies from development tools.
    • \n
    \n

    3.1.26

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `node-fetch` from 2.6.1 to 2.7.0\n
    \nRelease notes\n

    Sourced from node-fetch's releases.

    \n
    \n

    v2.7.0

    \n

    2.7.0 (2023-08-23)

    \n

    Features

    \n\n

    v2.6.13

    \n

    2.6.13 (2023-08-18)

    \n

    Bug Fixes

    \n\n

    v2.6.12

    \n

    2.6.12 (2023-06-29)

    \n

    Bug Fixes

    \n\n

    v2.6.11

    \n

    2.6.11 (2023-05-09)

    \n

    Reverts

    \n\n

    v2.6.10

    \n

    2.6.10 (2023-05-08)

    \n

    Bug Fixes

    \n\n

    v2.6.9

    \n

    2.6.9 (2023-01-30)

    \n

    Bug Fixes

    \n\n

    v2.6.8

    \n

    2.6.8 (2023-01-13)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by node-fetch-bot, a new releaser for node-fetch since your current version.

    \n
    \n
    \n\nUpdates `postcss` from 7.0.35 to 8.4.31\n
    \nRelease notes\n

    Sourced from postcss's releases.

    \n
    \n

    8.4.31

    \n
      \n
    • Fixed \\r parsing to fix CVE-2023-44270.
    • \n
    \n

    8.4.30

    \n\n

    8.4.29

    \n\n

    8.4.28

    \n
      \n
    • Fixed Root.source.end for better source map (by @​romainmenke).
    • \n
    • Fixed Result.root types when process() has no parser.
    • \n
    \n

    8.4.27

    \n
      \n
    • Fixed Container clone methods types.
    • \n
    \n

    8.4.26

    \n
      \n
    • Fixed clone methods types.
    • \n
    \n

    8.4.25

    \n\n

    8.4.24

    \n
      \n
    • Fixed Plugin types.
    • \n
    \n

    8.4.23

    \n
      \n
    • Fixed warnings in TypeDoc.
    • \n
    \n

    8.4.22

    \n\n

    8.4.21

    \n\n

    8.4.20

    \n
      \n
    • Fixed source map generation for childless at-rules like @layer.
    • \n
    \n

    8.4.19

    \n
      \n
    • Fixed whitespace preserving after AST transformations (by @​romainmenke).
    • \n
    \n

    8.4.18

    \n
      \n
    • Fixed an error on absolute: true with empty sourceContent (by @​KingSora).
    • \n
    \n

    8.4.17

    \n\n

    8.4.16

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from postcss's changelog.

    \n
    \n

    8.4.31

    \n
      \n
    • Fixed \\r parsing to fix CVE-2023-44270.
    • \n
    \n

    8.4.30

    \n
      \n
    • Improved source map performance (by Romain Menke).
    • \n
    \n

    8.4.29

    \n
      \n
    • Fixed Node#source.offset (by Ido Rosenthal).
    • \n
    • Fixed docs (by Christian Oliff).
    • \n
    \n

    8.4.28

    \n
      \n
    • Fixed Root.source.end for better source map (by Romain Menke).
    • \n
    • Fixed Result.root types when process() has no parser.
    • \n
    \n

    8.4.27

    \n
      \n
    • Fixed Container clone methods types.
    • \n
    \n

    8.4.26

    \n
      \n
    • Fixed clone methods types.
    • \n
    \n

    8.4.25

    \n\n

    8.4.24

    \n
      \n
    • Fixed Plugin types.
    • \n
    \n

    8.4.23

    \n
      \n
    • Fixed warnings in TypeDoc.
    • \n
    \n

    8.4.22

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google-github-actions/auth&package-manager=github_actions&previous-version=2.1.4&new-version=2.1.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-google-github-actions-auth-2.1.8", + "sha": "2033d1f8d9e6c64a7f305c721ce8f72d4ccba212", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-25T02:02:07Z", + "created_at": "2025-03-03T13:06:14Z", + "merge_commit_sha": "e4997ac3b3f6d07809ae92f87f4f271842ab792b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/47", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jfrog/frogbot from 2.21.2 to 2.25.0", + "body": "Bumps [jfrog/frogbot](https://github.com/jfrog/frogbot) from 2.21.2 to 2.25.0.\n
    \nRelease notes\n

    Sourced from jfrog/frogbot's releases.

    \n
    \n

    v2.25.0

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.0

    \n

    v2.24.1

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Bug Fixes 🛠

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.24.1

    \n

    v2.24.0

    \n\n

    What's Changed

    \n

    Exciting New Features 🎉

    \n\n

    Improvements 🌱

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.24.0

    \n

    v2.23.8

    \n\n

    Internal improvements (Config Profile) + Update dependencies

    \n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.23.8

    \n

    v2.23.7

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jfrog/frogbot&package-manager=github_actions&previous-version=2.21.2&new-version=2.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-jfrog-frogbot-2.25.0", + "sha": "f82c1ef1963f7f80e9f848c73e7b9a2fe9ec2061", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-03-21T01:37:06Z", + "created_at": "2025-03-03T13:06:18Z", + "merge_commit_sha": "5de0d0be5ecd702af3e559fcc53d3ca723e91874" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/48", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump SonarSource/sonarcloud-github-action from 2.2.0 to 5.0.0", + "body": "Bumps [SonarSource/sonarcloud-github-action](https://github.com/sonarsource/sonarcloud-github-action) from 2.2.0 to 5.0.0.\n
    \nRelease notes\n

    Sourced from SonarSource/sonarcloud-github-action's releases.

    \n
    \n

    v5.0.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/SonarSource/sonarcloud-github-action/compare/v4...v5.0.0

    \n

    v4.0.0

    \n

    :warning: DEPRECATION WARNING :warning:

    \n

    This new version of the GitHub action for SonarQube Cloud is going to be the last one specifically designed for SonarQube Cloud.

    \n

    Since v4.1.0, the former GitHub action for SonarQube Server (sonarqube-scan-action) is the entrypoint for both Server and Cloud: a single GitHub action to interact with the SonarQube solution, whether on premise or in the cloud!

    \n

    You can read more about the unified action here.

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/SonarSource/sonarcloud-github-action/compare/v3...v4.0.0

    \n

    v3.1.0

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/SonarSource/sonarcloud-github-action/compare/v3...v3.1.0

    \n

    v3.0.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/SonarSource/sonarcloud-github-action/compare/v2.3.0...v3.0.0

    \n

    v2.3.0

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • ffc3010 Add a link to the sonarqube-scan-action marketplace entry (#103)
    • \n
    • 91eed76 SCSCANGHA-39 Redirect to the SonarQube Scan Action v5.0.0
    • \n
    • f170077 SCSCANGHA-37 Update CODEOWNERS (#100)
    • \n
    • 02ef911 Shorten description and remove mend docker check
    • \n
    • 4afec88 SCSCANGHA-28 Rebranding
    • \n
    • 48d9e10 SCSCANGHA-25 Replace the Docker action by a composite action forwarding to th...
    • \n
    • 982992a Add Jira integration
    • \n
    • 9f9bba2 Recommend to not use this action for analysis of Dart code
    • \n
    • 383f7e5 SCSCANGHA-24 Update the Docker base image to the latest minor 11.1
    • \n
    • 2900b02 BUILD-6088 Fix bad link in SECURITY.md file
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=SonarSource/sonarcloud-github-action&package-manager=github_actions&previous-version=2.2.0&new-version=5.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-SonarSource-sonarcloud-github-action-5.0.0", + "sha": "13df7a6b0d7ad20b1a57e1cd2707b0918febfd99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-14T05:52:54Z", + "created_at": "2025-03-03T13:06:21Z", + "merge_commit_sha": "9a99c0896cd436dd9d4972d28520d4b54d47ae3a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/49", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jss-plugin-vendor-prefixer from 10.5.1 to 10.10.0", + "body": "Bumps [jss-plugin-vendor-prefixer](https://github.com/cssinjs/jss/tree/HEAD/packages/jss-plugin-vendor-prefixer) from 10.5.1 to 10.10.0.\n
    \nRelease notes\n

    Sourced from jss-plugin-vendor-prefixer's releases.

    \n
    \n

    v10.10.0

    \n

    Improvements

    \n\n

    v10.9.2

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    v10.9.1

    \n

    No release notes provided.

    \n

    v10.9.1-alpha.2

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    v10.9.1-alpha.1

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    v10.9.1-alpha.0

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    v10.9.0

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    v10.8.2

    \n

    Bug fixes

    \n
      \n
    • Reverting 1563 because of regression 1565
    • \n
    \n

    v10.8.1

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from jss-plugin-vendor-prefixer's changelog.

    \n
    \n

    10.10.0 (2023-2-9)

    \n

    Improvements

    \n\n

    10.9.2 (2022-7-31)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    10.9.1 (2022-7-21)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.2 (2022-4-24)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.1 (2022-4-23)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    10.9.1-alpha.0 (2022-4-16)

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    10.9.0 (2021-12-8)

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    10.8.2 (2021-10-25)

    \n

    Bug fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jss-plugin-vendor-prefixer&package-manager=npm_and_yarn&previous-version=10.5.1&new-version=10.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-jss-plugin-vendor-prefixer-10.10.0", + "sha": "7b653ea87e64592b2420b8b42567f1682282294f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:41Z", + "created_at": "2025-03-03T13:06:22Z", + "merge_commit_sha": "dabfeb0e76fbe43189f494facf6249fc90e6910e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/50", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump actions/upload-artifact from 97a0fba1372883ab732affbe8f94b823f91727db to c24449f33cd45d4826c6702db7e49f7cdb9b551d", + "body": "Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 97a0fba1372883ab732affbe8f94b823f91727db to c24449f33cd45d4826c6702db7e49f7cdb9b551d.\n
    \nCommits\n
      \n
    • c24449f Merge pull request #608 from actions/joshmgross/fix-include-hidden-files-inpu...
    • \n
    • 2339de4 Ensure hidden files input is used
    • \n
    • 672174a Merge pull request #606 from actions/v3/node16
    • \n
    • 9ee08a3 Merge pull request #604 from actions/v3/backport-exclude-hidden-files
    • \n
    • ff37344 Update documentation for action
    • \n
    • d99c5ec update readme with section
    • \n
    • afc7e4a Exclude hidden files by default backport
    • \n
    • See full diff in compare view
    • \n
    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-actions-upload-artifact-c24449f33cd45d4826c6702db7e49f7cdb9b551d", + "sha": "371f68e81c93a5561f8bce378335741f051952fe", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-14T05:52:53Z", + "created_at": "2025-03-03T13:06:24Z", + "merge_commit_sha": "cd6be02a9693cee04c46b32a886f926c43f0d73a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/51", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump dotnet/runtime-deps from 6.0 to 9.0", + "body": "Bumps dotnet/runtime-deps from 6.0 to 9.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dotnet/runtime-deps&package-manager=docker&previous-version=6.0&new-version=9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-docker-dotnet-runtime-deps-9.0", + "sha": "68c1d5a19a4a66f44e2ec88ad947d5244a968f35", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "https://github.com/xc-link/networklist-org/labels/docker" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-14T05:52:52Z", + "created_at": "2025-03-03T13:06:27Z", + "merge_commit_sha": "d8158f2490a2eaee8ac66e31af91dcaf6475ad99" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/52", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump actions/checkout from 2 to 4", + "body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.\n
    \nRelease notes\n

    Sourced from actions/checkout's releases.

    \n
    \n

    v4.0.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

    \n

    v3.6.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

    \n

    v3.5.3

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

    \n

    v3.5.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

    \n

    v3.5.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-actions-checkout-4", + "sha": "024cd4cfd323cfce84879d9e95402acf5cea5b72", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-14T05:52:51Z", + "created_at": "2025-03-03T13:06:30Z", + "merge_commit_sha": "ae31ddde072bd0d1bd56d40b7112347f4045bd00" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/53", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump hyphenate-style-name from 1.0.4 to 1.1.0", + "body": "Bumps [hyphenate-style-name](https://github.com/rexxars/hyphenate-style-name) from 1.0.4 to 1.1.0.\n
    \nRelease notes\n

    Sourced from hyphenate-style-name's releases.

    \n
    \n

    v1.1.0

    \n

    1.1.0 (2024-06-17)

    \n

    Features

    \n
      \n
    • support typescript definitions out of the box (#17) (70cd004)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • bump braces from 3.0.2 to 3.0.3 (#18) (aadb4a9)
    • \n
    \n
    \n

    This release is also available on:

    \n\n
    \n
    \n
    \nChangelog\n

    Sourced from hyphenate-style-name's changelog.

    \n
    \n

    1.1.0 (2024-06-17)

    \n

    Features

    \n
      \n
    • support typescript definitions out of the box (#17) (70cd004)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • bump braces from 3.0.2 to 3.0.3 (#18) (aadb4a9)
    • \n
    \n

    1.0.6 (2024-05-14)

    \n

    Bug Fixes

    \n
      \n
    • deps: upgrade eslint dev dependencies (483152e)
    • \n
    \n

    1.0.5 (2024-05-14)

    \n

    Bug Fixes

    \n
      \n
    • prepare release automation (644b0ab)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 57bf1d1 chore(release): 1.1.0 [skip ci]
    • \n
    • aadb4a9 fix: bump braces from 3.0.2 to 3.0.3 (#18)
    • \n
    • 70cd004 feat: support typescript definitions out of the box (#17)
    • \n
    • 0205886 chore(release): 1.0.6 [skip ci]
    • \n
    • 483152e fix(deps): upgrade eslint dev dependencies
    • \n
    • 1e9020c chore(release): 1.0.5 [skip ci]
    • \n
    • f832dba ci: disable license plugin for semantic release
    • \n
    • 3f47daa docs: clearly indicate BSD 3-Clause as license
    • \n
    • 644b0ab fix: prepare release automation
    • \n
    • b674455 chore: use explicit list of files to include over npmignore
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hyphenate-style-name&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-hyphenate-style-name-1.1.0", + "sha": "818e4ad99f87350a1166215a32ed82fceea3438d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:40Z", + "created_at": "2025-03-03T13:06:36Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/54", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/prop-types from 15.7.3 to 15.7.14", + "body": "Bumps [@types/prop-types](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prop-types) from 15.7.3 to 15.7.14.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/prop-types&package-manager=npm_and_yarn&previous-version=15.7.3&new-version=15.7.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-prop-types-15.7.14", + "sha": "74a2c08c71b9115fe64e06efcba812130f0ac85d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-17T05:49:08Z", + "created_at": "2025-03-03T13:06:47Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/55", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @material-ui/utils from 4.11.2 to 4.11.3", + "body": "Bumps [@material-ui/utils](https://github.com/mui-org/material-ui/tree/HEAD/packages/material-ui-utils) from 4.11.2 to 4.11.3.\n
    \nChangelog\n

    Sourced from @​material-ui/utils's changelog.

    \n
    \n

    4.11.3

    \n
    Jan 24, 2021
    \n

    This release fixes an important issue with Chrome 88. The usage of NaN as a CSS property with JSS throws an exception.

    \n

    @material-ui/core@v4.11.3

    \n\n

    @material-ui/styles@v4.11.3

    \n\n

    @material-ui/system@v4.11.3

    \n\n

    Docs

    \n\n

    Core

    \n\n
    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by eps1lon, a new releaser for @​material-ui/utils since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@material-ui/utils&package-manager=npm_and_yarn&previous-version=4.11.2&new-version=4.11.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "317c7898eda348b00e87990744767b82da7b7a87", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-material-ui-utils-4.11.3", + "sha": "d680cbca797d7c7bcfcc1f734c2a9e1452a9fa21", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:38Z", + "created_at": "2025-03-03T13:07:11Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/56", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jss-plugin-camel-case from 10.5.1 to 10.10.0", + "body": "Bumps [jss-plugin-camel-case](https://github.com/cssinjs/jss/tree/HEAD/packages/jss-plugin-camel-case) from 10.5.1 to 10.10.0.\n
    \nRelease notes\n

    Sourced from jss-plugin-camel-case's releases.

    \n
    \n

    v10.10.0

    \n

    Improvements

    \n\n

    v10.9.2

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    v10.9.1

    \n

    No release notes provided.

    \n

    v10.9.1-alpha.2

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    v10.9.1-alpha.1

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    v10.9.1-alpha.0

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    v10.9.0

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    v10.8.2

    \n

    Bug fixes

    \n
      \n
    • Reverting 1563 because of regression 1565
    • \n
    \n

    v10.8.1

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from jss-plugin-camel-case's changelog.

    \n
    \n

    10.10.0 (2023-2-9)

    \n

    Improvements

    \n\n

    10.9.2 (2022-7-31)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    10.9.1 (2022-7-21)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.2 (2022-4-24)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.1 (2022-4-23)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    10.9.1-alpha.0 (2022-4-16)

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    10.9.0 (2021-12-8)

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    10.8.2 (2021-10-25)

    \n

    Bug fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jss-plugin-camel-case&package-manager=npm_and_yarn&previous-version=10.5.1&new-version=10.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-jss-plugin-camel-case-10.10.0", + "sha": "0a56824b59f2895a9cfb3ad0e60f16d681ad7a12", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:37Z", + "created_at": "2025-03-03T13:07:24Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/57", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @babel/runtime from 7.12.5 to 7.26.10 in the npm_and_yarn group", + "body": "Bumps the npm_and_yarn group with 1 update: [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).\n\nUpdates `@babel/runtime` from 7.12.5 to 7.26.10\n
    \nRelease notes\n

    Sourced from @​babel/runtime's releases.

    \n
    \n

    v7.26.10 (2025-03-11)

    \n

    Thanks @​jordan-choi and @​mmmsssttt404 for your first PRs!

    \n

    This release includes a fix for https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8, a security vulnerability which affects the .replace method of transpiled regular expressions that use named capturing groups.

    \n

    :eyeglasses: Spec Compliance

    \n\n

    :bug: Bug Fix

    \n
      \n
    • babel-parser, babel-template\n\n
    • \n
    • babel-core\n\n
    • \n
    • babel-parser, babel-plugin-transform-typescript\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-generator\n\n
    • \n
    • babel-parser\n\n
    • \n
    • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-standalone\n\n
    • \n
    \n

    :house: Internal

    \n\n

    Committers: 6

    \n\n

    v7.26.9 (2025-02-14)

    \n

    :bug: Bug Fix

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from @​babel/runtime's changelog.

    \n
    \n

    v7.26.10 (2025-03-11)

    \n

    :eyeglasses: Spec Compliance

    \n\n

    :bug: Bug Fix

    \n
      \n
    • babel-parser, babel-template\n\n
    • \n
    • babel-core\n\n
    • \n
    • babel-parser, babel-plugin-transform-typescript\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-generator\n\n
    • \n
    • babel-parser\n\n
    • \n
    • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-standalone\n\n
    • \n
    \n

    :house: Internal

    \n\n

    v7.26.9 (2025-02-14)

    \n

    :bug: Bug Fix

    \n\n

    :house: Internal

    \n\n

    v7.26.7 (2025-01-24)

    \n

    :bug: Bug Fix

    \n
      \n
    • babel-helpers, babel-preset-env, babel-runtime-corejs3\n\n
    • \n
    • babel-plugin-transform-typeof-symbol\n\n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/runtime&package-manager=npm_and_yarn&previous-version=7.12.5&new-version=7.26.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-2c631a4876", + "sha": "4c9a23989cfb87b519a19d0c9f7c398236c1bb3a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:36Z", + "created_at": "2025-03-20T13:33:23Z", + "merge_commit_sha": "673164123cd0bfebdd9a733ba2df3daf36e5c2b7" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/58", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jfrog/frogbot from 2.21.2 to 2.25.1", + "body": "Bumps [jfrog/frogbot](https://github.com/jfrog/frogbot) from 2.21.2 to 2.25.1.\n
    \nRelease notes\n

    Sourced from jfrog/frogbot's releases.

    \n
    \n

    v2.25.1

    \n\n

    internal changes

    \n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.1

    \n

    v2.25.0

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.0

    \n

    v2.24.1

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Bug Fixes 🛠

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.24.1

    \n

    v2.24.0

    \n\n

    What's Changed

    \n

    Exciting New Features 🎉

    \n\n

    Improvements 🌱

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.24.0

    \n

    v2.23.8

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jfrog/frogbot&package-manager=github_actions&previous-version=2.21.2&new-version=2.25.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-jfrog-frogbot-2.25.1", + "sha": "a5124ef1413d6c18a749113f2823d0b11ca106a1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-03-31T02:07:12Z", + "created_at": "2025-03-21T01:37:04Z", + "merge_commit_sha": "d6f127153eeeb8afb29c00ac8494e4718fad7edb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/59", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @babel/runtime from 7.12.5 to 7.27.0", + "body": "Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.12.5 to 7.27.0.\n
    \nRelease notes\n

    Sourced from @​babel/runtime's releases.

    \n
    \n

    v7.27.0 (2025-03-24)

    \n

    Thanks @​ishchhabra and @​vovkasm for your first PRs!

    \n

    :eyeglasses: Spec Compliance

    \n
      \n
    • babel-generator, babel-parser\n\n
    • \n
    \n

    :rocket: New Feature

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-traverse, babel-types\n\n
    • \n
    • babel-parser, babel-types\n
        \n
      • #17110 Add ImportAttributes to Standardized and move its parser test fixtures (@​JLHwung)
      • \n
      \n
    • \n
    • babel-generator\n\n
    • \n
    • babel-parser, babel-template\n\n
    • \n
    • babel-plugin-transform-typescript, babel-traverse\n\n
    • \n
    • babel-parser\n\n
    • \n
    • babel-types\n
        \n
      • #17162 feat(babel-types): Add support for BigInt literal conversion in valueToNode (@​ishchhabra)
      • \n
      \n
    • \n
    \n

    :bug: Bug Fix

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime\n\n
    • \n
    • babel-cli\n\n
    • \n
    • babel-plugin-transform-named-capturing-groups-regex, babel-types\n\n
    • \n
    \n

    :running_woman: Performance

    \n
      \n
    • babel-types\n\n
    • \n
    • babel-helper-create-regexp-features-plugin\n\n
    • \n
    \n

    Committers: 5

    \n\n

    v7.26.10 (2025-03-11)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from @​babel/runtime's changelog.

    \n
    \n

    v7.27.0 (2025-03-24)

    \n

    :eyeglasses: Spec Compliance

    \n
      \n
    • babel-generator, babel-parser\n\n
    • \n
    \n

    :rocket: New Feature

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-traverse, babel-types\n\n
    • \n
    • babel-parser, babel-types\n
        \n
      • #17110 Add ImportAttributes to Standardized and move its parser test fixtures (@​JLHwung)
      • \n
      \n
    • \n
    • babel-generator\n\n
    • \n
    • babel-parser, babel-template\n\n
    • \n
    • babel-plugin-transform-typescript, babel-traverse\n\n
    • \n
    • babel-parser\n\n
    • \n
    • babel-types\n
        \n
      • #17162 feat(babel-types): Add support for BigInt literal conversion in valueToNode (@​ishchhabra)
      • \n
      \n
    • \n
    \n

    :bug: Bug Fix

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime\n\n
    • \n
    • babel-cli\n\n
    • \n
    • babel-plugin-transform-named-capturing-groups-regex, babel-types\n\n
    • \n
    \n

    :running_woman: Performance

    \n
      \n
    • babel-types\n\n
    • \n
    • babel-helper-create-regexp-features-plugin\n\n
    • \n
    \n

    v7.26.10 (2025-03-11)

    \n

    :eyeglasses: Spec Compliance

    \n\n

    :bug: Bug Fix

    \n
      \n
    • babel-parser, babel-template\n\n
    • \n
    • babel-core\n\n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/runtime&package-manager=npm_and_yarn&previous-version=7.12.5&new-version=7.27.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-babel-runtime-7.27.0", + "sha": "5d13bcc2f661e0738800523b9fbf89b36f04fa60", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-05-01T01:48:01Z", + "created_at": "2025-03-25T02:54:44Z", + "merge_commit_sha": "1b08c8006d7d15bbe333c9d479dd72b3544ca81e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/60", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jfrog/frogbot from 2.21.2 to 2.25.2", + "body": "Bumps [jfrog/frogbot](https://github.com/jfrog/frogbot) from 2.21.2 to 2.25.2.\n
    \nRelease notes\n

    Sourced from jfrog/frogbot's releases.

    \n
    \n

    v2.25.2

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2.25.0...v2.25.2

    \n

    v2.25.1

    \n\n

    internal changes

    \n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.1

    \n

    v2.25.0

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.0

    \n

    v2.24.1

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Bug Fixes 🛠

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.24.1

    \n

    v2.24.0

    \n\n

    What's Changed

    \n

    Exciting New Features 🎉

    \n\n

    Improvements 🌱

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jfrog/frogbot&package-manager=github_actions&previous-version=2.21.2&new-version=2.25.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-jfrog-frogbot-2.25.2", + "sha": "c674a54e21c1fd75bb6d5b5314b581054c0c390e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-17T01:55:53Z", + "created_at": "2025-03-31T02:07:10Z", + "merge_commit_sha": "540d21af4669986dc975defe77b80a90834ad21b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/61", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jfrog/frogbot from 2.21.2 to 2.26.0", + "body": "Bumps [jfrog/frogbot](https://github.com/jfrog/frogbot) from 2.21.2 to 2.26.0.\n
    \nRelease notes\n

    Sourced from jfrog/frogbot's releases.

    \n
    \n

    v2.26.0

    \n\n

    What's Changed

    \n

    Exciting New Features 🎉

    \n\n

    Bug Fixes 🛠

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.26.0

    \n

    v2.25.2

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2.25.0...v2.25.2

    \n

    v2.25.1

    \n\n

    internal changes

    \n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.1

    \n

    v2.25.0

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Full Changelog: https://github.com/jfrog/frogbot/compare/v2...v2.25.0

    \n

    v2.24.1

    \n\n

    What's Changed

    \n

    Improvements 🌱

    \n\n

    Bug Fixes 🛠

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 2d715d2 Update dependencies for 2.26.0 (#857)
    • \n
    • 55eb70f Add Author attribute for test mocks (#856)
    • \n
    • 96bd3dd Add debug logs to indicate scanned branches in scan-repo (#855)
    • \n
    • ca58692 Make sure no attempts to create empty comment for PR Scan on split (#848)
    • \n
    • 72877f9 Restricting usage in ConfigProfile with Xray version prior to 3.117.0 (#834)
    • \n
    • cd5cb5d Fix OIDC broken test (#851)
    • \n
    • 33f9a2b update dependencies (#843)
    • \n
    • 0c7a3ec Fix breaks due to location changes in cli-security (#836)
    • \n
    • 86a9d1b Update XscGitInfoContext struct
    • \n
    • 7fad842 update dependencies fro release 1.17.0 (#824)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jfrog/frogbot&package-manager=github_actions&previous-version=2.21.2&new-version=2.26.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-jfrog-frogbot-2.26.0", + "sha": "f881fc69a8bf030045854df3a203277a95503827", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-22T05:53:16Z", + "created_at": "2025-04-17T01:55:51Z", + "merge_commit_sha": "2d6cd4ec23ef0904729123dca34dfebfa5b56900" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/62", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump google-github-actions/auth from 2.1.4 to 2.1.9", + "body": "Bumps [google-github-actions/auth](https://github.com/google-github-actions/auth) from 2.1.4 to 2.1.9.\n
    \nRelease notes\n

    Sourced from google-github-actions/auth's releases.

    \n
    \n

    v2.1.9

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.8...v2.1.9

    \n

    v2.1.8

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2...v2.1.8

    \n

    v2.1.7

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.6...v2.1.7

    \n

    v2.1.6

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.5...v2.1.6

    \n

    v2.1.5

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.4...v2.1.5

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google-github-actions/auth&package-manager=github_actions&previous-version=2.1.4&new-version=2.1.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-google-github-actions-auth-2.1.9", + "sha": "21e9f610fd3c750c9c6de35563f4dbbb63b8a0dc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-28T01:44:12Z", + "created_at": "2025-04-25T02:02:05Z", + "merge_commit_sha": "23385bad0cec9154ed82b08cd25b13888d8372fd" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/63", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump google-github-actions/auth from 2.1.4 to 2.1.10", + "body": "Bumps [google-github-actions/auth](https://github.com/google-github-actions/auth) from 2.1.4 to 2.1.10.\n
    \nRelease notes\n

    Sourced from google-github-actions/auth's releases.

    \n
    \n

    v2.1.10

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.9...v2.1.10

    \n

    v2.1.9

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.8...v2.1.9

    \n

    v2.1.8

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2...v2.1.8

    \n

    v2.1.7

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.6...v2.1.7

    \n

    v2.1.6

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/google-github-actions/auth/compare/v2.1.5...v2.1.6

    \n

    v2.1.5

    \n

    What's Changed

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google-github-actions/auth&package-manager=github_actions&previous-version=2.1.4&new-version=2.1.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-google-github-actions-auth-2.1.10", + "sha": "3a4db93ad054a9cea3b7ff684f49dd452da4894c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-07-14T05:52:50Z", + "created_at": "2025-04-28T01:44:10Z", + "merge_commit_sha": "19d6bb5741db0f27a3088cc9a30052e7f46fe40d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/64", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @babel/runtime from 7.12.5 to 7.27.1", + "body": "Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.12.5 to 7.27.1.\n
    \nRelease notes\n

    Sourced from @​babel/runtime's releases.

    \n
    \n

    v7.27.1 (2025-04-30)

    \n

    Thanks @​kermanx and @​woaitsAryan for your first PRs!

    \n

    :eyeglasses: Spec Compliance

    \n\n

    :bug: Bug Fix

    \n
      \n
    • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-traverse\n\n
    • \n
    • babel-helper-wrap-function, babel-plugin-transform-async-to-generator\n\n
    • \n
    • babel-helper-remap-async-to-generator, babel-plugin-transform-async-to-generator\n\n
    • \n
    • babel-helper-fixtures, babel-parser\n\n
    • \n
    • babel-generator, babel-parser\n
        \n
      • #17226 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 2) (@​JLHwung)
      • \n
      \n
    • \n
    • babel-parser\n
        \n
      • #17224 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 1) (@​JLHwung)
      • \n
      • #17080 Fix start of TSParameterProperty (@​JLHwung)
      • \n
      \n
    • \n
    • babel-compat-data, babel-preset-env\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-generator\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-transform-arrow-functions, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-traverse\n\n
    • \n
    \n

    :house: Internal

    \n
      \n
    • babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime\n\n
    • \n
    • babel-compat-data, babel-preset-env\n\n
    • \n
    • babel-compat-data, babel-standalone\n\n
    • \n
    • babel-register\n\n
    • \n
    • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3\n\n
    • \n
    • All packages\n\n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from @​babel/runtime's changelog.

    \n
    \n

    v7.27.1 (2025-04-30)

    \n

    :eyeglasses: Spec Compliance

    \n\n

    :bug: Bug Fix

    \n
      \n
    • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-traverse\n\n
    • \n
    • babel-helper-wrap-function, babel-plugin-transform-async-to-generator\n\n
    • \n
    • babel-helper-remap-async-to-generator, babel-plugin-transform-async-to-generator\n\n
    • \n
    • babel-helper-fixtures, babel-parser\n\n
    • \n
    • babel-generator, babel-parser\n
        \n
      • #17226 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 2) (@​JLHwung)
      • \n
      \n
    • \n
    • babel-parser\n
        \n
      • #17224 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 1) (@​JLHwung)
      • \n
      • #17080 Fix start of TSParameterProperty (@​JLHwung)
      • \n
      \n
    • \n
    • babel-compat-data, babel-preset-env\n\n
    • \n
    • babel-traverse\n\n
    • \n
    • babel-generator\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-transform-arrow-functions, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-traverse\n\n
    • \n
    \n

    :house: Internal

    \n
      \n
    • babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime\n\n
    • \n
    • babel-compat-data, babel-preset-env\n\n
    • \n
    • babel-compat-data, babel-standalone\n\n
    • \n
    • Other\n\n
    • \n
    • babel-register\n\n
    • \n
    • babel-cli, babel-compat-data, babel-core, babel-generator, babel-helper-compilation-targets, babel-helper-fixtures, babel-helper-module-imports, babel-helper-module-transforms, babel-helper-plugin-test-runner, babel-helper-transform-fixture-test-runner, babel-helpers, babel-node, babel-parser, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-modules-umd, babel-plugin-transform-react-display-name, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-preset-env, babel-register, babel-standalone, babel-types\n\n
    • \n
    • babel-plugin-transform-regenerator
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/runtime&package-manager=npm_and_yarn&previous-version=7.12.5&new-version=7.27.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "94b8cb835a11f418d47ba02e0ff7633a28ac5500", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-babel-runtime-7.27.1", + "sha": "54c2a033d18d622b0c5f98b6786180ad1841bfd1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript", + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-12T05:49:35Z", + "created_at": "2025-05-01T01:47:59Z", + "merge_commit_sha": "71d93d3b11caa3e8c034e40e7f9fb051d1a36c39" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/66", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Create mayhem-for-api.yml", + "body": null, + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "55920ca02a3fcc2a052cdbd2787b0ffcd751a66e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T03:11:46Z", + "merge_commit_sha": "3802a0d0ce97626ec2ee24d8c176331960ece184" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/67", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Create crunch42.yml", + "body": null, + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-2", + "sha": "6641846a2fa0e5b81e0624924dd59e0c66af39e6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T03:26:27Z", + "merge_commit_sha": "ce1db2dc323cdeb851808eb8aef10188cc7f723c" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/68", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Create ossar.yml", + "body": null, + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-3", + "sha": "42debdb6f29ab757791c062bb082036d133421c7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T04:17:09Z", + "merge_commit_sha": "6279a33f8be8d903292251f26642a0ab46b6bad8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/70", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Update d.yml", + "body": null, + "base": { + "ref": "main", + "sha": "4e9afa65565e1d71c048cf4226c4fb1ad945f123", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-4", + "sha": "f78cdb34cc458ff28cc5349ba717c2196dfce73c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-09-04T06:52:47Z", + "closed_at": "2025-09-04T06:52:47Z", + "created_at": "2025-06-27T09:44:28Z", + "merge_commit_sha": "234acddf8dc53a432c29ae14ffeda5a0dc0ca885" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/74", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Update apisec-scan.yml", + "body": null, + "base": { + "ref": "main", + "sha": "234acddf8dc53a432c29ae14ffeda5a0dc0ca885", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-5", + "sha": "4d5961ae23cdc84002b1fbbaf7d924f8d7746658", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-09-04T06:54:02Z", + "closed_at": "2025-09-04T06:54:02Z", + "created_at": "2025-06-27T18:30:19Z", + "merge_commit_sha": "436115ec97bf56a78b5bbbcba2461de2c0e4b621" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/75", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Update chains.json", + "body": null, + "base": { + "ref": "main", + "sha": "cda00cbd8422d33838a194eb87553017fa76553e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-6", + "sha": "273b6fbbd82eaf1bfad645729508d7964365da4e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-05-18T05:37:24Z", + "created_at": "2025-07-01T02:46:42Z", + "merge_commit_sha": "4cf52218554b4c338f985001e09a1acda0990d3e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/76", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump OctopusDeploy/deploy-release-action from 3.2.1 to 3.2.3", + "body": "Bumps [OctopusDeploy/deploy-release-action](https://github.com/octopusdeploy/deploy-release-action) from 3.2.1 to 3.2.3.\n
    \nRelease notes\n

    Sourced from OctopusDeploy/deploy-release-action's releases.

    \n
    \n

    v3.2.3

    \n

    3.2.3 (2025-03-12)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​actions/core to v1.11.1 (bcc7c52)
    • \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.2 (#170) (205c951)
    • \n
    \n

    v3.2.2

    \n

    3.2.2 (2025-02-18)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.1 (b556dd3)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from OctopusDeploy/deploy-release-action's changelog.

    \n
    \n

    Changelog

    \n

    3.2.3 (2025-03-12)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​actions/core to v1.11.1 (bcc7c52)
    • \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.2 (#170) (205c951)
    • \n
    \n

    3.2.2 (2025-02-18)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.1 (b556dd3)
    • \n
    \n

    3.2.1 (2024-02-04)

    \n

    Bug Fixes

    \n
      \n
    • deps: pin dependencies (cfcc562)
    • \n
    • deps: update dependency @​actions/core to v1.10.1 (74556c0)
    • \n
    \n

    3.2.0 (2023-12-14)

    \n

    Features

    \n\n

    3.1.0 (2023-08-30)

    \n

    Features

    \n
      \n
    • Adds support for authenticating using an access token (#23) (a99a39a)
    • \n
    \n

    3.0.4 (2023-04-20)

    \n

    Bug Fixes

    \n
      \n
    • incorrectly error when server version is checked (76ed7df)
    • \n
    \n

    3.0.3 (2023-02-06)

    \n

    Bug Fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 32954ab chore(main): release 3.2.3 (#164)
    • \n
    • 205c951 fix(deps): update dependency @​octopusdeploy/api-client to v3.5.2 (#170)
    • \n
    • 89d65da chore(deps): update dependency @​types/node to v20.17.24 (#168)
    • \n
    • bbb2327 chore(deps): update dependency @​types/node to v20.17.23 (#166)
    • \n
    • ade92ca chore(deps): update dependency @​types/lodash to v4.17.16 (#167)
    • \n
    • 6683159 chore(deps): update dependency ts-jest to v29.2.6 (#165)
    • \n
    • 04f7666 Merge pull request #83 from OctopusDeploy/dependabot/npm_and_yarn/follow-redi...
    • \n
    • c02f716 Merge pull request #138 from OctopusDeploy/renovate/actions-core-1.x
    • \n
    • bcc7c52 fix(deps): update dependency @​actions/core to v1.11.1
    • \n
    • cf1ff27 Merge pull request #35 from OctopusDeploy/renovate/vercel-ncc-0.x
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=OctopusDeploy/deploy-release-action&package-manager=github_actions&previous-version=3.2.1&new-version=3.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-OctopusDeploy-deploy-release-action-3.2.3", + "sha": "72ab11e70e3ea97659e772437e852c0c2f127026", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-05-18T04:06:48Z", + "created_at": "2025-07-15T05:33:32Z", + "merge_commit_sha": "b8fcd775f1916288f9b044d0b525ea9442d17f6e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/77", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump OctopusDeploy/create-release-action from 3.2.2 to 3.3.0", + "body": "Bumps [OctopusDeploy/create-release-action](https://github.com/octopusdeploy/create-release-action) from 3.2.2 to 3.3.0.\n
    \nRelease notes\n

    Sourced from OctopusDeploy/create-release-action's releases.

    \n
    \n

    v3.3.0

    \n

    3.3.0 (2025-06-30)

    \n

    Features

    \n\n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.6.0 (#564) (2d972fc)
    • \n
    \n

    v3.2.4

    \n

    3.2.4 (2025-03-12)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​actions/core to v1.11.1 (2515245)
    • \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.2 (#538) (b2907b0)
    • \n
    \n

    v3.2.3

    \n

    3.2.3 (2025-02-11)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.1 (183cf55)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from OctopusDeploy/create-release-action's changelog.

    \n
    \n

    Changelog

    \n

    3.3.0 (2025-06-30)

    \n

    Features

    \n\n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.6.0 (#564) (2d972fc)
    • \n
    \n

    3.2.4 (2025-03-12)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​actions/core to v1.11.1 (2515245)
    • \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.2 (#538) (b2907b0)
    • \n
    \n

    3.2.3 (2025-02-11)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​octopusdeploy/api-client to v3.5.1 (183cf55)
    • \n
    \n

    3.2.2 (2024-08-11)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency tmp to v0.2.3 (fe13cc6)
    • \n
    \n

    3.2.1 (2024-02-04)

    \n

    Bug Fixes

    \n
      \n
    • deps: update dependency @​actions/core to v1.10.1 (991d8c8)
    • \n
    \n

    3.2.0 (2023-12-14)

    \n

    Features

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1c58525 chore(main): release 3.3.0 (#565)
    • \n
    • 82e31ae feat: Add custom fields (#563)
    • \n
    • 2d972fc fix(deps): update dependency @​octopusdeploy/api-client to v3.6.0 (#564)
    • \n
    • 7a1da5e chore(deps): update dependency node to v20.19.3 (#561)
    • \n
    • d0998ee chore(deps): update dependency @​types/lodash to v4.17.19 (#562)
    • \n
    • 6dae5b0 chore(deps): update dependency @​types/lodash to v4.17.18 (#560)
    • \n
    • d9176bb chore(deps): update dependency node to v20.19.2 (#547)
    • \n
    • 052ef9f chore(deps): update dependency ts-jest to v29.4.0 (#559)
    • \n
    • 9f4d8a8 chore(deps): update dependency @​types/node to v20.19.0 (#558)
    • \n
    • 8867b87 chore(deps): update dependency @​types/node to v20.17.58 (#557)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=OctopusDeploy/create-release-action&package-manager=github_actions&previous-version=3.2.2&new-version=3.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-OctopusDeploy-create-release-action-3.3.0", + "sha": "6005b5319f26bde7f00350517b93ad85681b54c4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-05-18T04:04:18Z", + "created_at": "2025-07-15T05:38:46Z", + "merge_commit_sha": "fa3ffe95bbfc9acf717f6fd991eb6abbc61587a5" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/78", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump facebook/pyre-action from 0.0.1 to 0.0.2", + "body": "Bumps [facebook/pyre-action](https://github.com/facebook/pyre-action) from 0.0.1 to 0.0.2.\n
    \nRelease notes\n

    Sourced from facebook/pyre-action's releases.

    \n
    \n

    v0.0.2

    \n

    Update dependent actions

    \n
    \n
    \n
    \nCommits\n
      \n
    • 12b8d92 Bump github/codeql-action from 2 to 3 in the github-actions group
    • \n
    • 0136281 README.md: uses: actions/checkout@v4
    • \n
    • ba45f3c Update action.yml
    • \n
    • b848458 Keep GitHub Actions up to date with GitHub's Dependabot
    • \n
    • 6dc86fc Merge pull request #3 from mrBen/action-version-in-readme
    • \n
    • 92187c9 Replace hard-coded version number with a comment
    • \n
    • 1c7cf11 Add action's version to the example in README
    • \n
    • See full diff in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=facebook/pyre-action&package-manager=github_actions&previous-version=0.0.1&new-version=0.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-facebook-pyre-action-0.0.2", + "sha": "fa44abefa267bf1f40a80ff44f20f28378e6ddb1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-15T06:03:20Z", + "merge_commit_sha": "96ada1f79c536c10e714be4f9940391a039fe976" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/79", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump actions/setup-python from 3 to 5", + "body": "Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 5.\n
    \nRelease notes\n

    Sourced from actions/setup-python's releases.

    \n
    \n

    v5.0.0

    \n

    What's Changed

    \n

    In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.

    \n

    Full Changelog: https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0

    \n

    v4.9.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/actions/setup-python/compare/v4...v4.9.1

    \n

    v4.9.0

    \n

    What's Changed

    \n
      \n
    • Upgrade actions/cache to 4.0.3 by @​priya-kinthali in actions/setup-python#1073\nIn scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.
    • \n
    \n

    Full Changelog: https://github.com/actions/setup-python/compare/v4.8.0...v4.9.0

    \n

    v4.8.0

    \n

    What's Changed

    \n

    In scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:

    \n
    steps:\n- uses: actions/checkout@v4\n- uses: actions/setup-python@v4 \n  with:\n    python-version: 'graalpy-22.3' \n- run: python my_script.py\n
    \n

    Besides, the release contains such changes as:

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/setup-python/compare/v4...v4.8.0

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • a26af69 Bump ts-jest from 29.1.2 to 29.3.2 (#1081)
    • \n
    • 30eafe9 Bump prettier from 2.8.8 to 3.5.3 (#1046)
    • \n
    • 5d95bc1 Bump semver and @​types/semver (#1091)
    • \n
    • 6ed2c67 Fix for Candidate Not Iterable Error (#1082)
    • \n
    • e348410 Remove Ubuntu 20.04 from workflows due to deprecation from 2025-04-15 (#1065)
    • \n
    • 8d9ed9a Add e2e Testing for free threaded and Bump @​action/cache from 4.0.0 to 4.0.3 ...
    • \n
    • 19e4675 Add support for .tool-versions file in setup-python (#1043)
    • \n
    • 6fd11e1 Bump @​actions/glob from 0.4.0 to 0.5.0 (#1015)
    • \n
    • 9e62be8 Support free threaded Python versions like '3.13t' (#973)
    • \n
    • 6ca8e85 Bump @​vercel/ncc from 0.38.1 to 0.38.3 (#1016)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-python&package-manager=github_actions&previous-version=3&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-actions-setup-python-5", + "sha": "23b95067ee4e2a0c73e3d3f410f461ff27457739", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-05T01:14:33Z", + "created_at": "2025-07-15T06:20:37Z", + "merge_commit_sha": "6ef60ec5327912366d52acc43656d66baacd0114" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/80", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "ads", + "body": "ethereum", + "base": { + "ref": "main", + "sha": "cda00cbd8422d33838a194eb87553017fa76553e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "xc-link-patch-7", + "sha": "ed31d89a60760e2b1653bf0cb628a374e554045f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/no-pr-activity" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2026-01-08T02:54:39Z", + "closed_at": "2026-01-08T02:54:39Z", + "created_at": "2025-07-20T09:02:07Z", + "merge_commit_sha": "ae037a4dcb02832e061ef1e2bc2d8d0519460878" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/81", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump slsa-framework/slsa-github-generator from 1.4.0 to 2.1.0", + "body": "Bumps [slsa-framework/slsa-github-generator](https://github.com/slsa-framework/slsa-github-generator) from 1.4.0 to 2.1.0.\n
    \nRelease notes\n

    Sourced from slsa-framework/slsa-github-generator's releases.

    \n
    \n

    v2.1.0

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from slsa-framework/slsa-github-generator's changelog.

    \n
    \n

    v2.1.0

    \n

    v2.1.0: Sigstore Bundles for Generic Generator and Go Builder

    \n

    The workflows generator_generic_slsa3.yml and builder_go_slsa3.yml\nhave been updated to produce signed Sigstore Bundles, just like all the other builders\nthat use the BYOB framework.

    \n

    The workflow logs will now print a LogIndex, rather than a LogUUID. Both are equally searchanble on\nhttps://search.sigstore.dev/.

    \n

    v2.1.0: Vars context recorded in provenance

    \n
      \n
    • Updated: GitHub vars context is now recorded in provenance for the generic and\ncontainer generators. The vars context cannot affect the build in the Go\nbuilder so it is not recorded.
    • \n
    \n

    v2.0.0

    \n

    v2.0.0: Breaking Change: upload-artifact and download-artifact

    \n
      \n
    • Our workflows now use the new @v4s of actions/upload-artifact and\nactions/download-artifact, which are incompatiblle with the prior @v3. See\nOur docs on the generic generator\nfor more information and how to upgrade.
    • \n
    \n

    v2.0.0: Breaking Change: attestation-name Workflow Input and Output

    \n
      \n
    • attestation-name as a workflow input to\n.github/workflows/generator_generic_slsa3.yml is now removed. Use\nprovenance-name instead.
    • \n
    \n

    v2.0.0: DSSE Rekor Type

    \n
      \n
    • When uploading signed provenance to the log, the entry created in the log is now\na DSSE Rekor type. This fixes a bug where the current intoto type does not\npersist provenance signatures. The attestation will no longer be persisted\nin Rekor (#3299)
    • \n
    \n

    v1.10.0

    \n

    Release v1.10.0 includes bug fixes and new features.

    \n

    See the full change list.

    \n

    v1.10.0: TUF fix

    \n
      \n
    • The cosign TUF roots were fixed (#3350).\nMore details here.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=slsa-framework/slsa-github-generator&package-manager=github_actions&previous-version=1.4.0&new-version=2.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-slsa-framework-slsa-github-generator-2.1.0", + "sha": "2cf3ae7990c0cdfec1efc0dba5e4dde9921aff2f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-23T02:23:09Z", + "merge_commit_sha": "04f4f4423b8c69ef8b77db8b9649d8dc2bc5753f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/82", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 22.13.8 to 24.2.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.13.8 to 24.2.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.13.8&new-version=24.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "39e552619db59596283a1a74bc9a606cdedd18bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.2.1", + "sha": "911b4488c1fb5325a137363cde200ab613f4b3a8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-08-18T02:50:50Z", + "created_at": "2025-08-12T10:15:29Z", + "merge_commit_sha": "9e26f32d1389cb386df3c5943212bc03905aaf16" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/83", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump jss-plugin-global from 10.5.1 to 10.10.0", + "body": "Bumps [jss-plugin-global](https://github.com/cssinjs/jss/tree/HEAD/packages/jss-plugin-global) from 10.5.1 to 10.10.0.\n
    \nRelease notes\n

    Sourced from jss-plugin-global's releases.

    \n
    \n

    v10.10.0

    \n

    Improvements

    \n\n

    v10.9.2

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    v10.9.1

    \n

    No release notes provided.

    \n

    v10.9.1-alpha.2

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    v10.9.1-alpha.1

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    v10.9.1-alpha.0

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    v10.9.0

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    v10.8.2

    \n

    Bug fixes

    \n
      \n
    • Reverting 1563 because of regression 1565
    • \n
    \n

    v10.8.1

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from jss-plugin-global's changelog.

    \n
    \n

    10.10.0 (2023-2-9)

    \n

    Improvements

    \n\n

    10.9.2 (2022-7-31)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] Fix import useInsertionEffect 1627
    • \n
    \n

    10.9.1 (2022-7-21)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.2 (2022-4-24)

    \n

    Bug fixes

    \n
      \n
    • [jss] Update stylesheet if !important flag is set before and after the update 1612
    • \n
    \n

    10.9.1-alpha.1 (2022-4-23)

    \n

    Bug fixes

    \n
      \n
    • [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support 1609
    • \n
    \n

    10.9.1-alpha.0 (2022-4-16)

    \n

    Improvements

    \n
      \n
    • [react-jss] Use useInsertionEffect 1608, 1604
    • \n
    \n

    10.9.0 (2021-12-8)

    \n

    Bug fixes

    \n
      \n
    • [jss, jss-plugin-global, jss-plugin-nested, jss-plugin-rule-value-function] Fixes a memory leak with nested function rules 1574
    • \n
    \n

    Improvements

    \n
      \n
    • Keep classes ref when sheet and dynamicRules have not any change 1573
    • \n
    \n

    10.8.2 (2021-10-25)

    \n

    Bug fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jss-plugin-global&package-manager=npm_and_yarn&previous-version=10.5.1&new-version=10.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "4e9afa65565e1d71c048cf4226c4fb1ad945f123", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-jss-plugin-global-10.10.0", + "sha": "b1aecaed6cbfb2c3c787129e1dc4cec9095dd370", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-08-12T11:43:49Z", + "merge_commit_sha": "b50e1237f68c7b8e6735da2708ae88d486f0a69a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/84", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump fbjs from 3.0.0 to 3.0.5", + "body": "Bumps [fbjs](https://github.com/facebook/fbjs) from 3.0.0 to 3.0.5.\n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by bigfootjon, a new releaser for fbjs since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=fbjs&package-manager=npm_and_yarn&previous-version=3.0.0&new-version=3.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "4e9afa65565e1d71c048cf4226c4fb1ad945f123", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-fbjs-3.0.5", + "sha": "adf08f47d9d5452a3fc88bf95c212388aae8b3b3", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-08-12T12:23:35Z", + "merge_commit_sha": "842266657c3bae0fb0e046f8b29cefd960ec9924" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/85", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ws from 8.18.1 to 8.18.3", + "body": "Bumps [ws](https://github.com/websockets/ws) from 8.18.1 to 8.18.3.\n
    \nRelease notes\n

    Sourced from ws's releases.

    \n
    \n

    8.18.3

    \n

    Bug fixes

    \n
      \n
    • Fixed a spec violation where the Sec-WebSocket-Version header was not added\nto the HTTP response if the client requested version was either invalid or\nunacceptable (33f5dbaf).
    • \n
    \n

    8.18.2

    \n

    Bug fixes

    \n
      \n
    • Fixed an issue that, during message decompression when the maximum size was\nexceeded, led to the emission of an inaccurate error and closure of the\nconnection with an improper close code (#2285).
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ws&package-manager=npm_and_yarn&previous-version=8.18.1&new-version=8.18.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "78a9006af157b22a0ef96a3e4aed9772d48ca8a5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-ws-8.18.3", + "sha": "699cc4fec0c276e3d49e23616cf548a1a659eefb", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-05-18T04:04:32Z", + "created_at": "2025-08-12T12:23:44Z", + "merge_commit_sha": "59953dbceaf69344f2041443b6420da87b1e56ab" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/86", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump react-transition-group from 4.4.1 to 4.4.5", + "body": "Bumps [react-transition-group](https://github.com/reactjs/react-transition-group) from 4.4.1 to 4.4.5.\n
    \nRelease notes\n

    Sourced from react-transition-group's releases.

    \n
    \n

    v4.4.5

    \n

    4.4.5 (2022-08-01)

    \n

    Bug Fixes

    \n
      \n
    • apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#847) (1043549)
    • \n
    \n

    v4.4.4

    \n

    4.4.4 (2022-07-30)

    \n

    Bug Fixes

    \n\n

    v4.4.3

    \n

    4.4.3 (2022-07-30)

    \n

    Bug Fixes

    \n
      \n
    • enter animations with mountOnEnter or unmountOnExit (#749) (51bdceb)
    • \n
    \n

    v4.4.2

    \n

    4.4.2 (2021-05-29)

    \n

    Bug Fixes

    \n
      \n
    • nodeRef prop type for cross-realm elements (#732) (8710c01)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from react-transition-group's changelog.

    \n
    \n

    4.4.5 (2022-08-01)

    \n

    Bug Fixes

    \n
      \n
    • apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#847) (1043549)
    • \n
    \n

    4.4.4 (2022-07-30)

    \n

    Bug Fixes

    \n\n

    4.4.3 (2022-07-30)

    \n

    Bug Fixes

    \n
      \n
    • enter animations with mountOnEnter or unmountOnExit (#749) (51bdceb)
    • \n
    \n

    4.4.2 (2021-05-29)

    \n

    Bug Fixes

    \n
      \n
    • nodeRef prop type for cross-realm elements (#732) (8710c01)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 4cb51a9 chore(release): 4.4.5 [skip ci]
    • \n
    • 1043549 fix: apply entering animation synchronously when unmountOnExit or mountOnEnte...
    • \n
    • 35fa332 chore(release): 4.4.4 [skip ci]
    • \n
    • 97af789 fix: missing build files (#845)
    • \n
    • 01dcc83 chore(release): 4.4.3 [skip ci]
    • \n
    • 51bdceb fix: enter animations with mountOnEnter or unmountOnExit (#749)
    • \n
    • 6cbd6aa ci: run CI on the alpha branch (#822)
    • \n
    • 153d572 chore: use React v18 as the default target for development (#810)
    • \n
    • 9923217 docs: fix small typo in testing.js (#806)
    • \n
    • b034f72 ci: use @​testing-library/react@​alpha only for React v18 (#807)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by eps1lon, a new releaser for react-transition-group since your current version.

    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-transition-group&package-manager=npm_and_yarn&previous-version=4.4.1&new-version=4.4.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "4e9afa65565e1d71c048cf4226c4fb1ad945f123", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-react-transition-group-4.4.5", + "sha": "0fd6087ca4bdbe6b49e8782f0f237ce08adef252", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-08-18T02:48:05Z", + "merge_commit_sha": "08ffb0d3478f5d1793eac4e839d1df10feb0485a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/87", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 22.13.8 to 24.3.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.13.8 to 24.3.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.13.8&new-version=24.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "436115ec97bf56a78b5bbbcba2461de2c0e4b621", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.3.0", + "sha": "2a4528e26cf2ccf85340f7525b5aa49c1be12e76", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-09-06T00:34:49Z", + "closed_at": "2025-09-06T00:34:49Z", + "created_at": "2025-08-18T02:50:48Z", + "merge_commit_sha": "78a9006af157b22a0ef96a3e4aed9772d48ca8a5" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/88", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Create sammvio-patch-5", + "body": null, + "base": { + "ref": "sammvio-patch-2", + "sha": "7465c609d5765500e6c396c966530fa074790479", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "sammvio-patch-5", + "sha": "ef4cab6e2530d0537d0bec1c8321a6538dd53383", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-08-25T13:57:35Z", + "closed_at": "2025-08-25T13:57:35Z", + "created_at": "2025-08-25T13:57:20Z", + "merge_commit_sha": "46cb18c7a7c6d4770aa319de375e2723c2549621" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/89", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump the npm_and_yarn group with 2 updates", + "body": "Bumps the npm_and_yarn group with 2 updates: [next](https://github.com/vercel/next.js) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).\n\nUpdates `next` from 15.3.3 to 15.4.7\n
    \nRelease notes\n

    Sourced from next's releases.

    \n
    \n

    v15.4.7

    \n
    \n

    [!NOTE]
    \nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

    \n
    \n

    Core Changes

    \n
      \n
    • fix router handling when setting a location response header #82588
    • \n
    \n

    Credits

    \n

    Huge thanks to @​ztanner for helping!

    \n

    v15.4.6

    \n
    \n

    [!NOTE]
    \nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

    \n
    \n

    Core Changes

    \n
      \n
    • fix: _error page's req.url can be overwritten to dynamic param on minimal mode (#82347)
    • \n
    • fix: add ?dpl to fonts in /_next/static/media (#82384)
    • \n
    \n

    Credits

    \n

    Huge thanks to @​devjiwonchoi, @​ijjk, and @​styfle for helping!

    \n

    v15.4.5

    \n
    \n

    [!NOTE]
    \nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

    \n
    \n

    Core Changes

    \n
      \n
    • Fix API stripping JSON incorrectly (#82062)
    • \n
    • Fix i18n fallback: false collision (#82158)
    • \n
    • Revert "Fix tracing of server actions imported by client components (#82167)
    • \n
    • Ensure setAssetPrefix updates config instance (#82165)
    • \n
    • Turbopack: update mimalloc (#82166)
    • \n
    • fix(next/image): fix image-optimizer.ts headers (#82175)
    • \n
    • fix(next/image): improve and simplify detect-content-type (#82174)
    • \n
    \n

    Credits

    \n

    Huge thanks to @​ijjk, @​sokra, and @​styfle for helping!

    \n

    v15.4.4

    \n
    \n

    [!NOTE]
    \nThis release is backporting bug fixes. It does not include all pending features/changes on canary.

    \n
    \n

    Core Changes

    \n
      \n
    • Fix dynamicParams false layout case in dev (#82026)
    • \n
    • Turbopack: fix scope hoisting variable renaming bug (#81640)
    • \n
    • Upgrade to swc v33 (#81750)
    • \n
    • Revert "[metadata] use https protocol for schema urls" (#81934)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `@babel/runtime` from 7.12.5 to 7.28.3\n
    \nRelease notes\n

    Sourced from @​babel/runtime's releases.

    \n
    \n

    v7.28.3 (2025-08-14)

    \n

    :eyeglasses: Spec Compliance

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env\n\n
    • \n
    \n

    :bug: Bug Fix

    \n
      \n
    • babel-parser\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-plugin-transform-regenerator, babel-plugin-transform-runtime\n\n
    • \n
    \n

    :memo: Documentation

    \n\n

    :house: Internal

    \n\n

    :microscope: Output optimization

    \n
      \n
    • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions\n\n
    • \n
    \n

    Committers: 5

    \n\n

    v7.28.2 (2025-07-24)

    \n

    Thanks @​souhailaS for your first PR!

    \n

    :bug: Bug Fix

    \n
      \n
    • babel-types\n\n
    • \n
    • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3\n\n
    • \n
    \n

    Committers: 4

    \n\n

    v7.28.1 (2025-07-12)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from @​babel/runtime's changelog.

    \n
    \n

    v7.28.3 (2025-08-14)

    \n

    :eyeglasses: Spec Compliance

    \n
      \n
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env\n\n
    • \n
    \n

    :bug: Bug Fix

    \n
      \n
    • babel-parser\n\n
    • \n
    \n

    :nail_care: Polish

    \n
      \n
    • babel-plugin-transform-regenerator, babel-plugin-transform-runtime\n\n
    • \n
    \n

    :memo: Documentation

    \n\n

    :house: Internal

    \n\n

    :microscope: Output optimization

    \n
      \n
    • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions\n\n
    • \n
    \n

    v7.28.2 (2025-07-24)

    \n

    :bug: Bug Fix

    \n
      \n
    • babel-types\n\n
    • \n
    • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3\n\n
    • \n
    \n

    v7.28.1 (2025-07-12)

    \n

    :bug: Bug Fix

    \n
      \n
    • babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator\n\n
    • \n
    \n

    :memo: Documentation

    \n\n

    :leftwards_arrow_with_hook: Revert

    \n
      \n
    • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-types\n\n
    • \n
    \n

    v7.28.0 (2025-07-02)

    \n

    :rocket: New Feature

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "4e9afa65565e1d71c048cf4226c4fb1ad945f123", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-npm_and_yarn-2e97db7cf2", + "sha": "cab20b001870ff204c00ff99ad4baf534ccd8ce1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-08-30T12:11:40Z", + "merge_commit_sha": "3585177f20b007e063e9f63d7a93139493383b22" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/90", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump actions/setup-python from 3 to 6", + "body": "Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 6.\n
    \nRelease notes\n

    Sourced from actions/setup-python's releases.

    \n
    \n

    v6.0.0

    \n

    What's Changed

    \n

    Breaking Changes

    \n\n

    Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

    \n

    Enhancements:

    \n\n

    Bug fixes:

    \n\n

    Dependency updates:

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/setup-python/compare/v5...v6.0.0

    \n

    v5.6.0

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/actions/setup-python/compare/v5...v5.6.0

    \n

    v5.5.0

    \n

    What's Changed

    \n

    Enhancements:

    \n\n

    Bug fixes:

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • e797f83 Upgrade to node 24 (#1164)
    • \n
    • 3d1e2d2 Revert "Enhance cache-dependency-path handling to support files outside the w...
    • \n
    • 65b0712 Clarify pythonLocation behavior for PyPy and GraalPy in environment variables...
    • \n
    • 5b668cf Bump actions/checkout from 4 to 5 (#1181)
    • \n
    • f62a0e2 Change missing cache directory error to warning (#1182)
    • \n
    • 9322b3c Upgrade setuptools to 78.1.1 to fix path traversal vulnerability in PackageIn...
    • \n
    • fbeb884 Bump form-data to fix critical vulnerabilities #182 & #183 (#1163)
    • \n
    • 03bb615 Bump idna from 2.9 to 3.7 in /tests/data (#843)
    • \n
    • 36da51d Add version parsing from Pipfile (#1067)
    • \n
    • 3c6f142 update documentation (#1156)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-python&package-manager=github_actions&previous-version=3&new-version=6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "436115ec97bf56a78b5bbbcba2461de2c0e4b621", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-actions-setup-python-6", + "sha": "5433ac4486abf447ce19eee0d2c8d8720305c035", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-09-05T01:14:31Z", + "merge_commit_sha": "743ab87b7a3fda60af67353cef28dd46c7eb611e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/91", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 22.13.8 to 24.3.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.13.8 to 24.3.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.13.8&new-version=24.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "78a9006af157b22a0ef96a3e4aed9772d48ca8a5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.3.1", + "sha": "791361dd16204c18e880e04de3e26b26f8db4712", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-15T01:23:28Z", + "created_at": "2025-09-05T01:16:16Z", + "merge_commit_sha": "0388d681af1c09adf85b1739cf65ca0e4f2c0eaf" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/92", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.4.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.4.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.4.0", + "sha": "3d84b6ee0208adf6b0362431ef8f841a1890d7ab", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-16T01:19:39Z", + "created_at": "2025-09-15T01:23:26Z", + "merge_commit_sha": "f6c651b5552f4db5f8d6bb49a93868024e8c50bb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/93", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.5.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.5.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.5.0", + "sha": "2b62a52d861ddd27dec0388de26b0543d0322494", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-17T01:16:52Z", + "created_at": "2025-09-16T01:19:37Z", + "merge_commit_sha": "0d55993f8f17cd8c8a03351a01caf2b7b9de2106" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/94", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.5.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.5.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.5.1", + "sha": "74f5d5cb4943775e0dc0a3d41c1edb91026d6fc7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-18T01:09:58Z", + "created_at": "2025-09-17T01:16:49Z", + "merge_commit_sha": "a024dd5a381c5f8bc2f293bb12f4b57d8e54c765" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/95", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.5.2", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.5.2.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.5.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.5.2", + "sha": "30813f141e486b47efb490c169dd3b080c9f526f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-09-30T02:47:55Z", + "created_at": "2025-09-18T01:09:56Z", + "merge_commit_sha": "6fb9d4a0f450e32113645ac2226b00875daacde1" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/96", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump dotnet/runtime-deps from 6.0 to 9.0.9", + "body": "Bumps dotnet/runtime-deps from 6.0 to 9.0.9.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dotnet/runtime-deps&package-manager=docker&previous-version=6.0&new-version=9.0.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-docker-dotnet-runtime-deps-9.0.9", + "sha": "fc8013040a01335d60c2f0e82d903a66c150b6f1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/docker" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-11-12T01:14:15Z", + "created_at": "2025-09-30T01:15:42Z", + "merge_commit_sha": "0171fccf8d839d9e8e046351d945d5f3acaaa0e2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/97", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.6.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.6.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.6.0", + "sha": "66b53194177967b7d0f73ddd2e748d22b567c610", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-01T01:24:22Z", + "created_at": "2025-09-30T02:47:52Z", + "merge_commit_sha": "b9bc65953eebe3d5e061550878b59e5c07141e02" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/98", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.6.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.6.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.6.1", + "sha": "078212b659acde730db68a1e43c24c3c91f8af46", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-03T01:17:32Z", + "created_at": "2025-10-01T01:24:20Z", + "merge_commit_sha": "6a6030dc9cbd477ce3045a5c6f0b8a196de6ed98" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/99", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.6.2", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.6.2.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.6.2", + "sha": "7fc9e58afb6c6ac6e99c942d24a602350219a745", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-07T01:19:10Z", + "created_at": "2025-10-03T01:17:30Z", + "merge_commit_sha": "7b566198a44baec042a3528f7661de934d8e5a88" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/100", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.7.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.7.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.7.0", + "sha": "f52e8a7f120c09d5fd029aac053a65d2ad280a22", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-10T01:13:18Z", + "created_at": "2025-10-07T01:19:08Z", + "merge_commit_sha": "65529494b7101c48c736c37915bfbb48d6444fe0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/101", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.7.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.7.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.7.1", + "sha": "a04af490cff3e466c1d7c06aeb7d020b0b7c5408", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-13T01:20:49Z", + "created_at": "2025-10-10T01:13:15Z", + "merge_commit_sha": "d8be6e08b31ecc0e269d2150bf6c7ce5ace90b87" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/102", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.7.2", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.7.2.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.7.2", + "sha": "040478798bcfaa1666a7d33a522b2c7d9c973124", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-17T01:19:20Z", + "created_at": "2025-10-13T01:20:47Z", + "merge_commit_sha": "a459579379f161d084fff5e68843a08002d5912f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/103", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.8.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.8.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.8.0", + "sha": "d5a46e696e40455c9b6892604e862a517e551658", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-20T01:19:34Z", + "created_at": "2025-10-17T01:19:17Z", + "merge_commit_sha": "09213009497f4221460319c59b330ad44b910d1a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/104", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.8.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.8.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.8.1", + "sha": "ef10929c56ee052548f47e277c9086e190199093", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-21T01:15:34Z", + "created_at": "2025-10-20T01:19:31Z", + "merge_commit_sha": "858bf2414a115213bc497fcd3ba37b62e9224a27" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/105", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.9.1", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.9.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.9.1", + "sha": "dcee6a198062d73281b8577eee4d5e313f9dca5f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-29T01:20:25Z", + "created_at": "2025-10-21T01:15:31Z", + "merge_commit_sha": "e6f6bfc8d570d6b3ea3a93a3223888c988f493f9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/106", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 24.9.2", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 24.9.2.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=24.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    \n\n> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n", + "base": { + "ref": "main", + "sha": "9ccdf90eb8504c692a3cdcad76ce2ad867fd0476", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-24.9.2", + "sha": "95e2afdb2d24a3fa66d1cb2b42ba9903141f7819", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-05-18T04:03:05Z", + "created_at": "2025-10-29T01:20:23Z", + "merge_commit_sha": "be003abd4c53b172c530172b2eb167840b538469" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/107", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump dotnet/runtime-deps from 6.0 to 10.0", + "body": "Bumps dotnet/runtime-deps from 6.0 to 10.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dotnet/runtime-deps&package-manager=docker&previous-version=6.0&new-version=10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "cda00cbd8422d33838a194eb87553017fa76553e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-docker-dotnet-runtime-deps-10.0", + "sha": "33467697f1733b6699e4a7fe1b096bce92845087", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/docker" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-12T01:14:13Z", + "merge_commit_sha": "d71c7c928c176cc9b019f6851567156308a4e2d0" + } +] \ No newline at end of file diff --git a/pull_requests_000002.json b/pull_requests_000002.json new file mode 100644 index 000000000..7639464f2 --- /dev/null +++ b/pull_requests_000002.json @@ -0,0 +1,3440 @@ +[ + { + "type": "pull_request", + "url": "https://github.com/xc-link/68-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/68-networklist-org", + "title": "Bump nokogiri from 1.13.10 to 1.18.3", + "body": "Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.18.3.\n
    \nRelease notes\n

    Sourced from nokogiri's releases.

    \n
    \n

    v1.18.3 / 2025-02-18

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.6 to address CVE-2025-24928 and CVE-2024-56171. See GHSA-vvfq-8hwr-qm4m for more information.
    • \n
    \n\n
    cab20305133078a8f6b60cf96311b48319175038cc7772e5ec586ff624cb7838  nokogiri-1.18.3-aarch64-linux-gnu.gem\nacb256bb3213a180b1ed84a49c06d5d4c6c1da26f33bc9681f1fece4dab09a79  nokogiri-1.18.3-aarch64-linux-musl.gem\nce088965cd424b8e752d82087dcf017069d55791f157098ed1f671d966857610  nokogiri-1.18.3-arm64-darwin.gem\n37b73a55e0d1e8a058a24abb16868903e81cb4773049739c532b864f87236b1b  nokogiri-1.18.3-arm-linux-gnu.gem\n09407970cd13736cf87e975fae69c13e1178bab0313d07b35580ee4dd3650793  nokogiri-1.18.3-arm-linux-musl.gem\n6b9fc3b14fd0cedd21f6cad8cf565123ba7401e56b5d0aec180c23cdca28fd5a  nokogiri-1.18.3.gem\n236078c5f80ffc3d49c223fa98933d970543455403f9d672ca0aa5a6178a84fe  nokogiri-1.18.3-java.gem\n216be1cb454c4657fc64747e5ae32b2ab4015843183766f238e4f4a62fb1f6be  nokogiri-1.18.3-x64-mingw-ucrt.gem\nd729406bb5a7b1bbe7ed3c0922336dd2c46085ed444d6de2a0a4c33950a4edea  nokogiri-1.18.3-x86_64-darwin.gem\n3c7ad5cee39855ed9c746065f39b584b9fd2aaff61df02d0f85ba8d671bbe497  nokogiri-1.18.3-x86_64-linux-gnu.gem\n8aaecc22c0e5f12dac613e15f9a04059c3ec859d6f98f493cc831bd88fe8e731  nokogiri-1.18.3-x86_64-linux-musl.gem\n
    \n\n

    v1.18.2 / 2024-01-19

    \n

    Fixed

    \n
      \n
    • When performing a CSS selector query, an XML document's root namespace declarations should not be applied to wildcard selectors ("*"). Fixes a bug introduced in v1.17.0. (#3411) @​flavorjones
    • \n
    \n\n
    74e0f9a7487a30a2957f46c5113d58f836436b033c9906e0bc6fee9d8cdafabf  nokogiri-1.18.2-aarch64-linux-gnu.gem\n99bcea596a80eaee99f2bae2596275641ea688262c1da32b4e90db6159e86477  nokogiri-1.18.2-aarch64-linux-musl.gem\n8288ec7a296e2510ca9bd053c0c5989f11260f8c07bc3e9afbafa536f7077281  nokogiri-1.18.2-arm64-darwin.gem\n6fb0246b69f2c589a69254e82bc2a40aa238c4f977fd7903e283341a92935729  nokogiri-1.18.2-arm-linux-gnu.gem\ndcdd4d10ed2743f0d8c887825700c3a8506aea1aa415917ac50ccc01597c51a3  nokogiri-1.18.2-arm-linux-musl.gem\n93791cfb33186fe077eb9e1b8a6855b5621e328f81f565334572fa398366f8bf  nokogiri-1.18.2.gem\neefdf9f0d6086173d3488cf7a736732ee13fb6674ef15643478c20502a67bf37  nokogiri-1.18.2-java.gem\n894514572fa7503ce9210e51a7f8a9a35f34f154d6406cec1ac148c3ce1536a3  nokogiri-1.18.2-x64-mingw-ucrt.gem\n7fca165e5ee87e9b6b3f1377180376afc0c8652ed2a3d761f472f0e3d3a1c651  nokogiri-1.18.2-x86_64-darwin.gem\n9330ced4a976604865c2a76ce158e2bc608fa83999552e85a32ec06f85f427db  nokogiri-1.18.2-x86_64-linux-gnu.gem\n1cd7786ed15c76958d6a8f9a864df6208fecd624c340eb4ed211fbea60328f02  nokogiri-1.18.2-x86_64-linux-musl.gem\n
    \n\n

    v1.18.1 / 2024-12-29

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from nokogiri's changelog.

    \n
    \n

    v1.18.3 / 2025-02-18

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated v2.13.6 to address CVE-2025-24928 and CVE-2024-56171. Nokogiri's maintainers believe these vulnerabilities do not affect users of Nokogiri, but we advise upgrading at your earliest convenience anyway.
    • \n
    \n

    v1.18.2 / 2024-01-19

    \n

    Fixed

    \n
      \n
    • When performing a CSS selector query, an XML document's root namespace declarations should not be applied to wildcard selectors ("*"). Fixes a bug introduced in v1.17.0. (#3411) @​flavorjones
    • \n
    \n

    v1.18.1 / 2024-12-29

    \n

    Fixed

    \n
      \n
    • [CRuby] XML::SAX::ParserContext keeps a reference to the input to avoid a potential use-after-free issue that's existed since v1.4.0 (2009). (#3395) @​flavorjones
    • \n
    \n

    v1.18.0 / 2024-12-25

    \n

    Notable Changes

    \n

    Ruby

    \n

    This release introduces native gem support for Ruby 3.4.

    \n

    This release ends support for Ruby 3.0, for which upstream support ended 2024-04-23.

    \n

    This release ships separate precompiled GNU and Musl gems for all linux platforms. Previously both GNU and Musl target systems could use and install the same gem, e.g., the platform gem for x86_64-linux. Now, however, the precompiled gem platforms would be x86_64-linux-gnu and x86_64-linux-musl. So long as you're on bundler >= 2.5.6 this should be seamless other than perhaps needing to update the platforms in your "Gemfile.lock".

    \n

    This release drops precompiled native platform gems for x86-linux and x86-mingw32. These platforms are still supported. Users on these platforms must install the "ruby platform" gem which requires a compiler toolchain. See Installing the ruby platform gem in the installation docs. (#3369, #3081)

    \n

    Improved

    \n
      \n
    • [CRuby] CSS and XPath queries are faster now that Node#xpath, Node#css, and related functions are using a faster XPathContext initialization process. We benchmarked a 1.9x improvement for a 6kb file. Big thanks to @​nwellnhof for helping with this one. (#3378, superseded by #3389) @​flavorjones
    • \n
    \n

    v1.17.2 / 2024-12-12

    \n

    Fixed

    \n
      \n
    • [JRuby] Fixed an issue where Node#dup when called with the new_parent_doc parameter was not decorating the node with the document's Node decorators. #3372 @​flavorjones
    • \n
    \n

    v1.17.1 / 2024-12-10

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • fd3ca2e version bump to v1.18.3
    • \n
    • a8c526a dep: update libxml2 to v2.13.6 (#3437)
    • \n
    • 0847cf8 ci: tired of waiting for gnome mirrors
    • \n
    • 11945c8 dep: update libxml2 to v2.13.6
    • \n
    • aa54fa5 version bump to v1.18.2
    • \n
    • 0fb5541 backport: fix(css-selector): default XML namespace should not be applied to w...
    • \n
    • 8ef2e91 ci: bump windows test images from "head" to "3.4"
    • \n
    • c10fd7a dev: so tired of psych not building on various things
    • \n
    • 8378749 fix(css-selector): default XML namespace is not applied to wildcard
    • \n
    • b112e18 prefactor: restructure css-to-xpath tests
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&previous-version=1.13.10&new-version=1.18.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/permitted.io/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d6b1b0407f1bc03b3422a338c57b8ba08f61c962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/nokogiri-1.18.3", + "sha": "cf9c65a4949bbd2c2e419923cffd2c3e7fa13c01", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/68-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-03-21T21:29:10Z", + "created_at": "2025-02-19T14:52:00Z", + "merge_commit_sha": "93d4af6ee2764be9b91c594ae7f09533aabb073c" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/68-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/68-networklist-org", + "title": "Bump nokogiri from 1.13.10 to 1.18.4", + "body": "Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.18.4.\n
    \nRelease notes\n

    Sourced from nokogiri's releases.

    \n
    \n

    v1.18.4 / 2025-03-14

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxslt is updated to v1.1.43 to address CVE-2025-24855 and CVE-2024-55549. See GHSA-mrxw-mxhj-p664 for more information.
    • \n
    \n\n
    8f2263cef9953ce09bd5293d76c9bbd3013d2f94d1cca67783dfe6635c529deb  nokogiri-1.18.4-aarch64-linux-gnu.gem\n4e231f8ba3128cfc2ef0cc0bdc807d7ce71fc62cb6a78216e817be8631fe6a96  nokogiri-1.18.4-aarch64-linux-musl.gem\n73902663b23b1123282b9c0b6d9654b1fb286dfee8d65cb1f6029087b7f0d037  nokogiri-1.18.4-arm64-darwin.gem\ncc2945e2c19560a61a97737e6bd3b329edb1f82ca204d46a18e5e98ad0a550a6  nokogiri-1.18.4-arm-linux-gnu.gem\n4fb7f44de0cd85abfa869e4cfb619410da174ebf9fbe26ae0caa65462b818bcb  nokogiri-1.18.4-arm-linux-musl.gem\nbb7820521c1bbae1d3e0092ff03b27a8e700912b37d80f962b7e4567947a64ac  nokogiri-1.18.4.gem\ncbc0bab72eb5a9573efa7b98351fdd44c609e8d4585456ca1be18db2b7764b64  nokogiri-1.18.4-java.gem\nbd567cb509eb75de8f27ca6ecaf4a38bf0563482188991f9bcccccac9c3b9a2f  nokogiri-1.18.4-x64-mingw-ucrt.gem\ne4776f58eea9b94d05caf8bf351e3c6aa1cce01edcc2ed530f3c302c13178965  nokogiri-1.18.4-x86_64-darwin.gem\nb1c6407b346b88704e97a342a80acd4755175324e624da34d0c5cfdc8d34191e  nokogiri-1.18.4-x86_64-linux-gnu.gem\nea7c0356a70f3d2d0d76315b533877013d20368d5c9f437c38e0bd462c4844dc  nokogiri-1.18.4-x86_64-linux-musl.gem\n
    \n

    v1.18.3 / 2025-02-18

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.6 to address CVE-2025-24928 and CVE-2024-56171. See GHSA-vvfq-8hwr-qm4m for more information.
    • \n
    \n\n
    cab20305133078a8f6b60cf96311b48319175038cc7772e5ec586ff624cb7838  nokogiri-1.18.3-aarch64-linux-gnu.gem\nacb256bb3213a180b1ed84a49c06d5d4c6c1da26f33bc9681f1fece4dab09a79  nokogiri-1.18.3-aarch64-linux-musl.gem\nce088965cd424b8e752d82087dcf017069d55791f157098ed1f671d966857610  nokogiri-1.18.3-arm64-darwin.gem\n37b73a55e0d1e8a058a24abb16868903e81cb4773049739c532b864f87236b1b  nokogiri-1.18.3-arm-linux-gnu.gem\n09407970cd13736cf87e975fae69c13e1178bab0313d07b35580ee4dd3650793  nokogiri-1.18.3-arm-linux-musl.gem\n6b9fc3b14fd0cedd21f6cad8cf565123ba7401e56b5d0aec180c23cdca28fd5a  nokogiri-1.18.3.gem\n236078c5f80ffc3d49c223fa98933d970543455403f9d672ca0aa5a6178a84fe  nokogiri-1.18.3-java.gem\n216be1cb454c4657fc64747e5ae32b2ab4015843183766f238e4f4a62fb1f6be  nokogiri-1.18.3-x64-mingw-ucrt.gem\nd729406bb5a7b1bbe7ed3c0922336dd2c46085ed444d6de2a0a4c33950a4edea  nokogiri-1.18.3-x86_64-darwin.gem\n3c7ad5cee39855ed9c746065f39b584b9fd2aaff61df02d0f85ba8d671bbe497  nokogiri-1.18.3-x86_64-linux-gnu.gem\n8aaecc22c0e5f12dac613e15f9a04059c3ec859d6f98f493cc831bd88fe8e731  nokogiri-1.18.3-x86_64-linux-musl.gem\n
    \n\n

    v1.18.2 / 2024-01-19

    \n

    Fixed

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from nokogiri's changelog.

    \n
    \n

    v1.18.4 / 2025-03-14

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxslt is updated to v1.1.43 to address CVE-2025-24855 and CVE-2024-55549. See GHSA-mrxw-mxhj-p664 for more information.
    • \n
    \n

    v1.18.3 / 2025-02-18

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated v2.13.6 to address CVE-2025-24928 and CVE-2024-56171. See GHSA-vvfq-8hwr-qm4m for more information.
    • \n
    \n

    v1.18.2 / 2024-01-19

    \n

    Fixed

    \n
      \n
    • When performing a CSS selector query, an XML document's root namespace declarations should not be applied to wildcard selectors ("*"). Fixes a bug introduced in v1.17.0. (#3411) @​flavorjones
    • \n
    \n

    v1.18.1 / 2024-12-29

    \n

    Fixed

    \n
      \n
    • [CRuby] XML::SAX::ParserContext keeps a reference to the input to avoid a potential use-after-free issue that's existed since v1.4.0 (2009). (#3395) @​flavorjones
    • \n
    \n

    v1.18.0 / 2024-12-25

    \n

    Notable Changes

    \n

    Ruby

    \n

    This release introduces native gem support for Ruby 3.4.

    \n

    This release ends support for Ruby 3.0, for which upstream support ended 2024-04-23.

    \n

    This release ships separate precompiled GNU and Musl gems for all linux platforms. Previously both GNU and Musl target systems could use and install the same gem, e.g., the platform gem for x86_64-linux. Now, however, the precompiled gem platforms would be x86_64-linux-gnu and x86_64-linux-musl. So long as you're on bundler >= 2.5.6 this should be seamless other than perhaps needing to update the platforms in your "Gemfile.lock".

    \n

    This release drops precompiled native platform gems for x86-linux and x86-mingw32. These platforms are still supported. Users on these platforms must install the "ruby platform" gem which requires a compiler toolchain. See Installing the ruby platform gem in the installation docs. (#3369, #3081)

    \n

    Improved

    \n
      \n
    • [CRuby] CSS and XPath queries are faster now that Node#xpath, Node#css, and related functions are using a faster XPathContext initialization process. We benchmarked a 1.9x improvement for a 6kb file. Big thanks to @​nwellnhof for helping with this one. (#3378, superseded by #3389) @​flavorjones
    • \n
    \n

    Dependencies

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 80edf1c version bump to v1.18.4
    • \n
    • 3c12e35 dep: update libxslt to 1.1.43 (v1.18.x branch) (#3467)
    • \n
    • 395c085 dep: update libxslt to 1.1.43
    • \n
    • 4125715 ci: tired of waiting for gnome mirrors
    • \n
    • 35faaa3 doc: update CHANGELOG with GHSA
    • \n
    • fd3ca2e version bump to v1.18.3
    • \n
    • a8c526a dep: update libxml2 to v2.13.6 (#3437)
    • \n
    • 0847cf8 ci: tired of waiting for gnome mirrors
    • \n
    • 11945c8 dep: update libxml2 to v2.13.6
    • \n
    • aa54fa5 version bump to v1.18.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&previous-version=1.13.10&new-version=1.18.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/permitted.io/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d6b1b0407f1bc03b3422a338c57b8ba08f61c962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/nokogiri-1.18.4", + "sha": "865bc6e7d7dfbbc6d08d1605bb37990c16dfafa0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "https://github.com/xc-link/68-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-22T02:37:37Z", + "created_at": "2025-03-21T21:29:08Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/68-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/68-networklist-org", + "title": "Bump nokogiri from 1.13.10 to 1.18.8", + "body": "Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.18.8.\n
    \nRelease notes\n

    Sourced from nokogiri's releases.

    \n
    \n

    v1.18.8 / 2025-04-21

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.8 to address CVE-2025-32414 and CVE-2025-32415. See GHSA-5w6v-399v-w3cc for more information.
    • \n
    \n\n
    36badd2eb281fca6214a5188e24a34399b15d89730639a068d12931e2adc210e  nokogiri-1.18.8-aarch64-linux-gnu.gem\n664e0f9a77a7122a66d6c03abba7641ca610769a4728db55ee1706a0838b78a2  nokogiri-1.18.8-aarch64-linux-musl.gem\n483b5b9fb33653f6f05cbe00d09ea315f268f0e707cfc809aa39b62993008212  nokogiri-1.18.8-arm64-darwin.gem\n17de01ca3adf9f8e187883ed73c672344d3dbb3c260f88ffa1008e8dc255a28e  nokogiri-1.18.8-arm-linux-gnu.gem\n6e6d7e71fc39572bd613a82d528cf54392c3de1ba5ce974f05c832b8187a040b  nokogiri-1.18.8-arm-linux-musl.gem\n8c7464875d9ca7f71080c24c0db7bcaa3940e8be3c6fc4bcebccf8b9a0016365  nokogiri-1.18.8.gem\n41002596960ff854198a20aaeb34cff0d445406d5ad85ba7ca9c3fd0c8f03de0  nokogiri-1.18.8-java.gem\n11ab0f76772c5f2d718fb253fca5b74c6ef7628b72bbf8deba6ab1ffc93344cf  nokogiri-1.18.8-x64-mingw-ucrt.gem\n024cdfe7d9ae3466bba6c06f348fb2a8395d9426b66a3c82f1961b907945cc0c  nokogiri-1.18.8-x86_64-darwin.gem\n4a747875db873d18a2985ee2c320a6070c4a414ad629da625fbc58d1a20e5ecc  nokogiri-1.18.8-x86_64-linux-gnu.gem\nddd735fba49475a395b9ea793bb6474e3a3125b89960339604d08a5397de1165  nokogiri-1.18.8-x86_64-linux-musl.gem\n
    \n

    v1.18.7 / 2025-03-31

    \n

    Dependencies

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.7, which is a bugfix release.
    • \n
    \n\n
    57a064ab5440814a69a0e040817bd8154adea68a30d2ff2b3aa515a6a06dbb5f  nokogiri-1.18.7-aarch64-linux-gnu.gem\n3e442dc5b69376e84288295fe37cbb890a21ad816a7e571e5e9967b3c1e30cd3  nokogiri-1.18.7-aarch64-linux-musl.gem\n083abb2e9ed2646860f6b481a981485a658c6064caafaa81bf1cda1bada2e9d5  nokogiri-1.18.7-arm64-darwin.gem\n337d9149deb5ae01022dff7c90f97bed81715fd586aacab0c5809ef933994c5e  nokogiri-1.18.7-arm-linux-gnu.gem\n97a26edcc975f780a0822aaf7f7d7427c561067c1c9ee56bd3542960f0c28a6e  nokogiri-1.18.7-arm-linux-musl.gem\n6b63ff5defe48f30d1d3b3122f65255ca91df2caf5378c6e0482ce73ff46fb31  nokogiri-1.18.7.gem\n2cb83666f35619ec59d24d831bf492e49cfe27b112c222330ee929737f42f2eb  nokogiri-1.18.7-java.gem\n681148fbc918aa5d54933d8b48aeb9462ab708d23409797ed750af961107f72b  nokogiri-1.18.7-x64-mingw-ucrt.gem\n081d1aa517454ba3415304e2ea51fe411d6a3a809490d0c4aa42799cada417b7  nokogiri-1.18.7-x86_64-darwin.gem\n3a0bf946eb2defde13d760f869b61bc8b0c18875afdd3cffa96543cfa3a18005  nokogiri-1.18.7-x86_64-linux-gnu.gem\n9d83f8ec1fc37a305fa835d7ee61a4f37899e6ccc6dcb05be6645fa9797605af  nokogiri-1.18.7-x86_64-linux-musl.gem\n
    \n

    v1.18.6 / 2025-03-24

    \n

    Fixed

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from nokogiri's changelog.

    \n
    \n

    v1.18.8 / 2025-04-21

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.8 to address CVE-2025-32414 and CVE-2025-32415. See GHSA-5w6v-399v-w3cc for more information.
    • \n
    \n

    v1.18.7 / 2025-03-31

    \n

    Dependencies

    \n
      \n
    • [CRuby] Vendored libxml2 is updated to v2.13.7, which is a bugfix release.
    • \n
    \n

    v1.18.6 / 2025-03-24

    \n

    Fixed

    \n
      \n
    • [JRuby] In HTML documents, Node#attribute now returns the correct attribute. This has been broken, and returning nil, since v1.17.0. (#3487) @​flavorjones
    • \n
    \n

    v1.18.5 / 2025-03-19

    \n

    Fixed

    \n\n

    v1.18.4 / 2025-03-14

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxslt is updated to v1.1.43 to address CVE-2025-24855 and CVE-2024-55549. See GHSA-mrxw-mxhj-p664 for more information.
    • \n
    \n

    v1.18.3 / 2025-02-18

    \n

    Security

    \n
      \n
    • [CRuby] Vendored libxml2 is updated v2.13.6 to address CVE-2025-24928 and CVE-2024-56171. See GHSA-vvfq-8hwr-qm4m for more information.
    • \n
    \n

    v1.18.2 / 2024-01-19

    \n

    Fixed

    \n
      \n
    • When performing a CSS selector query, an XML document's root namespace declarations should not be applied to wildcard selectors ("*"). Fixes a bug introduced in v1.17.0. (#3411) @​flavorjones
    • \n
    \n

    v1.18.1 / 2024-12-29

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 9187f4a version bump to v1.18.8
    • \n
    • 1deea04 dep: libxml2 to v2.13.8 (branch v1.18.x) (#3509)
    • \n
    • 6457fe6 dep: libxml2 to v2.13.8
    • \n
    • 13e8aa4 version bump to v1.18.7
    • \n
    • 605699d dep: bump libxml2 to 2.13.7 (v1.18.x backport) (#3495)
    • \n
    • 804e590 dep: bump libxml2 to 2.13.7
    • \n
    • 52bf15b dep(dev): drop Rubocop from JRuby deps
    • \n
    • 189769d version bump to v1.18.6
    • \n
    • de4982f fix(jruby): Node#attribute in HTML documents (v1.18.x) (#3492)
    • \n
    • 7d95b0f fix(jruby): Node#attribute in HTML documents
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&previous-version=1.13.10&new-version=1.18.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/permitted.io/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d6b1b0407f1bc03b3422a338c57b8ba08f61c962", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/nokogiri-1.18.8", + "sha": "ef73bb3b6015a3440f12bb933280b505fef15ed0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/68-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "https://github.com/xc-link/68-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-22T02:37:35Z", + "merge_commit_sha": "8530258c2c8f8b792dc4b6f39c3de6fee1e4657a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/LtePlatform/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/LtePlatform", + "title": "Bump System.Linq.Dynamic.Core from 1.0.7.6 to 1.6.0 in /Abp.EntityFramework", + "body": "Bumps [System.Linq.Dynamic.Core](https://github.com/zzzprojects/System.Linq.Dynamic.Core) from 1.0.7.6 to 1.6.0.\n
    \nRelease notes\n

    Sourced from System.Linq.Dynamic.Core's releases.

    \n
    \n

    v1.6.0

    \n

    No release notes provided.

    \n

    v1.6.0-preview-03

    \n

    No release notes provided.

    \n

    v1.6.0-preview-02

    \n

    No release notes provided.

    \n

    v1.6.0-preview-01

    \n

    No release notes provided.

    \n

    v1.5.1

    \n

    No release notes provided.

    \n

    v1.5.0

    \n

    No release notes provided.

    \n

    v1.4.9

    \n

    No release notes provided.

    \n

    v1.4.8

    \n

    No release notes provided.

    \n

    v1.4.7

    \n

    No release notes provided.

    \n

    v1.4.6

    \n

    No release notes provided.

    \n

    v1.4.5

    \n

    No release notes provided.

    \n

    v1.4.4

    \n

    No release notes provided.

    \n

    v1.4.3

    \n

    No release notes provided.

    \n

    v1.4.2

    \n

    No release notes provided.

    \n

    v1.4.1

    \n

    No release notes provided.

    \n

    v1.4.0

    \n

    No release notes provided.

    \n

    v1.3.14

    \n

    No release notes provided.

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from System.Linq.Dynamic.Core's changelog.

    \n
    \n

    v1.6.0 (26 January 2025)

    \n
      \n
    • #884 - By default the RestrictOrderByToPropertyOrField is now set to true in the ParsingConfig [feature] contributed by StefH
    • \n
    • #867 - CVE-2024-51417: System.Linq.Dynamic.Core allows remote access to properties on reflection types and static properties/fields [bug]
    • \n
    \n

    v1.6.0-preview-03 (25 January 2025)

    \n
      \n
    • #876 - Update and Fix SecurityTests [test] contributed by mariusz96
    • \n
    • #882 - ExpressionParser: add 2nd ctor with an extra non-optional parameter [feature] contributed by StefH
    • \n
    • #883 - Fix the usage of ParsingConfig in some methods in the DynamicQueryableExtensions class [bug] contributed by StefH
    • \n
    • #881 - ExpressionParser ctor in 1.5.0 not compatible with earlier versions [feature]
    • \n
    \n

    v1.6.0-preview-02 (24 January 2025)

    \n
      \n
    • #874 - Fix calling static properties or fields in non-static class [bug] contributed by StefH
    • \n
    • #875 - Add option to ParsingConfig to allow the Equals and ToString methods on object [feature] contributed by StefH
    • \n
    • #879 - Change internal usage from obsolete IDynamicLinkCustomTypeProvider to IDynamicLinqCustomTypeProvider [feature] contributed by StefH
    • \n
    • #873 - Accessing static property or field in normal class does not work [bug]
    • \n
    • #878 - ParsingConfig change Type of CustomTypeProvider to IDynamicLinqCustomTypeProvider in Version 1.6.0-preview-01 [feature]
    • \n
    \n

    v1.6.0-preview-01 (23 January 2025)

    \n
      \n
    • #864 - Use ParsingConfig.IsCaseSensitive setting in TextParser and KeywordsHelper [feature] contributed by StefH
    • \n
    • #865 - Add OrderBy NullPropagation tests [test] contributed by StefH
    • \n
    • #866 - Refactor KeywordsHelper, TypeFinder and update comments on ParsingConfig [refactor] contributed by StefH
    • \n
    • #870 - Fix CVE-2024-51417 [bug] contributed by StefH
    • \n
    • #773 - Parse exceptions with (nested) static classes [bug]
    • \n
    \n

    v1.5.1 (14 December 2024)

    \n
      \n
    • #859 - Add SelectMany extension method for Json [feature] contributed by StefH
    • \n
    • #860 - Add support for SequenceEqual [feature] contributed by StefH
    • \n
    • #861 - Fix calling Sum without any arguments [bug] contributed by StefH
    • \n
    • #862 - Use different PackageIds for SystemTextJson and NewtonsoftJson projects [feature] contributed by StefH
    • \n
    • #855 - Support for SequenceEqual [feature]
    • \n
    • #856 - Using Sum method without arguments throws exception [bug]
    • \n
    • #858 - SelectMany not work over JSON [bug]
    • \n
    \n

    v1.5.0 (07 December 2024)

    \n
      \n
    • #791 - Add Json support [feature] contributed by StefH
    • \n
    • #857 - RestrictOrderByToPropertyOrField [feature] contributed by StefH
    • \n
    • #789 - Add JSON support [feature]
    • \n
    \n

    v1.4.9 (16 November 2024)

    \n\n

    v1.4.8 (31 October 2024)

    \n
      \n
    • #851 - Throw ArgumentException when expression has invalid compare (e.g. string with int) [bug] contributed by StefH
    • \n
    • #849 - 1.4.7 Regression -- NullReferenceException from invalid expression instead of ArgumentException [bug]
    • \n
    \n

    v1.4.7 (26 October 2024)

    \n
      \n
    • #847 - Fixed String.Concat when types differ [bug] contributed by StefH
    • \n
    • #845 - String concatenations fails with System.ArgumentException during parsing [bug]
    • \n
    \n

    v1.4.6 (13 October 2024)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Linq.Dynamic.Core&package-manager=nuget&previous-version=1.0.7.6&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/LtePlatform/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "7c0b3895b3e561559f36498794e7fa0e247cd063", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/LtePlatform" + }, + "head": { + "ref": "dependabot/nuget/Abp.EntityFramework/System.Linq.Dynamic.Core-1.6.0", + "sha": "0302ab0058f9ea965cab78d945987551bf0d5974", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/LtePlatform" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/LtePlatform/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-27T18:49:40Z", + "merge_commit_sha": "76e0b19672f27355b3de8cea7b2e5880eac58c91" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/61-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/61-networklist-org", + "title": "build(deps): bump requests from 2.32.3 to 2.32.4 in /test/requirements", + "body": "Bumps [requests](https://github.com/psf/requests) from 2.32.3 to 2.32.4.\n
    \nRelease notes\n

    Sourced from requests's releases.

    \n
    \n

    v2.32.4

    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file. (#6965)
    • \n
    \n

    Improvements

    \n
      \n
    • Numerous documentation improvements
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for pypy 3.11 for Linux and macOS. (#6926)
    • \n
    • Dropped support for pypy 3.9 following its end of support. (#6926)
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from requests's changelog.

    \n
    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file.
    • \n
    \n

    Improvements

    \n
      \n
    • Numerous documentation improvements
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for pypy 3.11 for Linux and macOS.
    • \n
    • Dropped support for pypy 3.9 following its end of support.
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 021dc72 Polish up release tooling for last manual release
    • \n
    • 821770e Bump version and add release notes for v2.32.4
    • \n
    • 59f8aa2 Add netrc file search information to authentication documentation (#6876)
    • \n
    • 5b4b64c Add more tests to prevent regression of CVE 2024 47081
    • \n
    • 7bc4587 Add new test to check netrc auth leak (#6962)
    • \n
    • 96ba401 Only use hostname to do netrc lookup instead of netloc
    • \n
    • 7341690 Merge pull request #6951 from tswast/patch-1
    • \n
    • 6716d7c remove links
    • \n
    • a7e1c74 Update docs/conf.py
    • \n
    • c799b81 docs: fix dead links to kenreitz.org
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=requests&package-manager=pip&previous-version=2.32.3&new-version=2.32.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/nginx-proxy/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "0c4be4e90f0dd12f614240e40855de7d556796de", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "head": { + "ref": "dependabot/pip/test/requirements/requests-2.32.4", + "sha": "a0c203c39f59349c3963c869ab4607aca40939a2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "https://github.com/xc-link/61-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-03-26T11:28:02Z", + "created_at": "2025-06-10T10:31:43Z", + "merge_commit_sha": "46567b44669fd623b65d68fb56260b73e7f18f0a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/61-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/61-networklist-org", + "title": "build(deps): bump requests from 2.32.3 to 2.33.0 in /test/requirements", + "body": "Bumps [requests](https://github.com/psf/requests) from 2.32.3 to 2.33.0.\n
    \nRelease notes\n

    Sourced from requests's releases.

    \n
    \n

    v2.33.0

    \n

    2.33.0 (2026-03-25)

    \n

    Announcements

    \n
      \n
    • 📣 Requests is adding inline types. If you have a typed code base that uses Requests, please take a look at #7271. Give it a try, and report any gaps or feedback you may have in the issue. 📣
    • \n
    \n

    Security

    \n
      \n
    • CVE-2026-25645 requests.utils.extract_zipped_paths now extracts contents to a non-deterministic location to prevent malicious file replacement. This does not affect default usage of Requests, only applications calling the utility function directly.
    • \n
    \n

    Improvements

    \n
      \n
    • Migrated to a PEP 517 build system using setuptools. (#7012)
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixed an issue where an empty netrc entry could cause malformed authentication to be applied to Requests on Python 3.11+. (#7205)
    • \n
    \n

    Deprecations

    \n
      \n
    • Dropped support for Python 3.9 following its end of support. (#7196)
    • \n
    \n

    Documentation

    \n
      \n
    • Various typo fixes and doc improvements.
    • \n
    \n

    New Contributors

    \n\n

    Full Changelog: https://github.com/psf/requests/blob/main/HISTORY.md#2330-2026-03-25

    \n

    v2.32.5

    \n

    2.32.5 (2025-08-18)

    \n

    Bugfixes

    \n
      \n
    • The SSLContext caching feature originally introduced in 2.32.0 has created\na new class of issues in Requests that have had negative impact across a number\nof use cases. The Requests team has decided to revert this feature as long term\nmaintenance of it is proving to be unsustainable in its current iteration.
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for Python 3.14.
    • \n
    • Dropped support for Python 3.8 following its end of support.
    • \n
    \n

    v2.32.4

    \n

    2.32.4 (2025-06-10)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from requests's changelog.

    \n
    \n

    2.33.0 (2026-03-25)

    \n

    Announcements

    \n
      \n
    • 📣 Requests is adding inline types. If you have a typed code base that\nuses Requests, please take a look at #7271. Give it a try, and report\nany gaps or feedback you may have in the issue. 📣
    • \n
    \n

    Security

    \n
      \n
    • CVE-2026-25645 requests.utils.extract_zipped_paths now extracts\ncontents to a non-deterministic location to prevent malicious file\nreplacement. This does not affect default usage of Requests, only\napplications calling the utility function directly.
    • \n
    \n

    Improvements

    \n
      \n
    • Migrated to a PEP 517 build system using setuptools. (#7012)
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixed an issue where an empty netrc entry could cause\nmalformed authentication to be applied to Requests on\nPython 3.11+. (#7205)
    • \n
    \n

    Deprecations

    \n
      \n
    • Dropped support for Python 3.9 following its end of support. (#7196)
    • \n
    \n

    Documentation

    \n
      \n
    • Various typo fixes and doc improvements.
    • \n
    \n

    2.32.5 (2025-08-18)

    \n

    Bugfixes

    \n
      \n
    • The SSLContext caching feature originally introduced in 2.32.0 has created\na new class of issues in Requests that have had negative impact across a number\nof use cases. The Requests team has decided to revert this feature as long term\nmaintenance of it is proving to be unsustainable in its current iteration.
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for Python 3.14.
    • \n
    • Dropped support for Python 3.8 following its end of support.
    • \n
    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • bc04dfd v2.33.0
    • \n
    • 66d21cb Merge commit from fork
    • \n
    • 8b9bc8f Move badges to top of README (#7293)
    • \n
    • e331a28 Remove unused extraction call (#7292)
    • \n
    • 753fd08 docs: fix FAQ grammar in httplib2 example
    • \n
    • 774a0b8 docs(socks): same block as other sections
    • \n
    • 9c72a41 Bump github/codeql-action from 4.33.0 to 4.34.1
    • \n
    • ebf7190 Bump github/codeql-action from 4.32.0 to 4.33.0
    • \n
    • 0e4ae38 docs: exclude Response.is_permanent_redirect from API docs (#7244)
    • \n
    • d568f47 docs: clarify Quickstart POST example (#6960)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=requests&package-manager=pip&previous-version=2.32.3&new-version=2.33.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/61-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "0c4be4e90f0dd12f614240e40855de7d556796de", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "head": { + "ref": "dependabot/pip/test/requirements/requests-2.33.0", + "sha": "84fb2795cd9fbe19c1726873799a95683b553181", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "https://github.com/xc-link/61-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-03-26T11:27:59Z", + "merge_commit_sha": "37b9ee2a452cb1420a5d6fec2fb28d3c13a1cef3" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/61-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/61-networklist-org", + "title": "build(deps): bump pytest from 8.3.4 to 9.0.3 in /test/requirements", + "body": "Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.4 to 9.0.3.\n
    \nRelease notes\n

    Sourced from pytest's releases.

    \n
    \n

    9.0.3

    \n

    pytest 9.0.3 (2026-04-07)

    \n

    Bug fixes

    \n
      \n
    • \n

      #12444: Fixed pytest.approx which now correctly takes into account ~collections.abc.Mapping keys order to compare them.

      \n
    • \n
    • \n

      #13634: Blocking a conftest.py file using the -p no: option is now explicitly disallowed.

      \n

      Previously this resulted in an internal assertion failure during plugin loading.

      \n

      Pytest now raises a clear UsageError explaining that conftest files are not plugins and cannot be disabled via -p.

      \n
    • \n
    • \n

      #13734: Fixed crash when a test raises an exceptiongroup with __tracebackhide__ = True.

      \n
    • \n
    • \n

      #14195: Fixed an issue where non-string messages passed to unittest.TestCase.subTest() were not printed.

      \n
    • \n
    • \n

      #14343: Fixed use of insecure temporary directory (CVE-2025-71176).

      \n
    • \n
    \n

    Improved documentation

    \n
      \n
    • #13388: Clarified documentation for -p vs PYTEST_PLUGINS plugin loading and fixed an incorrect -p example.
    • \n
    • #13731: Clarified that capture fixtures (e.g. capsys and capfd) take precedence over the -s / --capture=no command-line options in Accessing captured output from a test function <accessing-captured-output>.
    • \n
    • #14088: Clarified that the default pytest_collection hook sets session.items before it calls pytest_collection_finish, not after.
    • \n
    • #14255: TOML integer log levels must be quoted: Updating reference documentation.
    • \n
    \n

    Contributor-facing changes

    \n
      \n
    • \n

      #12689: The test reports are now published to Codecov from GitHub Actions.\nThe test statistics is visible on the web interface.

      \n

      -- by aleguy02

      \n
    • \n
    \n

    9.0.2

    \n

    pytest 9.0.2 (2025-12-06)

    \n

    Bug fixes

    \n
      \n
    • \n

      #13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

      \n

      You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

      \n

      Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

      \n
    • \n
    • \n

      #13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

      \n
    • \n
    • \n

      #13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0.\nDue to its usage in the ecosystem, it is now restored to working order using a compatibility shim.\nIt will be deprecated in pytest 9.1 and removed in pytest 10.

      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=8.3.4&new-version=9.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/61-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "0c4be4e90f0dd12f614240e40855de7d556796de", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "head": { + "ref": "dependabot/pip/test/requirements/pytest-9.0.3", + "sha": "6c7c645de8af2f86bef330a754d501b828e5cf40", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/61-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "https://github.com/xc-link/61-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-04-13T23:56:08Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "title": "Bump vite from 5.4.2 to 5.4.14 in /client", + "body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.2 to 5.4.14.\n
    \nRelease notes\n

    Sourced from vite's releases.

    \n
    \n

    v5.4.14

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.13

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.12

    \n

    This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.11

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.10

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.9

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.8

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.7

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.6

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.5

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.4

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.3

    \n

    Please refer to CHANGELOG.md for details.

    \n

    plugin-legacy@5.4.3

    \n

    Please refer to CHANGELOG.md for details.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from vite's changelog.

    \n
    \n

    5.4.14 (2025-01-21)

    \n\n

    5.4.13 (2025-01-20)

    \n\n

    5.4.12 (2025-01-20)

    \n
      \n
    • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (9da4abc)
    • \n
    • fix!: default server.cors: false to disallow fetching from untrusted origins (dfea38f)
    • \n
    • fix: verify token for HMR WebSocket connection (b71a5c8)
    • \n
    • chore: add deps update changelog (ecd2375)
    • \n
    \n

    5.4.11 (2024-11-11)

    \n
      \n
    • fix(deps): update dependencies of postcss-modules (ceb15db), closes #18617
    • \n
    \n

    5.4.10 (2024-10-23)

    \n
      \n
    • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412
    • \n
    \n

    5.4.9 (2024-10-14)

    \n\n

    5.4.8 (2024-09-25)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • e7eb3c5 release: v5.4.14
    • \n
    • 7d1699c fix: allow CORS from loopback addresses by default (#19249)
    • \n
    • 9df6e6b fix: preview.allowedHosts with specific values was not respected (#19246)
    • \n
    • a1824c5 release: v5.4.13
    • \n
    • 5946215 fix: try parse server.origin URL (#19241)
    • \n
    • f428aa9 release: v5.4.12
    • \n
    • 9da4abc fix!: check host header to prevent DNS rebinding attacks and introduce `serve...
    • \n
    • b71a5c8 fix: verify token for HMR WebSocket connection
    • \n
    • dfea38f fix!: default server.cors: false to disallow fetching from untrusted origins
    • \n
    • ecd2375 chore: add deps update changelog
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=5.4.2&new-version=5.4.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/TP-Inicial-Laboratorio/network/alerts).\n\n
    ", + "base": { + "ref": "development", + "sha": "308e74db6e1fef6cab85ee1cc478ee6d79e28266", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/TP-Inicial-Laboratorio" + }, + "head": { + "ref": "dependabot/npm_and_yarn/client/vite-5.4.14", + "sha": "e23200694763901b0f3594cbea7ebf5e32540c6f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/TP-Inicial-Laboratorio" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-22T05:49:46Z", + "merge_commit_sha": "fffa948061ada050385f16f4ef1e082839d21848" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/21-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/21-networklist-org", + "title": "Bump serialize-javascript and mocha", + "body": "Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) to 6.0.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together.\n\nUpdates `serialize-javascript` from 6.0.0 to 6.0.2\n
    \nRelease notes\n

    Sourced from serialize-javascript's releases.

    \n
    \n

    v6.0.2

    \n
      \n
    • fix: serialize URL string contents to prevent XSS (#173) f27d65d
    • \n
    • Bump @​babel/traverse from 7.10.1 to 7.23.7 (#171) 02499c0
    • \n
    • docs: update readme with URL support (#146) 0d88527
    • \n
    • chore: update node version and lock file e2a3a91
    • \n
    • fix typo (#164) 5a1fa64
    • \n
    \n

    https://github.com/yahoo/serialize-javascript/compare/v6.0.1...v6.0.2

    \n

    v6.0.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/yahoo/serialize-javascript/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `mocha` from 9.1.2 to 11.1.0\n
    \nRelease notes\n

    Sourced from mocha's releases.

    \n
    \n

    v11.1.0

    \n

    11.1.0 (2025-01-02)

    \n

    🌟 Features

    \n\n

    v11.0.2

    \n

    11.0.2 (2024-12-09)

    \n

    🩹 Fixes

    \n
      \n
    • catch exceptions setting Error.stackTraceLimit (#5254) (259f8f8)
    • \n
    • error handling for unexpected numeric arguments passed to cli (#5263) (210d658)
    • \n
    \n

    📚 Documentation

    \n
      \n
    • correct outdated status: accepting prs link (#5268) (f729cd0)
    • \n
    • replace "New in" with "Since" in version annotations (#5262) (6f10d12)
    • \n
    \n

    v11.0.1

    \n

    11.0.1 (2024-12-02)

    \n

    🌟 Features

    \n\n

    📚 Documentation

    \n
      \n
    • fix examples for linkPartialObjects methods (#5255) (34e0e52)
    • \n
    \n

    v11.0.0 Prerelease

    \n

    11.0.0 (2024-11-11)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • adapt new engine range for Mocha 11 (#5216)
    • \n
    \n

    🌟 Features

    \n\n

    🩹 Fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from mocha's changelog.

    \n
    \n

    11.1.0 (2025-01-02)

    \n

    🌟 Features

    \n\n

    11.0.2 (2024-12-09)

    \n

    🩹 Fixes

    \n
      \n
    • catch exceptions setting Error.stackTraceLimit (#5254) (259f8f8)
    • \n
    • error handling for unexpected numeric arguments passed to cli (#5263) (210d658)
    • \n
    \n

    📚 Documentation

    \n
      \n
    • correct outdated status: accepting prs link (#5268) (f729cd0)
    • \n
    • replace "New in" with "Since" in version annotations (#5262) (6f10d12)
    • \n
    \n

    11.0.1 (2024-12-02)

    \n

    🌟 Features

    \n\n

    📚 Documentation

    \n
      \n
    • fix examples for linkPartialObjects methods (#5255) (34e0e52)
    • \n
    \n

    11.0.0 (2024-11-11)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • adapt new engine range for Mocha 11 (#5216)
    • \n
    \n

    🌟 Features

    \n\n

    🩹 Fixes

    \n\n

    📚 Documentation

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JavaScript-MD5/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "2c00da944e9f9ecc2348cf9ed26cd3808106aee2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/21-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-51b3ba2ceb", + "sha": "c11d77c0668db769f3fdebdf67c2017a70d9c26b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/21-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/21-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-20T02:09:33Z", + "merge_commit_sha": "e35ea14134e4754a9fcf5560d46413d11753aee1" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump golang.org/x/net from 0.0.0-20220624214902-1bab6f366d9e to 0.36.0 in /Orca_Puppet", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20220624214902-1bab6f366d9e to 0.36.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20220624214902-1bab6f366d9e&new-version=0.36.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Puppet/golang.org/x/net-0.36.0", + "sha": "f7a54ae088e4ca207d9593a430633a326ca1a28a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-12T23:01:08Z", + "merge_commit_sha": "e0c9863861a8721d379a9704642149d879fc3c78" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump golang.org/x/net from 0.22.0 to 0.36.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.22.0 to 0.36.0.\n
    \nCommits\n
      \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • cde1dda proxy, http/httpproxy: do not mismatch IPv6 zone ids against hosts
    • \n
    • fe7f039 publicsuffix: spruce up code gen and speed up PublicSuffix
    • \n
    • 459513d internal/http3: move more common stream processing to genericConn
    • \n
    • aad0180 http2: fix flakiness from t.Log when GOOS=js
    • \n
    • b73e574 http2: don't log expected errors from writing invalid trailers
    • \n
    • 5f45c77 internal/http3: make read-data tests usable for server handlers
    • \n
    • 43c2540 http2, internal/httpcommon: reject userinfo in :authority
    • \n
    • 1d78a08 http2, internal/httpcommon: factor out server header logic for h2/h3
    • \n
    • 0d7dc54 quic: add Conn.ConnectionState
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.22.0&new-version=0.36.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.36.0", + "sha": "b4d313206a43a8845e14ae4f0afd8f7cbd7bfba8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-16T21:49:29Z", + "created_at": "2025-03-13T00:25:41Z", + "merge_commit_sha": "a444ac51b26c09788c955e48b2da833686da27e0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump golang.org/x/crypto from 0.0.0-20220131195533-30dcbda58838 to 0.35.0 in /Orca_Master", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20220131195533-30dcbda58838 to 0.35.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20220131195533-30dcbda58838&new-version=0.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Master/golang.org/x/crypto-0.35.0", + "sha": "0d8321e98a5bb52ce57030d0f808cda4c9b88475", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-11-19T23:26:21Z", + "created_at": "2025-04-14T16:23:50Z", + "merge_commit_sha": "2bd1ec9e862d65a43e18507f6fd42f88af6e8b9e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump golang.org/x/crypto from 0.21.0 to 0.35.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.21.0 to 0.35.0.\n
    \nCommits\n
      \n
    • 7292932 ssh: limit the size of the internal packet queue while waiting for KEX
    • \n
    • f66f74b acme/autocert: check host policy before probing the cache
    • \n
    • b0784b7 x509roots/fallback: drop obsolete build constraint
    • \n
    • 911360c all: bump golang.org/x/crypto dependencies of asm generators
    • \n
    • 89ff08d all: upgrade go directive to at least 1.23.0 [generated]
    • \n
    • e47973b all: update certs for go1.24
    • \n
    • 9290511 go.mod: update golang.org/x dependencies
    • \n
    • fa5273e x509roots/fallback: update bundle
    • \n
    • a8ea4be ssh: add ServerConfig.PreAuthConnCallback, ServerPreAuthConn (banner) interface
    • \n
    • 71d3a4c acme: support challenges that require the ACME client to send a non-empty JSO...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.21.0&new-version=0.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.35.0", + "sha": "0c5a3915b80e18ef75b5bb0efdf981234ac210cc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-11-20T00:35:17Z", + "created_at": "2025-04-14T18:16:00Z", + "merge_commit_sha": "4942969026841c8887216fc84c2eaea5c167965f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump golang.org/x/net from 0.0.0-20211112202133-69e39bad7dc2 to 0.38.0 in /Orca_Master", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20211112202133-69e39bad7dc2 to 0.38.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20211112202133-69e39bad7dc2&new-version=0.38.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Master/golang.org/x/net-0.38.0", + "sha": "ac58431b32dcae78986918fab467f8e3efa6a9bd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-16T20:03:07Z", + "merge_commit_sha": "8b2936490c09abd6ea5d6e43c8482487ae2c7d4d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump golang.org/x/net from 0.22.0 to 0.38.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.22.0 to 0.38.0.\n
    \nCommits\n
      \n
    • e1fcd82 html: properly handle trailing solidus in unquoted attribute value in foreign...
    • \n
    • ebed060 internal/http3: fix build of tests with GOEXPERIMENT=nosynctest
    • \n
    • 1f1fa29 publicsuffix: regenerate table
    • \n
    • 1215081 http2: improve error when server sends HTTP/1
    • \n
    • 312450e html: ensure <search> tag closes <p> and update tests
    • \n
    • 09731f9 http2: improve handling of lost PING in Server
    • \n
    • 55989e2 http2/h2c: use ResponseController for hijacking connections
    • \n
    • 2914f46 websocket: re-recommend gorilla/websocket
    • \n
    • 99b3ae0 go.mod: update golang.org/x dependencies
    • \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.22.0&new-version=0.38.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.38.0", + "sha": "436117334aaa135ab47864c84516edf7c10b30a6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-16T21:49:27Z", + "merge_commit_sha": "cdde2806730c39b4f7d8349cc6de670fd4cd18ef" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump github.com/cloudflare/circl from 1.3.7 to 1.6.1", + "body": "Bumps [github.com/cloudflare/circl](https://github.com/cloudflare/circl) from 1.3.7 to 1.6.1.\n
    \nRelease notes\n

    Sourced from github.com/cloudflare/circl's releases.

    \n
    \n

    CIRCL v1.6.1

    \n
      \n
    • Fixes some point checks on the FourQ curve.
    • \n
    • Hybrid KEM fails on low-order points.
    • \n
    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/cloudflare/circl/compare/v1.6.0...v1.6.1

    \n

    CIRCL v1.6.0

    \n

    New!

    \n\n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/cloudflare/circl/compare/v1.5.0...v1.6.0

    \n

    CIRCL v1.5.0

    \n

    New: ML-DSA, Module-Lattice-based Digital Signature Algorithm.

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/cloudflare/circl/compare/v1.4.0...v1.5.0

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • c6d33e3 Release v1.6.1
    • \n
    • 0c3868e curve4q: Shared must fail with low order points.
    • \n
    • 9fd570d curve4q: Test showing DH does not fails on identity point.
    • \n
    • c988ceb fourq: Correctly unmarshalling point.
    • \n
    • ef2611d fourq: Test showing point unmarshal fails.
    • \n
    • 05eba44 fourq: Handle the case of Z=0 for IsOnCurve and IsEqual.
    • \n
    • eef0878 fourq: Test showing isEqual and IsOnCurve fail.
    • \n
    • 2298474 goldilocks; Handling points with z=0.
    • \n
    • 5a940a1 goldilocks: Test for IsEqual must fail with Z=0
    • \n
    • 48c3b6a ed25519: Fix isEqual to handle points with Z=0.
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/cloudflare/circl&package-manager=go_modules&previous-version=1.3.7&new-version=1.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/cloudflare/circl-1.6.1", + "sha": "fdce3a092f9610ee72e2c8d2ac1bcfb7db586998", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-10T21:24:24Z", + "merge_commit_sha": "b42889feaa0ecf97480fe33620d933680278363e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/21-networklist-org/pull/2", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/21-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "master", + "sha": "2c00da944e9f9ecc2348cf9ed26cd3808106aee2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/21-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "458013b15ae092b58ed36f7cb3d7313cbc2d542d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/21-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T17:08:12Z", + "merge_commit_sha": "16ebe65ad060833542e18961695632ac14633834" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/13-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/13-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "dev", + "sha": "9fc4f5c843b669c251f1da3c375f9228a97cca9d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/13-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "4700f5ac124ec7b7e32acbdc9b89530736fdd827", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/13-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-22T16:39:56Z", + "merge_commit_sha": "611faf10ca1d59c022391e1773dc44cf106b0916" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump golang.org/x/oauth2 from 0.18.0 to 0.27.0", + "body": "Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.18.0 to 0.27.0.\n
    \nCommits\n
      \n
    • 681b4d8 jws: split token into fixed number of parts
    • \n
    • 3f78298 all: upgrade go directive to at least 1.23.0 [generated]
    • \n
    • 109dabf endpoints: add links/provider for Discord
    • \n
    • ac571fa oauth2: fix docs for Config.DeviceAuth
    • \n
    • 314ee5b endpoints: add patreon endpoint
    • \n
    • b9c813b google: add warning about externally-provided credentials
    • \n
    • 49a531d all: make method and struct comments match the names
    • \n
    • 22134a4 README: don't recommend go get
    • \n
    • 3e64809 x/oauth2: add Token.ExpiresIn
    • \n
    • 16a9973 jwt: rename example to avoid vet error
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/oauth2&package-manager=go_modules&previous-version=0.18.0&new-version=0.27.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/oauth2-0.27.0", + "sha": "75df9c37283faf602a34caad519807dc58ef423a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-18T18:06:57Z", + "merge_commit_sha": "687731d8d02a81b090ee51b7c53439f757b44a51" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump golang.org/x/crypto from 0.0.0-20220131195533-30dcbda58838 to 0.45.0 in /Orca_Master", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20220131195533-30dcbda58838 to 0.45.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20220131195533-30dcbda58838&new-version=0.45.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Master/golang.org/x/crypto-0.45.0", + "sha": "b7e534e48efaa846e4180001deda74ee68266646", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-19T23:26:19Z", + "merge_commit_sha": "29aae54ac64f390d9bc00db302114b0470cf7d26" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump golang.org/x/crypto from 0.0.0-20220829220503-c86fa9a7ed90 to 0.45.0 in /Orca_Server", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20220829220503-c86fa9a7ed90 to 0.45.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20220829220503-c86fa9a7ed90&new-version=0.45.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Server/golang.org/x/crypto-0.45.0", + "sha": "239968417e3a790ec8f25be28ef0b52cc9f08c7b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-19T23:42:30Z", + "merge_commit_sha": "339ad2fb26b9f17564b35c650800e3abdcc635c2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump golang.org/x/crypto from 0.21.0 to 0.45.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.21.0 to 0.45.0.\n
    \nCommits\n
      \n
    • 4e0068c go.mod: update golang.org/x dependencies
    • \n
    • e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs
    • \n
    • f91f7a7 ssh/agent: prevent panic on malformed constraint
    • \n
    • 2df4153 acme/autocert: let automatic renewal work with short lifetime certs
    • \n
    • bcf6a84 acme: pass context to request
    • \n
    • b4f2b62 ssh: fix error message on unsupported cipher
    • \n
    • 79ec3a5 ssh: allow to bind to a hostname in remote forwarding
    • \n
    • 122a78f go.mod: update golang.org/x dependencies
    • \n
    • c0531f9 all: eliminate vet diagnostics
    • \n
    • 0997000 all: fix some comments
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.21.0&new-version=0.45.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/mergestat-lite/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.45.0", + "sha": "4214bcb887d51452900c9ad416c5f9198fc58073", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-20T00:35:15Z", + "merge_commit_sha": "ea7c1cdbf5c29568da5c3b6fa940aeb6839dd955" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/34-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/34-networklist-org", + "title": "Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 in /Orca_Server", + "body": "Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) from 1.9.0 to 1.9.1.\n
    \nRelease notes\n

    Sourced from github.com/sirupsen/logrus's releases.

    \n
    \n

    v1.9.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sirupsen/logrus/compare/v1.9.0...v1.9.1

    \n
    \n
    \n
    \nCommits\n
      \n
    • b30aa27 Merge pull request #1339 from xieyuschen/patch-1
    • \n
    • 6acd903 Merge pull request #1376 from ozfive/master
    • \n
    • 105e63f Merge pull request #1 from ashmckenzie/ashmckenzie/fix-writer-scanner
    • \n
    • c052ba6 Scan text in 64KB chunks
    • \n
    • e59b167 Merge pull request #1372 from tommyblue/syslog_different_loglevels
    • \n
    • 766cfec This commit fixes a potential denial of service vulnerability in logrus.Write...
    • \n
    • 70234da Add instructions to use different log levels for local and syslog
    • \n
    • a448f82 Merge pull request #1362 from FrancoisWagner/fix-data-race-in-hooks-test-pkg
    • \n
    • ff07b25 Fix data race in hooks.test package
    • \n
    • d8787af Use text when shows the logrus output
    • \n
    • See full diff in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/OrcaC2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8e11fd2cc52814bf308074c356f070e6a2fd7ee0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/Orca_Server/github.com/sirupsen/logrus-1.9.1", + "sha": "1ac786073d3d9f45e5952f8b196a3d8d0a2c5e01", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/34-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "https://github.com/xc-link/34-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-12-05T02:41:57Z", + "merge_commit_sha": "0bd7370386ebf391eb82399a34643361f9983f86" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/39-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/39-networklist-org", + "title": "chore(deps): bump github.com/go-git/go-git/v5 from 5.11.0 to 5.16.5", + "body": "Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.11.0 to 5.16.5.\n
    \nRelease notes\n

    Sourced from github.com/go-git/go-git/v5's releases.

    \n
    \n

    v5.16.5

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/go-git/go-git/compare/v5.16.4...v5.16.5

    \n

    v5.16.4

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/go-git/go-git/compare/v5.16.3...v5.16.4

    \n

    v5.16.3

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/go-git/go-git/compare/v5.16.2...v5.16.3

    \n

    v5.16.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/go-git/go-git/compare/v5.16.1...v5.16.2

    \n

    v5.16.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/go-git/go-git/compare/v5.16.0...v5.16.1

    \n

    v5.16.0

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 48a1ae0 Merge pull request #1836 from go-git/check-v5
    • \n
    • 42bdf1f storage: filesystem, Verify idx matches pack file
    • \n
    • 4146a56 plumbing: format/idxfile, Verify idxfile's checksum
    • \n
    • 63d78ec plumbing: format/packfile, Add new ErrMalformedPackFile
    • \n
    • 25f1624 Merge pull request #1800 from Ch00k/no-delete-untracked-v5
    • \n
    • 600fb13 git: worktree, Don't delete local untracked files when resetting worktree
    • \n
    • 390a569 Merge pull request #1746 from pjbgf/bump-go
    • \n
    • 61c8b85 build: Bump Go test versions to 1.23-1.25 (v5)
    • \n
    • e5a05ec Merge pull request #1744 from go-git/renovate/releases/v5.x-go-golang.org-x-c...
    • \n
    • 1495930 plumbing: Remove use of non-constant format strings
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/go-git/go-git/v5&package-manager=go_modules&previous-version=5.11.0&new-version=5.16.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/39-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5858dcafdee463ba29540ab75538666478c828dd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/go-git/go-git/v5-5.16.5", + "sha": "fefa2c28017a3cc871676e03be6fefe74d579f0a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/39-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "https://github.com/xc-link/39-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-10T00:31:08Z", + "merge_commit_sha": "567d2fd941e2eb8e6a8be4cfa4ffbc73389e845f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "Bump elliptic from 6.4.1 to 6.6.1", + "body": "Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.1 to 6.6.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=elliptic&package-manager=npm_and_yarn&previous-version=6.4.1&new-version=6.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "sha": "7aa6a7a07fe7bddba9fe84a1ad755f4980594275", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-13T06:08:28Z", + "merge_commit_sha": "8d07aa5c64d3e43e3d74a555b65c88cd131d5fb5" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/scatter-demo-eosjs2/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/scatter-demo-eosjs2", + "title": "Bump elliptic from 6.4.1 to 6.6.1", + "body": "Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.1 to 6.6.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=elliptic&package-manager=npm_and_yarn&previous-version=6.4.1&new-version=6.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/scatter-demo-eosjs2/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "1b1f96ee17c28822a1b6143a4bed61b14a59bc52", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/scatter-demo-eosjs2" + }, + "head": { + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "sha": "f84a93fc5eb2309604b0d91b837f722b0e474a32", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/scatter-demo-eosjs2" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/scatter-demo-eosjs2/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-13T06:08:30Z", + "merge_commit_sha": "23b3f6c37eaf0fa755ce69888425925a6b5cd9f8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump cross-spawn from 6.0.5 to 6.0.6", + "body": "Bumps [cross-spawn](https://github.com/moxystudio/node-cross-spawn) from 6.0.5 to 6.0.6.\n
    \nChangelog\n

    Sourced from cross-spawn's changelog.

    \n
    \n

    6.0.6 (2024-11-18)

    \n

    Bug Fixes

    \n\n

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cross-spawn&package-manager=npm_and_yarn&previous-version=6.0.5&new-version=6.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/cross-spawn-6.0.6", + "sha": "167507385393bef121227b023b54c732d1c6c4f5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:12Z", + "merge_commit_sha": "5e6a30184af4df5f10395af55bc0e9d3e0265d30" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump path-to-regexp and express", + "body": "Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.\nUpdates `path-to-regexp` from 0.1.7 to 0.1.12\n
    \nRelease notes\n

    Sourced from path-to-regexp's releases.

    \n
    \n

    Fix backtracking (again)

    \n

    Fixed

    \n\n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.11...v0.1.12

    \n

    Error on bad input

    \n

    Changed

    \n
      \n
    • Add error on bad input values 8f09549
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.10...v0.1.11

    \n

    Backtrack protection

    \n

    Fixed

    \n
      \n
    • Add backtrack protection to parameters 29b96b4\n
        \n
      • This will break some edge cases but should improve performance
      • \n
      \n
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.9...v0.1.10

    \n

    Support non-lookahead regex output

    \n

    Added

    \n
      \n
    • Allow a non-lookahead regex (#312) c4272e4
    • \n
    \n

    https://github.com/component/path-to-regexp/compare/v0.1.8...v0.1.9

    \n

    Support named matching groups in RegExp

    \n

    Added

    \n
      \n
    • Add support for named matching groups (#301) 114f62d
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.7...v0.1.8

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `express` from 4.16.4 to 4.21.2\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-6bc014718a", + "sha": "58f612634f6b54cbd5edd6a6fbd695ba22484dfc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:18Z", + "merge_commit_sha": "cc0a62627bcc00e03bfb97677598bb4659786417" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump cookie and express", + "body": "Bumps [cookie](https://github.com/jshttp/cookie) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.\nUpdates `cookie` from 0.3.1 to 0.7.1\n
    \nRelease notes\n

    Sourced from cookie's releases.

    \n
    \n

    0.7.1

    \n

    Fixed

    \n
      \n
    • Allow leading dot for domain (#174)\n
        \n
      • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
      • \n
      \n
    • \n
    • Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
    • \n
    \n

    https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1

    \n

    0.7.0

    \n\n

    https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0

    \n

    0.6.0

    \n
      \n
    • Add partitioned option
    • \n
    \n

    0.5.0

    \n
      \n
    • Add priority option
    • \n
    • Fix expires option to reject invalid dates
    • \n
    • pref: improve default decode speed
    • \n
    • pref: remove slow string split in parse
    • \n
    \n

    0.4.2

    \n
      \n
    • pref: read value only when assigning in parse
    • \n
    • pref: remove unnecessary regexp in parse
    • \n
    \n

    0.4.1

    \n
      \n
    • Fix maxAge option to reject invalid values
    • \n
    \n

    0.4.0

    \n
      \n
    • Add SameSite=None support
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.

    \n
    \n
    \n\nUpdates `express` from 4.16.4 to 4.21.2\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-d74e9e8b49", + "sha": "7990b544f7fb0e8481a1f87143289d57af7c0ccd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:19Z", + "merge_commit_sha": "35d668adb35fa3c0a086b6ed0353c206d015e41d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump http-proxy-middleware and webpack-dev-server", + "body": "Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) to 2.0.7 and updates ancestor dependency [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies need to be updated together.\n\nUpdates `http-proxy-middleware` from 0.19.1 to 2.0.7\n
    \nRelease notes\n

    Sourced from http-proxy-middleware's releases.

    \n
    \n

    v2.0.7

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7

    \n

    v2.0.7-beta.1

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7-beta.0...v2.0.7-beta.1

    \n

    v2.0.7-beta.0

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7-beta.0

    \n

    v2.0.6

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.5...v2.0.6

    \n

    v2.0.5

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.4...v2.0.5

    \n

    v2.0.4

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.3...v2.0.4

    \n

    v2.0.3

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.2...v2.0.3

    \n

    v2.0.2

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from http-proxy-middleware's changelog.

    \n
    \n

    v2.0.7

    \n
      \n
    • ci(github actions): add publish.yml
    • \n
    • fix(filter): handle errors
    • \n
    \n

    v2.0.6

    \n
      \n
    • fix(proxyReqWs): catch socket errors (#763)
    • \n
    \n

    v2.0.5

    \n
      \n
    • fix(error handler): add default handler to econnreset (#759)
    • \n
    \n

    v2.0.4

    \n
      \n
    • fix(fix-request-body): improve content type check (#725) (kevinxh)
    • \n
    \n

    v2.0.3

    \n
      \n
    • feat(package): optional @​types/express peer dependency (#707)
    • \n
    \n

    v2.0.2

    \n
      \n
    • chore(deps): update @​types/http-proxy to 1.17.8 (#701)
    • \n
    • fix(fixRequestBody): fix request body for empty JSON object requests (#640) (mhassan1)
    • \n
    • fix(types): fix type regression (#700)
    • \n
    \n

    v2.0.1

    \n\n

    v2.0.0

    \n
      \n
    • chore(package): drop node 10 [BREAKING CHANGE] (#577)
    • \n
    \n

    v1.3.1

    \n
      \n
    • fix(fix-request-body): make sure the content-type exists (#578) (oufeng)
    • \n
    \n

    v1.3.0

    \n
      \n
    • docs(response interceptor): align with nodejs default utf8 (#567)
    • \n
    • feat: try to proxy body even after body-parser middleware (#492) (midgleyc)
    • \n
    \n

    v1.2.1

    \n
      \n
    • fix(response interceptor): proxy original response headers (#563)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1e92339 ci(github-actions): fix npm tag
    • \n
    • 90afb7c chore(package): v2.0.7
    • \n
    • 0b4274e fix(filter): handle errors
    • \n
    • 1bd6dd5 ci(github actions): add publish.yml
    • \n
    • c08cb1e chore(package): v2.0.6 (#764)
    • \n
    • 3f48d50 fix(proxyReqWs): catch socket errors
    • \n
    • f64c994 chore(package): v2.0.5
    • \n
    • bd15913 fix(error handler): add default handler to econnreset
    • \n
    • 4baae76 chore(package): v2.0.4 (#729)
    • \n
    • 68bc6d7 fix(fix-request-body): improve content type check (#725)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\nUpdates `webpack-dev-server` from 3.2.1 to 5.2.0\n
    \nRelease notes\n

    Sourced from webpack-dev-server's releases.

    \n
    \n

    v5.2.0

    \n

    5.2.0 (2024-12-11)

    \n

    Features

    \n
      \n
    • added getClientEntry and getClientHotEntry methods to get clients entries (dc642a8)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • speed up initial client bundling (145b5d0)
    • \n
    \n

    v5.1.0

    \n

    5.1.0 (2024-09-03)

    \n

    Features

    \n
      \n
    • add visual progress indicators (a8f40b7)
    • \n
    • added the app option to be Function (by default only with connect compatibility frameworks) (3096148)
    • \n
    • allow the server option to be Function (#5275) (02a1c6d)
    • \n
    • http2 support for connect and connect compatibility frameworks which support HTTP2 (#5267) (6509a3f)
    • \n
    \n

    Bug Fixes

    \n\n

    v5.0.4

    \n

    5.0.4 (2024-03-19)

    \n

    Bug Fixes

    \n\n

    v5.0.3

    \n

    5.0.3 (2024-03-12)

    \n

    Bug Fixes

    \n\n

    v5.0.2

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from webpack-dev-server's changelog.

    \n
    \n

    5.2.0 (2024-12-11)

    \n

    Features

    \n
      \n
    • added getClientEntry and getClientHotEntry methods to get clients entries (dc642a8)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • speed up initial client bundling (145b5d0)
    • \n
    \n

    5.1.0 (2024-09-03)

    \n

    Features

    \n
      \n
    • add visual progress indicators (a8f40b7)
    • \n
    • added the app option to be Function (by default only with connect compatibility frameworks) (3096148)
    • \n
    • allow the server option to be Function (#5275) (02a1c6d)
    • \n
    • http2 support for connect and connect compatibility frameworks which support HTTP2 (#5267) (6509a3f)
    • \n
    \n

    Bug Fixes

    \n\n

    5.0.4 (2024-03-19)

    \n

    Bug Fixes

    \n\n

    5.0.3 (2024-03-12)

    \n

    Bug Fixes

    \n\n

    5.0.2 (2024-02-16)

    \n

    Bug Fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • bcb3725 chore(release): 5.2.0
    • \n
    • 2a1cbc6 chore: fix security (#5379)
    • \n
    • b74fc4c chore(deps): bump the dependencies group across 1 directory with 7 updates (#...
    • \n
    • 145b5d0 fix: speed up initial client bundling
    • \n
    • b1e549f chore(deps-dev): bump the dependencies group across 1 directory with 8 update...
    • \n
    • 844eaf8 chore(deps): types (#5370)
    • \n
    • 12913bb chore(deps-dev): bump the dependencies group with 4 updates (#5359)
    • \n
    • f942a5d chore(deps): bump the dependencies group across 1 directory with 7 updates (#...
    • \n
    • 94a2443 chore(deps): bump the dependencies group across 1 directory with 9 updates (#...
    • \n
    • a11d81f chore(deps): update (#5347)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-d19165ab05", + "sha": "f807e79bc5a4d4fd1622ded599b14c8b45b3de92", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:21Z", + "merge_commit_sha": "d803fc181c6801bb68420c2860aec984db655278" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump serve-static and express", + "body": "Bumps [serve-static](https://github.com/expressjs/serve-static) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.\nUpdates `serve-static` from 1.13.2 to 1.16.2\n
    \nRelease notes\n

    Sourced from serve-static's releases.

    \n
    \n

    v1.16.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/serve-static/compare/v1.16.1...v1.16.2

    \n

    v1.16.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/serve-static/compare/1.16.0...v1.16.1

    \n

    1.16.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/serve-static/compare/v1.15.0...1.16.0

    \n

    1.15.0

    \n
      \n
    • deps: send@0.18.0\n
        \n
      • Fix emitted 416 error missing headers property
      • \n
      • Limit the headers removed for 304 response
      • \n
      • deps: depd@2.0.0
      • \n
      • deps: destroy@1.2.0
      • \n
      • deps: http-errors@2.0.0
      • \n
      • deps: on-finished@2.4.1
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    \n

    1.14.2

    \n
      \n
    • deps: send@0.17.2\n
        \n
      • deps: http-errors@1.8.1
      • \n
      • deps: ms@2.1.3
      • \n
      • pref: ignore empty http tokens
      • \n
      \n
    • \n
    \n

    1.14.1

    \n
      \n
    • Set stricter CSP header in redirect response
    • \n
    • deps: send@0.17.1\n
        \n
      • deps: range-parser@~1.2.1
      • \n
      \n
    • \n
    \n

    1.14.0

    \n
      \n
    • deps: parseurl@~1.3.3
    • \n
    • deps: send@0.17.0
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from serve-static's changelog.

    \n
    \n

    1.16.2 / 2024-09-11

    \n
      \n
    • deps: encodeurl@~2.0.0
    • \n
    \n

    1.16.1 / 2024-09-11

    \n
      \n
    • deps: send@0.19.0
    • \n
    \n

    1.16.0 / 2024-09-10

    \n
      \n
    • Remove link renderization in html while redirecting
    • \n
    \n

    1.15.0 / 2022-03-24

    \n
      \n
    • deps: send@0.18.0\n
        \n
      • Fix emitted 416 error missing headers property
      • \n
      • Limit the headers removed for 304 response
      • \n
      • deps: depd@2.0.0
      • \n
      • deps: destroy@1.2.0
      • \n
      • deps: http-errors@2.0.0
      • \n
      • deps: on-finished@2.4.1
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    \n

    1.14.2 / 2021-12-15

    \n
      \n
    • deps: send@0.17.2\n
        \n
      • deps: http-errors@1.8.1
      • \n
      • deps: ms@2.1.3
      • \n
      • pref: ignore empty http tokens
      • \n
      \n
    • \n
    \n

    1.14.1 / 2019-05-10

    \n
      \n
    • Set stricter CSP header in redirect response
    • \n
    • deps: send@0.17.1\n
        \n
      • deps: range-parser@~1.2.1
      • \n
      \n
    • \n
    \n

    1.14.0 / 2019-05-07

    \n
      \n
    • deps: parseurl@~1.3.3
    • \n
    • deps: send@0.17.0\n
        \n
      • deps: http-errors@~1.7.2
      • \n
      • deps: mime@1.6.0
      • \n
      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by wesleytodd, a new releaser for serve-static since your current version.

    \n
    \n
    \n\nUpdates `express` from 4.16.4 to 4.21.2\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-63fbbd1def", + "sha": "e2b9e10900453fd5f401e4caf44c51c8e1605a2a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:23Z", + "merge_commit_sha": "b3a6a01544f2546bf66916f765d713d98b551459" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/smEncrypt/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/smEncrypt", + "title": "build(deps): bump send and express", + "body": "Bumps [send](https://github.com/pillarjs/send) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.\nUpdates `send` from 0.16.2 to 0.19.0\n
    \nRelease notes\n

    Sourced from send's releases.

    \n
    \n

    0.19.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/pillarjs/send/compare/0.18.0...0.19.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from send's changelog.

    \n
    \n

    0.19.0 / 2024-09-10

    \n
      \n
    • Remove link renderization in html while redirecting
    • \n
    \n

    0.18.0 / 2022-03-23

    \n
      \n
    • Fix emitted 416 error missing headers property
    • \n
    • Limit the headers removed for 304 response
    • \n
    • deps: depd@2.0.0\n
        \n
      • Replace internal eval usage with Function constructor
      • \n
      • Use instance methods on process to check for listeners
      • \n
      \n
    • \n
    • deps: destroy@1.2.0
    • \n
    • deps: http-errors@2.0.0\n
        \n
      • deps: depd@2.0.0
      • \n
      • deps: statuses@2.0.1
      • \n
      \n
    • \n
    • deps: on-finished@2.4.1
    • \n
    • deps: statuses@2.0.1
    • \n
    \n

    0.17.2 / 2021-12-11

    \n
      \n
    • pref: ignore empty http tokens
    • \n
    • deps: http-errors@1.8.1\n
        \n
      • deps: inherits@2.0.4
      • \n
      • deps: toidentifier@1.0.1
      • \n
      • deps: setprototypeof@1.2.0
      • \n
      \n
    • \n
    • deps: ms@2.1.3
    • \n
    \n

    0.17.1 / 2019-05-10

    \n
      \n
    • Set stricter CSP header in redirect & error responses
    • \n
    • deps: range-parser@~1.2.1
    • \n
    \n

    0.17.0 / 2019-05-03

    \n
      \n
    • deps: http-errors@~1.7.2\n
        \n
      • Set constructor name when possible
      • \n
      • Use toidentifier module to make class names
      • \n
      • deps: depd@~1.1.2
      • \n
      • deps: setprototypeof@1.1.1
      • \n
      • deps: statuses@'>= 1.5.0 < 2'
      • \n
      \n
    • \n
    • deps: mime@1.6.0\n
        \n
      • Add extensions for JPEG-2000 images
      • \n
      • Add new font/* types from IANA
      • \n
      • Add WASM mapping
      • \n
      • Update .bdoc to application/bdoc
      • \n
      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by ulisesgascon, a new releaser for send since your current version.

    \n
    \n
    \n\nUpdates `express` from 4.16.4 to 4.21.2\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/smEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "abd07f2559c86193be7508966de279ed870d47ba", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-db17b8dbde", + "sha": "b9da85ed5b02b95823770cce2e3a2660d3bdd62f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/smEncrypt" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/smEncrypt/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:45:24Z", + "merge_commit_sha": "249d622da9236b1be2f6035e5870741c64787c88" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/NetLicensing-Zapier/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/NetLicensing-Zapier", + "title": "Bump serialize-javascript and mocha", + "body": "Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) to 6.0.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together.\n\nUpdates `serialize-javascript` from 6.0.0 to 6.0.2\n
    \nRelease notes\n

    Sourced from serialize-javascript's releases.

    \n
    \n

    v6.0.2

    \n
      \n
    • fix: serialize URL string contents to prevent XSS (#173) f27d65d
    • \n
    • Bump @​babel/traverse from 7.10.1 to 7.23.7 (#171) 02499c0
    • \n
    • docs: update readme with URL support (#146) 0d88527
    • \n
    • chore: update node version and lock file e2a3a91
    • \n
    • fix typo (#164) 5a1fa64
    • \n
    \n

    https://github.com/yahoo/serialize-javascript/compare/v6.0.1...v6.0.2

    \n

    v6.0.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/yahoo/serialize-javascript/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `mocha` from 10.0.0 to 10.8.2\n
    \nRelease notes\n

    Sourced from mocha's releases.

    \n
    \n

    v10.8.2

    \n

    10.8.2 (2024-10-30)

    \n

    🩹 Fixes

    \n
      \n
    • support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
    • \n
    • test link in html reporter (#5224) (f054acc)
    • \n
    \n

    📚 Documentation

    \n
      \n
    • indicate 'exports' interface does not work in browsers (#5181) (14e640e)
    • \n
    \n

    🧹 Chores

    \n
      \n
    • fix docs builds by re-adding eleventy and ignoring gitignore again (#5240) (881e3b0)
    • \n
    \n

    🤖 Automation

    \n
      \n
    • deps: bump the github-actions group with 1 update (#5132) (e536ab2)
    • \n
    \n

    v10.8.1

    \n

    10.8.1 (2024-10-29)

    \n

    🩹 Fixes

    \n
      \n
    • handle case of invalid package.json with no explicit config (#5198) (f72bc17)
    • \n
    • Typos on mochajs.org (#5237) (d8ca270)
    • \n
    • use accurate test links in HTML reporter (#5228) (68803b6)
    • \n
    \n

    v10.8.0

    \n

    10.8.0 (2024-10-29)

    \n

    🌟 Features

    \n\n

    🩹 Fixes

    \n\n

    📚 Documentation

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from mocha's changelog.

    \n
    \n

    10.8.2 (2024-10-30)

    \n

    🩹 Fixes

    \n
      \n
    • support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
    • \n
    • test link in html reporter (#5224) (f054acc)
    • \n
    \n

    📚 Documentation

    \n
      \n
    • indicate 'exports' interface does not work in browsers (#5181) (14e640e)
    • \n
    \n

    🧹 Chores

    \n
      \n
    • fix docs builds by re-adding eleventy and ignoring gitignore again (#5240) (881e3b0)
    • \n
    \n

    🤖 Automation

    \n
      \n
    • deps: bump the github-actions group with 1 update (#5132) (e536ab2)
    • \n
    \n

    10.8.1 (2024-10-29)

    \n

    🩹 Fixes

    \n
      \n
    • handle case of invalid package.json with no explicit config (#5198) (f72bc17)
    • \n
    • Typos on mochajs.org (#5237) (d8ca270)
    • \n
    • use accurate test links in HTML reporter (#5228) (68803b6)
    • \n
    \n

    10.8.0 (2024-10-29)

    \n

    🌟 Features

    \n\n

    🩹 Fixes

    \n\n

    📚 Documentation

    \n\n

    🧹 Chores

    \n
      \n
    • fix npm scripts on windows (#5219) (1173da0)
    • \n
    • remove trailing whitespace in SECURITY.md (7563e59)
    • \n
    \n

    10.7.3 (2024-08-09)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 05097db chore(main): release 10.8.2 (#5239)
    • \n
    • 14e640e docs: indicate 'exports' interface does not work in browsers (#5181)
    • \n
    • 881e3b0 chore: fix docs builds by re-adding eleventy and ignoring gitignore again (#5...
    • \n
    • f054acc fix: test link in html reporter (#5224)
    • \n
    • e536ab2 build(deps): bump the github-actions group with 1 update (#5132)
    • \n
    • ba0fefe fix: support errors with circular dependencies in object values with --parall...
    • \n
    • f44f71b chore(main): release 10.8.1 (#5238)
    • \n
    • f72bc17 fix: handle case of invalid package.json with no explicit config (#5198)
    • \n
    • 68803b6 fix: use accurate test links in HTML reporter (#5228)
    • \n
    • d8ca270 fix: Typos on mochajs.org (#5237)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Zapier/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "a14183d6899d879147884bf4b2e46eb149c4b8d6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/NetLicensing-Zapier" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-456de2e4f1", + "sha": "8f6b25dbd42161b633511a2199d04740ea8fa01c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/NetLicensing-Zapier" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/NetLicensing-Zapier/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-20T02:09:35Z", + "merge_commit_sha": "4a7adcae22495fe28e63a996f47e7b4493082da9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/32-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/32-networklist-org", + "title": "Bump org.springframework:spring-web from 5.3.15 to 6.1.14", + "body": "Bumps [org.springframework:spring-web](https://github.com/spring-projects/spring-framework) from 5.3.15 to 6.1.14.\n
    \nRelease notes\n

    Sourced from org.springframework:spring-web's releases.

    \n
    \n

    v6.1.14

    \n

    :star: New Features

    \n
      \n
    • Use Locale.ROOT for locale neutral, case insensitive comparisons #33708
    • \n
    • Improve checks for relative paths in static resource handling #33689
    • \n
    • CorsUtils.isCorsRequest throws unhandled IllegalArgumentException and returns 500 Internal Server Error on malfomed Origin header #33682
    • \n
    • Skip processing of Java annotations in QualifierAnnotationAutowireCandidateResolver #33580
    • \n
    • Include argument name in MethodArgumentTypeMismatchException error message #33573
    • \n
    • Preserve coroutine context in WebClientExtensions #33548
    • \n
    • Blocking call detected in ConcurrentReferenceHashMap by BlockHound #33450
    • \n
    • Warning message about bean post-processing and eager injection may suggest the wrong cause #33184
    • \n
    \n

    :lady_beetle: Bug Fixes

    \n
      \n
    • DelegatingFilterProxy Causes Pinned Virtual Threads #33656
    • \n
    • Potential NPE from MethodParameter.getMethod() check in KotlinDelegate.hasDefaultValue() #33609
    • \n
    • Missing native image hints for JDK proxies created by JMS connection factories #33590
    • \n
    • AotTestExecutionListener should not be invoked for a @DisabledInAotMode test class #33589
    • \n
    • Use encoded resource path instead of input path validation in spring-webflux #33568
    • \n
    • org.springframework.util.ResourceUtils#toRelativeURL drops custom URLStreamHandler #33561
    • \n
    • Current observation not in scope during WebClient ExchangeFilterFunction execution #33559
    • \n
    • ZoneIdEditor throws wrong exception type for TypeConverterSupport #33545
    • \n
    • MimeMessageHelper addInline with ByteArrayResource fail with null filename #33527
    • \n
    • @Cacheable throws NullPointerException when RuntimeException is thrown inside annotated code #33492
    • \n
    • Path variable values missing in RedirectView when PathPattern are used #33422
    • \n
    • Reactive HttpComponentsClientHttpResponse ignores Expires cookie attribute #33157
    • \n
    \n

    :notebook_with_decorative_cover: Documentation

    \n
      \n
    • Update fallback.adoc #33721
    • \n
    • Update scheduling.adoc #33703
    • \n
    • Fix link in testing/support-jdbc.adoc #33686
    • \n
    • Adapt Javadoc note about log level of BeanPostProcessorChecker #33617
    • \n
    • Reference the spring-framework-petclinic repository wich uses AspectJ #33539
    • \n
    \n

    :hammer: Dependency Upgrades

    \n
      \n
    • Upgrade to Apache HttpClient 5.4 #33587
    • \n
    • Upgrade to Apache HttpCore Reactive 5.3 #33588
    • \n
    • Upgrade to Awaitility 4.2.2 #33604
    • \n
    • Upgrade to Micrometer 1.12.11 #33647
    • \n
    • Upgrade to Reactor 2023.0.11 #33637
    • \n
    \n

    :heart: Contributors

    \n

    Thank you to all the contributors who worked on this release:

    \n

    @​arey, @​asibross, @​boulce, @​drdpov, @​hosamaly, @​ilya40umov, @​izeye, and @​junhyeongkim2

    \n

    v6.1.13

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • ac5c8ad Release v6.1.14
    • \n
    • fde7116 Consistently skip processing of plain Java annotations
    • \n
    • 0a64591 Add checkstyle rule for toLowerCase/toUpperCase
    • \n
    • 5302e7a Update fallback.adoc
    • \n
    • cad02c1 Update Antora Spring UI to v0.4.17
    • \n
    • c765d03 Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • 11d4272 Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • 23656ae Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • feb6a5f Polishing
    • \n
    • a228eb8 Upgrade to Reactor 2023.0.11
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework:spring-web&package-manager=maven&previous-version=5.3.15&new-version=6.1.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Gateway/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "0954913b832a19d080b004ee1b2880afd8f61632", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/32-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.springframework-spring-web-6.1.14", + "sha": "1d7a369407a420cd270114104e96fe3ff3644859", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/32-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "https://github.com/xc-link/32-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-27T19:56:09Z", + "merge_commit_sha": "e920e04b21418ee260940bc35069267fa5e34dd9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/51-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/51-networklist-org", + "title": "Bump org.apache.commons:commons-lang3 from 3.10 to 3.18.0", + "body": "Bumps org.apache.commons:commons-lang3 from 3.10 to 3.18.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.10&new-version=3.18.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/java-testdata-generator/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "4e9842dc931e875210fb441d77c47a97191b3697", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/51-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.commons-commons-lang3-3.18.0", + "sha": "354ba46739c66972c05905f7b9a60482829e54de", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/51-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/51-networklist-org/labels/dependencies", + "https://github.com/xc-link/51-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-12T01:03:57Z", + "merge_commit_sha": "ef91d54356c84d516ed7946337769f329e3b57a0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/32-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/32-networklist-org", + "title": "Bump org.apache.logging.log4j:log4j-core from 2.17.1 to 2.25.3", + "body": "Bumps org.apache.logging.log4j:log4j-core from 2.17.1 to 2.25.3.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.logging.log4j:log4j-core&package-manager=maven&previous-version=2.17.1&new-version=2.25.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Gateway/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "0954913b832a19d080b004ee1b2880afd8f61632", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/32-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.logging.log4j-log4j-core-2.25.3", + "sha": "7f775d095a69f6dc54ef8ea41947f60cc741ac2b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/32-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "https://github.com/xc-link/32-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-12-19T23:07:31Z", + "merge_commit_sha": "0c131d9fa7324d9d010f915931ae73cf5fe3ee39" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/20-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/20-networklist-org", + "title": "chore(deps): bump undici from 5.28.2 to 5.28.5", + "body": "Bumps [undici](https://github.com/nodejs/undici) from 5.28.2 to 5.28.5.\n
    \nRelease notes\n

    Sourced from undici's releases.

    \n
    \n

    v5.28.5

    \n

    ⚠️ Security Release ⚠️

    \n

    Fixes CVE CVE-2025-22150 https://github.com/nodejs/undici/security/advisories/GHSA-c76h-2ccp-4975 (embargoed until 22-01-2025).

    \n

    Full Changelog: https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5

    \n

    v5.28.4

    \n

    :warning: Security Release :warning:

    \n\n

    Full Changelog: https://github.com/nodejs/undici/compare/v5.28.3...v5.28.4

    \n

    v5.28.3

    \n

    ⚠️ Security Release ⚠️

    \n

    Fixes:

    \n\n

    Full Changelog: https://github.com/nodejs/undici/compare/v5.28.2...v5.28.3

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=undici&package-manager=npm_and_yarn&previous-version=5.28.2&new-version=5.28.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/web3.js/network/alerts).\n\n
    ", + "base": { + "ref": "4.x", + "sha": "926044bb8c49436b0d35449c5e98f776c4a6a740", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/20-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/undici-5.28.5", + "sha": "5f641312247209136ec70d8751e125d784cd2c09", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/20-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/20-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-21T23:24:27Z", + "merge_commit_sha": "d0aef8b2beffd03973164201424e83f1029f2ff1" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/40-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/40-networklist-org", + "title": "Bump golang.org/x/crypto from 0.0.0-20200820211705-5c72a883971a to 0.35.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20200820211705-5c72a883971a to 0.35.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20200820211705-5c72a883971a&new-version=0.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/proxypool-internet/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "cc42f38389ebdfa18e190eacb0df277bdd772259", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/40-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.35.0", + "sha": "76295d433972eee35a0d168927d35f9969cf5ec7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/40-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "https://github.com/xc-link/40-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-11-19T23:11:25Z", + "created_at": "2025-04-14T15:56:39Z", + "merge_commit_sha": "376f589ed844829ed7d675805bd10a8e89559aeb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/20-networklist-org/pull/2", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/20-networklist-org", + "title": "Create codeql.yml", + "body": "## Description\r\n\r\nPlease include a summary of the changes and be sure to follow our [Contribution Guidelines](https://github.com/web3/web3.js/blob/4.x/.github/CONTRIBUTING.md).\r\n\r\n\r\n\r\n## Type of change\r\n\r\n\r\n\r\n- [ ] Bug fix (non-breaking change which fixes an issue)\r\n- [ ] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)\r\n\r\n## Checklist:\r\n\r\n- [ ] I have selected the correct base branch.\r\n- [ ] I have performed a self-review of my own code.\r\n- [ ] I have commented my code, particularly in hard-to-understand areas.\r\n- [ ] I have made corresponding changes to the documentation.\r\n- [ ] My changes generate no new warnings.\r\n- [ ] Any dependent changes have been merged and published in downstream modules.\r\n- [ ] I ran `npm run lint` with success and extended the tests and types if necessary.\r\n- [ ] I ran `npm run test:unit` with success.\r\n- [ ] I ran `npm run test:coverage` and my test cases cover all the lines and branches of the added code.\r\n- [ ] I ran `npm run build` and tested `dist/web3.min.js` in a browser.\r\n- [ ] I have tested my code on the live network.\r\n- [ ] I have checked the Deploy Preview and it looks correct.\r\n- [ ] I have updated the `CHANGELOG.md` file in the root folder.\r\n- [ ] I have linked Issue(s) with this PR in \"Linked Issues\" menu.\r\n", + "base": { + "ref": "4.x", + "sha": "926044bb8c49436b0d35449c5e98f776c4a6a740", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/20-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "22f1a4d9e3281437447b5b379aa5d2f108f3075d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/20-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-21T09:25:35Z", + "merge_commit_sha": "5e6d755e63d3ea296ff959e26ad1a9b42f822fb1" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/40-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/40-networklist-org", + "title": "Bump golang.org/x/crypto from 0.0.0-20200820211705-5c72a883971a to 0.45.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20200820211705-5c72a883971a to 0.45.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20200820211705-5c72a883971a&new-version=0.45.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/proxypool-internet/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "cc42f38389ebdfa18e190eacb0df277bdd772259", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/40-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.45.0", + "sha": "9924b989299b2af5c1c46851c784635e4afb72be", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/40-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "https://github.com/xc-link/40-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-19T23:11:23Z", + "merge_commit_sha": "969c171dc926254bccc89dac6ff9ed8ca430b8bb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/nginx-proxy-manager/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/nginx-proxy-manager", + "title": "Bump vite from 5.4.8 to 5.4.14 in /docs", + "body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.8 to 5.4.14.\n
    \nRelease notes\n

    Sourced from vite's releases.

    \n
    \n

    v5.4.14

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.13

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.12

    \n

    This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.11

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.10

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v5.4.9

    \n

    Please refer to CHANGELOG.md for details.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from vite's changelog.

    \n
    \n

    5.4.14 (2025-01-21)

    \n\n

    5.4.13 (2025-01-20)

    \n\n

    5.4.12 (2025-01-20)

    \n
      \n
    • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (9da4abc)
    • \n
    • fix!: default server.cors: false to disallow fetching from untrusted origins (dfea38f)
    • \n
    • fix: verify token for HMR WebSocket connection (b71a5c8)
    • \n
    • chore: add deps update changelog (ecd2375)
    • \n
    \n

    5.4.11 (2024-11-11)

    \n
      \n
    • fix(deps): update dependencies of postcss-modules (ceb15db), closes #18617
    • \n
    \n

    5.4.10 (2024-10-23)

    \n
      \n
    • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412
    • \n
    \n

    5.4.9 (2024-10-14)

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • e7eb3c5 release: v5.4.14
    • \n
    • 7d1699c fix: allow CORS from loopback addresses by default (#19249)
    • \n
    • 9df6e6b fix: preview.allowedHosts with specific values was not respected (#19246)
    • \n
    • a1824c5 release: v5.4.13
    • \n
    • 5946215 fix: try parse server.origin URL (#19241)
    • \n
    • f428aa9 release: v5.4.12
    • \n
    • 9da4abc fix!: check host header to prevent DNS rebinding attacks and introduce `serve...
    • \n
    • b71a5c8 fix: verify token for HMR WebSocket connection
    • \n
    • dfea38f fix!: default server.cors: false to disallow fetching from untrusted origins
    • \n
    • ecd2375 chore: add deps update changelog
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=5.4.8&new-version=5.4.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/nginx-proxy-manager/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "b3de76c945b087b9a585faff128ca655170f8ea1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/nginx-proxy-manager" + }, + "head": { + "ref": "dependabot/npm_and_yarn/docs/vite-5.4.14", + "sha": "95d54a2d5ac03cb86cea1ddb51a8cc896036e375", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/nginx-proxy-manager" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/nginx-proxy-manager/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-22T07:28:49Z", + "merge_commit_sha": "a109a995356467a60a512ab7f326c1466e76dfcd" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump elliptic from 6.5.4 to 6.6.1", + "body": "Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.4 to 6.6.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=elliptic&package-manager=npm_and_yarn&previous-version=6.5.4&new-version=6.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/elliptic-6.6.1", + "sha": "101597e0b8fd1c8793652f105936575cdafe396d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-15T07:43:24Z", + "merge_commit_sha": "ec743f43b25ca190f6a628750ef74d51e0e2e113" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump vue from 2.6.12 to 3.0.0", + "body": "Bumps [vue](https://github.com/vuejs/core) from 2.6.12 to 3.0.0.\n
    \nChangelog\n

    Sourced from vue's changelog.

    \n
    \n

    3.0.0 (2020-09-18)

    \n

    3.0.0-rc.13 (2020-09-18)

    \n

    Bug Fixes

    \n
      \n
    • hmr: make hmr working with class components (#2144) (422f05e)
    • \n
    • reactivity: avoid length mutating array methods causing infinite updates (#2138) (f316a33), closes #2137
    • \n
    • suspense: should discard unmount effects of invalidated pending branch (5bfcad1)
    • \n
    • types: component instance inference without props (#2145) (57bdaa2)
    • \n
    \n

    Code Refactoring

    \n\n

    Features

    \n
      \n
    • runtime-core: support using inject() inside props default functions (58c31e3)
    • \n
    • watch: support dot-delimited path in watch option (1c9a0b3)
    • \n
    \n

    BREAKING CHANGES

    \n
      \n
    • watch APIs now default to use flush: 'pre' instead of\nflush: 'post'. This change affects watch, watchEffect, the watch component option, and this.$watch. See (49bb447) for more details.
    • \n
    \n

    3.0.0-rc.12 (2020-09-16)

    \n

    Bug Fixes

    \n
      \n
    • reactivity: effect should only recursively self trigger with explicit options (3810de7), closes #2125
    • \n
    • runtime-core: ensure root stable fragments inherit elements for moving (bebd44f), closes #2134
    • \n
    • runtime-core: should still do full traverse of stable fragment children in dev + hmr (dd40ad8)
    • \n
    • runtime-core/async-component: fix error component when there are no error handlers (c7b4a37), closes #2129
    • \n
    • types/tsx: optional props from Mixin/Extends are treated as required (#2048) (89e9ab8)
    • \n
    \n

    Features

    \n
      \n
    • compiler-sfc: additionalData support for css preprocessors (#2126) (066d514)
    • \n
    \n

    3.0.0-rc.11 (2020-09-15)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vue&package-manager=npm_and_yarn&previous-version=2.6.12&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/vue-3.0.0", + "sha": "dea8abe441b4c5cfb448b655051607d81a2f5b8a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:08:16Z", + "merge_commit_sha": "2f3c257107105e2443773027e99bd6fde1253602" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump cross-spawn and cross-env", + "body": "Bumps [cross-spawn](https://github.com/moxystudio/node-cross-spawn) to 7.0.6 and updates ancestor dependency [cross-env](https://github.com/kentcdodds/cross-env). These dependencies need to be updated together.\n\nUpdates `cross-spawn` from 7.0.3 to 7.0.6\n
    \nChangelog\n

    Sourced from cross-spawn's changelog.

    \n
    \n

    7.0.6 (2024-11-18)

    \n

    Bug Fixes

    \n
      \n
    • update cross-spawn version to 7.0.5 in package-lock.json (f700743)
    • \n
    \n

    7.0.5 (2024-11-07)

    \n

    Bug Fixes

    \n
      \n
    • fix escaping bug introduced by backtracking (640d391)
    • \n
    \n

    7.0.4 (2024-11-07)

    \n

    Bug Fixes

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • 77cd97f chore(release): 7.0.6
    • \n
    • 6717de4 chore: upgrade standard-version
    • \n
    • f700743 fix: update cross-spawn version to 7.0.5 in package-lock.json
    • \n
    • 9a7e3b2 chore: fix build status badge
    • \n
    • 0852683 chore(release): 7.0.5
    • \n
    • 640d391 fix: fix escaping bug introduced by backtracking
    • \n
    • bff0c87 chore: remove codecov
    • \n
    • a7c6abc chore: replace travis with github workflows
    • \n
    • 9b9246e chore(release): 7.0.4
    • \n
    • 5ff3a07 fix: disable regexp backtracking (#160)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\nUpdates `cross-env` from 3.2.4 to 7.0.3\n
    \nRelease notes\n

    Sourced from cross-env's releases.

    \n
    \n

    v7.0.3

    \n

    7.0.3 (2020-12-01)

    \n

    Bug Fixes

    \n
      \n
    • add maintenance mode notice (fe80c84)
    • \n
    \n

    v7.0.2

    \n

    7.0.2 (2020-03-05)

    \n

    Reverts

    \n\n

    v7.0.1

    \n

    7.0.1 (2020-03-03)

    \n

    Bug Fixes

    \n\n

    v7.0.0

    \n

    7.0.0 (2020-01-25)

    \n

    Features

    \n\n

    BREAKING CHANGES

    \n
      \n
    • Drop Node 8 support
    • \n
    \n

    v6.0.3

    \n

    \n

    6.0.3 (2019-10-02)

    \n

    Bug Fixes

    \n
      \n
    • do not compile anything (67f21c3)
    • \n
    \n

    v6.0.2

    \n

    \n

    6.0.2 (2019-10-01)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-80abc9c957", + "sha": "612df7ea35a2651cc1fef94c8d166eaba7c8f527", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:08:17Z", + "merge_commit_sha": "decd30761f8eae78ed43ffbbe081ed9db1b1d284" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump nanoid from 3.3.4 to 3.3.8", + "body": "Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.4 to 3.3.8.\n
    \nChangelog\n

    Sourced from nanoid's changelog.

    \n
    \n

    3.3.8

    \n
      \n
    • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).
    • \n
    \n

    3.3.7

    \n
      \n
    • Fixed node16 TypeScript support (by Saadi Myftija).
    • \n
    \n

    3.3.6

    \n
      \n
    • Fixed package.
    • \n
    \n

    3.3.5

    \n
      \n
    • Backport funding information.
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nanoid&package-manager=npm_and_yarn&previous-version=3.3.4&new-version=3.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/nanoid-3.3.8", + "sha": "58909270ecb8f720c2806058719057d6fc18038c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:08:21Z", + "merge_commit_sha": "64b7c51da3911fa467fb3a6f7debe0cc667cb56b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump path-to-regexp and express", + "body": "Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together.\nUpdates `path-to-regexp` from 0.1.7 to 0.1.12\n
    \nRelease notes\n

    Sourced from path-to-regexp's releases.

    \n
    \n

    Fix backtracking (again)

    \n

    Fixed

    \n\n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.11...v0.1.12

    \n

    Error on bad input

    \n

    Changed

    \n
      \n
    • Add error on bad input values 8f09549
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.10...v0.1.11

    \n

    Backtrack protection

    \n

    Fixed

    \n
      \n
    • Add backtrack protection to parameters 29b96b4\n
        \n
      • This will break some edge cases but should improve performance
      • \n
      \n
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.9...v0.1.10

    \n

    Support non-lookahead regex output

    \n

    Added

    \n
      \n
    • Allow a non-lookahead regex (#312) c4272e4
    • \n
    \n

    https://github.com/component/path-to-regexp/compare/v0.1.8...v0.1.9

    \n

    Support named matching groups in RegExp

    \n

    Added

    \n
      \n
    • Add support for named matching groups (#301) 114f62d
    • \n
    \n

    https://github.com/pillarjs/path-to-regexp/compare/v0.1.7...v0.1.8

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\nUpdates `express` from 4.18.2 to 4.21.2\n
    \nRelease notes\n

    Sourced from express's releases.

    \n
    \n

    4.21.2

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2

    \n

    4.21.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1

    \n

    4.21.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

    \n

    4.20.0

    \n

    What's Changed

    \n

    Important

    \n
      \n
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    \n

    Other Changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from express's changelog.

    \n
    \n

    4.21.2 / 2024-11-06

    \n
      \n
    • deps: path-to-regexp@0.1.12\n
        \n
      • Fix backtracking protection
      • \n
      \n
    • \n
    • deps: path-to-regexp@0.1.11\n
        \n
      • Throws an error on invalid path values
      • \n
      \n
    • \n
    \n

    4.21.1 / 2024-10-08

    \n\n

    4.21.0 / 2024-09-11

    \n
      \n
    • Deprecate res.location("back") and res.redirect("back") magic string
    • \n
    • deps: serve-static@1.16.2\n
        \n
      • includes send@0.19.0
      • \n
      \n
    • \n
    • deps: finalhandler@1.3.1
    • \n
    • deps: qs@6.13.0
    • \n
    \n

    4.20.0 / 2024-09-10

    \n
      \n
    • deps: serve-static@0.16.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: send@0.19.0\n
        \n
      • Remove link renderization in html while redirecting
      • \n
      \n
    • \n
    • deps: body-parser@0.6.0\n
        \n
      • add depth option to customize the depth level in the parser
      • \n
      • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
      • \n
      \n
    • \n
    • Remove link renderization in html while using res.redirect
    • \n
    • deps: path-to-regexp@0.1.10\n
        \n
      • Adds support for named matching groups in the routes using a regex
      • \n
      • Adds backtracking protection to parameters without regexes defined
      • \n
      \n
    • \n
    • deps: encodeurl@~2.0.0\n
        \n
      • Removes encoding of \\, |, and ^ to align better with URL spec
      • \n
      \n
    • \n
    • Deprecate passing options.maxAge and options.expires to res.clearCookie\n
        \n
      • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
      • \n
      \n
    • \n
    \n

    4.19.2 / 2024-03-25

    \n
      \n
    • Improved fix for open redirect allow list bypass
    • \n
    \n

    4.19.1 / 2024-03-20

    \n
      \n
    • Allow passing non-strings to res.location with new encoding handling checks
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \nMaintainer changes\n

    This version was pushed to npm by jonchurch, a new releaser for express since your current version.

    \n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-6bc014718a", + "sha": "71ca29ff66917cd72b6186d8ef8ee336cac3885b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:08:22Z", + "merge_commit_sha": "f747e42ce535f92dc3933833c25cf5a9aca67018" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump serialize-javascript from 6.0.0 to 6.0.2", + "body": "Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) from 6.0.0 to 6.0.2.\n
    \nRelease notes\n

    Sourced from serialize-javascript's releases.

    \n
    \n

    v6.0.2

    \n
      \n
    • fix: serialize URL string contents to prevent XSS (#173) f27d65d
    • \n
    • Bump @​babel/traverse from 7.10.1 to 7.23.7 (#171) 02499c0
    • \n
    • docs: update readme with URL support (#146) 0d88527
    • \n
    • chore: update node version and lock file e2a3a91
    • \n
    • fix typo (#164) 5a1fa64
    • \n
    \n

    https://github.com/yahoo/serialize-javascript/compare/v6.0.1...v6.0.2

    \n

    v6.0.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/yahoo/serialize-javascript/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serialize-javascript&package-manager=npm_and_yarn&previous-version=6.0.0&new-version=6.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/serialize-javascript-6.0.2", + "sha": "02123427fc731449c9bcca4c123ac07a0752e85c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-17T01:08:23Z", + "merge_commit_sha": "5efa8e66bcecd09f885069d212ea2c97792e77a7" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump http-proxy-middleware from 2.0.6 to 2.0.7", + "body": "Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 2.0.6 to 2.0.7.\n
    \nRelease notes\n

    Sourced from http-proxy-middleware's releases.

    \n
    \n

    v2.0.7

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7

    \n

    v2.0.7-beta.1

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7-beta.0...v2.0.7-beta.1

    \n

    v2.0.7-beta.0

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7-beta.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from http-proxy-middleware's changelog.

    \n
    \n

    v2.0.7

    \n
      \n
    • ci(github actions): add publish.yml
    • \n
    • fix(filter): handle errors
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-proxy-middleware&package-manager=npm_and_yarn&previous-version=2.0.6&new-version=2.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/http-proxy-middleware-2.0.7", + "sha": "ab1b137d812839552e5704d987e09b06fa00ed37", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-29T02:08:02Z", + "created_at": "2025-02-17T01:08:35Z", + "merge_commit_sha": "8839a29e6bc93fa1f423189e05da348129fcce34" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump axios from 0.21.2 to 1.8.2", + "body": "Bumps [axios](https://github.com/axios/axios) from 0.21.2 to 1.8.2.\n
    \nRelease notes\n

    Sourced from axios's releases.

    \n
    \n

    Release v1.8.2

    \n

    Release notes:

    \n

    Bug Fixes

    \n
      \n
    • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)
    • \n
    \n

    Contributors to this release

    \n\n

    Release v1.8.1

    \n

    Release notes:

    \n

    Bug Fixes

    \n
      \n
    • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)
    • \n
    \n

    Contributors to this release

    \n\n

    Release v1.8.0

    \n

    Release notes:

    \n

    Bug Fixes

    \n
      \n
    • examples: application crashed when navigating examples in browser (#5938) (1260ded)
    • \n
    • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
    • \n
    • utils: replace getRandomValues with crypto module (#6788) (23a25af)
    • \n
    \n

    Features

    \n\n

    Reverts

    \n\n

    BREAKING CHANGES

    \n
      \n
    • \n

      code relying on the above will now combine the URLs instead of prefer request URL

      \n
    • \n
    • \n

      feat: add config option for allowing absolute URLs

      \n
    • \n
    • \n

      fix: add default value for allowAbsoluteUrls in buildFullPath

      \n
    • \n
    • \n

      fix: typo in flow control when setting allowAbsoluteUrls

      \n
    • \n
    \n

    Contributors to this release

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from axios's changelog.

    \n
    \n

    1.8.2 (2025-03-07)

    \n

    Bug Fixes

    \n
      \n
    • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)
    • \n
    \n

    Contributors to this release

    \n\n

    1.8.1 (2025-02-26)

    \n

    Bug Fixes

    \n
      \n
    • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)
    • \n
    \n

    Contributors to this release

    \n\n

    1.8.0 (2025-02-25)

    \n

    Bug Fixes

    \n
      \n
    • examples: application crashed when navigating examples in browser (#5938) (1260ded)
    • \n
    • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
    • \n
    • utils: replace getRandomValues with crypto module (#6788) (23a25af)
    • \n
    \n

    Features

    \n\n

    Reverts

    \n\n

    BREAKING CHANGES

    \n
      \n
    • \n

      code relying on the above will now combine the URLs instead of prefer request URL

      \n
    • \n
    • \n

      feat: add config option for allowing absolute URLs

      \n
    • \n
    • \n

      fix: add default value for allowAbsoluteUrls in buildFullPath

      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • a9f7689 chore(release): v1.8.2 (#6812)
    • \n
    • fb8eec2 fix(http-adapter): add allowAbsoluteUrls to path building (#6810)
    • \n
    • 9812045 chore(sponsor): update sponsor block (#6804)
    • \n
    • 72acf75 chore(sponsor): update sponsor block (#6794)
    • \n
    • 2e64afd chore(release): v1.8.1 (#6800)
    • \n
    • 36a5a62 fix(utils): move generateString to platform utils to avoid importing crypto...
    • \n
    • cceb7b1 chore(release): v1.8.0 (#6795)
    • \n
    • 23a25af fix(utils): replace getRandomValues with crypto module (#6788)
    • \n
    • 32c7bcc feat: Add config for ignoring absolute URLs (#5902) (#6192)
    • \n
    • 4a3e26c chore(config): adjust rollup config to preserve license header to minified Ja...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=0.21.2&new-version=1.8.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/axios-1.8.2", + "sha": "c4be9d4cf9bd238c58436051688947a0428b7bd7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "https://github.com/xc-link/66-networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-08T11:59:20Z", + "merge_commit_sha": "1be13bbdc225795c6d3e6ffeb94139c048c2434d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump tar-fs from 2.1.0 to 2.1.2", + "body": "Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.0 to 2.1.2.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tar-fs&package-manager=npm_and_yarn&previous-version=2.1.0&new-version=2.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/tar-fs-2.1.2", + "sha": "3c58576344ab0dffc20878414d006d4e59110063", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "https://github.com/xc-link/66-networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-29T00:16:05Z", + "merge_commit_sha": "67d381a1adf48d0ed2e0bff22b4f168f1abc4fc7" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/66-networklist-org/pull/10", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/66-networklist-org", + "title": "Bump http-proxy-middleware from 2.0.6 to 2.0.9", + "body": "Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 2.0.6 to 2.0.9.\n
    \nRelease notes\n

    Sourced from http-proxy-middleware's releases.

    \n
    \n

    v2.0.9

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.8...v2.0.9

    \n

    v2.0.8

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7...v2.0.8

    \n

    v2.0.7

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7

    \n

    v2.0.7-beta.1

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7-beta.0...v2.0.7-beta.1

    \n

    v2.0.7-beta.0

    \n

    Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7-beta.0

    \n
    \n
    \n
    \nChangelog\n

    Sourced from http-proxy-middleware's changelog.

    \n
    \n

    v2.0.9

    \n
      \n
    • fix(fixRequestBody): check readableLength
    • \n
    \n

    v2.0.8

    \n
      \n
    • fix(fixRequestBody): prevent multiple .write() calls
    • \n
    • fix(fixRequestBody): handle invalid request
    • \n
    \n

    v2.0.7

    \n
      \n
    • ci(github actions): add publish.yml
    • \n
    • fix(filter): handle errors
    • \n
    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-proxy-middleware&package-manager=npm_and_yarn&previous-version=2.0.6&new-version=2.0.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensing-Demo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "46c7a944869f0807a4c5c5edbfcc39eb51668d99", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/http-proxy-middleware-2.0.9", + "sha": "ec052138c55e084dc0de455319247e9c75fdb67f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/66-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "https://github.com/xc-link/66-networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-29T02:08:00Z", + "merge_commit_sha": "0d7b294a65f3a338e590736245559c99dc3dbcd4" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/NetLicensingClient-javascript/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/NetLicensingClient-javascript", + "title": "Bump serialize-javascript from 6.0.0 to 6.0.2", + "body": "Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) from 6.0.0 to 6.0.2.\n
    \nRelease notes\n

    Sourced from serialize-javascript's releases.

    \n
    \n

    v6.0.2

    \n
      \n
    • fix: serialize URL string contents to prevent XSS (#173) f27d65d
    • \n
    • Bump @​babel/traverse from 7.10.1 to 7.23.7 (#171) 02499c0
    • \n
    • docs: update readme with URL support (#146) 0d88527
    • \n
    • chore: update node version and lock file e2a3a91
    • \n
    • fix typo (#164) 5a1fa64
    • \n
    \n

    https://github.com/yahoo/serialize-javascript/compare/v6.0.1...v6.0.2

    \n

    v6.0.1

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/yahoo/serialize-javascript/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serialize-javascript&package-manager=npm_and_yarn&previous-version=6.0.0&new-version=6.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensingClient-javascript/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "d1f6ac7028a15087269fe450092e4f51270f4590", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/NetLicensingClient-javascript" + }, + "head": { + "ref": "dependabot/npm_and_yarn/serialize-javascript-6.0.2", + "sha": "09522c41bbdd48cc0a3a678c0e531cddf53b9e9f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/NetLicensingClient-javascript" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/NetLicensingClient-javascript/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-20T02:09:37Z", + "merge_commit_sha": "d7831b39a2ccd6fa2248a0a2ec79d8c3a05b0de3" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/icloud-tcp-gateway/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "title": "Bump ch.qos.logback:logback-core from 1.1.3 to 1.3.15", + "body": "Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.1.3 to 1.3.15.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-core&package-manager=maven&previous-version=1.1.3&new-version=1.3.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/icloud-tcp-gateway/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "9907669cd40c182a3d70e6a864530485e63ebb72", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/icloud-tcp-gateway" + }, + "head": { + "ref": "dependabot/maven/ch.qos.logback-logback-core-1.3.15", + "sha": "52121e5e1f137c1cfb55c1cdedb0d519e5916400", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/icloud-tcp-gateway" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/icloud-tcp-gateway/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-03T19:12:20Z", + "merge_commit_sha": "cb1147163486d0a1b9d823a04e08d4b0ad6e79d0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/halo-dal/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/halo-dal", + "title": "Bump org.springframework:spring-core from 3.0.5.RELEASE to 4.3.20.RELEASE", + "body": "Bumps [org.springframework:spring-core](https://github.com/spring-projects/spring-framework) from 3.0.5.RELEASE to 4.3.20.RELEASE.\n
    \nCommits\n
      \n
    • 810fd12 Release version 4.3.20.RELEASE
    • \n
    • 0447726 HttpRange validates requested ranges
    • \n
    • d15abfd Revert support for concurrent BeanPostProcessor registration in 4.3.x
    • \n
    • ebe3c27 MethodValidationInterceptor excludes FactoryBean metadata methods
    • \n
    • 6c9c8ef Polishing
    • \n
    • b53995b Resource.lastModified() propagates 0 value if target resource exists
    • \n
    • 547b841 Oops, add uncommitted change for last commit.
    • \n
    • f61f6f2 More defensive check for MockAsyncContext
    • \n
    • de1139e Polishing
    • \n
    • e978f90 MockHttpServletRequest allows for removing registered header entries
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework:spring-core&package-manager=maven&previous-version=3.0.5.RELEASE&new-version=4.3.20.RELEASE)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/halo-dal/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "229617dfe12110361a0cc3757b3cc82d8c6d8d9c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/halo-dal" + }, + "head": { + "ref": "dependabot/maven/org.springframework-spring-core-4.3.20.RELEASE", + "sha": "899ba05a81a6cc60ce5f2f4b63096df3564cb110", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/halo-dal" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/halo-dal/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-31T19:09:05Z", + "merge_commit_sha": "53c7c9ed9109c4212c9958ded1f43bd31411dab8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/icloud-tcp-gateway/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/icloud-tcp-gateway", + "title": "Bump org.springframework:spring-core from 3.2.1.RELEASE to 4.3.20.RELEASE", + "body": "Bumps [org.springframework:spring-core](https://github.com/spring-projects/spring-framework) from 3.2.1.RELEASE to 4.3.20.RELEASE.\n
    \nCommits\n
      \n
    • 810fd12 Release version 4.3.20.RELEASE
    • \n
    • 0447726 HttpRange validates requested ranges
    • \n
    • d15abfd Revert support for concurrent BeanPostProcessor registration in 4.3.x
    • \n
    • ebe3c27 MethodValidationInterceptor excludes FactoryBean metadata methods
    • \n
    • 6c9c8ef Polishing
    • \n
    • b53995b Resource.lastModified() propagates 0 value if target resource exists
    • \n
    • 547b841 Oops, add uncommitted change for last commit.
    • \n
    • f61f6f2 More defensive check for MockAsyncContext
    • \n
    • de1139e Polishing
    • \n
    • e978f90 MockHttpServletRequest allows for removing registered header entries
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework:spring-core&package-manager=maven&previous-version=3.2.1.RELEASE&new-version=4.3.20.RELEASE)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/icloud-tcp-gateway/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "9907669cd40c182a3d70e6a864530485e63ebb72", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/icloud-tcp-gateway" + }, + "head": { + "ref": "dependabot/maven/org.springframework-spring-core-4.3.20.RELEASE", + "sha": "1c9d253687975fe57556d9fea52db780d1dea37d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/icloud-tcp-gateway" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/icloud-tcp-gateway/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-31T19:15:28Z", + "merge_commit_sha": "c9236270ed02420e715e0071e6d02f321b760bff" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/app-space/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/app-space", + "title": "Bump koa from 2.13.1 to 2.15.4 in /server", + "body": "Bumps [koa](https://github.com/koajs/koa) from 2.13.1 to 2.15.4.\n
    \nRelease notes\n

    Sourced from koa's releases.

    \n
    \n

    2.15.4

    \n

    Full Changelog: https://github.com/koajs/koa/compare/2.15.3...2.15.4

    \n

    Fix: avoid redos on host and protocol getter, see https://github.com/koajs/koa/security/advisories/GHSA-593f-38f6-jp5m

    \n
    \n
    \n
    \nChangelog\n

    Sourced from koa's changelog.

    \n
    \n

    2.15.4 / 2025-02-11

    \n

    fix: avoid redos on host and protocol getter

    \n

    2.15.3 / 2024-04-11

    \n

    fixes

    \n
      \n
    • [1fad597] - fix: require URL from 'url' module (#1809) (fengmk2 )
    • \n
    \n

    2.15.2 / 2024-03-21

    \n

    fixes

    \n
      \n
    • [94e8def] - fix: handle upper case protocol like HTTP or HTTPS (#1806) (fengmk2 )
    • \n
    \n

    2.15.1 / 2024-03-15

    \n

    fixes

    \n
      \n
    • [2510b0b] - fix: formatting redirect url on http(s) protocol url (#1803) (fengmk2 )
    • \n
    \n

    2.15.0 / 2023-12-29

    \n

    features

    \n
      \n
    • [1684a8f] - feat: bump cookies v0.9.0 for CHIPS (#1791) (Noah Gao )
    • \n
    \n

    2.14.2 / 2023-04-12

    \n

    fixes

    \n
      \n
    • [6b60fa6] - fix: can not get currentContext in error handler (#1757) (Gxkl )
    • \n
    \n

    2.14.1 / 2022-12-07

    \n

    fixes

    \n
      \n
    • [cb92bc9] - fix: should export createAsyncCtxStorageMiddleware function on application (#1724) (fengmk2 )
    • \n
    \n

    2.14.0 / 2022-12-06

    \n

    features

    \n
      \n
    • [a293122] - feat: support asyncLocalStorage (#1721) (fengmk2 )
    • \n
    \n

    2.13.4 / 2021-10-19

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=koa&package-manager=npm_and_yarn&previous-version=2.13.1&new-version=2.15.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/app-space/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "9b0e1c92e42c9836818350cd93260c1d6f2d9d0c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/app-space" + }, + "head": { + "ref": "dependabot/npm_and_yarn/server/koa-2.15.4", + "sha": "323c93b628852bf8aebc86c0a6c1fd6fe8de7ed9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/app-space" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/app-space/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-12T19:45:14Z", + "merge_commit_sha": "8e317760efbbf4946ce04d0c79f918ff91936947" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/24-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/24-networklist-org", + "title": "Bump golang.org/x/net from 0.26.0 to 0.36.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.26.0 to 0.36.0.\n
    \nCommits\n
      \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • cde1dda proxy, http/httpproxy: do not mismatch IPv6 zone ids against hosts
    • \n
    • fe7f039 publicsuffix: spruce up code gen and speed up PublicSuffix
    • \n
    • 459513d internal/http3: move more common stream processing to genericConn
    • \n
    • aad0180 http2: fix flakiness from t.Log when GOOS=js
    • \n
    • b73e574 http2: don't log expected errors from writing invalid trailers
    • \n
    • 5f45c77 internal/http3: make read-data tests usable for server handlers
    • \n
    • 43c2540 http2, internal/httpcommon: reject userinfo in :authority
    • \n
    • 1d78a08 http2, internal/httpcommon: factor out server header logic for h2/h3
    • \n
    • 0d7dc54 quic: add Conn.ConnectionState
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.26.0&new-version=0.36.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/proxy/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "6ef4d417d0c6ca840b995268ff73412baab61b00", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.36.0", + "sha": "a441fbcd676416222f7b3c94fe6fe916e66a2a88", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "https://github.com/xc-link/24-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-16T22:22:42Z", + "created_at": "2025-03-13T00:58:48Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/24-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/24-networklist-org", + "title": "Bump golang.org/x/net from 0.26.0 to 0.38.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.26.0 to 0.38.0.\n
    \nCommits\n
      \n
    • e1fcd82 html: properly handle trailing solidus in unquoted attribute value in foreign...
    • \n
    • ebed060 internal/http3: fix build of tests with GOEXPERIMENT=nosynctest
    • \n
    • 1f1fa29 publicsuffix: regenerate table
    • \n
    • 1215081 http2: improve error when server sends HTTP/1
    • \n
    • 312450e html: ensure <search> tag closes <p> and update tests
    • \n
    • 09731f9 http2: improve handling of lost PING in Server
    • \n
    • 55989e2 http2/h2c: use ResponseController for hijacking connections
    • \n
    • 2914f46 websocket: re-recommend gorilla/websocket
    • \n
    • 99b3ae0 go.mod: update golang.org/x dependencies
    • \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.26.0&new-version=0.38.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/proxy/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "6ef4d417d0c6ca840b995268ff73412baab61b00", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.38.0", + "sha": "66ef9b5d1f64005dde3080f44588a7dc9ce0cc3d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "https://github.com/xc-link/24-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-16T22:22:40Z", + "merge_commit_sha": "24fa8207f8a9c1ec6770ddd18c423cfdce6f4769" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/24-networklist-org/pull/3", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/24-networklist-org", + "title": "Create codeql.yml", + "body": "**What this PR does / why we need it**:\r\n\r\n**Which issue this PR fixes** *(optional, in `fixes #(, fixes #, ...)` format, will close that issue when PR gets merged)*: fixes #\r\n\r\n**Special notes for your reviewer**:\r\n", + "base": { + "ref": "master", + "sha": "6ef4d417d0c6ca840b995268ff73412baab61b00", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "fb4ee4cb7147831d1d22845a3d51dae853b40e03", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-06-20T03:07:38Z", + "closed_at": "2025-06-20T03:07:38Z", + "created_at": "2025-06-20T03:07:28Z", + "merge_commit_sha": "8562e6273b1951770cd4e281db112f6736c09c44" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/24-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/24-networklist-org", + "title": "Bump google.golang.org/grpc from 1.65.0 to 1.79.3", + "body": "Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.65.0 to 1.79.3.\n
    \nRelease notes\n

    Sourced from google.golang.org/grpc's releases.

    \n
    \n

    Release 1.79.3

    \n

    Security

    \n
      \n
    • server: fix an authorization bypass where malformed :path headers (missing the leading slash) could bypass path-based restricted "deny" rules in interceptors like grpc/authz. Any request with a non-canonical path is now immediately rejected with an Unimplemented error. (#8981)
    • \n
    \n

    Release 1.79.2

    \n

    Bug Fixes

    \n
      \n
    • stats: Prevent redundant error logging in health/ORCA producers by skipping stats/tracing processing when no stats handler is configured. (grpc/grpc-go#8874)
    • \n
    \n

    Release 1.79.1

    \n

    Bug Fixes

    \n\n

    Release 1.79.0

    \n

    API Changes

    \n
      \n
    • mem: Add experimental API SetDefaultBufferPool to change the default buffer pool. (#8806)\n\n
    • \n
    • experimental/stats: Update MetricsRecorder to require embedding the new UnimplementedMetricsRecorder (a no-op struct) in all implementations for forward compatibility. (#8780)
    • \n
    \n

    Behavior Changes

    \n
      \n
    • balancer/weightedtarget: Remove handling of Addresses and only handle Endpoints in resolver updates. (#8841)
    • \n
    \n

    New Features

    \n
      \n
    • experimental/stats: Add support for asynchronous gauge metrics through the new AsyncMetricReporter and RegisterAsyncReporter APIs. (#8780)
    • \n
    • pickfirst: Add support for weighted random shuffling of endpoints, as described in gRFC A113.\n
        \n
      • This is enabled by default, and can be turned off using the environment variable GRPC_EXPERIMENTAL_PF_WEIGHTED_SHUFFLING. (#8864)
      • \n
      \n
    • \n
    • xds: Implement :authority rewriting, as specified in gRFC A81. (#8779)
    • \n
    • balancer/randomsubsetting: Implement the random_subsetting LB policy, as specified in gRFC A68. (#8650)\n\n
    • \n
    \n

    Bug Fixes

    \n
      \n
    • credentials/tls: Fix a bug where the port was not stripped from the authority override before validation. (#8726)\n\n
    • \n
    • xds/priority: Fix a bug causing delayed failover to lower-priority clusters when a higher-priority cluster is stuck in CONNECTING state. (#8813)
    • \n
    • health: Fix a bug where health checks failed for clients using legacy compression options (WithDecompressor or RPCDecompressor). (#8765)\n\n
    • \n
    • transport: Fix an issue where the HTTP/2 server could skip header size checks when terminating a stream early. (#8769)\n\n
    • \n
    • server: Propagate status detail headers, if available, when terminating a stream during request header processing. (#8754)\n\n
    • \n
    \n

    Performance Improvements

    \n
      \n
    • credentials/alts: Optimize read buffer alignment to reduce copies. (#8791)
    • \n
    • mem: Optimize pooling and creation of buffer objects. (#8784)
    • \n
    • transport: Reduce slice re-allocations by reserving slice capacity. (#8797)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/grpc&package-manager=go_modules&previous-version=1.65.0&new-version=1.79.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/24-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "8562e6273b1951770cd4e281db112f6736c09c44", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/google.golang.org/grpc-1.79.3", + "sha": "bbbbe372e3ff325745cd9a0a569fb7dc3df0fc34", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/24-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "https://github.com/xc-link/24-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-03-19T01:07:19Z", + "merge_commit_sha": "9aef80432e4f36ab1d5ecec97abc6edc62506725" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/108", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump @types/node from 24.3.0 to 25.8.0", + "body": "Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.3.0 to 25.8.0.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=24.3.0&new-version=25.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "ca4adae180b8027c4986853aa6c61871339f0431", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-types-node-25.8.0", + "sha": "52315cc1bcfe0c7f35805245a2c5192855b28064", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-05-18T04:03:02Z", + "merge_commit_sha": "e0628659f471d2efa30c13f7aa704d314bcea9a3" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/109", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump OctopusDeploy/create-release-action from 3.2.2 to 4.1.3", + "body": "Bumps [OctopusDeploy/create-release-action](https://github.com/octopusdeploy/create-release-action) from 3.2.2 to 4.1.3.\n
    \nRelease notes\n

    Sourced from OctopusDeploy/create-release-action's releases.

    \n
    \n

    v4.1.3

    \n

    4.1.3 (2026-04-13)

    \n

    Bug Fixes

    \n
      \n
    • deps: bump axios from 1.13.5 to 1.15.0 (#667) (56be13b)
    • \n
    • Update path to config file in Renovate workflow (#661) (7dba9ec)
    • \n
    \n

    v4.1.2

    \n

    4.1.2 (2026-03-25)

    \n

    Bug Fixes

    \n
      \n
    • deps: upgrade @​actions/core from v1 to v3 with ESM migration (#652) (aee6395)
    • \n
    \n

    v4.1.1

    \n

    4.1.1 (2026-03-13)

    \n

    Bug Fixes

    \n\n

    v4.1.0

    \n

    4.1.0 (2026-02-27)

    \n

    Features

    \n
      \n
    • Add workflow to check for conventional commit format PR title (#611) (2d92dba)
    • \n
    \n

    v4.0.0

    \n

    4.0.0 (2025-12-09)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Update node to node 24 (#606)
    • \n
    \n

    Features

    \n\n

    Bug Fixes

    \n
      \n
    • deps: update dependency tmp to v0.2.4 [security] (#576) (02c0ac0)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from OctopusDeploy/create-release-action's changelog.

    \n
    \n

    Changelog

    \n

    4.1.3 (2026-04-13)

    \n

    Bug Fixes

    \n
      \n
    • deps: bump axios from 1.13.5 to 1.15.0 (#667) (56be13b)
    • \n
    • Update path to config file in Renovate workflow (#661) (7dba9ec)
    • \n
    \n

    4.1.2 (2026-03-25)

    \n

    Bug Fixes

    \n
      \n
    • deps: upgrade @​actions/core from v1 to v3 with ESM migration (#652) (aee6395)
    • \n
    \n

    4.1.1 (2026-03-13)

    \n

    Bug Fixes

    \n\n

    4.1.0 (2026-02-27)

    \n

    Features

    \n
      \n
    • Add workflow to check for conventional commit format PR title (#611) (2d92dba)
    • \n
    \n

    4.0.0 (2025-12-09)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Update node to node 24 (#606)
    • \n
    \n

    Features

    \n\n

    Bug Fixes

    \n
      \n
    • deps: update dependency tmp to v0.2.4 [security] (#576) (02c0ac0)
    • \n
    • deps: update dependency tmp to v0.2.5 (#579) (4537c5c)
    • \n
    \n

    3.3.0 (2025-06-30)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1fe0fa0 chore(main): release 4.1.3 (#662)
    • \n
    • 56be13b fix(deps): bump axios from 1.13.5 to 1.15.0 (#667)
    • \n
    • 88b29e6 chore(deps): bump lodash from 4.17.23 to 4.18.1 (#666)
    • \n
    • cc7406d chore: Add protections against malicious package updates in Renovate (#665)
    • \n
    • 7dba9ec fix: Update path to config file in Renovate workflow (#661)
    • \n
    • cf0c655 chore: bump flatted and handlebars (#660)
    • \n
    • 09ada9a chore(main): release 4.1.2 (#657)
    • \n
    • aee6395 fix(deps): upgrade @​actions/core from v1 to v3 with ESM migration (#652)
    • \n
    • 7241988 chore(deps): update typescript-eslint monorepo to v8.57.1 (patch) (#651)
    • \n
    • f05ba34 chore(main): release 4.1.1 (#650)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=OctopusDeploy/create-release-action&package-manager=github_actions&previous-version=3.2.2&new-version=4.1.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "ca4adae180b8027c4986853aa6c61871339f0431", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-OctopusDeploy-create-release-action-4.1.3", + "sha": "3e0b3ed0682d243615759a973705ed979a8e80fd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-05-18T04:04:15Z", + "merge_commit_sha": "48d2331af8e5563986879dd8b3309fd368254927" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/110", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump ws from 8.18.1 to 8.20.1", + "body": "Bumps [ws](https://github.com/websockets/ws) from 8.18.1 to 8.20.1.\n
    \nRelease notes\n

    Sourced from ws's releases.

    \n
    \n

    8.20.1

    \n

    Bug fixes

    \n
      \n
    • Fixed an uninitialized memory disclosure issue in websocket.close()\n(c0327ec1).
    • \n
    \n

    Providing a TypedArray (e.g. Float32Array) as the reason argument for\nwebsocket.close(), rather than the supported string or Buffer types, caused\nuninitialized memory to be disclosed to the remote peer.

    \n
    import { deepStrictEqual } from 'node:assert';\r\nimport { WebSocket, WebSocketServer } from 'ws';\r\n

    const wss = new WebSocketServer(\n{ port: 0, skipUTF8Validation: true },\nfunction () {\nconst { port } = wss.address();\nconst ws = new WebSocket(ws://localhost:${port}, {\nskipUTF8Validation: true\n});

    \n
    ws.on('close', function (code, reason) {\r\n  deepStrictEqual(reason, Buffer.alloc(80));\r\n});\n
    \n

    }\n);

    \n

    wss.on('connection', function (ws) {\nws.close(1000, new Float32Array(20));\n});\n

    \n

    The issue was privately reported by Nikita Skovoroda.

    \n

    8.20.0

    \n

    Features

    \n
      \n
    • Added exports for the PerMessageDeflate class and utilities for the\nSec-WebSocket-Extensions and Sec-WebSocket-Protocol headers (d3503c1f).
    • \n
    \n

    8.19.0

    \n

    Features

    \n
      \n
    • Added the closeTimeout option (#2308).
    • \n
    \n

    Bug fixes

    \n
      \n
    • Handled a forthcoming breaking change in Node.js core (19984854).
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 5d9b316 [dist] 8.20.1
    • \n
    • c0327ec [security] Fix uninitialized memory disclosure in websocket.close()
    • \n
    • ce2a3d6 [ci] Test on node 26
    • \n
    • 58e45b8 [ci] Do not test on node 25
    • \n
    • 5f26c24 [ci] Run the lint step on node 24
    • \n
    • 8439255 [dist] 8.20.0
    • \n
    • d3503c1 [minor] Export the PerMessageDeflate class and header utils
    • \n
    • 3ee5349 [api] Convert the isServer and maxPayload parameters to options
    • \n
    • 91707b4 [doc] Add missing space
    • \n
    • 8b55319 [pkg] Update eslint to version 10.0.1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ws&package-manager=npm_and_yarn&previous-version=8.18.1&new-version=8.20.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "ca4adae180b8027c4986853aa6c61871339f0431", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-npm_and_yarn-ws-8.20.1", + "sha": "55a9669b831abe24352c02100403f020cdb19014", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-05-18T04:04:29Z", + "merge_commit_sha": "8f6a160cac916cdb95c12cf169336fdd8e40d47c" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/networklist-org/pull/111", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/networklist-org", + "title": "Bump OctopusDeploy/deploy-release-action from 3.2.1 to 4.2.1", + "body": "Bumps [OctopusDeploy/deploy-release-action](https://github.com/octopusdeploy/deploy-release-action) from 3.2.1 to 4.2.1.\n
    \nRelease notes\n

    Sourced from OctopusDeploy/deploy-release-action's releases.

    \n
    \n

    v4.2.1

    \n

    4.2.1 (2026-04-13)

    \n

    Bug Fixes

    \n
      \n
    • deps: bump axios from 1.13.5 to 1.15.0 (#300) (f4dfc40)
    • \n
    \n

    v4.2.0

    \n

    4.2.0 (2026-04-09)

    \n

    Features

    \n
      \n
    • add support for deploy_at and deploy_at_expiry inputs (#296) (fdadc7d)
    • \n
    \n

    v4.1.1

    \n

    4.1.1 (2026-03-25)

    \n

    Bug Fixes

    \n\n

    v4.1.0

    \n

    4.1.0 (2026-02-27)

    \n

    Features

    \n
      \n
    • Add workflow to check for conventional commit format PR title (#244) (ffafb83)
    • \n
    \n

    v4.0.0

    \n

    4.0.0 (2025-12-10)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Migrate to node 24
    • \n
    \n

    Features

    \n\n

    v3.3.0

    \n

    3.3.0 (2025-11-12)

    \n

    Features

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from OctopusDeploy/deploy-release-action's changelog.

    \n
    \n

    Changelog

    \n

    4.2.1 (2026-04-13)

    \n

    Bug Fixes

    \n
      \n
    • deps: bump axios from 1.13.5 to 1.15.0 (#300) (f4dfc40)
    • \n
    \n

    4.2.0 (2026-04-09)

    \n

    Features

    \n
      \n
    • add support for deploy_at and deploy_at_expiry inputs (#296) (fdadc7d)
    • \n
    \n

    4.1.1 (2026-03-25)

    \n

    Bug Fixes

    \n\n

    4.1.0 (2026-02-27)

    \n

    Features

    \n
      \n
    • Add workflow to check for conventional commit format PR title (#244) (ffafb83)
    • \n
    \n

    4.0.0 (2025-12-10)

    \n

    ⚠ BREAKING CHANGES

    \n
      \n
    • Migrate to node 24
    • \n
    \n

    Features

    \n\n

    3.3.0 (2025-11-12)

    \n

    Features

    \n
      \n
    • Enable deployment to ephemeral environments (#225) (d999521)
    • \n
    \n

    3.2.3 (2025-03-12)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 803392d chore(main): release 4.2.1 (#301)
    • \n
    • f4dfc40 fix(deps): bump axios from 1.13.5 to 1.15.0 (#300)
    • \n
    • c5f48dc chore(deps): bump lodash from 4.17.23 to 4.18.1 (#299)
    • \n
    • cbe6d10 chore(main): release 4.2.0 (#298)
    • \n
    • fdadc7d feat: add support for deploy_at and deploy_at_expiry inputs (#296)
    • \n
    • 0eb1457 chore: Add protections against malicious package updates in Renovate (#295)
    • \n
    • ea828d3 chore: bump flatted and handlebars (#293)
    • \n
    • 19cbbbc chore(main): release 4.1.1 (#288)
    • \n
    • d4b876a fix(deps): Update core/actions to v3 (#282)
    • \n
    • f093134 chore(deps): update dependency msw to v2.12.13 (#280)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=OctopusDeploy/deploy-release-action&package-manager=github_actions&previous-version=3.2.1&new-version=4.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "main", + "sha": "ca4adae180b8027c4986853aa6c61871339f0431", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "head": { + "ref": "dependabot-github_actions-OctopusDeploy-deploy-release-action-4.2.1", + "sha": "a6c8c883e76f57e73d61658cfa17c2862442fc83", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/networklist-org/labels/dependencies", + "https://github.com/xc-link/networklist-org/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-05-18T04:06:45Z", + "merge_commit_sha": "46215db5ac1b84d561001a8bcdc553030e81886c" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/sql-server-samples/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/sql-server-samples", + "title": "Bump System.Linq.Dynamic.Core from 1.3.0 to 1.6.0 in /samples/features/security/ledger/source/ContosoHR", + "body": "Bumps [System.Linq.Dynamic.Core](https://github.com/zzzprojects/System.Linq.Dynamic.Core) from 1.3.0 to 1.6.0.\n
    \nChangelog\n

    Sourced from System.Linq.Dynamic.Core's changelog.

    \n
    \n

    v1.6.0 (26 January 2025)

    \n
      \n
    • #884 - By default the RestrictOrderByToPropertyOrField is now set to true in the ParsingConfig [feature] contributed by StefH
    • \n
    • #867 - CVE-2024-51417: System.Linq.Dynamic.Core allows remote access to properties on reflection types and static properties/fields [bug]
    • \n
    \n

    v1.6.0-preview-03 (25 January 2025)

    \n
      \n
    • #876 - Update and Fix SecurityTests [test] contributed by mariusz96
    • \n
    • #882 - ExpressionParser: add 2nd ctor with an extra non-optional parameter [feature] contributed by StefH
    • \n
    • #883 - Fix the usage of ParsingConfig in some methods in the DynamicQueryableExtensions class [bug] contributed by StefH
    • \n
    • #881 - ExpressionParser ctor in 1.5.0 not compatible with earlier versions [feature]
    • \n
    \n

    v1.6.0-preview-02 (24 January 2025)

    \n
      \n
    • #874 - Fix calling static properties or fields in non-static class [bug] contributed by StefH
    • \n
    • #875 - Add option to ParsingConfig to allow the Equals and ToString methods on object [feature] contributed by StefH
    • \n
    • #879 - Change internal usage from obsolete IDynamicLinkCustomTypeProvider to IDynamicLinqCustomTypeProvider [feature] contributed by StefH
    • \n
    • #873 - Accessing static property or field in normal class does not work [bug]
    • \n
    • #878 - ParsingConfig change Type of CustomTypeProvider to IDynamicLinqCustomTypeProvider in Version 1.6.0-preview-01 [feature]
    • \n
    \n

    v1.6.0-preview-01 (23 January 2025)

    \n
      \n
    • #864 - Use ParsingConfig.IsCaseSensitive setting in TextParser and KeywordsHelper [feature] contributed by StefH
    • \n
    • #865 - Add OrderBy NullPropagation tests [test] contributed by StefH
    • \n
    • #866 - Refactor KeywordsHelper, TypeFinder and update comments on ParsingConfig [refactor] contributed by StefH
    • \n
    • #870 - Fix CVE-2024-51417 [bug] contributed by StefH
    • \n
    • #773 - Parse exceptions with (nested) static classes [bug]
    • \n
    \n

    v1.5.1 (14 December 2024)

    \n
      \n
    • #859 - Add SelectMany extension method for Json [feature] contributed by StefH
    • \n
    • #860 - Add support for SequenceEqual [feature] contributed by StefH
    • \n
    • #861 - Fix calling Sum without any arguments [bug] contributed by StefH
    • \n
    • #862 - Use different PackageIds for SystemTextJson and NewtonsoftJson projects [feature] contributed by StefH
    • \n
    • #855 - Support for SequenceEqual [feature]
    • \n
    • #856 - Using Sum method without arguments throws exception [bug]
    • \n
    • #858 - SelectMany not work over JSON [bug]
    • \n
    \n

    v1.5.0 (07 December 2024)

    \n
      \n
    • #791 - Add Json support [feature] contributed by StefH
    • \n
    • #857 - RestrictOrderByToPropertyOrField [feature] contributed by StefH
    • \n
    • #789 - Add JSON support [feature]
    • \n
    \n

    v1.4.9 (16 November 2024)

    \n\n

    v1.4.8 (31 October 2024)

    \n
      \n
    • #851 - Throw ArgumentException when expression has invalid compare (e.g. string with int) [bug] contributed by StefH
    • \n
    • #849 - 1.4.7 Regression -- NullReferenceException from invalid expression instead of ArgumentException [bug]
    • \n
    \n

    v1.4.7 (26 October 2024)

    \n
      \n
    • #847 - Fixed String.Concat when types differ [bug] contributed by StefH
    • \n
    • #845 - String concatenations fails with System.ArgumentException during parsing [bug]
    • \n
    \n

    v1.4.6 (13 October 2024)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • ad66a96 v1.6.0
    • \n
    • 867d483 By default the RestrictOrderByToPropertyOrField is now set to true in the Par...
    • \n
    • bd4b8c7 Update README.md [breaking change 1.6.0]
    • \n
    • 93d5b92 v1.6.0-preview-03
    • \n
    • cb09b72 Fix the usage of ParsingConfig in some methods in the DynamicQueryableExtensi...
    • \n
    • bcd8f7b Update and Fix SecurityTests (#876)
    • \n
    • 1ed7a23 ExpressionParser: add 2nd ctor with an extra non-optional parameter (#882)
    • \n
    • 233881c v1.6.0-preview-02
    • \n
    • 1934a14 Add option to ParsingConfig to allow the Equals and ToString methods on objec...
    • \n
    • fca802e Change internal usage from obsolete IDynamicLinkCustomTypeProvider to IDynami...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Linq.Dynamic.Core&package-manager=nuget&previous-version=1.3.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/sql-server-samples/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "bafb8e95e3fcb17e635fab377e3bf2e8e68e78c4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/sql-server-samples" + }, + "head": { + "ref": "dependabot/nuget/samples/features/security/ledger/source/ContosoHR/System.Linq.Dynamic.Core-1.6.0", + "sha": "0724e9d8c20373a4f8d8a76f69f2ee36bb69910e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/sql-server-samples" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/sql-server-samples/labels/dependencies", + "https://github.com/xc-link/sql-server-samples/labels/.NET" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-27T18:53:54Z", + "merge_commit_sha": "e5a025cc1c08353d466b1992fd79350eb5ded59f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/sql-server-samples/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/sql-server-samples", + "title": "Bump cryptography from 43.0.1 to 44.0.1 in /samples/features/sql-big-data-cluster/security/encryption-at-rest-external-key-provider/kms_plugin_app", + "body": "Bumps [cryptography](https://github.com/pyca/cryptography) from 43.0.1 to 44.0.1.\n
    \nChangelog\n

    Sourced from cryptography's changelog.

    \n
    \n

    44.0.1 - 2025-02-11

    \n
    \n* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.4.1.\n* We now build ``armv7l`` ``manylinux`` wheels and publish them to PyPI.\n* We now build ``manylinux_2_34`` wheels and publish them to PyPI.\n

    .. _v44-0-0:

    \n

    44.0.0 - 2024-11-27\n

    \n
      \n
    • BACKWARDS INCOMPATIBLE: Dropped support for LibreSSL < 3.9.
    • \n
    • Deprecated Python 3.7 support. Python 3.7 is no longer supported by the\nPython core team. Support for Python 3.7 will be removed in a future\ncryptography release.
    • \n
    • Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.4.0.
    • \n
    • macOS wheels are now built against the macOS 10.13 SDK. Users on older\nversions of macOS should upgrade, or they will need to build\ncryptography themselves.
    • \n
    • Enforce the :rfc:5280 requirement that extended key usage extensions must\nnot be empty.
    • \n
    • Added support for timestamp extraction to the\n:class:~cryptography.fernet.MultiFernet class.
    • \n
    • Relax the Authority Key Identifier requirements on root CA certificates\nduring X.509 verification to allow fields permitted by :rfc:5280 but\nforbidden by the CA/Browser BRs.
    • \n
    • Added support for :class:~cryptography.hazmat.primitives.kdf.argon2.Argon2id\nwhen using OpenSSL 3.2.0+.
    • \n
    • Added support for the :class:~cryptography.x509.Admissions certificate extension.
    • \n
    • Added basic support for PKCS7 decryption (including S/MIME 3.2) via\n:func:~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_der,\n:func:~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_pem, and\n:func:~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_smime.
    • \n
    \n

    .. _v43-0-3:

    \n

    43.0.3 - 2024-10-18

    \n
    \n* Fixed release metadata for ``cryptography-vectors``\n

    .. _v43-0-2:

    \n

    43.0.2 - 2024-10-18\n

    \n
      \n
    • Fixed compilation when using LibreSSL 4.0.0.
    • \n
    \n

    .. _v43-0-1:

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cryptography&package-manager=pip&previous-version=43.0.1&new-version=44.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/sql-server-samples/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "bafb8e95e3fcb17e635fab377e3bf2e8e68e78c4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/sql-server-samples" + }, + "head": { + "ref": "dependabot/pip/samples/features/sql-big-data-cluster/security/encryption-at-rest-external-key-provider/kms_plugin_app/cryptography-44.0.1", + "sha": "03a5d48bb81f8235663b52276ac580ebd31cd2e1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/sql-server-samples" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/sql-server-samples/labels/dependencies", + "https://github.com/xc-link/sql-server-samples/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-11T19:13:13Z", + "merge_commit_sha": "76f21e7d65bb6cf2355f9412ced5b88de9abdecf" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/distware/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/distware", + "title": "Bump vite from 4.4.8 to 4.5.6", + "body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.4.8 to 4.5.6.\n
    \nRelease notes\n

    Sourced from vite's releases.

    \n
    \n

    v4.5.6

    \n

    This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v4.5.5

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v4.5.4

    \n

    Please refer to CHANGELOG.md for details.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from vite's changelog.

    \n
    \n

    4.5.6 (2025-01-20)

    \n
      \n
    • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (ef1049d)
    • \n
    • fix!: default server.cors: false to disallow fetching from untrusted origins (07b36d5)
    • \n
    • fix: verify token for HMR WebSocket connection (c065a77)
    • \n
    \n

    4.5.5 (2024-09-16)

    \n

    4.5.4 (2024-09-16)

    \n\n

    4.5.3 (2024-03-24)

    \n\n

    4.5.2 (2024-01-19)

    \n\n

    4.5.1 (2023-12-04)

    \n\n

    4.5.0 (2023-10-18)

    \n\n

    4.4.11 (2023-10-05)

    \n
      \n
    • revert: "fix: use string manipulation instead of regex to inject esbuild helpers (54e1275), closes #14094
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 9e460f5 release: v4.5.6
    • \n
    • ef1049d fix!: check host header to prevent DNS rebinding attacks and introduce `serve...
    • \n
    • c065a77 fix: verify token for HMR WebSocket connection
    • \n
    • 07b36d5 fix!: default server.cors: false to disallow fetching from untrusted origins
    • \n
    • f1d8845 release: v4.5.5
    • \n
    • 2466c08 release: v4.5.4
    • \n
    • e812716 fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
    • \n
    • b901438 fix: backport #18112, fs raw query
    • \n
    • aac695e release: v4.5.3
    • \n
    • 96a7f3a fix: fs.deny with globs with directories (#16250)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=4.4.8&new-version=4.5.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/distware/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5922fec5ffe25114df1bfa0c54d0da25cf11520f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/distware" + }, + "head": { + "ref": "dependabot/npm_and_yarn/vite-4.5.6", + "sha": "2643863dd50fb28b38b284fb8e59a761c6324303", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/distware" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/distware/labels/dependencies", + "https://github.com/xc-link/distware/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-22T03:26:20Z", + "merge_commit_sha": "919a6de221a16a836e807459312120f14db5696b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/distware/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/distware", + "title": "Bump laravel/framework from 10.17.1 to 10.48.29", + "body": "Bumps [laravel/framework](https://github.com/laravel/framework) from 10.17.1 to 10.48.29.\n
    \nRelease notes\n

    Sourced from laravel/framework's releases.

    \n
    \n

    v10.48.28

    \n

    No release notes provided.

    \n

    v10.48.26

    \n\n

    v10.48.25

    \n\n

    v10.48.24

    \n

    No release notes provided.

    \n

    v10.48.23

    \n\n

    v10.48.22

    \n

    No release notes provided.

    \n

    v10.48.21

    \n\n

    v10.48.20

    \n\n

    v10.48.19

    \n\n

    v10.48.18

    \n\n

    v10.48.17

    \n\n

    v10.48.16

    \n\n

    v10.48.15

    \n\n

    v10.48.14

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=laravel/framework&package-manager=composer&previous-version=10.17.1&new-version=10.48.29)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/distware/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "5922fec5ffe25114df1bfa0c54d0da25cf11520f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/distware" + }, + "head": { + "ref": "dependabot/composer/laravel/framework-10.48.29", + "sha": "d2310082471898f837f89a71b9c361f05ee27cdf", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/distware" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/distware/labels/dependencies", + "https://github.com/xc-link/distware/labels/php" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-12T22:01:36Z", + "merge_commit_sha": "41690a5d744f0757e8e21cbe9522f6737f83b673" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/63-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/63-networklist-org", + "title": "Bump torch from 2.0.0 to 2.4.0", + "body": "Bumps [torch](https://github.com/pytorch/pytorch) from 2.0.0 to 2.4.0.\n
    \nRelease notes\n

    Sourced from torch's releases.

    \n
    \n

    PyTorch 2.4: Python 3.12, AOTInductor freezing, libuv backend for TCPStore

    \n

    PyTorch 2.4 Release Notes

    \n
      \n
    • Highlights
    • \n
    • Tracked Regressions
    • \n
    • Backward incompatible changes
    • \n
    • Deprecations
    • \n
    • New features
    • \n
    • Improvements
    • \n
    • Bug Fixes
    • \n
    • Performance
    • \n
    • Documentation
    • \n
    • Developers
    • \n
    • Security
    • \n
    \n

    Highlights

    \n

    We are excited to announce the release of PyTorch® 2.4!\nPyTorch 2.4 adds support for the latest version of Python (3.12) for torch.compile.\nAOTInductor freezing gives developers running AOTInductor more performance based optimizations by allowing the\nserialization of MKLDNN weights. As well, a new default TCPStore server backend utilizing libuv has been introduced\nwhich should significantly reduce initialization times for users running large-scale jobs.\nFinally, a new Python Custom Operator API makes it easier than before to integrate custom kernels\ninto PyTorch, especially for torch.compile.

    \n

    This release is composed of 3661 commits and 475 contributors since PyTorch 2.3. We want to sincerely thank our\ndedicated community for your contributions. As always, we encourage you to try these out and report any issues as we\nimprove 2.4. More information about how to get started with the PyTorch 2-series can be found at our\nGetting Started page.

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • d990dad [CMAKE] Look for Development.Module instead of Development (#129729)
    • \n
    • e4ee3be [Release only] use triton 3.0.x from pypi (#130336)
    • \n
    • 9afe4ec Update torchbench model expected accuracy values after pinning numpy (#129986)
    • \n
    • 499621e [CherryPick][FSDP2+TP] Disable 2D state_dict (#129519) (#129923)
    • \n
    • e5bda62 [CherryPick][DCP] Fix Optimizer Learning Rate not being loaded correctly (#12...
    • \n
    • 705e3ae Improve error message for weights_only load (#129783)
    • \n
    • b26cde4 [Windows] remove mkl shared library dependency. (#129740)
    • \n
    • 12ad767 [distributed] NCCL result code update (#129704)
    • \n
    • 1164d3c Add threadfence to 2-stage reduction for correct writes visibility (#129701)
    • \n
    • 9533637 Inductor to fail gracefully on Voltas for bf16 tensors (#129699)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=torch&package-manager=pip&previous-version=2.0.0&new-version=2.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/Image-Recognition-system/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d9c49ee8f3d405f6ef2f2b2041811a1bec56f0e9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "head": { + "ref": "dependabot/pip/torch-2.4.0", + "sha": "2f730d68eea93f82759a20df8d0a8f6e151379de", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "https://github.com/xc-link/63-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-18T16:58:23Z", + "created_at": "2025-03-21T23:27:52Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/63-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/63-networklist-org", + "title": "Bump torch from 2.0.0 to 2.6.0", + "body": "Bumps [torch](https://github.com/pytorch/pytorch) from 2.0.0 to 2.6.0.\n
    \nRelease notes\n

    Sourced from torch's releases.

    \n
    \n

    PyTorch 2.6.0 Release

    \n
      \n
    • Highlights
    • \n
    • Tracked Regressions
    • \n
    • Backwards Incompatible Change
    • \n
    • Deprecations
    • \n
    • New Features
    • \n
    • Improvements
    • \n
    • Bug fixes
    • \n
    • Performance
    • \n
    • Documentation
    • \n
    • Developers
    • \n
    \n

    Highlights

    \n

    We are excited to announce the release of PyTorch® 2.6 (release notes)! This release features multiple improvements for PT2: torch.compile can now be used with Python 3.13; new performance-related knob torch.compiler.set_stance; several AOTInductor enhancements. Besides the PT2 improvements, another highlight is FP16 support on X86 CPUs.

    \n

    NOTE: Starting with this release we are not going to publish on Conda, please see [Announcement] Deprecating PyTorch’s official Anaconda channel for the details.

    \n

    For this release the experimental Linux binaries shipped with CUDA 12.6.3 (as well as Linux Aarch64, Linux ROCm 6.2.4, and Linux XPU binaries) are built with CXX11_ABI=1 and are using the Manylinux 2.28 build platform. If you build PyTorch extensions with custom C++ or CUDA extensions, please update these builds to use CXX_ABI=1 as well and report any issues you are seeing. For the next PyTorch 2.7 release we plan to switch all Linux builds to Manylinux 2.28 and CXX11_ABI=1, please see [RFC] PyTorch next wheel build platform: manylinux-2.28 for the details and discussion.

    \n

    Also in this release as an important security improvement measure we have changed the default value for weights_only parameter of torch.load. This is a backward compatibility-breaking change, please see this forum post for more details.

    \n

    This release is composed of 3892 commits from 520 contributors since PyTorch 2.5. We want to sincerely thank our dedicated community for your contributions. As always, we encourage you to try these out and report any issues as we improve PyTorch. More information about how to get started with the PyTorch 2-series can be found at our Getting Started page.

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=torch&package-manager=pip&previous-version=2.0.0&new-version=2.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/Image-Recognition-system/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d9c49ee8f3d405f6ef2f2b2041811a1bec56f0e9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "head": { + "ref": "dependabot/pip/torch-2.6.0", + "sha": "024ea6d3b6f61f534a5ec04a28591edc923db9ef", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "https://github.com/xc-link/63-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-05-30T18:56:37Z", + "created_at": "2025-04-18T16:58:21Z", + "merge_commit_sha": "7b81a177164836ae2bbe3df0202374b544db96d9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/63-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/63-networklist-org", + "title": "Bump torch from 2.0.0 to 2.7.0", + "body": "Bumps [torch](https://github.com/pytorch/pytorch) from 2.0.0 to 2.7.0.\n
    \nRelease notes\n

    Sourced from torch's releases.

    \n
    \n

    PyTorch 2.7.0 Release Notes

    \n\n

    Highlights

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1341794 Gracefully handle optree less than minimum version, part 2 (#151323)
    • \n
    • 0739127 Gracefully handle optree less than minimum version (#150977)
    • \n
    • 0c236f3 Update triton wheel build, setuptools pin (#150953)
    • \n
    • c7ff78d Fix inplacing with multiple, fused uses (#150892)
    • \n
    • 894909a Revert "[CUDA] Only use vec128 if CUDA version is newer than 12.8" (#150855)
    • \n
    • ef2b139 [Manylinux 2.28] Correct Linux aarch64 cuda binaries wheel name (#150820)
    • \n
    • 3f236f1 [CUDA] Only use vec128 if CUDA version is newer than 12.8 (#150818)
    • \n
    • 35f1e76 Reland of "[ROCm] change preferred blas lib defaults (#150249)"" (#150707)
    • \n
    • a6321d6 Revert "Dont exclude constant_pad_nd in prologue fusion" (#150699)
    • \n
    • 1cc51c6 [CUDA][avgpool2d] Fix backward launch bounds again for sm100, sm120 (#150...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=torch&package-manager=pip&previous-version=2.0.0&new-version=2.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/Image-Recognition-system/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d9c49ee8f3d405f6ef2f2b2041811a1bec56f0e9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "head": { + "ref": "dependabot/pip/torch-2.7.0", + "sha": "ac446e4afa61d26e51c3b1b4ccf4e7b3bc013396", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "https://github.com/xc-link/63-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-30T18:56:35Z", + "merge_commit_sha": "8cb5149b5a013c67fc0004af4caeac4eecf9a459" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/49-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/49-networklist-org", + "title": "Bump org.apache.commons:commons-lang3 from 3.8.1 to 3.18.0", + "body": "Bumps org.apache.commons:commons-lang3 from 3.8.1 to 3.18.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.8.1&new-version=3.18.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/NetLicensingClient-kotlin/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "73a2dd9759d857b97ec8b81d2bbf80dd048aefdf", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/49-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.commons-commons-lang3-3.18.0", + "sha": "aed59f21a920a0ef86b5c084f93cca37da8d6dad", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/49-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/49-networklist-org/labels/dependencies", + "https://github.com/xc-link/49-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-12T02:04:00Z", + "merge_commit_sha": "2ffddca3679f330f1683533689c6a78dfb71e116" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/server-sql/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/server-sql", + "title": "Bump MailKit from 4.8.0 to 4.16.0", + "body": "Updated [MailKit](https://github.com/jstedfast/MailKit) from 4.8.0 to 4.16.0.\n\n
    \nRelease notes\n\n_Sourced from [MailKit's releases](https://github.com/jstedfast/MailKit/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/jstedfast/MailKit/commits).\n
    \n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MailKit&package-manager=nuget&previous-version=4.8.0&new-version=4.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/server-sql/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "6d9c8d0a474dedcd525d57549832c494fc95a8ac", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/server-sql" + }, + "head": { + "ref": "dependabot/nuget/src/Core/MailKit-4.16.0", + "sha": "920033d7ef12c4a548522fd8331390c375254980", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/server-sql" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/server-sql/labels/dependencies", + "https://github.com/xc-link/server-sql/labels/.NET" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-04-18T01:32:50Z", + "merge_commit_sha": "806656d74239abccdd7f53fade81e171de2788e6" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/63-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/63-networklist-org", + "title": "Bump pillow from 9.4.0 to 12.2.0", + "body": "Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.4.0 to 12.2.0.\n
    \nRelease notes\n

    Sourced from pillow's releases.

    \n
    \n

    12.2.0

    \n

    https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html

    \n

    Documentation

    \n\n

    Dependencies

    \n\n

    Testing

    \n\n

    Other changes

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from pillow's changelog.

    \n
    \n

    Changelog (Pillow)

    \n

    11.1.0 and newer

    \n

    See GitHub Releases:

    \n\n

    11.0.0 (2024-10-15)

    \n
      \n
    • \n

      Update licence to MIT-CMU #8460\n[hugovk]

      \n
    • \n
    • \n

      Conditionally define ImageCms type hint to avoid requiring core #8197\n[radarhere]

      \n
    • \n
    • \n

      Support writing LONG8 offsets in AppendingTiffWriter #8417\n[radarhere]

      \n
    • \n
    • \n

      Use ImageFile.MAXBLOCK when saving TIFF images #8461\n[radarhere]

      \n
    • \n
    • \n

      Do not close provided file handles with libtiff when saving #8458\n[radarhere]

      \n
    • \n
    • \n

      Support ImageFilter.BuiltinFilter for I;16* images #8438\n[radarhere]

      \n
    • \n
    • \n

      Use ImagingCore.ptr instead of ImagingCore.id #8341\n[homm, radarhere, hugovk]

      \n
    • \n
    • \n

      Updated EPS mode when opening images without transparency #8281\n[Yay295, radarhere]

      \n
    • \n
    • \n

      Use transparency when combining P frames from APNGs #8443\n[radarhere]

      \n
    • \n
    • \n

      Support all resampling filters when resizing I;16* images #8422\n[radarhere]

      \n
    • \n
    • \n

      Free memory on early return #8413\n[radarhere]

      \n
    • \n
    • \n

      Cast int before potentially exceeding INT_MAX #8402\n[radarhere]

      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pillow&package-manager=pip&previous-version=9.4.0&new-version=12.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/63-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "d9c49ee8f3d405f6ef2f2b2041811a1bec56f0e9", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "head": { + "ref": "dependabot/pip/pillow-12.2.0", + "sha": "d3ddee31f894308ee33b9106b538f7fce3599ed8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/63-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "https://github.com/xc-link/63-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-05-05T11:38:39Z", + "merge_commit_sha": "d00390f05f05e70956e6bc00206cb9fdfdc93375" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/harmony-ipfs/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/harmony-ipfs", + "title": "Bump parse-duration and truffle", + "body": "Removes [parse-duration](https://github.com/jkroso/parse-duration). It's no longer used after updating ancestor dependency [truffle](https://github.com/trufflesuite/truffle/tree/HEAD/packages/truffle). These dependencies need to be updated together.\n\nRemoves `parse-duration`\n\nUpdates `truffle` from 5.4.3 to 5.11.5\n
    \nRelease notes\n

    Sourced from truffle's releases.

    \n
    \n

    v5.11.5 — Dessertressed

    \n

    Hello all! Tiny release this week, just internal improvements and dependency updates. Thanks once again to @​legobeat for getting all of these! That's it for now!

    \n

    How to upgrade

    \n

    We recommend upgrading to the latest version of Truffle by running:

    \n
    npm uninstall -g truffle\nnpm install -g truffle\n
    \n

    Changelog

    \n

    Internal improvements

    \n\n

    Dependency updates

    \n\n

    v5.11.4 — Malted milk powder

    \n

    Hello all! Not much this week, primarily just a bunch of internal improvements and dependency updates. 🏗️ Thanks to @​legobeat for getting a bunch of these! 🧱🥁 We've also updated the list of Sourcify networks, even though the fetcher no longer actually checks it.

    \n

    That's it for now! 👋

    \n

    How to upgrade

    \n

    We recommend upgrading to the latest version of Truffle by running:

    \n
    npm uninstall -g truffle\nnpm install -g truffle\n
    \n

    Changelog

    \n

    Enhancements

    \n\n

    Internal improvements

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/harmony-ipfs/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "a45769e413f0da3074839b9e9f51e50024b517e8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/harmony-ipfs" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-4a376987ef", + "sha": "74e209829e44f27b02f1096376c0912d72391ffd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/harmony-ipfs" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/harmony-ipfs/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-12T19:51:26Z", + "merge_commit_sha": "ecd59dc08064501b9401cf6559926ecd128c13c3" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/harmony-ipfs/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/harmony-ipfs", + "title": "Bump elliptic and truffle", + "body": "Bumps [elliptic](https://github.com/indutny/elliptic) to 6.6.1 and updates ancestor dependency [truffle](https://github.com/trufflesuite/truffle/tree/HEAD/packages/truffle). These dependencies need to be updated together.\n\nUpdates `elliptic` from 6.5.4 to 6.6.1\n
    \nCommits\n\n
    \n
    \n\nUpdates `truffle` from 5.4.3 to 5.11.5\n
    \nRelease notes\n

    Sourced from truffle's releases.

    \n
    \n

    v5.11.5 — Dessertressed

    \n

    Hello all! Tiny release this week, just internal improvements and dependency updates. Thanks once again to @​legobeat for getting all of these! That's it for now!

    \n

    How to upgrade

    \n

    We recommend upgrading to the latest version of Truffle by running:

    \n
    npm uninstall -g truffle\nnpm install -g truffle\n
    \n

    Changelog

    \n

    Internal improvements

    \n\n

    Dependency updates

    \n\n

    v5.11.4 — Malted milk powder

    \n

    Hello all! Not much this week, primarily just a bunch of internal improvements and dependency updates. 🏗️ Thanks to @​legobeat for getting a bunch of these! 🧱🥁 We've also updated the list of Sourcify networks, even though the fetcher no longer actually checks it.

    \n

    That's it for now! 👋

    \n

    How to upgrade

    \n

    We recommend upgrading to the latest version of Truffle by running:

    \n
    npm uninstall -g truffle\nnpm install -g truffle\n
    \n

    Changelog

    \n

    Enhancements

    \n\n

    Internal improvements

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/harmony-ipfs/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "a45769e413f0da3074839b9e9f51e50024b517e8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/harmony-ipfs" + }, + "head": { + "ref": "dependabot/npm_and_yarn/multi-57878f5d58", + "sha": "bf5ba56d4ea90280c3e1780363430a2b1c385e40", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/harmony-ipfs" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/harmony-ipfs/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-15T07:43:42Z", + "merge_commit_sha": "1174d341e633560e28e54bf948c38ccf29e5a168" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/33-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/33-networklist-org", + "title": "Bump github.com/sirupsen/logrus from 1.8.1 to 1.8.3", + "body": "Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) from 1.8.1 to 1.8.3.\n
    \nRelease notes\n

    Sourced from github.com/sirupsen/logrus's releases.

    \n
    \n

    v1.8.3

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sirupsen/logrus/compare/v1.8.2...v1.8.3

    \n

    v1.8.2

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sirupsen/logrus/compare/v1.8.1...v1.8.2

    \n
    \n
    \n
    \nCommits\n
      \n
    • b30aa27 Merge pull request #1339 from xieyuschen/patch-1
    • \n
    • 6acd903 Merge pull request #1376 from ozfive/master
    • \n
    • 105e63f Merge pull request #1 from ashmckenzie/ashmckenzie/fix-writer-scanner
    • \n
    • c052ba6 Scan text in 64KB chunks
    • \n
    • e59b167 Merge pull request #1372 from tommyblue/syslog_different_loglevels
    • \n
    • 766cfec This commit fixes a potential denial of service vulnerability in logrus.Write...
    • \n
    • 70234da Add instructions to use different log levels for local and syslog
    • \n
    • a448f82 Merge pull request #1362 from FrancoisWagner/fix-data-race-in-hooks-test-pkg
    • \n
    • ff07b25 Fix data race in hooks.test package
    • \n
    • f8bf765 Merge pull request #1343 from sirupsen/dbd-upd-dep
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sirupsen/logrus&package-manager=go_modules&previous-version=1.8.1&new-version=1.8.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/goEncrypt/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "be70423b635c30f6f8cc79c67bdcbb858b5f54ac", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/33-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/sirupsen/logrus-1.8.3", + "sha": "cda91f1286383a593c4428e6e649b6655fa9fb53", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/33-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/33-networklist-org/labels/dependencies", + "https://github.com/xc-link/33-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-12-05T02:45:58Z", + "merge_commit_sha": "124d21a2fe50c1c2e5eff51c3b5bbfbe2bd5e985" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/50-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/50-networklist-org", + "title": "Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0", + "body": "Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.17.0&new-version=3.18.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/jsonschema2pojo/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "50b2fcad36391a4a17113ddfa93691645c79fa6a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/50-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.commons-commons-lang3-3.18.0", + "sha": "827d5df87dc9205d12ae8e39c943b239c449260f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/50-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/50-networklist-org/labels/dependencies", + "https://github.com/xc-link/50-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-12T01:34:18Z", + "merge_commit_sha": "c292a89481a0723d6ef67db780cef0727254ae61" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/10-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/10-networklist-org", + "title": "Create c-cpp.yml", + "body": null, + "base": { + "ref": "master", + "sha": "30774d0c9ecf82fb003fc15978b1f21bc85858f7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "d802eadbc9d67619e0c296774aa752c74711d47a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T02:56:18Z", + "merge_commit_sha": "5d078c21d777389c7d73de6e57ceef8ea67abe69" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/10-networklist-org/pull/2", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/10-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "master", + "sha": "30774d0c9ecf82fb003fc15978b1f21bc85858f7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "head": { + "ref": "xc-link-patch-2", + "sha": "56dae1e1c5388ad8a8d5397c0767bc4c41de363b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T02:59:20Z", + "merge_commit_sha": "4e3980d01d21b1cbba2383962ee9b7c00829e248" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/10-networklist-org/pull/3", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/10-networklist-org", + "title": "Create cmake-multi-platform.yml", + "body": null, + "base": { + "ref": "master", + "sha": "30774d0c9ecf82fb003fc15978b1f21bc85858f7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "head": { + "ref": "xc-link-patch-3", + "sha": "4e50bb4b82a94d89c8c289f901939c6bb1a7b385", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T03:58:46Z", + "merge_commit_sha": "15e768f7ade602919ad4bfc326373d9af788f3ef" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/10-networklist-org/pull/4", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/10-networklist-org", + "title": "Create msvc.yml", + "body": null, + "base": { + "ref": "master", + "sha": "30774d0c9ecf82fb003fc15978b1f21bc85858f7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "head": { + "ref": "xc-link-patch-4", + "sha": "100882ad813536bac017e5af134a789d86ece18c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/10-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T04:01:47Z", + "merge_commit_sha": "cb2b362bfda69612ecfddb49226a511d243c7d85" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/BaiduSpider/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/BaiduSpider", + "title": "⬆️ Bump jinja2 from 3.0.1 to 3.1.5", + "body": "Bumps [jinja2](https://github.com/pallets/jinja) from 3.0.1 to 3.1.5.\n
    \nRelease notes\n

    Sourced from jinja2's releases.

    \n
    \n

    3.1.5

    \n

    This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.5/\nChanges: https://jinja.palletsprojects.com/changes/#version-3-1-5\nMilestone: https://github.com/pallets/jinja/milestone/16?closed=1

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence types. #2032
    • \n
    • Calling sync render for an async template uses asyncio.run. #1952
    • \n
    • Avoid unclosed auto_aiter warnings. #1960
    • \n
    • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
    • \n
    • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
    • \n
    • The runtime uses the correct concat function for the current environment when calling block references. #1701
    • \n
    • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
    • \n
    • |int filter handles OverflowError from scientific notation. #1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
    • \n
    • Fix copy/pickle support for the internal missing object. #2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. #2061
    • \n
    • The error message from FileSystemLoader includes the paths that were searched. #1661
    • \n
    • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
    • \n
    • Improve annotations for methods returning copies. #1880
    • \n
    • urlize does not add mailto: to values like @a@b. #1870
    • \n
    • Tests decorated with @pass_context can be used with the |select filter. #1624
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
    • \n
    \n

    3.1.4

    \n

    This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.4/\nChanges: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-4

    \n
      \n
    • The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. GHSA-h75v-3vvj-5mfj
    • \n
    \n

    3.1.3

    \n

    This is a fix release for the 3.1.x feature branch.

    \n\n

    3.1.2

    \n

    This is a fix release for the 3.1.0 feature release.

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from jinja2's changelog.

    \n
    \n

    Version 3.1.5

    \n

    Released 2024-12-21

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as\nby passing a stored reference to a filter that calls its argument.\n:ghsa:q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid\nissues with names that contain f-string syntax.\n:issue:1792, :ghsa:gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence\ntypes. :issue:2032
    • \n
    • Calling sync render for an async template uses asyncio.run.\n:pr:1952
    • \n
    • Avoid unclosed auto_aiter warnings. :pr:1960
    • \n
    • Return an aclose-able AsyncGenerator from\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving root_render_func() unclosed in\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends.\n:pr:1960
    • \n
    • The runtime uses the correct concat function for the current environment\nwhen calling block references. :issue:1701
    • \n
    • Make |unique async-aware, allowing it to be used after another\nasync-aware filter. :issue:1781
    • \n
    • |int filter handles OverflowError from scientific notation.\n:issue:1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %}\ncall. :issue:2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined\nobjects. :issue:2025
    • \n
    • Fix copy/pickle support for the internal missing object.\n:issue:2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. :pr:2061
    • \n
    • The error message from FileSystemLoader includes the paths that were\nsearched. :issue:1661
    • \n
    • PackageLoader shows a clearer error message when the package does not\ncontain the templates directory. :issue:1705
    • \n
    • Improve annotations for methods returning copies. :pr:1880
    • \n
    • urlize does not add mailto: to values like @a@b. :pr:1870
    • \n
    • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the\ntarget is a namespace attribute. :issue:1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks\ndoes not cause the variable to be considered initially undefined.\n:issue:1253
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 877f6e5 release version 3.1.5
    • \n
    • 8d58859 remove test pypi
    • \n
    • eda8fe8 update dev dependencies
    • \n
    • c8fdce1 Fix bug involving calling set on a template parameter within all branches of ...
    • \n
    • 66587ce Fix bug where set would sometimes fail within if
    • \n
    • fbc3a69 Add support for namespaces in tuple parsing (#1664)
    • \n
    • b8f4831 more comments about nsref assignment
    • \n
    • ee83219 Add support for namespaces in tuple assignment
    • \n
    • 1d55cdd Triple quotes in docs (#2064)
    • \n
    • 8a8eafc edit block assignment section
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jinja2&package-manager=pip&previous-version=3.0.1&new-version=3.1.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/BaiduSpider/network/alerts).\n\n
    ", + "base": { + "ref": "dev", + "sha": "ef10da78497f6438deed3f119ecc0cd0a0cc91ad", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "head": { + "ref": "dependabot/pip/jinja2-3.1.5", + "sha": "8939b6ba632d2b1117654b88f33920df627dd9a7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/BaiduSpider/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-03-05T23:52:32Z", + "created_at": "2025-01-08T16:30:50Z", + "merge_commit_sha": "9f1b74a1fb3a8a60c214aac3f5dfc66cc6ea3f60" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/get_cnip/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/get_cnip", + "title": "Bump openssl from 0.10.38 to 0.10.68", + "body": "Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.38 to 0.10.68.\n
    \nRelease notes\n

    Sourced from openssl's releases.

    \n
    \n

    openssl-v0.10.68

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...openssl-v0.10.68

    \n

    openssl-v0.10.67

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67

    \n

    openssl-v0.10.66

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66

    \n

    openssl-v0.10.65

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • be8dcfd Merge pull request #2318 from alex/msrv-fix
    • \n
    • 065cc77 fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68
    • \n
    • 7b3ec80 Merge pull request #2316 from alex/bump-for-release
    • \n
    • b510e8c Release openssl v0.10.67 and openssl-sys v0.9.104
    • \n
    • ee3b024 Merge pull request #2315 from botovq/libressl-4.0.0
    • \n
    • c4dabc2 CI: Update LibreSSL CI
    • \n
    • f9027b7 LibreSSL 4.0.0 is released & stable
    • \n
    • 1b51ba5 Merge pull request #2313 from sfackler/sfackler-patch-1
    • \n
    • de8a97c Bump to 3.4.0-beta1
    • \n
    • 3930464 Merge pull request #2312 from sfackler/alex-patch-1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.38&new-version=0.10.68)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/get_cnip/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "b3caee6ac39442abf16f2952d3e7386303e93305", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/get_cnip" + }, + "head": { + "ref": "dependabot/cargo/openssl-0.10.68", + "sha": "14d11c4a3786711c6c9824bf68c60da4b2b001ab", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/get_cnip" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/get_cnip/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-03T18:25:16Z", + "merge_commit_sha": "ae3c05520d9133017578c81627dc5d7854354feb" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/BaiduSpider/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/BaiduSpider", + "title": "⬆️ Bump certifi from 2021.5.30 to 2024.7.4", + "body": "Bumps [certifi](https://github.com/certifi/python-certifi) from 2021.5.30 to 2024.7.4.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=certifi&package-manager=pip&previous-version=2021.5.30&new-version=2024.7.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/BaiduSpider/network/alerts).\n\n
    ", + "base": { + "ref": "dev", + "sha": "ef10da78497f6438deed3f119ecc0cd0a0cc91ad", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "head": { + "ref": "dependabot/pip/certifi-2024.7.4", + "sha": "9763b8d13ddb35a046bb10a3b490d766382c396b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/BaiduSpider/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-12T00:01:12Z", + "merge_commit_sha": "59ccc57e11e4de322501bbb78b021b3c0b71b25a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/BaiduSpider/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/BaiduSpider", + "title": "⬆️ Bump jinja2 from 3.0.1 to 3.1.6", + "body": "Bumps [jinja2](https://github.com/pallets/jinja) from 3.0.1 to 3.1.6.\n
    \nRelease notes\n

    Sourced from jinja2's releases.

    \n
    \n

    3.1.6

    \n

    This is the Jinja 3.1.6 security release, which fixes security issues but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.6/\nChanges: https://jinja.palletsprojects.com/en/stable/changes/#version-3-1-6

    \n\n

    3.1.5

    \n

    This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.5/\nChanges: https://jinja.palletsprojects.com/changes/#version-3-1-5\nMilestone: https://github.com/pallets/jinja/milestone/16?closed=1

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence types. #2032
    • \n
    • Calling sync render for an async template uses asyncio.run. #1952
    • \n
    • Avoid unclosed auto_aiter warnings. #1960
    • \n
    • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
    • \n
    • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
    • \n
    • The runtime uses the correct concat function for the current environment when calling block references. #1701
    • \n
    • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
    • \n
    • |int filter handles OverflowError from scientific notation. #1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
    • \n
    • Fix copy/pickle support for the internal missing object. #2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. #2061
    • \n
    • The error message from FileSystemLoader includes the paths that were searched. #1661
    • \n
    • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
    • \n
    • Improve annotations for methods returning copies. #1880
    • \n
    • urlize does not add mailto: to values like @a@b. #1870
    • \n
    • Tests decorated with @pass_context can be used with the |select filter. #1624
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
    • \n
    \n

    3.1.4

    \n

    This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.4/\nChanges: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-4

    \n
      \n
    • The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. GHSA-h75v-3vvj-5mfj
    • \n
    \n

    3.1.3

    \n

    This is a fix release for the 3.1.x feature branch.

    \n
      \n
    • Fix for GHSA-h5c8-rqwp-cp95. You are affected if you are using xmlattr and passing user input as attribute keys.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from jinja2's changelog.

    \n
    \n

    Version 3.1.6

    \n

    Released 2025-03-05

    \n
      \n
    • The |attr filter does not bypass the environment's attribute lookup,\nallowing the sandbox to apply its checks. :ghsa:cpwx-vrp4-4pq7
    • \n
    \n

    Version 3.1.5

    \n

    Released 2024-12-21

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as\nby passing a stored reference to a filter that calls its argument.\n:ghsa:q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid\nissues with names that contain f-string syntax.\n:issue:1792, :ghsa:gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence\ntypes. :issue:2032
    • \n
    • Calling sync render for an async template uses asyncio.run.\n:pr:1952
    • \n
    • Avoid unclosed auto_aiter warnings. :pr:1960
    • \n
    • Return an aclose-able AsyncGenerator from\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving root_render_func() unclosed in\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends.\n:pr:1960
    • \n
    • The runtime uses the correct concat function for the current environment\nwhen calling block references. :issue:1701
    • \n
    • Make |unique async-aware, allowing it to be used after another\nasync-aware filter. :issue:1781
    • \n
    • |int filter handles OverflowError from scientific notation.\n:issue:1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %}\ncall. :issue:2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined\nobjects. :issue:2025
    • \n
    • Fix copy/pickle support for the internal missing object.\n:issue:2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. :pr:2061
    • \n
    • The error message from FileSystemLoader includes the paths that were\nsearched. :issue:1661
    • \n
    • PackageLoader shows a clearer error message when the package does not\ncontain the templates directory. :issue:1705
    • \n
    • Improve annotations for methods returning copies. :pr:1880
    • \n
    • urlize does not add mailto: to values like @a@b. :pr:1870
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jinja2&package-manager=pip&previous-version=3.0.1&new-version=3.1.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/BaiduSpider/network/alerts).\n\n
    ", + "base": { + "ref": "dev", + "sha": "ef10da78497f6438deed3f119ecc0cd0a0cc91ad", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "head": { + "ref": "dependabot/pip/jinja2-3.1.6", + "sha": "4b96762602e71ec0c7f5e03a4d4ae6e9df304da2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/BaiduSpider" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/BaiduSpider/labels/dependencies", + "https://github.com/xc-link/BaiduSpider/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-05T23:52:30Z", + "merge_commit_sha": "497ceaf0236a0d05e249f5e56924d88ed68d4196" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump rack from 3.0.9.1 to 3.0.14", + "body": "Bumps [rack](https://github.com/rack/rack) from 3.0.9.1 to 3.0.14.\n
    \nChangelog\n

    Sourced from rack's changelog.

    \n
    \n

    [3.0.14] - 2025-03-11

    \n

    Security

    \n\n

    [3.0.13] - 2025-03-04

    \n

    Security

    \n\n

    [3.0.12] - 2025-02-12

    \n

    Security

    \n\n

    [3.0.11] - 2024-05-10

    \n
      \n
    • Backport #2062 to 3-0-stable: Do not allow BodyProxy to respond to to_str, make to_ary call close . (#2062, @​jeremyevans)
    • \n
    \n

    [3.0.10] - 2024-03-21

    \n
      \n
    • Backport #2104 to 3-0-stable: Return empty when parsing a multi-part POST with only one end delimiter. (#2164, @​JoeDupuis)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 340cd1f Bump patch version.
    • \n
    • 9b29d6e Update changelog.
    • \n
    • 61f83f6 Use a fully resolved file path when confirming if a file can be served by `Ra...
    • \n
    • ef96f4a Bump patch version.
    • \n
    • 697a97e Add changelog for previous merged PR.
    • \n
    • 803aa22 Use #inspect to prevent log injection.
    • \n
    • 0b284e8 Remove autoloads for constants no longer shipped with rack (#2269)
    • \n
    • 5459513 Bump patch version.
    • \n
    • d00d195 Escape non-printable characters when logging.
    • \n
    • e1376a5 Update CHANGELOG.md (#2224)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=3.0.9.1&new-version=3.0.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/community/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/rack-3.0.14", + "sha": "d85d4aad155e693d90a4de7fe22280828bdb34be", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-05-08T15:15:54Z", + "created_at": "2025-03-10T22:57:16Z", + "merge_commit_sha": "d439ea9d58ad4b762da4a043f489b45d04e567c0" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump rack from 3.0.9.1 to 3.0.16", + "body": "Bumps [rack](https://github.com/rack/rack) from 3.0.9.1 to 3.0.16.\n
    \nChangelog\n

    Sourced from rack's changelog.

    \n
    \n

    [3.0.16] - 2025-05-06

    \n

    Security

    \n
      \n
    • CVE-2025-46727 Unbounded parameter parsing in Rack::QueryParser can lead to memory exhaustion.
    • \n
    \n

    [3.0.15] - 2025-04-13

    \n\n

    [3.0.14] - 2025-03-11

    \n

    Security

    \n\n

    [3.0.13] - 2025-03-04

    \n

    Security

    \n\n

    [3.0.12] - 2025-02-12

    \n

    Security

    \n\n

    [3.0.11] - 2024-05-10

    \n
      \n
    • Backport #2062 to 3-0-stable: Do not allow BodyProxy to respond to to_str, make to_ary call close . (#2062, @​jeremyevans)
    • \n
    \n

    [3.0.10] - 2024-03-21

    \n
      \n
    • Backport #2104 to 3-0-stable: Return empty when parsing a multi-part POST with only one end delimiter. (#2164, @​JoeDupuis)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 5a15919 Bump patch version.
    • \n
    • 65ceccb Update external tests.
    • \n
    • 2bb5263 Merge commit from fork
    • \n
    • 9413a87 Bump patch version.
    • \n
    • f95555a Ensure Rack::ETag correctly updates response body. (#2324)
    • \n
    • 340cd1f Bump patch version.
    • \n
    • 9b29d6e Update changelog.
    • \n
    • 61f83f6 Use a fully resolved file path when confirming if a file can be served by `Ra...
    • \n
    • ef96f4a Bump patch version.
    • \n
    • 697a97e Add changelog for previous merged PR.
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=3.0.9.1&new-version=3.0.16)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/community/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/rack-3.0.16", + "sha": "977e5f5ec3d988d7041c34358fd0f3e5c9141189", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-10-10T18:02:55Z", + "created_at": "2025-05-08T15:15:49Z", + "merge_commit_sha": "b6348ecd2cc876ca9900caa53ea8b9e99df18d91" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump setuptools from 66.0.0 to 78.1.1 in /finhack", + "body": "Bumps [setuptools](https://github.com/pypa/setuptools) from 66.0.0 to 78.1.1.\n
    \nChangelog\n

    Sourced from setuptools's changelog.

    \n
    \n

    v78.1.1

    \n

    Bugfixes

    \n
      \n
    • More fully sanitized the filename in PackageIndex._download. (#4946)
    • \n
    \n

    v78.1.0

    \n

    Features

    \n
      \n
    • Restore access to _get_vc_env with a warning. (#4874)
    • \n
    \n

    v78.0.2

    \n

    Bugfixes

    \n
      \n
    • Postponed removals of deprecated dash-separated and uppercase fields in setup.cfg.\nAll packages with deprecated configurations are advised to move before 2026. (#4911)
    • \n
    \n

    v78.0.1

    \n

    Misc

    \n\n

    v78.0.0

    \n

    Bugfixes

    \n
      \n
    • Reverted distutils changes that broke the monkey patching of command classes. (#4902)
    • \n
    \n

    Deprecations and Removals

    \n
      \n
    • Setuptools no longer accepts options containing uppercase or dash characters in setup.cfg.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=66.0.0&new-version=78.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/finhack/setuptools-78.1.1", + "sha": "943ff1175c08968f49c54d1570c1c3d2ad39dbc2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-19T19:14:59Z", + "merge_commit_sha": "8d0b11ef9afac96cc85eeb1d01ff9d114f5981c9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump requests from 2.29.0 to 2.32.4", + "body": "Bumps [requests](https://github.com/psf/requests) from 2.29.0 to 2.32.4.\n
    \nRelease notes\n

    Sourced from requests's releases.

    \n
    \n

    v2.32.4

    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file. (#6965)
    • \n
    \n

    Improvements

    \n
      \n
    • Numerous documentation improvements
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for pypy 3.11 for Linux and macOS. (#6926)
    • \n
    • Dropped support for pypy 3.9 following its end of support. (#6926)
    • \n
    \n

    v2.32.3

    \n

    2.32.3 (2024-05-29)

    \n

    Bugfixes

    \n
      \n
    • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of\nHTTPAdapter. (#6716)
    • \n
    • Fixed issue where Requests started failing to run on Python versions compiled\nwithout the ssl module. (#6724)
    • \n
    \n

    v2.32.2

    \n

    2.32.2 (2024-05-21)

    \n

    Deprecations

    \n
      \n
    • \n

      To provide a more stable migration for custom HTTPAdapters impacted\nby the CVE changes in 2.32.0, we've renamed _get_connection to\na new public API, get_connection_with_tls_context. Existing custom\nHTTPAdapters will need to migrate their code to use this new API.\nget_connection is considered deprecated in all versions of Requests>=2.32.0.

      \n

      A minimal (2-line) example has been provided in the linked PR to ease\nmigration, but we strongly urge users to evaluate if their custom adapter\nis subject to the same issue described in CVE-2024-35195. (#6710)

      \n
    • \n
    \n

    v2.32.1

    \n

    2.32.1 (2024-05-20)

    \n

    Bugfixes

    \n
      \n
    • Add missing test certs to the sdist distributed on PyPI.
    • \n
    \n

    v2.32.0

    \n

    2.32.0 (2024-05-20)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from requests's changelog.

    \n
    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file.
    • \n
    \n

    Improvements

    \n
      \n
    • Numerous documentation improvements
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for pypy 3.11 for Linux and macOS.
    • \n
    • Dropped support for pypy 3.9 following its end of support.
    • \n
    \n

    2.32.3 (2024-05-29)

    \n

    Bugfixes

    \n
      \n
    • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of\nHTTPAdapter. (#6716)
    • \n
    • Fixed issue where Requests started failing to run on Python versions compiled\nwithout the ssl module. (#6724)
    • \n
    \n

    2.32.2 (2024-05-21)

    \n

    Deprecations

    \n
      \n
    • \n

      To provide a more stable migration for custom HTTPAdapters impacted\nby the CVE changes in 2.32.0, we've renamed _get_connection to\na new public API, get_connection_with_tls_context. Existing custom\nHTTPAdapters will need to migrate their code to use this new API.\nget_connection is considered deprecated in all versions of Requests>=2.32.0.

      \n

      A minimal (2-line) example has been provided in the linked PR to ease\nmigration, but we strongly urge users to evaluate if their custom adapter\nis subject to the same issue described in CVE-2024-35195. (#6710)

      \n
    • \n
    \n

    2.32.1 (2024-05-20)

    \n

    Bugfixes

    \n
      \n
    • Add missing test certs to the sdist distributed on PyPI.
    • \n
    \n

    2.32.0 (2024-05-20)

    \n

    Security

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 021dc72 Polish up release tooling for last manual release
    • \n
    • 821770e Bump version and add release notes for v2.32.4
    • \n
    • 59f8aa2 Add netrc file search information to authentication documentation (#6876)
    • \n
    • 5b4b64c Add more tests to prevent regression of CVE 2024 47081
    • \n
    • 7bc4587 Add new test to check netrc auth leak (#6962)
    • \n
    • 96ba401 Only use hostname to do netrc lookup instead of netloc
    • \n
    • 7341690 Merge pull request #6951 from tswast/patch-1
    • \n
    • 6716d7c remove links
    • \n
    • a7e1c74 Update docs/conf.py
    • \n
    • c799b81 docs: fix dead links to kenreitz.org
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=requests&package-manager=pip&previous-version=2.29.0&new-version=2.32.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/requests-2.32.4", + "sha": "6599056023ca636de708e9594fedbc3a7ca95944", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-03-26T02:21:46Z", + "created_at": "2025-06-10T03:50:12Z", + "merge_commit_sha": "7635c420f5a7da753ad98dd83bd6794a62a95e74" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/25-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/25-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "master", + "sha": "1a6051b0e3803cc62e251ee921e4bf83c0af2400", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/25-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "3f444dd7fe13ee42744a0c2b60e2e48fee7caf82", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/25-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T03:01:25Z", + "merge_commit_sha": "841d9213258c44ddcb078cf5abd0bd42bc93c68b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/3", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "ef2c3152419d7aae1c2b62c3e3415990a65292bd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T17:25:42Z", + "merge_commit_sha": "52a86117770050719218c11afe007a9030323acc" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump rexml from 3.3.6 to 3.4.2", + "body": "Bumps [rexml](https://github.com/ruby/rexml) from 3.3.6 to 3.4.2.\n
    \nRelease notes\n

    Sourced from rexml's releases.

    \n
    \n

    REXML 3.4.2 - 2025-08-26

    \n

    Improvement

    \n
      \n
    • \n

      Improved performance.

      \n\n
    • \n
    • \n

      Raise appropriate exception when failing to match start tag in DOCTYPE

      \n
        \n
      • GH-247
      • \n
      • Patch by NAITOH Jun
      • \n
      \n
    • \n
    • \n

      Deprecate accepting array as an element in XPath.match, first and each

      \n
        \n
      • GH-252
      • \n
      • Patch by tomoya ishida
      • \n
      \n
    • \n
    • \n

      Don't call needless encoding_updated

      \n
        \n
      • GH-259
      • \n
      • Patch by Sutou Kouhei
      • \n
      \n
    • \n
    • \n

      Reuse XPath::match

      \n\n
    • \n
    • \n

      Cache redundant calls for doctype

      \n\n
    • \n
    • \n

      Use Safe Navigation (&.) from Ruby 2.3

      \n\n
    • \n
    • \n

      Remove redundant return statements

      \n\n
    • \n
    • \n

      Added XML declaration check & Source#skip_spaces method

      \n
        \n
      • GH-282
      • \n
      • Patch by NAITOH Jun
      • \n
      • Reported by Sofi Aberegg
      • \n
      \n
    • \n
    \n

    Fixes

    \n
      \n
    • Fix docs typo\n
        \n
      • GH-248
      • \n
      • Patch by James Coleman
      • \n
      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from rexml's changelog.

    \n
    \n

    3.4.2 - 2025-08-26 {#version-3-4-2}

    \n

    Improvement

    \n
      \n
    • \n

      Improved performance.

      \n\n
    • \n
    • \n

      Raise appropriate exception when failing to match start tag in DOCTYPE

      \n
        \n
      • GH-247
      • \n
      • Patch by NAITOH Jun
      • \n
      \n
    • \n
    • \n

      Deprecate accepting array as an element in XPath.match, first and each

      \n
        \n
      • GH-252
      • \n
      • Patch by tomoya ishida
      • \n
      \n
    • \n
    • \n

      Don't call needless encoding_updated

      \n
        \n
      • GH-259
      • \n
      • Patch by Sutou Kouhei
      • \n
      \n
    • \n
    • \n

      Reuse XPath::match

      \n\n
    • \n
    • \n

      Cache redundant calls for doctype

      \n\n
    • \n
    • \n

      Use Safe Navigation (&.) from Ruby 2.3

      \n\n
    • \n
    • \n

      Remove redundant return statements

      \n\n
    • \n
    • \n

      Added XML declaration check & Source#skip_spaces method

      \n
        \n
      • GH-282
      • \n
      • Patch by NAITOH Jun
      • \n
      • Reported by Sofi Aberegg
      • \n
      \n
    • \n
    \n

    Fixes

    \n
      \n
    • Fix docs typo\n
        \n
      • GH-248
      • \n
      • Patch by James Coleman
      • \n
      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rexml&package-manager=bundler&previous-version=3.3.6&new-version=3.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/community/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/rexml-3.4.2", + "sha": "51648aa3f3abe09f05bd3b1dd015fd2a027fbf35", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-09-17T18:34:28Z", + "merge_commit_sha": "61d5f0cdf1092c8eda51012ae73322931478c722" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump rack from 3.0.9.1 to 3.1.18", + "body": "Bumps [rack](https://github.com/rack/rack) from 3.0.9.1 to 3.1.18.\n
    \nChangelog\n

    Sourced from rack's changelog.

    \n
    \n

    Changelog

    \n

    All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.

    \n

    Unreleased

    \n

    Security

    \n
      \n
    • CVE-2025-61780 Improper handling of headers in Rack::Sendfile may allow proxy bypass.
    • \n
    • CVE-2025-61919 Unbounded read in Rack::Request form parsing can lead to memory exhaustion.
    • \n
    \n

    SPEC Changes

    \n\n

    Added

    \n
      \n
    • Add Rack::Files#assign_headers to allow overriding how the configured file headers are set. (#2377, @​codergeek121)
    • \n
    • Add support for rack.response_finished to Rack::TempfileReaper. (#2363, @​skipkayhil)
    • \n
    • Add support for streaming bodies when using Rack::Events. (#2375, @​unflxw)
    • \n
    \n

    Changed

    \n\n

    [3.2.2] - 2025-10-07

    \n

    Security

    \n
      \n
    • CVE-2025-61772 Multipart parser buffers unbounded per-part headers, enabling DoS (memory exhaustion)
    • \n
    • CVE-2025-61771 Multipart parser buffers large non‑file fields entirely in memory, enabling DoS (memory exhaustion)
    • \n
    • CVE-2025-61770 Unbounded multipart preamble buffering enables DoS (memory exhaustion)
    • \n
    \n

    [3.2.1] -- 2025-09-02

    \n

    Added

    \n
      \n
    • Add support for streaming bodies when using Rack::Events. (#2375, @​unflxw)
    • \n
    \n

    Fixed

    \n
      \n
    • Fix an issue where a NoMethodError would be raised when using Rack::Events with streaming bodies. (#2375, @​unflxw)
    • \n
    \n

    [3.2.0] - 2025-07-31

    \n

    This release continues Rack's evolution toward a cleaner, more efficient foundation while maintaining backward compatibility for most applications. The breaking changes primarily affect deprecated functionality, so most users should experience a smooth upgrade with improved performance and standards compliance.

    \n

    SPEC Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 96cf078 Bump patch version.
    • \n
    • cbd541e Unbounded read in Rack::Request form parsing can lead to memory exhaustion.
    • \n
    • 7e69f65 Improper handling of proxy headers in Rack::Sendfile may allow proxy bypass.
    • \n
    • db6bc0f Normalize adivsories links.
    • \n
    • ad81f80 Fix handling of Errno::EPIPE in multipart tests.
    • \n
    • 8d141b3 Bump patch version.
    • \n
    • f224f93 Limit amount of retained data when parsing multipart requests
    • \n
    • e08f78c Fix denial of service vulnerbilties in multipart parsing
    • \n
    • 02ffd94 Add changelog for v3.1.16
    • \n
    • df2f3f2 Bump patch version.
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=3.0.9.1&new-version=3.1.18)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/community/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/rack-3.1.18", + "sha": "7e7154db86957dfea2aaea93578b0478b4c7007b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-02-17T16:28:53Z", + "created_at": "2025-10-10T18:02:53Z", + "merge_commit_sha": "c14a09b13a4972fef087e0fda907cebd8070ed75" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump cryptography from 39.0.1 to 46.0.5", + "body": "Bumps [cryptography](https://github.com/pyca/cryptography) from 39.0.1 to 46.0.5.\n
    \nChangelog\n

    Sourced from cryptography's changelog.

    \n
    \n

    46.0.5 - 2026-02-10

    \n
    \n* An attacker could create a malicious public key that reveals portions of your\n  private key when using certain uncommon elliptic curves (binary curves).\n  This version now includes additional security checks to prevent this attack.\n  This issue only affects binary elliptic curves, which are rarely used in\n  real-world applications. Credit to **XlabAI Team of Tencent Xuanwu Lab and\n  Atuin Automated Vulnerability Discovery Engine** for reporting the issue.\n  **CVE-2026-26007**\n* Support for ``SECT*`` binary elliptic curves is deprecated and will be\n  removed in the next release.\n

    .. v46-0-4:

    \n

    46.0.4 - 2026-01-27
    \n

    \n
      \n
    • Dropped support for win_arm64 wheels_.
    • \n
    • Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.5.
    • \n
    \n

    .. _v46-0-3:

    \n

    46.0.3 - 2025-10-15

    \n
    \n* Fixed compilation when using LibreSSL 4.2.0.\n

    .. _v46-0-2:

    \n

    46.0.2 - 2025-09-30
    \n

    \n
      \n
    • Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.4.
    • \n
    \n

    .. _v46-0-1:

    \n

    46.0.1 - 2025-09-16

    \n
    \n* Fixed an issue where users installing via ``pip`` on Python 3.14 development\n  versions would not properly install a dependency.\n* Fixed an issue building the free-threaded macOS 3.14 wheels.\n

    .. _v46-0-0:

    \n

    46.0.0 - 2025-09-16
    \n

    \n
      \n
    • BACKWARDS INCOMPATIBLE: Support for Python 3.7 has been removed.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cryptography&package-manager=pip&previous-version=39.0.1&new-version=46.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/cryptography-46.0.5", + "sha": "e926eec120e1bbbb6cdb180a78e6ccf45539d2f4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2026-03-28T07:06:07Z", + "created_at": "2026-02-10T23:09:22Z", + "merge_commit_sha": "9de8062532f16f44a487c38467de11db48ca352a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump flask from 3.0.2 to 3.1.3", + "body": "Bumps [flask](https://github.com/pallets/flask) from 3.0.2 to 3.1.3.\n
    \nRelease notes\n

    Sourced from flask's releases.

    \n
    \n

    3.1.3

    \n

    This is the Flask 3.1.3 security fix release, which fixes a security issue but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Flask/3.1.3/\nChanges: https://flask.palletsprojects.com/page/changes/#version-3-1-3

    \n
      \n
    • The session is marked as accessed for operations that only access the keys but not the values, such as in and len. GHSA-68rp-wp8r-4726
    • \n
    \n

    3.1.2

    \n

    This is the Flask 3.1.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Flask/3.1.2/\nChanges: https://flask.palletsprojects.com/page/changes/#version-3-1-2\nMilestone: https://github.com/pallets/flask/milestone/38?closed=1

    \n
      \n
    • stream_with_context does not fail inside async views. #5774
    • \n
    • When using follow_redirects in the test client, the final state of session is correct. #5786
    • \n
    • Relax type hint for passing bytes IO to send_file. #5776
    • \n
    \n

    3.1.1

    \n

    This is the Flask 3.1.1 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Flask/3.1.1/\nChanges: https://flask.palletsprojects.com/en/stable/changes/#version-3-1-1\nMilestone https://github.com/pallets/flask/milestone/36?closed=1

    \n
      \n
    • Fix signing key selection order when key rotation is enabled via SECRET_KEY_FALLBACKS. GHSA-4grg-w6v8-c28g
    • \n
    • Fix type hint for cli_runner.invoke. #5645
    • \n
    • flask --help loads the app and plugins first to make sure all commands are shown. #5673
    • \n
    • Mark sans-io base class as being able to handle views that return AsyncIterable. This is not accurate for Flask, but makes typing easier for Quart. #5659
    • \n
    \n

    3.1.0

    \n

    This is the Flask 3.1.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecations, or introduce potentially breaking changes. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

    \n

    PyPI: https://pypi.org/project/Flask/3.1.0/\nChanges: https://flask.palletsprojects.com/en/stable/changes/#version-3-1-0\nMilestone: https://github.com/pallets/flask/milestone/33?closed=1

    \n
      \n
    • Drop support for Python 3.8. #5623
    • \n
    • Update minimum dependency versions to latest feature releases. Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. #5624, #5633
    • \n
    • Provide a configuration option to control automatic option responses. #5496
    • \n
    • Flask.open_resource/open_instance_resource and Blueprint.open_resource take an encoding parameter to use when opening in text mode. It defaults to utf-8. #5504
    • \n
    • Request.max_content_length can be customized per-request instead of only through the MAX_CONTENT_LENGTH config. Added MAX_FORM_MEMORY_SIZE and MAX_FORM_PARTS config. Added documentation about resource limits to the security page. #5625
    • \n
    • Add support for the Partitioned cookie attribute (CHIPS), with the SESSION_COOKIE_PARTITIONED config. #5472
    • \n
    • -e path takes precedence over default .env and .flaskenv files. load_dotenv loads default files in addition to a path unless load_defaults=False is passed. #5628
    • \n
    • Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old secret keys that can still be used for unsigning. Extensions will need to add support. #5621
    • \n
    • Fix how setting host_matching=True or subdomain_matching=False interacts with SERVER_NAME. Setting SERVER_NAME no longer restricts requests to only that domain. #5553
    • \n
    • Request.trusted_hosts is checked during routing, and can be set through the TRUSTED_HOSTS config. #5636
    • \n
    \n

    3.0.3

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from flask's changelog.

    \n
    \n

    Version 3.1.3

    \n

    Released 2026-02-18

    \n
      \n
    • The session is marked as accessed for operations that only access the keys\nbut not the values, such as in and len. :ghsa:68rp-wp8r-4726
    • \n
    \n

    Version 3.1.2

    \n

    Released 2025-08-19

    \n
      \n
    • stream_with_context does not fail inside async views. :issue:5774
    • \n
    • When using follow_redirects in the test client, the final state\nof session is correct. :issue:5786
    • \n
    • Relax type hint for passing bytes IO to send_file. :issue:5776
    • \n
    \n

    Version 3.1.1

    \n

    Released 2025-05-13

    \n
      \n
    • Fix signing key selection order when key rotation is enabled via\nSECRET_KEY_FALLBACKS. :ghsa:4grg-w6v8-c28g
    • \n
    • Fix type hint for cli_runner.invoke. :issue:5645
    • \n
    • flask --help loads the app and plugins first to make sure all commands\nare shown. :issue:5673
    • \n
    • Mark sans-io base class as being able to handle views that return\nAsyncIterable. This is not accurate for Flask, but makes typing easier\nfor Quart. :pr:5659
    • \n
    \n

    Version 3.1.0

    \n

    Released 2024-11-13

    \n
      \n
    • Drop support for Python 3.8. :pr:5623
    • \n
    • Update minimum dependency versions to latest feature releases.\nWerkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. :pr:5624,5633
    • \n
    • Provide a configuration option to control automatic option\nresponses. :pr:5496
    • \n
    • Flask.open_resource/open_instance_resource and\nBlueprint.open_resource take an encoding parameter to use when\nopening in text mode. It defaults to utf-8. :issue:5504
    • \n
    • Request.max_content_length can be customized per-request instead of only\nthrough the MAX_CONTENT_LENGTH config. Added
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 22d9247 release version 3.1.3
    • \n
    • 089cb86 Merge commit from fork
    • \n
    • c17f379 request context tracks session access
    • \n
    • 27be933 start version 3.1.3
    • \n
    • 4e652d3 Abort if the instance folder cannot be created (#5903)
    • \n
    • 3d03098 Abort if the instance folder cannot be created
    • \n
    • 407eb76 document using gevent for async (#5900)
    • \n
    • ac5664d document using gevent for async
    • \n
    • 4f79d5b Increase required flit_core version to 3.11 (#5865)
    • \n
    • fe3b215 Increase required flit_core version to 3.11
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flask&package-manager=pip&previous-version=3.0.2&new-version=3.1.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/flask-3.1.3", + "sha": "3f318cdb956f5e77e53ccc31f0ba65cc24f0b43b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-20T23:31:46Z", + "merge_commit_sha": "c425dd08e5504f4059a36a6f03a239f53d2231bd" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump requests from 2.29.0 to 2.33.0", + "body": "Bumps [requests](https://github.com/psf/requests) from 2.29.0 to 2.33.0.\n
    \nRelease notes\n

    Sourced from requests's releases.

    \n
    \n

    v2.33.0

    \n

    2.33.0 (2026-03-25)

    \n

    Announcements

    \n
      \n
    • 📣 Requests is adding inline types. If you have a typed code base that uses Requests, please take a look at #7271. Give it a try, and report any gaps or feedback you may have in the issue. 📣
    • \n
    \n

    Security

    \n
      \n
    • CVE-2026-25645 requests.utils.extract_zipped_paths now extracts contents to a non-deterministic location to prevent malicious file replacement. This does not affect default usage of Requests, only applications calling the utility function directly.
    • \n
    \n

    Improvements

    \n
      \n
    • Migrated to a PEP 517 build system using setuptools. (#7012)
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixed an issue where an empty netrc entry could cause malformed authentication to be applied to Requests on Python 3.11+. (#7205)
    • \n
    \n

    Deprecations

    \n
      \n
    • Dropped support for Python 3.9 following its end of support. (#7196)
    • \n
    \n

    Documentation

    \n
      \n
    • Various typo fixes and doc improvements.
    • \n
    \n

    New Contributors

    \n\n

    Full Changelog: https://github.com/psf/requests/blob/main/HISTORY.md#2330-2026-03-25

    \n

    v2.32.5

    \n

    2.32.5 (2025-08-18)

    \n

    Bugfixes

    \n
      \n
    • The SSLContext caching feature originally introduced in 2.32.0 has created\na new class of issues in Requests that have had negative impact across a number\nof use cases. The Requests team has decided to revert this feature as long term\nmaintenance of it is proving to be unsustainable in its current iteration.
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for Python 3.14.
    • \n
    • Dropped support for Python 3.8 following its end of support.
    • \n
    \n

    v2.32.4

    \n

    2.32.4 (2025-06-10)

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from requests's changelog.

    \n
    \n

    2.33.0 (2026-03-25)

    \n

    Announcements

    \n
      \n
    • 📣 Requests is adding inline types. If you have a typed code base that\nuses Requests, please take a look at #7271. Give it a try, and report\nany gaps or feedback you may have in the issue. 📣
    • \n
    \n

    Security

    \n
      \n
    • CVE-2026-25645 requests.utils.extract_zipped_paths now extracts\ncontents to a non-deterministic location to prevent malicious file\nreplacement. This does not affect default usage of Requests, only\napplications calling the utility function directly.
    • \n
    \n

    Improvements

    \n
      \n
    • Migrated to a PEP 517 build system using setuptools. (#7012)
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixed an issue where an empty netrc entry could cause\nmalformed authentication to be applied to Requests on\nPython 3.11+. (#7205)
    • \n
    \n

    Deprecations

    \n
      \n
    • Dropped support for Python 3.9 following its end of support. (#7196)
    • \n
    \n

    Documentation

    \n
      \n
    • Various typo fixes and doc improvements.
    • \n
    \n

    2.32.5 (2025-08-18)

    \n

    Bugfixes

    \n
      \n
    • The SSLContext caching feature originally introduced in 2.32.0 has created\na new class of issues in Requests that have had negative impact across a number\nof use cases. The Requests team has decided to revert this feature as long term\nmaintenance of it is proving to be unsustainable in its current iteration.
    • \n
    \n

    Deprecations

    \n
      \n
    • Added support for Python 3.14.
    • \n
    • Dropped support for Python 3.8 following its end of support.
    • \n
    \n

    2.32.4 (2025-06-10)

    \n

    Security

    \n
      \n
    • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted\nenvironment will retrieve credentials for the wrong hostname/machine from a\nnetrc file.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • bc04dfd v2.33.0
    • \n
    • 66d21cb Merge commit from fork
    • \n
    • 8b9bc8f Move badges to top of README (#7293)
    • \n
    • e331a28 Remove unused extraction call (#7292)
    • \n
    • 753fd08 docs: fix FAQ grammar in httplib2 example
    • \n
    • 774a0b8 docs(socks): same block as other sections
    • \n
    • 9c72a41 Bump github/codeql-action from 4.33.0 to 4.34.1
    • \n
    • ebf7190 Bump github/codeql-action from 4.32.0 to 4.33.0
    • \n
    • 0e4ae38 docs: exclude Response.is_permanent_redirect from API docs (#7244)
    • \n
    • d568f47 docs: clarify Quickstart POST example (#6960)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=requests&package-manager=pip&previous-version=2.29.0&new-version=2.33.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/requests-2.33.0", + "sha": "5f1fc456b4bed62b6cb150183b1d324bdbe380bc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-03-26T02:21:44Z", + "merge_commit_sha": "59649ad8a06840713048c9f6413ffd3d69975743" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/72-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/72-networklist-org", + "title": "Bump cryptography from 39.0.1 to 46.0.6", + "body": "Bumps [cryptography](https://github.com/pyca/cryptography) from 39.0.1 to 46.0.6.\n
    \nChangelog\n

    Sourced from cryptography's changelog.

    \n
    \n

    46.0.6 - 2026-03-25

    \n
    \n* **SECURITY ISSUE**: Fixed a bug where name constraints were not applied\n  to peer names during verification when the leaf certificate contains a\n  wildcard DNS SAN. Ordinary X.509 topologies are not affected by this bug,\n  including those used by the Web PKI. Credit to **Oleh Konko (1seal)** for\n  reporting the issue. **CVE-2026-34073**\n

    .. _v46-0-5:

    \n

    46.0.5 - 2026-02-10
    \n

    \n
      \n
    • An attacker could create a malicious public key that reveals portions of your\nprivate key when using certain uncommon elliptic curves (binary curves).\nThis version now includes additional security checks to prevent this attack.\nThis issue only affects binary elliptic curves, which are rarely used in\nreal-world applications. Credit to XlabAI Team of Tencent Xuanwu Lab and\nAtuin Automated Vulnerability Discovery Engine for reporting the issue.\nCVE-2026-26007
    • \n
    • Support for SECT* binary elliptic curves is deprecated and will be\nremoved in the next release.
    • \n
    \n

    .. v46-0-4:

    \n

    46.0.4 - 2026-01-27

    \n
    \n* `Dropped support for win_arm64 wheels`_.\n* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.5.\n

    .. _v46-0-3:

    \n

    46.0.3 - 2025-10-15
    \n

    \n
      \n
    • Fixed compilation when using LibreSSL 4.2.0.
    • \n
    \n

    .. _v46-0-2:

    \n

    46.0.2 - 2025-09-30

    \n
    \n* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.4.\n

    .. _v46-0-1:

    \n

    46.0.1 - 2025-09-16
    \n

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cryptography&package-manager=pip&previous-version=39.0.1&new-version=46.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/finhack/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "df0cf48542872a30335337787a89e05a42d9bfe8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "head": { + "ref": "dependabot/pip/cryptography-46.0.6", + "sha": "6847fe42395e66b53bab38a7629d8a98f875c107", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/72-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "https://github.com/xc-link/72-networklist-org/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-03-28T07:06:05Z", + "merge_commit_sha": "61b8339c90d2bd95495ae555ede065d1493795be" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/37-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/37-networklist-org", + "title": "Bump golang.org/x/crypto from 0.24.0 to 0.35.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.24.0 to 0.35.0.\n
    \nCommits\n
      \n
    • 7292932 ssh: limit the size of the internal packet queue while waiting for KEX
    • \n
    • f66f74b acme/autocert: check host policy before probing the cache
    • \n
    • b0784b7 x509roots/fallback: drop obsolete build constraint
    • \n
    • 911360c all: bump golang.org/x/crypto dependencies of asm generators
    • \n
    • 89ff08d all: upgrade go directive to at least 1.23.0 [generated]
    • \n
    • e47973b all: update certs for go1.24
    • \n
    • 9290511 go.mod: update golang.org/x dependencies
    • \n
    • fa5273e x509roots/fallback: update bundle
    • \n
    • a8ea4be ssh: add ServerConfig.PreAuthConnCallback, ServerPreAuthConn (banner) interface
    • \n
    • 71d3a4c acme: support challenges that require the ACME client to send a non-empty JSO...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.24.0&new-version=0.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/db/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "fb5164f1108a4338989315dc3ff4bd664c56c34d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/37-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.35.0", + "sha": "db2b0109b66f359748d20e4f4e1ed6c95c9152dc", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/37-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "https://github.com/xc-link/37-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-11-20T00:50:43Z", + "created_at": "2025-04-14T18:17:38Z", + "merge_commit_sha": "f6999e41166a65e8bf61c57ecd4e1f708d63b528" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/37-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/37-networklist-org", + "title": "Bump golang.org/x/crypto from 0.24.0 to 0.45.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.24.0 to 0.45.0.\n
    \nCommits\n
      \n
    • 4e0068c go.mod: update golang.org/x dependencies
    • \n
    • e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs
    • \n
    • f91f7a7 ssh/agent: prevent panic on malformed constraint
    • \n
    • 2df4153 acme/autocert: let automatic renewal work with short lifetime certs
    • \n
    • bcf6a84 acme: pass context to request
    • \n
    • b4f2b62 ssh: fix error message on unsupported cipher
    • \n
    • 79ec3a5 ssh: allow to bind to a hostname in remote forwarding
    • \n
    • 122a78f go.mod: update golang.org/x dependencies
    • \n
    • c0531f9 all: eliminate vet diagnostics
    • \n
    • 0997000 all: fix some comments
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.24.0&new-version=0.45.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/db/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "fb5164f1108a4338989315dc3ff4bd664c56c34d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/37-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.45.0", + "sha": "ec28ff7916a7384be75204ba1710322c889d4d50", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/37-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "https://github.com/xc-link/37-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-20T00:50:41Z", + "merge_commit_sha": "2d88482af7cdc2a1a48a4a6d0918be44d3ac3ca1" + } +] \ No newline at end of file diff --git a/pull_requests_000003.json b/pull_requests_000003.json new file mode 100644 index 000000000..8a18b6785 --- /dev/null +++ b/pull_requests_000003.json @@ -0,0 +1,1826 @@ +[ + { + "type": "pull_request", + "url": "https://github.com/xc-link/14-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/14-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "master", + "sha": "bcdac2075dbd32174ea1b75bb3507fa58bcb79e2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/14-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "c158dad546221a0e8a19d5746d2769013a1e92b5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/14-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-22T16:53:08Z", + "merge_commit_sha": "de4345c2675b904450c180ac9500305c16bd562a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump uri from 1.0.2 to 1.0.4", + "body": "Bumps [uri](https://github.com/ruby/uri) from 1.0.2 to 1.0.4.\n
    \nRelease notes\n

    Sourced from uri's releases.

    \n
    \n

    v1.0.4

    \n

    Security fixes

    \n\n
    \n

    Full Changelog: https://github.com/ruby/uri/compare/v1.0.3...v1.0.4

    \n

    v1.0.3

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/ruby/uri/compare/v1.0.2...v1.0.3

    \n
    \n
    \n
    \nCommits\n
      \n
    • e507473 Bump up to v1.0.4
    • \n
    • d3116ca Merge branch 'CVE-2025-61594-3-4' into HEAD
    • \n
    • 6c6449e Add authority accessor
    • \n
    • 5cec76b Clear user info totally at setting any of authority info
    • \n
    • 3213f4a Bump up v1.0.3
    • \n
    • 5a3fa52 Merge pull request #154 from ruby/remove-userinfo
    • \n
    • 2789182 Fix merger of URI with authority component
    • \n
    • 3675494 Truncate userinfo with URI#join, URI#merge and URI#+
    • \n
    • f198601 Merge pull request #153 from ruby/dependabot/github_actions/step-security/har...
    • \n
    • c059463 Bump step-security/harden-runner from 2.10.4 to 2.11.0
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uri&package-manager=bundler&previous-version=1.0.2&new-version=1.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/community/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/uri-1.0.4", + "sha": "d2d6d48d86ddb14718e78c9adfff03a589882614", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-12-30T21:09:16Z", + "merge_commit_sha": "e245ce6e9c16422992d11ec224a58d70a1b9eb32" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump faraday from 2.12.1 to 2.14.1", + "body": "Bumps [faraday](https://github.com/lostisland/faraday) from 2.12.1 to 2.14.1.\n
    \nRelease notes\n

    Sourced from faraday's releases.

    \n
    \n

    v2.14.1

    \n

    Security Note

    \n

    This release contains a security fix, we recommend all users to upgrade as soon as possible.\nA Security Advisory with more details will be posted shortly.

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/lostisland/faraday/compare/v2.14.0...v2.14.1

    \n

    v2.14.0

    \n

    What's Changed

    \n

    New features ✨

    \n\n

    Fixes 🐞

    \n\n

    Misc/Docs 📄

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/lostisland/faraday/compare/v2.13.4...v2.14.0

    \n

    v2.13.4

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/lostisland/faraday/compare/v2.13.3...v2.13.4

    \n

    v2.13.3

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 16cbd38 Version bump to 2.14.1
    • \n
    • a6d3a3a Merge commit from fork
    • \n
    • b23f710 Explicit top-level namespace reference (#1657)
    • \n
    • 49ba4ac Bump actions/checkout from 5 to 6 (#1655)
    • \n
    • 51a49bc Ensure Claude reads the guidelines and allow to plan in a gitignored .ai/PLAN...
    • \n
    • 894f65c Add RFC document for Options architecture refactoring plan (#1644)
    • \n
    • 397e3de Add comprehensive AI agent guidelines for Claude, Cursor, and GitHub Copilot ...
    • \n
    • d98c65c Update Faraday-specific AI agent guidelines
    • \n
    • 56c18ec Add AI agent guidelines specific to Faraday repository
    • \n
    • 3201a42 Version bump to 2.14.0
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=faraday&package-manager=bundler&previous-version=2.12.1&new-version=2.14.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/17-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/faraday-2.14.1", + "sha": "57e2f499ae1f783d1a1c63c7084ed26f01ce22f5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-09T22:12:05Z", + "merge_commit_sha": "fc3bc940f0de09d759e7cf59036b4f7b70cebdec" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump rack from 3.0.9.1 to 3.1.20", + "body": "Bumps [rack](https://github.com/rack/rack) from 3.0.9.1 to 3.1.20.\n
    \nChangelog\n

    Sourced from rack's changelog.

    \n
    \n

    Changelog

    \n

    All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.

    \n

    Unreleased

    \n

    Security

    \n
      \n
    • CVE-2025-61780 Improper handling of headers in Rack::Sendfile may allow proxy bypass.
    • \n
    • CVE-2025-61919 Unbounded read in Rack::Request form parsing can lead to memory exhaustion.
    • \n
    • CVE-2026-25500 XSS injection via malicious filename in Rack::Directory.
    • \n
    • CVE-2026-22860 Directory traversal via root prefix bypass in Rack::Directory.
    • \n
    \n

    SPEC Changes

    \n\n

    Added

    \n
      \n
    • Add Rack::Files#assign_headers to allow overriding how the configured file headers are set. (#2377, @​codergeek121)
    • \n
    • Add support for rack.response_finished to Rack::TempfileReaper. (#2363, @​skipkayhil)
    • \n
    • Add support for streaming bodies when using Rack::Events. (#2375, @​unflxw)
    • \n
    • Add deflaters option to Rack::Deflater to enable custom compression algorithms like zstd. (#2168, @​alexanderadam)
    • \n
    • Add Rack::Request#prefetch? for identifying requests with Sec-Purpose: prefetch header set. (#2405, @​glaszig)
    • \n
    • Add rack.request.trusted_proxy environment key to indicate whether the request is coming from a trusted proxy.
    • \n
    \n

    Changed

    \n
      \n
    • Raise before exceeding a part limit, not after. (#2362, @​matthew-puku)
    • \n
    • Rack::Deflater now uses a fixed GZip mtime value. (#2372, @​bensheldon)
    • \n
    • Multipart parser drops support for RFC 2231 filename* parameter (prohibited by RFC 7578) and now properly handles UTF-8 encoded filenames via percent-encoding and direct UTF-8 bytes. (#2398, @​wtn)
    • \n
    • The query parser now raises Rack::QueryParser::IncompatibleEncodingError if we try to parse params that are not ASCII compatible. (#2416, @​bquorning)
    • \n
    \n

    Fixed

    \n\n

    [3.2.4] - 2025-11-03

    \n

    Fixed

    \n
      \n
    • Multipart parser: limit MIME header size check to the unread buffer region to avoid false multipart mime part header too large errors when previously read data accumulates in the scan buffer. (#2392, @​alpaca-tc, @​willnet, @​krororo)
    • \n
    \n

    [3.2.3] - 2025-10-10

    \n

    Security

    \n
      \n
    • CVE-2025-61780 Improper handling of headers in Rack::Sendfile may allow proxy bypass.
    • \n
    • CVE-2025-61919 Unbounded read in Rack::Request form parsing can lead to memory exhaustion.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 6504434 Bump patch version.
    • \n
    • 48e9030 Prevent directory traversal via root prefix bypass.
    • \n
    • ed0f455 XSS injection via malicious filename in Rack::Directory.
    • \n
    • b29df31 Bump patch version.
    • \n
    • 72719a8 Allow Multipart head to span read boundary. (#2392)
    • \n
    • 96cf078 Bump patch version.
    • \n
    • cbd541e Unbounded read in Rack::Request form parsing can lead to memory exhaustion.
    • \n
    • 7e69f65 Improper handling of proxy headers in Rack::Sendfile may allow proxy bypass.
    • \n
    • db6bc0f Normalize adivsories links.
    • \n
    • ad81f80 Fix handling of Errno::EPIPE in multipart tests.
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=3.0.9.1&new-version=3.1.20)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/17-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/rack-3.1.20", + "sha": "2671c372de8f4f80668b8adcc9bcca7b4c592ad8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-17T16:28:50Z", + "merge_commit_sha": "2627e9bd680101e77e009c550de7ac6c2136761d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/17-networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/17-networklist-org", + "title": "Bump activesupport from 7.1.3.2 to 7.2.3.1", + "body": "Bumps [activesupport](https://github.com/rails/rails) from 7.1.3.2 to 7.2.3.1.\n
    \nRelease notes\n

    Sourced from activesupport's releases.

    \n
    \n

    7.2.3.1

    \n

    Active Support

    \n
      \n
    • \n

      Reject scientific notation in NumberConverter

      \n

      [CVE-2026-33176]

      \n

      Jean Boussier

      \n
    • \n
    • \n

      Fix SafeBuffer#% to preserve unsafe status

      \n

      [CVE-2026-33170]

      \n

      Jean Boussier

      \n
    • \n
    • \n

      Improve performance of NumberToDelimitedConverter

      \n

      [CVE-2026-33169]

      \n

      Jean Boussier

      \n
    • \n
    \n

    Active Model

    \n
      \n
    • No changes.
    • \n
    \n

    Active Record

    \n
      \n
    • No changes.
    • \n
    \n

    Action View

    \n
      \n
    • \n

      Skip blank attribute names in tag helpers to avoid generating invalid HTML.

      \n

      [CVE-2026-33168]

      \n

      Mike Dalessio

      \n
    • \n
    \n

    Action Pack

    \n
      \n
    • No changes.
    • \n
    \n

    Active Job

    \n
      \n
    • No changes.
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • ba76fca Preparing for 7.2.3.1 release
    • \n
    • 8a379f4 Update changelog
    • \n
    • b54a4b3 Improve performance of NumberToDelimitedConverter
    • \n
    • c1ad0e8 Fix SafeBuffer#% to preserve unsafe status
    • \n
    • ebd6be1 NumberConverter: reject scientific notation
    • \n
    • 4a155f1 Lock some dependencies
    • \n
    • bb2bdef Preparing for 7.2.3 release
    • \n
    • fe41a9f Merge pull request #55840 from zzak/asup-xml-mini-bigdecimal-float-precision
    • \n
    • 12040a3 Merge pull request #55808 from olivier-thatch/fix-enum-sole
    • \n
    • 58630e1 Merge pull request #55794 from rails/fix-55513
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=activesupport&package-manager=bundler&previous-version=7.1.3.2&new-version=7.2.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/17-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "11b9ff02155d0fe8741c1168ab89f3c5e4787612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "head": { + "ref": "dependabot/bundler/activesupport-7.2.3.1", + "sha": "cc01b5e72d8339d1ca6f1119f670bc8b5ba965f6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/17-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "https://github.com/xc-link/17-networklist-org/labels/ruby" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-03-24T01:59:48Z", + "merge_commit_sha": "268f409b1d0f77eb002f1e6c34685e665ad5c6e8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump org.springframework:spring-web from 5.0.0.M5 to 6.1.14", + "body": "Bumps [org.springframework:spring-web](https://github.com/spring-projects/spring-framework) from 5.0.0.M5 to 6.1.14.\n
    \nRelease notes\n

    Sourced from org.springframework:spring-web's releases.

    \n
    \n

    v6.1.14

    \n

    :star: New Features

    \n
      \n
    • Use Locale.ROOT for locale neutral, case insensitive comparisons #33708
    • \n
    • Improve checks for relative paths in static resource handling #33689
    • \n
    • CorsUtils.isCorsRequest throws unhandled IllegalArgumentException and returns 500 Internal Server Error on malfomed Origin header #33682
    • \n
    • Skip processing of Java annotations in QualifierAnnotationAutowireCandidateResolver #33580
    • \n
    • Include argument name in MethodArgumentTypeMismatchException error message #33573
    • \n
    • Preserve coroutine context in WebClientExtensions #33548
    • \n
    • Blocking call detected in ConcurrentReferenceHashMap by BlockHound #33450
    • \n
    • Warning message about bean post-processing and eager injection may suggest the wrong cause #33184
    • \n
    \n

    :lady_beetle: Bug Fixes

    \n
      \n
    • DelegatingFilterProxy Causes Pinned Virtual Threads #33656
    • \n
    • Potential NPE from MethodParameter.getMethod() check in KotlinDelegate.hasDefaultValue() #33609
    • \n
    • Missing native image hints for JDK proxies created by JMS connection factories #33590
    • \n
    • AotTestExecutionListener should not be invoked for a @DisabledInAotMode test class #33589
    • \n
    • Use encoded resource path instead of input path validation in spring-webflux #33568
    • \n
    • org.springframework.util.ResourceUtils#toRelativeURL drops custom URLStreamHandler #33561
    • \n
    • Current observation not in scope during WebClient ExchangeFilterFunction execution #33559
    • \n
    • ZoneIdEditor throws wrong exception type for TypeConverterSupport #33545
    • \n
    • MimeMessageHelper addInline with ByteArrayResource fail with null filename #33527
    • \n
    • @Cacheable throws NullPointerException when RuntimeException is thrown inside annotated code #33492
    • \n
    • Path variable values missing in RedirectView when PathPattern are used #33422
    • \n
    • Reactive HttpComponentsClientHttpResponse ignores Expires cookie attribute #33157
    • \n
    \n

    :notebook_with_decorative_cover: Documentation

    \n
      \n
    • Update fallback.adoc #33721
    • \n
    • Update scheduling.adoc #33703
    • \n
    • Fix link in testing/support-jdbc.adoc #33686
    • \n
    • Adapt Javadoc note about log level of BeanPostProcessorChecker #33617
    • \n
    • Reference the spring-framework-petclinic repository wich uses AspectJ #33539
    • \n
    \n

    :hammer: Dependency Upgrades

    \n
      \n
    • Upgrade to Apache HttpClient 5.4 #33587
    • \n
    • Upgrade to Apache HttpCore Reactive 5.3 #33588
    • \n
    • Upgrade to Awaitility 4.2.2 #33604
    • \n
    • Upgrade to Micrometer 1.12.11 #33647
    • \n
    • Upgrade to Reactor 2023.0.11 #33637
    • \n
    \n

    :heart: Contributors

    \n

    Thank you to all the contributors who worked on this release:

    \n

    @​arey, @​asibross, @​boulce, @​drdpov, @​hosamaly, @​ilya40umov, @​izeye, and @​junhyeongkim2

    \n

    v6.1.13

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • ac5c8ad Release v6.1.14
    • \n
    • fde7116 Consistently skip processing of plain Java annotations
    • \n
    • 0a64591 Add checkstyle rule for toLowerCase/toUpperCase
    • \n
    • 5302e7a Update fallback.adoc
    • \n
    • cad02c1 Update Antora Spring UI to v0.4.17
    • \n
    • c765d03 Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • 11d4272 Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • 23656ae Use Locale.ROOT consistently for toLower/toUpperCase
    • \n
    • feb6a5f Polishing
    • \n
    • a228eb8 Upgrade to Reactor 2023.0.11
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework:spring-web&package-manager=maven&previous-version=5.0.0.M5&new-version=6.1.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.springframework-spring-web-6.1.14", + "sha": "399a3322e4a0b9c6b05ca7647073a9389ed6e7c5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-27T19:35:45Z", + "merge_commit_sha": "84d9eb46dd47f8fbfce88d82d640e7a1725c68f9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump commons-beanutils:commons-beanutils from 1.9.2 to 1.11.0", + "body": "Bumps commons-beanutils:commons-beanutils from 1.9.2 to 1.11.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-beanutils:commons-beanutils&package-manager=maven&previous-version=1.9.2&new-version=1.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-beanutils-commons-beanutils-1.11.0", + "sha": "f03ad22afb79a114cadd11c29a44abf71bb5efc2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-28T17:54:56Z", + "merge_commit_sha": "0ff7ba847f269daa9d32c5be243327760a0078c2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump com.fasterxml.jackson.core:jackson-core from 2.8.6 to 2.13.0", + "body": "Bumps [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) from 2.8.6 to 2.13.0.\n
    \nCommits\n
      \n
    • 03add30 [maven-release-plugin] prepare release jackson-core-2.13.0
    • \n
    • 7668921 Prepare for 2.13.0 release
    • \n
    • 81bdfaa Add missing javadoc param/returns for deprecated methods
    • \n
    • ec22344 Fix small javadoc warnings (to get back to 0 warnings)
    • \n
    • 542654c trivial javadoc markup fix
    • \n
    • c3b1039 Remove travis build
    • \n
    • efe51e8 back to snapshot deps
    • \n
    • 55fb12a [maven-release-plugin] prepare for next development iteration
    • \n
    • 4c3e251 [maven-release-plugin] prepare release jackson-core-2.13.0-rc2
    • \n
    • ffab4b1 Prepare for 2.13.0-rc2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-core&package-manager=maven&previous-version=2.8.6&new-version=2.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.fasterxml.jackson.core-jackson-core-2.13.0", + "sha": "085f00c232ebf80141e5592ca0982fc6c1ec3403", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-06-27T16:00:41Z", + "created_at": "2025-06-07T00:43:11Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump com.fasterxml.jackson.core:jackson-core from 2.8.6 to 2.15.0", + "body": "Bumps [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) from 2.8.6 to 2.15.0.\n
    \nChangelog\n

    Sourced from com.fasterxml.jackson.core:jackson-core's changelog.

    \n
    \n

    #release configuration\n#Sun Apr 23 14:19:10 PDT 2023\nscm.commentPrefix=[maven-release-plugin]\nexec.pomFileName=pom.xml\npushChanges=false\nreleaseStrategyId=default\nproject.dev.com.fasterxml.jackson.core:jackson-core=2.15.1-SNAPSHOT\nproject.scm.com.fasterxml.jackson.core:jackson-core.connection=scm:git:git@github.com:FasterXML/jackson-core.git\nscm.tag=jackson-core-2.15.0\nremoteTagging=true\nproject.scm.com.fasterxml.jackson.core:jackson-core.developerConnection=scm:git:git@github.com:FasterXML/jackson-core.git\nexec.additionalArguments=-Prelease\nscm.branchCommitComment=@{prefix} prepare branch @{releaseLabel}\nprojectVersionPolicyId=default\nscm.url=scm:git:git@github.com:FasterXML/jackson-core.git\nscm.tagNameFormat=@{project.artifactId}-@{project.version}\nproject.scm.com.fasterxml.jackson.core:jackson-core.tag=HEAD\npinExternals=false\nproject.rel.com.fasterxml.jackson.core:jackson-core=2.15.0\npreparationGoals=clean verify\nscm.releaseCommitComment=@{prefix} prepare release @{releaseLabel}\nexec.snapshotReleasePluginAllowed=false\nproject.scm.com.fasterxml.jackson.core:jackson-core.url=https://github.com/FasterXML/jackson-core\nscm.developmentCommitComment=@{prefix} prepare for next development iteration\nscm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel}\ncompletedPhase=end-release

    \n
    \n
    \n
    \nCommits\n
      \n
    • a2c0bdc [maven-release-plugin] prepare release jackson-core-2.15.0
    • \n
    • 180027a Prepare for 2.15.0 release
    • \n
    • 2b41925 ...
    • \n
    • 85340aa Merge branch '2.14' into 2.15
    • \n
    • ed846d9 ...
    • \n
    • 94ea208 Update release notes wrt #990
    • \n
    • a4f2086 [2.14 only] backport removal of BigDecimal to BigInt conversion (#990)
    • \n
    • 1976c0d Try to get Release workflow working wrt SLSA provenance (fix #844) (#989)
    • \n
    • 0ee3ad8 ...
    • \n
    • 163540e [maven-release-plugin] prepare for next development iteration
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-core&package-manager=maven&previous-version=2.8.6&new-version=2.15.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.fasterxml.jackson.core-jackson-core-2.15.0", + "sha": "cc79a3bccb3ab022e8e55f04890fcdb718df4985", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-27T16:00:40Z", + "merge_commit_sha": "0cef530bbee743ba1cd24eeffac7688216608989" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump commons-fileupload:commons-fileupload from 1.3.1 to 1.6.0", + "body": "Bumps commons-fileupload:commons-fileupload from 1.3.1 to 1.6.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-fileupload:commons-fileupload&package-manager=maven&previous-version=1.3.1&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-fileupload-commons-fileupload-1.6.0", + "sha": "5e47b28c33d8006ed3d82fc67c3bbd737932a7f4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-09T18:35:42Z", + "merge_commit_sha": "e50899fde759981f1b5f09ea06eaba062cc22f3e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump org.apache.commons:commons-lang3 from 3.4 to 3.18.0", + "body": "Bumps org.apache.commons:commons-lang3 from 3.4 to 3.18.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.4&new-version=3.18.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.commons-commons-lang3-3.18.0", + "sha": "27e4e40877e6ffbc084a68d81665d92ad5c1d4c1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-12T01:46:53Z", + "merge_commit_sha": "2d48ea11d171187d442fb45b6f70a74bc9a94b95" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump com.squareup.okhttp3:okhttp from 3.3.1 to 4.9.2 in /iBase4J-Common", + "body": "Bumps [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) from 3.3.1 to 4.9.2.\n
    \nChangelog\n

    Sourced from com.squareup.okhttp3:okhttp's changelog.

    \n
    \n

    Change Log

    \n

    Version 4.x

    \n

    See 4.x Change log for the stable version changelogs.

    \n

    Version 5.3.0

    \n

    2025-10-30

    \n
      \n
    • \n

      New: Add tags to Call, including computable tags. Use this to attach application-specific\nmetadata to a Call in an EventListener or Interceptor. The tag can be read in any other\nEventListener or Interceptor.

      \n
        override fun intercept(chain: Interceptor.Chain): Response {\n    chain.call().tag(MyAnalyticsTag::class) {\n      MyAnalyticsTag(...)\n    }\n
      return chain.proceed(chain.request())\n
      \n

      }\n

      \n
    • \n
    • \n

      New: Support request bodies on HTTP/1.1 connection upgrades.

      \n
    • \n
    • \n

      New: EventListener.plus() makes it easier to observe events in multiple listeners.

      \n
    • \n
    • \n

      Fix: Don't spam logs with ‘Method isLoggable in android.util.Log not mocked.’ when using\nOkHttp in Robolectric and Paparazzi tests.

      \n
    • \n
    • \n

      Upgrade: [Kotlin 2.2.21][kotlin_2_2_21].

      \n
    • \n
    • \n

      Upgrade: [Okio 3.16.2][okio_3_16_2].

      \n
    • \n
    • \n

      Upgrade: [ZSTD-KMP 0.4.0][zstd_kmp_0_4_0]. This update fixes a bug that caused APKs to fail\n[16 KB ELF alignment checks][elf_alignment].

      \n
    • \n
    \n

    Version 5.2.1

    \n

    2025-10-09

    \n
      \n
    • \n

      Fix: Don't crash when calling Socket.shutdownOutput() or shutdownInput() on an SSLSocket\non Android API 21 through 23. This method throws an UnsupportedOperationException, so we now\ncatch that and close the underlying stream instead.

      \n
    • \n
    • \n

      Upgrade: [Okio 3.16.1][okio_3_16_1].

      \n
    • \n
    \n

    Version 5.2.0

    \n

    2025-10-07

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.squareup.okhttp3:okhttp&package-manager=maven&previous-version=3.3.1&new-version=4.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/iBase4J-Common/com.squareup.okhttp3-okhttp-4.9.2", + "sha": "864e2d68779c71740abbd1f806cd9d35664b6c78", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-13T16:38:37Z", + "merge_commit_sha": "88a0ce0b529ad910511cd004d010d607a09a74c2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump org.apache.logging.log4j:log4j-core from 2.8.2 to 2.25.3", + "body": "Bumps org.apache.logging.log4j:log4j-core from 2.8.2 to 2.25.3.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.logging.log4j:log4j-core&package-manager=maven&previous-version=2.8.2&new-version=2.25.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.apache.logging.log4j-log4j-core-2.25.3", + "sha": "1106854920d3f529aa61042da1e1a1c413c9f40e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-12-20T00:04:55Z", + "merge_commit_sha": "861ab189bd98aea167dc5436f18e680b78495d85" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/29-networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/29-networklist-org", + "title": "Bump com.alibaba:fastjson from 1.2.36 to 1.2.83", + "body": "Bumps [com.alibaba:fastjson](https://github.com/alibaba/fastjson) from 1.2.36 to 1.2.83.\n
    \nRelease notes\n

    Sourced from com.alibaba:fastjson's releases.

    \n
    \n

    FASTJSON 1.2.83版本发布(安全修复)

    \n

    这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。

    \n

    安全修复方案https://github.com/alibaba/fastjson/wiki/security_update_20220523

    \n

    FASTJSON2已经发布并且提供兼容包,性能更好也更安全,升级指南 https://github.com/alibaba/fastjson2/wiki/fastjson_1_upgrade_cn

    \n

    Issues

    \n
      \n
    1. 安全加固
    2. \n
    3. 修复JDK17下setAccessible报错的问题 #4077
    4. \n
    \n\n

    fastjson 1.2.79版本发布,BUG修复

    \n

    这又是一个bug fixed的版本,大家按需升级

    \n

    Issues

    \n
      \n
    1. 修复引入MethodInheritanceComparator导致某些场景序列化报错的问题
    2. \n
    3. 增强JDK 9兼容
    4. \n
    5. 修复JSONArray/JSONObject的equals方法在内部对象map/list相同时不直接返回true的问题
    6. \n
    \n

    相关链接

    \n\n

    fastjson 1.2.76版本发布,BUG修复增强兼容

    \n

    这又是一个bug fixed的版本,大家按需升级

    \n

    Issues

    \n
      \n
    1. 修复一些直接抛RuntimeException的问题 #3631
    2. \n
    3. parser自动识别gzip bytes #3614
    4. \n
    5. 修复Throwable继承类属性不支持自动类型转换问题 #3217
    6. \n
    7. 修复PrettyFormat情况下引用计算不对的问题 #3672
    8. \n
    9. 修复AutoType不兼容LinkedHashMap的问题
    10. \n
    11. 增强对Enum类型的自定类型转换
    12. \n
    13. 修复deserializeUsing在泛型某些场景不能正常工作的问题 #3693
    14. \n
    15. 提升JSONReader性能,减少小对象创建 #3627
    16. \n
    17. 增强对JSONPath对filter的支持 #3629
    18. \n
    19. JSONPath支持忽略NullValue的选项 #3607
    20. \n
    21. 增强对定制化enum的支持 #3601
    22. \n
    23. 增强对java.time.Instant和org.joda.time.Instant的支持 #3539
    24. \n
    25. 修复Parser某些场景不能识别引用的问题
    26. \n
    \n

    相关链接

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.alibaba:fastjson&package-manager=maven&previous-version=1.2.36&new-version=1.2.83)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/JAVA-iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "595bfb2c8a26c54739ae9cf815972ceb9ecc493b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.alibaba-fastjson-1.2.83", + "sha": "c54cd219be6eb75494dfc84919ea4baa4200e9d0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/29-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "https://github.com/xc-link/29-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-01-09T19:40:16Z", + "merge_commit_sha": "a6f5dfadb7c023ed5b4c3efbd4c925a3b40df05a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump github.com/compose-spec/compose-go/v2 from 2.2.0 to 2.4.1", + "body": "Bumps [github.com/compose-spec/compose-go/v2](https://github.com/compose-spec/compose-go) from 2.2.0 to 2.4.1.\n
    \nRelease notes\n

    Sourced from github.com/compose-spec/compose-go/v2's releases.

    \n
    \n

    v2.4.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/compose-spec/compose-go/compare/v2.4.0...v2.4.1

    \n

    v2.4.0

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/compose-spec/compose-go/compare/v2.3.0...v2.4.0

    \n

    v2.3.0

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/compose-spec/compose-go/compare/v2.2.0...v2.3.0

    \n
    \n
    \n
    \nCommits\n
      \n
    • 222d93c fix reset.go
    • \n
    • 88ca71b fix(reset): Add cycle detector in reset.go
    • \n
    • 156e22d introduce OmitEmpty in yaml processing pipeline
    • \n
    • 74c1d59 always test to load config with localFileLoader
    • \n
    • c558adc ingest config files with ResourceLoader
    • \n
    • bff5006 detect project dir is a symlink and warn user
    • \n
    • 35c9659 add support for bind mount recursive
    • \n
    • 97c49fc normalize volume.target to drop trailing slash
    • \n
    • fb8e04d seiralise NanoCPUs as string
    • \n
    • 7218685 introduce service.gpus
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/compose-spec/compose-go/v2&package-manager=go_modules&previous-version=2.2.0&new-version=2.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/compose-spec/compose-go/v2-2.4.1", + "sha": "3967efd0a10c87bd57b1d951f306f86ddcb4009b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-21T20:25:36Z", + "merge_commit_sha": "be0677f33757b73a84cc24f5fcf4c47ca69c50bc" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump undici from 6.19.8 to 6.21.1 in /docs", + "body": "Bumps [undici](https://github.com/nodejs/undici) from 6.19.8 to 6.21.1.\n
    \nRelease notes\n

    Sourced from undici's releases.

    \n
    \n

    v6.21.1

    \n

    ⚠️ Security Release ⚠️

    \n

    Fixes CVE CVE-2025-22150 https://github.com/nodejs/undici/security/advisories/GHSA-c76h-2ccp-4975 (embargoed until 22-01-2025).

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/nodejs/undici/compare/v6.21.0...v6.21.1

    \n

    v6.21.0

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/nodejs/undici/compare/v6.20.1...v6.21.0

    \n

    v6.20.1

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/nodejs/undici/compare/v6.20.0...v6.20.1

    \n

    v6.20.0

    \n

    What's Changed

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=undici&package-manager=npm_and_yarn&previous-version=6.19.8&new-version=6.21.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/docs/undici-6.21.1", + "sha": "55b6b6c9f6e212460bfbee0dae48498892c97e9a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-21T22:16:58Z", + "merge_commit_sha": "bb6da10e91434fd0c7b28ab0133efca24c20fe7b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps-dev): bump vite from 4.4.9 to 4.5.6 in /desktop", + "body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.4.9 to 4.5.6.\n
    \nRelease notes\n

    Sourced from vite's releases.

    \n
    \n

    v4.5.6

    \n

    This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v4.5.5

    \n

    Please refer to CHANGELOG.md for details.

    \n

    v4.5.4

    \n

    Please refer to CHANGELOG.md for details.

    \n
    \n
    \n
    \nChangelog\n

    Sourced from vite's changelog.

    \n
    \n

    4.5.6 (2025-01-20)

    \n
      \n
    • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (ef1049d)
    • \n
    • fix!: default server.cors: false to disallow fetching from untrusted origins (07b36d5)
    • \n
    • fix: verify token for HMR WebSocket connection (c065a77)
    • \n
    \n

    4.5.5 (2024-09-16)

    \n

    4.5.4 (2024-09-16)

    \n\n

    4.5.3 (2024-03-24)

    \n\n

    4.5.2 (2024-01-19)

    \n\n

    4.5.1 (2023-12-04)

    \n\n

    4.5.0 (2023-10-18)

    \n\n

    4.4.11 (2023-10-05)

    \n
      \n
    • revert: "fix: use string manipulation instead of regex to inject esbuild helpers (54e1275), closes #14094
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 9e460f5 release: v4.5.6
    • \n
    • ef1049d fix!: check host header to prevent DNS rebinding attacks and introduce `serve...
    • \n
    • c065a77 fix: verify token for HMR WebSocket connection
    • \n
    • 07b36d5 fix!: default server.cors: false to disallow fetching from untrusted origins
    • \n
    • f1d8845 release: v4.5.5
    • \n
    • 2466c08 release: v4.5.4
    • \n
    • e812716 fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
    • \n
    • b901438 fix: backport #18112, fs raw query
    • \n
    • aac695e release: v4.5.3
    • \n
    • 96a7f3a fix: fs.deny with globs with directories (#16250)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=4.4.9&new-version=4.5.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/npm_and_yarn/desktop/vite-4.5.6", + "sha": "a5bd34bf9325b885b9e9161a1fb36f8a6b1155c2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/javascript" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-22T04:38:37Z", + "merge_commit_sha": "b5b73d5e7a32cc5887fbceae00166b470910a6d8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump openssl from 0.10.68 to 0.10.70 in /desktop/src-tauri", + "body": "Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.68 to 0.10.70.\n
    \nRelease notes\n

    Sourced from openssl's releases.

    \n
    \n

    openssl v0.10.70

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70

    \n

    openssl v0.10.69

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.68...openssl-v0.10.69

    \n
    \n
    \n
    \nCommits\n
      \n
    • a4d399b Release openssl v0.10.70
    • \n
    • c9a33e2 Release openssl-sys v0.9.105
    • \n
    • f014afb Merge pull request #2360 from sfackler/fix-alpn-lifetimes
    • \n
    • 8e6e30b Fix lifetimes in ssl::select_next_proto
    • \n
    • 1aff280 Merge pull request #2358 from alex/expose-dlts
    • \n
    • 16ca5b2 Merge pull request #2359 from sfackler/alex-patch-1
    • \n
    • 4c9fbb0 Test against 3.4.0 final release
    • \n
    • 5ecb31d Update openssl/src/ssl/mod.rs
    • \n
    • 4830f5b Expose SslMethod::{dtls_client,dtls_server}
    • \n
    • bab03c4 Merge pull request #2356 from botovq/rm-ec-method
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.68&new-version=0.10.70)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/openssl-0.10.70", + "sha": "b8667b1fb3ca0654556573bab17ef2f5f633e837", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-04T20:50:49Z", + "created_at": "2025-02-03T18:53:21Z", + "merge_commit_sha": "3f3c70548f3ef8319dee5485efe5870d1956a334" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump ring from 0.17.8 to 0.17.13 in /desktop/src-tauri", + "body": "Bumps [ring](https://github.com/briansmith/ring) from 0.17.8 to 0.17.13.\n
    \nChangelog\n

    Sourced from ring's changelog.

    \n
    \n

    Version 0.17.13 (2025-03-06)

    \n

    Increased MSRV to 1.66.0 to avoid bugs in earlier versions so that we can\nsafely use core::arch::x86_64::__cpuid and core::arch::x86::__cpuid from\nRust in future releases.

    \n

    AVX2-based VAES-CLMUL implementation. This will be a notable performance\nimprovement for most newish x86-64 systems. This will likely raise the minimum\nbinutils version supported for very old Linux distros.

    \n

    Version 0.17.12 (2025-03-05)

    \n

    Bug fix: briansmith/ring#2447 for denial of service (DoS).

    \n
      \n
    • \n

      Fixes a panic in ring::aead::quic::HeaderProtectionKey::new_mask() when\ninteger overflow checking is enabled. In the QUIC protocol, an attacker can\ninduce this panic by sending a specially-crafted packet. Even unintentionally\nit is likely to occur in 1 out of every 2**32 packets sent and/or received.

      \n
    • \n
    • \n

      Fixes a panic on 64-bit targets in ring::aead::{AES_128_GCM, AES_256_GCM}\nwhen overflow checking is enabled, when encrypting/decrypting approximately\n68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Protocols\nlike TLS and SSH are not affected by this because those protocols break large\namounts of data into small chunks. Similarly, most applications will not\nattempt to encrypt/decrypt 64GB of data in one chunk.

      \n
    • \n
    \n

    Overflow checking is not enabled in release mode by default, but\nRUSTFLAGS="-C overflow-checks" or overflow-checks = true in the Cargo.toml\nprofile can override this. Overflow checking is usually enabled by default in\ndebug mode.

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ring&package-manager=cargo&previous-version=0.17.8&new-version=0.17.13)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/ring-0.17.13", + "sha": "779558a86674233daa3d347350d321188f048690", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-07T17:12:17Z", + "merge_commit_sha": "13e5eb603b6472fb9f76b82463e7a0363fb82732" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump golang.org/x/net from 0.29.0 to 0.36.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.29.0 to 0.36.0.\n
    \nCommits\n
      \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • cde1dda proxy, http/httpproxy: do not mismatch IPv6 zone ids against hosts
    • \n
    • fe7f039 publicsuffix: spruce up code gen and speed up PublicSuffix
    • \n
    • 459513d internal/http3: move more common stream processing to genericConn
    • \n
    • aad0180 http2: fix flakiness from t.Log when GOOS=js
    • \n
    • b73e574 http2: don't log expected errors from writing invalid trailers
    • \n
    • 5f45c77 internal/http3: make read-data tests usable for server handlers
    • \n
    • 43c2540 http2, internal/httpcommon: reject userinfo in :authority
    • \n
    • 1d78a08 http2, internal/httpcommon: factor out server header logic for h2/h3
    • \n
    • 0d7dc54 quic: add Conn.ConnectionState
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.29.0&new-version=0.36.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.36.0", + "sha": "0333aa3a8af0aa621ee608e636939c652b3c7c33", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-04-16T22:39:23Z", + "created_at": "2025-03-13T01:17:30Z", + "merge_commit_sha": null + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump zip from 2.2.0 to 2.4.1 in /desktop/src-tauri", + "body": "Bumps [zip](https://github.com/zip-rs/zip2) from 2.2.0 to 2.4.1.\n
    \nRelease notes\n

    Sourced from zip's releases.

    \n
    \n

    v2.4.1

    \n

    🐛 Bug Fixes

    \n
      \n
    • type issue in test
    • \n
    • double as_ref().canonicalize()?
    • \n
    • CI failures
    • \n
    • Create directory for extraction if necessary (#314)
    • \n
    \n

    v2.4.0

    \n

    🚀 Features

    \n
      \n
    • ZipArchive::root_dir and ZipArchive::extract_unwrapped_root_dir (#304)
    • \n
    \n

    🐛 Bug Fixes

    \n
      \n
    • wasm build failure due to a missing use statement (#313)
    • \n
    \n

    v2.3.0

    \n

    🚀 Features

    \n
      \n
    • Add support for NTFS extra field (#279)
    • \n
    \n

    🐛 Bug Fixes

    \n
      \n
    • (test) Conditionalize a zip64 doctest (#308)
    • \n
    • fix failing tests, remove symlink loop check
    • \n
    • Canonicalize output path to avoid false negatives
    • \n
    • Symlink handling in stream extraction
    • \n
    • Canonicalize output paths and symlink targets, and ensure they descend from the destination
    • \n
    \n

    ⚙️ Miscellaneous Tasks

    \n
      \n
    • Fix clippy and cargo fmt warnings (#310)
    • \n
    \n

    v2.2.3

    \n

    🚜 Refactor

    \n
      \n
    • Change the inner structure of DateTime (#267)
    • \n
    \n

    ⚙️ Miscellaneous Tasks

    \n
      \n
    • cargo fix --edition
    • \n
    \n

    v2.2.2

    \n

    🐛 Bug Fixes

    \n
      \n
    • rewrite the EOCD/EOCD64 detection to fix extreme performance regression (#247)
    • \n
    \n

    v2.2.1

    \n

    🐛 Bug Fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from zip's changelog.

    \n
    \n

    2.4.1 - 2025-03-17

    \n

    🐛 Bug Fixes

    \n
      \n
    • type issue in test
    • \n
    • double as_ref().canonicalize()?
    • \n
    • CI failures
    • \n
    • Create directory for extraction if necessary (#314)
    • \n
    \n

    2.4.0 - 2025-03-17

    \n

    🚀 Features

    \n
      \n
    • ZipArchive::root_dir and ZipArchive::extract_unwrapped_root_dir (#304)
    • \n
    \n

    🐛 Bug Fixes

    \n
      \n
    • wasm build failure due to a missing use statement (#313)
    • \n
    \n

    2.3.0 - 2025-03-16

    \n

    🚀 Features

    \n
      \n
    • Add support for NTFS extra field (#279)
    • \n
    \n

    🐛 Bug Fixes

    \n
      \n
    • (test) Conditionalize a zip64 doctest (#308)
    • \n
    • fix failing tests, remove symlink loop check
    • \n
    • Canonicalize output path to avoid false negatives
    • \n
    • Symlink handling in stream extraction
    • \n
    • Canonicalize output paths and symlink targets, and ensure they descend from the destination
    • \n
    \n

    ⚙️ Miscellaneous Tasks

    \n
      \n
    • Fix clippy and cargo fmt warnings (#310)
    • \n
    \n

    2.2.3 - 2025-02-26

    \n

    🚜 Refactor

    \n
      \n
    • Change the inner structure of DateTime (#267)
    • \n
    \n

    ⚙️ Miscellaneous Tasks

    \n
      \n
    • cargo fix --edition
    • \n
    \n

    2.2.2 - 2024-12-16

    \n

    🐛 Bug Fixes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • cfdec05 chore: release v2.4.1 (#317)
    • \n
    • 2dea0e7 fix: type issue in test
    • \n
    • 1b6000d fix: double as_ref().canonicalize()?
    • \n
    • bce9b2f fix: CI failures
    • \n
    • cdc34eb fix: Create directory for extraction if necessary (#314)
    • \n
    • a062545 chore: release v2.4.0 (#311)
    • \n
    • 695b961 fix: wasm build failure due to a missing use statement (#313)
    • \n
    • beb2dc1 zip64: fix zip64 extended information issue (#265)
    • \n
    • 40aca20 chore(deps): Update dev dependencies, fuzz dependencies and MACOSX_DEPLOYMENT...
    • \n
    • 19223ef deps: Disable nt-time default feature so it can be used in no_std
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=zip&package-manager=cargo&previous-version=2.2.0&new-version=2.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/zip-2.4.1", + "sha": "8ef1cb6fa1bf7e39ff381f7f4e449b7d90bd4b61", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-18T00:18:29Z", + "merge_commit_sha": "f830b00150ff18f5f82bff8bc779afee556916f9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/8", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.27", + "body": "Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.24 to 1.7.27.\n
    \nRelease notes\n

    Sourced from github.com/containerd/containerd's releases.

    \n
    \n

    containerd 1.7.27

    \n

    Welcome to the v1.7.27 release of containerd!

    \n

    The twenty-seventh patch release for containerd 1.7 contains various fixes\nand updates.

    \n

    Highlights

    \n
      \n
    • Fix integer overflow in User ID handling (GHSA-265r-hfxg-fhmg)
    • \n
    • Update image type checks to avoid unnecessary logs for attestations (#11538)
    • \n
    \n

    Please try out the release binaries and report any issues at\nhttps://github.com/containerd/containerd/issues.

    \n

    Contributors

    \n
      \n
    • Jin Dong
    • \n
    • Akhil Mohan
    • \n
    • Derek McGowan
    • \n
    • Maksym Pavlenko
    • \n
    • Paweł Gronowski
    • \n
    • Phil Estes
    • \n
    • Akihiro Suda
    • \n
    • Craig Ingram
    • \n
    • Krisztian Litkey
    • \n
    • Samuel Karp
    • \n
    \n

    Changes

    \n\n
      \n
    • 05044ec0a Merge commit from fork
    • \n
    • 11504c3fc validate uid/gid
    • \n
    • Prepare release notes for v1.7.27 (#11540)\n
        \n
      • 1be04be6c Prepare release notes for v1.7.27
      • \n
      \n
    • \n
    • Update image type checks to avoid unnecessary logs for attestations (#11538)\n
        \n
      • 82b5c43fe core/remotes: Handle attestations in MakeRefKey
      • \n
      • 2c670e79b core/images: Ignore attestations when traversing children
      • \n
      \n
    • \n
    • update build to go1.23.7, test go1.24.1 (#11515)\n
        \n
      • a39863c9f update build to go1.23.7, test go1.24.1
      • \n
      \n
    • \n
    • Remove hashicorp/go-multierror dependency and fix CI (#11499)\n
        \n
      • 49537b3a7 e2e: use the shim bundled with containerd artifact
      • \n
      • fe490b76f Bump up github.com/intel/goresctrl to 0.5.0
      • \n
      • 13fc9d313 update containerd/project-checks to 1.2.1
      • \n
      • 585699c94 Remove unnecessary joinError unwrap
      • \n
      • 4b9df59be Remove hashicorp/go-multierror
      • \n
      \n
    • \n
    • go.{mod,sum}: bump CDI deps to v0.8.1. (#11422)\n
        \n
      • 5ba28f8dc go.{mod,sum}: bump CDI deps to v0.8.1, re-vendor.
      • \n
      \n
    • \n
    • CI: arm64-8core-32gb -> ubuntu-24.04-arm (#11437)\n
        \n
      • 85f10bd92 CI: arm64-8core-32gb -> ubuntu-24.04-arm
      • \n
      \n
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 05044ec Merge commit from fork
    • \n
    • 0b7f2a5 Merge pull request #11540 from dmcgowan/prepare-1.7.27
    • \n
    • 574a304 Merge pull request #11538 from dmcgowan/backport-11327
    • \n
    • 1be04be Prepare release notes for v1.7.27
    • \n
    • 82b5c43 core/remotes: Handle attestations in MakeRefKey
    • \n
    • 2c670e7 core/images: Ignore attestations when traversing children
    • \n
    • 11504c3 validate uid/gid
    • \n
    • 576178b Merge pull request #11515 from akhilerm/1.7-updatego1.24.1
    • \n
    • a39863c update build to go1.23.7, test go1.24.1
    • \n
    • 8946aa0 Merge pull request #11499 from djdongjin/1-7-remove-hashi-multierror
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/containerd/containerd&package-manager=go_modules&previous-version=1.7.24&new-version=1.7.27)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/containerd/containerd-1.7.27", + "sha": "f3761c4eb72081927689923e443c58b5c4a0a32e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-18T00:21:44Z", + "merge_commit_sha": "9b0f6c97bce473e8ecf2f8abe1ec0221392b28c4" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/9", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.2", + "body": "Bumps [github.com/golang-jwt/jwt/v4](https://github.com/golang-jwt/jwt) from 4.5.0 to 4.5.2.\n
    \nRelease notes\n

    Sourced from github.com/golang-jwt/jwt/v4's releases.

    \n
    \n

    v4.5.2

    \n

    See https://github.com/golang-jwt/jwt/security/advisories/GHSA-mh63-6h87-95cp

    \n

    Full Changelog: https://github.com/golang-jwt/jwt/compare/v4.5.1...v4.5.2

    \n

    v4.5.1

    \n

    Security

    \n

    Unclear documentation of the error behavior in ParseWithClaims in <= 4.5.0 could lead to situation where users are potentially not checking errors in the way they should be. Especially, if a token is both expired and invalid, the errors returned by ParseWithClaims return both error codes. If users only check for the jwt.ErrTokenExpired using error.Is, they will ignore the embedded jwt.ErrTokenSignatureInvalid and thus potentially accept invalid tokens.

    \n

    This issue was documented in https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r and fixed in this release.

    \n

    Note: v5 was not affected by this issue. So upgrading to this release version is also recommended.

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/golang-jwt/jwt/compare/v4.5.0...v4.5.1

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/golang-jwt/jwt/v4&package-manager=go_modules&previous-version=4.5.0&new-version=4.5.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/github.com/golang-jwt/jwt/v4-4.5.2", + "sha": "abf7fa8676394457a156f99653c250b44e0e6b1c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-21T22:28:56Z", + "merge_commit_sha": "19a1536360dde148260c8c00987a8c9d1640d83b" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/10", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump tauri-plugin-shell from 2.0.2 to 2.2.1 in /desktop/src-tauri", + "body": "Bumps [tauri-plugin-shell](https://github.com/tauri-apps/plugins-workspace) from 2.0.2 to 2.2.1.\n
    \nRelease notes\n

    Sourced from tauri-plugin-shell's releases.

    \n
    \n

    opener-js v2.2.1

    \n

    [2.2.1]

    \n\n\n
    npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.\nnpm warn publish errors corrected:\nnpm warn publish "repository" was changed from a string to an object\nnpm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git"\nnpm notice\nnpm notice 📦  @tauri-apps/plugin-opener@2.2.1\nnpm notice Tarball Contents\nnpm notice 888B LICENSE.spdx\nnpm notice 3.9kB README.md\nnpm notice 2.8kB dist-js/index.cjs\nnpm notice 1.8kB dist-js/index.d.ts\nnpm notice 2.7kB dist-js/index.js\nnpm notice 11B dist-js/init.d.ts\nnpm notice 729B package.json\nnpm notice Tarball Details\nnpm notice name: @tauri-apps/plugin-opener\nnpm notice version: 2.2.1\nnpm notice filename: tauri-apps-plugin-opener-2.2.1.tgz\nnpm notice package size: 3.3 kB\nnpm notice unpacked size: 12.8 kB\nnpm notice shasum: cf0d74f683171d0cb31657baa417ad7b75cef4c0\nnpm notice integrity: sha512-zloo4xzBqeh36[...]S65GLVkeXTHPg==\nnpm notice total files: 7\nnpm notice\nnpm notice Publishing to https://registry.npmjs.org/ with tag latest and public access\nnpm notice publish Signed provenance statement with source and build information from GitHub Actions\nnpm notice publish Provenance statement published to transparency log: https://search.sigstore.dev/?logIndex=154516065\n+ @tauri-apps/plugin-opener@2.2.1\n
    \n\n

    opener v2.2.1

    \n

    [2.2.1]

    \n\n\n
    </tr></table> \n
    \n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tauri-plugin-shell&package-manager=cargo&previous-version=2.0.2&new-version=2.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/tauri-plugin-shell-2.2.1", + "sha": "6c56057d51258894a7bbdcab2da88aab5b40db5a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-02T22:39:30Z", + "merge_commit_sha": "3877bbbc755fb430ce04048b90e27d3cc3fbc1a6" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/11", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump openssl from 0.10.68 to 0.10.72 in /desktop/src-tauri", + "body": "Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.68 to 0.10.72.\n
    \nRelease notes\n

    Sourced from openssl's releases.

    \n
    \n

    openssl-v0.10.72

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.71...openssl-v0.10.72

    \n

    openssl-v0.10.71

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.70...openssl-v0.10.71

    \n

    openssl v0.10.70

    \n

    What's Changed

    \n\n

    Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70

    \n

    openssl v0.10.69

    \n

    What's Changed

    \n\n

    New Contributors

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 87085bd Merge pull request #2390 from alex/uaf-fix
    • \n
    • d1a12e2 Fixed two UAFs and bumped versions for release
    • \n
    • 7c7b2e6 Merge pull request #2389 from skmcgrail/aws-lc-follow-up
    • \n
    • 34a477b Use --experimental with bindgen-cli with aws-lc build
    • \n
    • d4bf071 Merge pull request #2386 from skmcgrail/aws-lc-follow-up
    • \n
    • a86bf67 Remove comment
    • \n
    • 705dbfb Fix test
    • \n
    • e0df413 Skip final call for LibreSSL 4.1.0 for CCM mode
    • \n
    • 2f1164b Enable additional capabilities for AWS-LC
    • \n
    • dde9ffb Merge pull request #1805 from skmcgrail/aws-lc-support-final
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.68&new-version=0.10.72)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/openssl-0.10.72", + "sha": "87377210599b5e2843c99d56fe9dbfef7656463e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-04T20:50:47Z", + "merge_commit_sha": "d59e98e2d2ea3012a90cafbef23b553ec242c7fa" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/12", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump tokio from 1.41.0 to 1.43.1 in /desktop/src-tauri", + "body": "Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.41.0 to 1.43.1.\n
    \nRelease notes\n

    Sourced from tokio's releases.

    \n
    \n

    Tokio v1.43.0

    \n

    1.43.0 (Jan 8th, 2025)

    \n

    Added

    \n
      \n
    • net: add UdpSocket::peek methods (#7068)
    • \n
    • net: add support for Haiku OS (#7042)
    • \n
    • process: add Command::into_std() (#7014)
    • \n
    • signal: add SignalKind::info on illumos (#6995)
    • \n
    • signal: add support for realtime signals on illumos (#7029)
    • \n
    \n

    Fixed

    \n
      \n
    • io: don't call set_len before initializing vector in Blocking (#7054)
    • \n
    • macros: suppress clippy::needless_return in #[tokio::main] (#6874)
    • \n
    • runtime: fix thread parking on WebAssembly (#7041)
    • \n
    \n

    Changes

    \n
      \n
    • chore: use unsync loads for unsync_load (#7073)
    • \n
    • io: use Buf::put_bytes in Repeat read impl (#7055)
    • \n
    • task: drop the join waker of a task eagerly (#6986)
    • \n
    \n

    Changes to unstable APIs

    \n
      \n
    • metrics: improve flexibility of H2Histogram Configuration (#6963)
    • \n
    • taskdump: add accessor methods for backtrace (#6975)
    • \n
    \n

    Documented

    \n
      \n
    • io: clarify ReadBuf::uninit allows initialized buffers as well (#7053)
    • \n
    • net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)
    • \n
    • runtime: fix LocalRuntime doc links (#7074)
    • \n
    • sync: extend documentation for watch::Receiver::wait_for (#7038)
    • \n
    • sync: fix typos in OnceCell docs (#7047)
    • \n
    \n

    #6874: tokio-rs/tokio#6874\n#6963: tokio-rs/tokio#6963\n#6975: tokio-rs/tokio#6975\n#6986: tokio-rs/tokio#6986\n#6995: tokio-rs/tokio#6995\n#7014: tokio-rs/tokio#7014\n#7029: tokio-rs/tokio#7029\n#7038: tokio-rs/tokio#7038\n#7041: tokio-rs/tokio#7041\n#7042: tokio-rs/tokio#7042\n#7047: tokio-rs/tokio#7047\n#7053: tokio-rs/tokio#7053\n#7054: tokio-rs/tokio#7054\n#7055: tokio-rs/tokio#7055

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • a7b658c chore: prepare Tokio v1.43.1 release
    • \n
    • c1c8d10 Merge remote-tracking branch 'origin/tokio-1.38.x' into forward-port-1.38.x
    • \n
    • aa303bc chore: prepare Tokio v1.38.2 release
    • \n
    • 7b6ccb5 chore: backport CI fixes
    • \n
    • 4b174ce sync: fix cloning value when receiving from broadcast channel
    • \n
    • 5f3296d chore: prepare Tokio v1.43.0 (#7079)
    • \n
    • cc974a6 chore: prepare tokio-macros v2.5.0 (#7078)
    • \n
    • 15495fd metrics: improve flexibility of H2Histogram Configuration (#6963)
    • \n
    • ad41834 io: don't call set_len before initializing vector in Blocking (#7054)
    • \n
    • bd3e857 runtime: move is_join_waker_set assertion in unset_waker (#7072)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.41.0&new-version=1.43.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/tokio-1.43.1", + "sha": "f351a3a02a2c61b568effdb6058fb2e61b134e91", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-08T02:10:09Z", + "merge_commit_sha": "41c971638a337bca73e07bceb76182e042317cd5" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/13", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump crossbeam-channel from 0.5.13 to 0.5.15 in /desktop/src-tauri", + "body": "Bumps [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) from 0.5.13 to 0.5.15.\n
    \nRelease notes\n

    Sourced from crossbeam-channel's releases.

    \n
    \n

    crossbeam-channel 0.5.15

    \n
      \n
    • Fix regression introduced in 0.5.12 that can lead to a double free when dropping unbounded channel. (#1187)
    • \n
    \n

    crossbeam-channel 0.5.14

    \n
      \n
    • Fix stack overflow when sending large value to unbounded channel. (#1146, #1147)
    • \n
    • Add Select::new_biased function. (#1150)
    • \n
    • Remove inefficient spinning. (#1154)
    • \n
    • Suppress buggy clippy::zero_repeat_side_effects lint in macro generated code. (#1123)
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • d35ffde Prepare for the next release
    • \n
    • 6ec74ec crossbeam-channel: prevent double free on Drop (#1187)
    • \n
    • ccd83ac Prepare for the next release
    • \n
    • 54988eb Calculate layout in const context
    • \n
    • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
    • \n
    • 8144fbb Remove optimistic spinning from Context::wait_until
    • \n
    • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
    • \n
    • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
    • \n
    • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
    • \n
    • f757eef Add comment about fixed rustc bug
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crossbeam-channel&package-manager=cargo&previous-version=0.5.13&new-version=0.5.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/cargo/desktop/src-tauri/crossbeam-channel-0.5.15", + "sha": "340c918d3a31b9fa6799b555eefa44ee8603a9d2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/rust" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-10T14:41:28Z", + "merge_commit_sha": "6dae427d5f3c8bafe5cdf4a03600ba28fccf9528" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/14", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.35.0", + "body": "Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.27.0 to 0.35.0.\n
    \nCommits\n
      \n
    • 7292932 ssh: limit the size of the internal packet queue while waiting for KEX
    • \n
    • f66f74b acme/autocert: check host policy before probing the cache
    • \n
    • b0784b7 x509roots/fallback: drop obsolete build constraint
    • \n
    • 911360c all: bump golang.org/x/crypto dependencies of asm generators
    • \n
    • 89ff08d all: upgrade go directive to at least 1.23.0 [generated]
    • \n
    • e47973b all: update certs for go1.24
    • \n
    • 9290511 go.mod: update golang.org/x dependencies
    • \n
    • fa5273e x509roots/fallback: update bundle
    • \n
    • a8ea4be ssh: add ServerConfig.PreAuthConnCallback, ServerPreAuthConn (banner) interface
    • \n
    • 71d3a4c acme: support challenges that require the ACME client to send a non-empty JSO...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.27.0&new-version=0.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/crypto-0.35.0", + "sha": "96e6b47b87f059fb545659e8941a7d4f56746cc8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-14T18:36:02Z", + "merge_commit_sha": "70768b4168ca2e3375addc895d0974be60a5c004" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/70-networklist-org/pull/15", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/70-networklist-org", + "title": "chore(deps): bump golang.org/x/net from 0.29.0 to 0.38.0", + "body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.29.0 to 0.38.0.\n
    \nCommits\n
      \n
    • e1fcd82 html: properly handle trailing solidus in unquoted attribute value in foreign...
    • \n
    • ebed060 internal/http3: fix build of tests with GOEXPERIMENT=nosynctest
    • \n
    • 1f1fa29 publicsuffix: regenerate table
    • \n
    • 1215081 http2: improve error when server sends HTTP/1
    • \n
    • 312450e html: ensure <search> tag closes <p> and update tests
    • \n
    • 09731f9 http2: improve handling of lost PING in Server
    • \n
    • 55989e2 http2/h2c: use ResponseController for hijacking connections
    • \n
    • 2914f46 websocket: re-recommend gorilla/websocket
    • \n
    • 99b3ae0 go.mod: update golang.org/x dependencies
    • \n
    • 85d1d54 go.mod: update golang.org/x dependencies
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.29.0&new-version=0.38.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/devpod/network/alerts).\n\n
    ", + "base": { + "ref": "main", + "sha": "3092dd6396761cbb6a587c1e03ffd2da9e09b22c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "head": { + "ref": "dependabot/go_modules/golang.org/x/net-0.38.0", + "sha": "78d1702dd213de6a535b8209d98b565ea269a147", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/70-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "https://github.com/xc-link/70-networklist-org/labels/go" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-04-16T22:39:21Z", + "merge_commit_sha": "9c27e84f1810e7e016d92b3b227df9431a136fb9" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/solidity/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/solidity", + "title": "Bump unsplash/comment-on-pr from 1.3.0 to 1.3.1", + "body": "Bumps [unsplash/comment-on-pr](https://github.com/unsplash/comment-on-pr) from 1.3.0 to 1.3.1.\n
    \nCommits\n
      \n
    • b5610c6 Update version in readme.
    • \n
    • 8f2c7d6 Merge pull request #50 from unsplash/specs
    • \n
    • 1dc131a Script specs.
    • \n
    • 3bc9dbc Entrypoint specs.
    • \n
    • c04fd18 Commenter specs.
    • \n
    • 3aaf224 GitHub specs.
    • \n
    • 5d3a604 Big ol' overdue refactor.
    • \n
    • 481c213 Merge pull request #45 from baldoalessandro/patch-1
    • \n
    • 2f2087d Fix sample workflow with actual versione tag
    • \n
    • 4111836 Merge pull request #44 from jeffreyguenther/jeff/fix-conditional-args
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=unsplash/comment-on-pr&package-manager=github_actions&previous-version=1.3.0&new-version=1.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "develop", + "sha": "adb5b81a9cb034ac998cee1c8ed5bae347b803f6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/solidity" + }, + "head": { + "ref": "dependabot-github_actions-unsplash-comment-on-pr-1.3.1", + "sha": "9cadaf01ef5b44b187d3691ec437291a62c0bec1", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/solidity" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/solidity/labels/dependencies", + "https://github.com/xc-link/solidity/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-15T23:33:30Z", + "merge_commit_sha": "49673ef8ee211e80904318d7737f0c65dfc64d3f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/solidity/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/solidity", + "title": "Bump actions/stale from 6 to 9", + "body": "Bumps [actions/stale](https://github.com/actions/stale) from 6 to 9.\n
    \nRelease notes\n

    Sourced from actions/stale's releases.

    \n
    \n

    v9.0.0

    \n

    Breaking Changes

    \n
      \n
    1. Action is now stateful: If the action ends because of operations-per-run then the next run will start from the first unprocessed issue skipping the issues processed during the previous run(s). The state is reset when all the issues are processed. This should be considered for scheduling workflow runs.
    2. \n
    3. Version 9 of this action updated the runtime to Node.js 20. All scripts are now run with Node.js 20 instead of Node.js 16 and are affected by any breaking changes between Node.js 16 and 20.
    4. \n
    \n

    What Else Changed

    \n
      \n
    1. Performance optimization that removes unnecessary API calls by @​dsame #1033 fixes #792
    2. \n
    3. Logs displaying current github API rate limit by @​dsame #1032 addresses #1029
    4. \n
    \n

    For more information, please read the action documentation and its section about statefulness

    \n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/stale/compare/v8...v9.0.0

    \n

    v8.0.0

    \n

    :warning: This version contains breaking changes :warning:

    \n

    What's Changed

    \n\n

    Breaking Changes

    \n
      \n
    • In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail
    • \n
    \n

    Example

    \n
    name: 'Remove labels when the issue or PR becomes stale'\non:\n  schedule:\n    - cron: '30 1 * * *'\n

    permissions:\npull-requests: write

    \n

    jobs:\nstale:\nruns-on: ubuntu-latest\nsteps:\n- uses: actions/stale@v8\nwith:\nlabels-to-remove-when-stale: 'label1,label2'\n

    \n

    v7.0.0

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from actions/stale's changelog.

    \n
    \n

    Changelog

    \n

    [7.0.0]

    \n

    :warning: Breaking change :warning:

    \n\n

    [6.0.1]

    \n

    Update @​actions/core to v1.10.0 (#839)

    \n

    [6.0.0]

    \n

    :warning: Breaking change :warning:

    \n

    Issues/PRs default close-issue-reason is now not_planned(#789)

    \n

    [5.1.0]

    \n

    Don't process stale issues right after they're marked stale\n[Add close-issue-reason option]#764#772\nVarious dependabot/dependency updates

    \n

    4.1.0 (2021-07-14)

    \n

    Features

    \n\n

    4.0.0 (2021-07-14)

    \n

    Features

    \n
      \n
    • options: simplify config by removing skip stale message options (#457) (6ec637d), closes #405 #455
    • \n
    • output: print output parameters (#458) (3e6d35b)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • dry-run: forbid mutations in dry-run (#500) (f1017f3), closes #499
    • \n
    • logs: coloured logs (#465) (5fbbfba)
    • \n
    • operations: fail fast the current batch to respect the operations limit (#474) (5f6f311), closes #466
    • \n
    • label comparison: make label comparison case insensitive #517, closes #516
    • \n
    • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#519), fixes #441, #509, #518
    • \n
    \n

    Breaking Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 28ca103 Upgrade Node to v20 (#1110)
    • \n
    • b69b346 build(deps-dev): bump @​types/node from 18.16.18 to 20.5.1 (#1079)
    • \n
    • 88a6f4f build(deps-dev): bump typescript from 5.1.3 to 5.2.2 (#1083)
    • \n
    • 796531a Merge pull request #1080 from akv-platform/fix-delete-cache
    • \n
    • 8986f62 Don not try to delete cache if it does not exists
    • \n
    • cab99b3 fix typo proceeded/processed
    • \n
    • 184e7af Merge pull request #1064 from actions/dependabot/npm_and_yarn/typescript-esli...
    • \n
    • 523885c chore: update eslint-plugin, parser and eslint-plugin-jest
    • \n
    • 2487a1d build(deps-dev): bump @​typescript-eslint/eslint-plugin
    • \n
    • 60c722e Merge pull request #1063 from actions/dependabot/npm_and_yarn/jest-29.6.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=6&new-version=9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
    ", + "base": { + "ref": "develop", + "sha": "adb5b81a9cb034ac998cee1c8ed5bae347b803f6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/solidity" + }, + "head": { + "ref": "dependabot-github_actions-actions-stale-9", + "sha": "4b320836f4de2a5477b06149998fb5544cf93489", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/solidity" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/solidity/labels/dependencies", + "https://github.com/xc-link/solidity/labels/github_actions" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-15T23:33:32Z", + "merge_commit_sha": "ad5ba99eee0398e605d7944082ab676e14601a11" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/12-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/12-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "master", + "sha": "84f1c2260e7ec9456db43566e3140ee465df6612", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/12-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "6ac108b9e189dced803eaf8ed2ecb7cd580a9982", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/12-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-24T18:46:39Z", + "merge_commit_sha": "96779d99b2ce52e243192e9aa1b691f3b42bda2f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/11-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/11-networklist-org", + "title": "Add GitHub Actions workflow for .NET Core Desktop app", + "body": "## Description\r\n\r\n### Type of Change\r\n_Erase all that don't apply._\r\n- Bug fix (non-breaking change which fixes an issue)\r\n- New feature (non-breaking change which adds functionality)\r\n- Breaking change (fix or feature that would cause existing functionality to not work as expected)\r\n- This change requires a documentation update\r\n\r\n### Why\r\nWhat is the motivation for this change? Add a few sentences describing the context and overall goals of the pull request's commits.\r\n\r\nResolves [Add Relevant Issue Here]\r\n\r\n### What\r\nWhat changes were made to the codebase to solve the bug, add the functionality, etc. that you specified above.\r\n\r\n## Screenshots\r\nAdd any relevant screen captures here from before or after your changes. \r\n\r\n## Testing\r\nIf you added tests that prove your changes are effective or that your feature works, add a few sentences here detailing the added test scenarios.\r\n\r\n_Optional_: Describe the tests that you ran locally to verify your changes.\r\n\r\n## Changelog\r\nShould this change be included in the release notes: _indicate yes or no_\r\n\r\nAdd a brief summary of the change to use in the release notes for the next release.", + "base": { + "ref": "main", + "sha": "62df6dd530cb72b7e75618bb5e136652b3539be7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/11-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "71abf8164349ee83645db6025505456cd2156709", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/11-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-01-08T03:31:53Z", + "merge_commit_sha": "a6060adbd29168945a41596b4fa95aae25081d85" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/28-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/28-networklist-org", + "title": "Bump commons-beanutils:commons-beanutils from 1.9.3 to 1.11.0", + "body": "Bumps commons-beanutils:commons-beanutils from 1.9.3 to 1.11.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-beanutils:commons-beanutils&package-manager=maven&previous-version=1.9.3&new-version=1.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J-SpringBoot/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "d215a788021a7d7b221b29d0e3965303f573d85c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-beanutils-commons-beanutils-1.11.0", + "sha": "7c8c11bc2ab8878e57393d889f9ae712320f1a27", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "https://github.com/xc-link/28-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-28T18:00:48Z", + "merge_commit_sha": "c7ad47904a5d683900fd60f2fe215109d4c1d997" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/22-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/22-networklist-org", + "title": "Create codeql.yml", + "body": "\r\n\r\n## **Description**\r\n\r\n\r\n\r\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/MetaMask/metamask-extension/pull/PR?quickstart=1)\r\n\r\n## **Related issues**\r\n\r\nFixes:\r\n\r\n## **Manual testing steps**\r\n\r\n1. Go to this page...\r\n2.\r\n3.\r\n\r\n## **Screenshots/Recordings**\r\n\r\n\r\n\r\n### **Before**\r\n\r\n\r\n\r\n### **After**\r\n\r\n\r\n\r\n## **Pre-merge author checklist**\r\n\r\n- [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Extension Coding Standards](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/CODING_GUIDELINES.md).\r\n- [ ] I've completed the PR template to the best of my ability\r\n- [ ] I’ve included tests if applicable\r\n- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable\r\n- [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors.\r\n\r\n## **Pre-merge reviewer checklist**\r\n\r\n- [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed).\r\n- [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.\r\n", + "base": { + "ref": "main", + "sha": "d097924275d44d4d10fa1689e193fd9ef02479a6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/22-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "46127bb87dca5d81444d212074715f194391d263", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/22-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T17:05:54Z", + "merge_commit_sha": "72be85ca60bcb4345a3bcb7866766abe1c2aa3d8" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/28-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/28-networklist-org", + "title": "Bump commons-fileupload:commons-fileupload from 1.3.3 to 1.6.0", + "body": "Bumps commons-fileupload:commons-fileupload from 1.3.3 to 1.6.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-fileupload:commons-fileupload&package-manager=maven&previous-version=1.3.3&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J-SpringBoot/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "d215a788021a7d7b221b29d0e3965303f573d85c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-fileupload-commons-fileupload-1.6.0", + "sha": "efbb46cc3a961b03a2de6b0d28008d42209f81b7", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "https://github.com/xc-link/28-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-09T18:45:33Z", + "merge_commit_sha": "073bb68f41c63978ed0911959e00b2313855d302" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/28-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/28-networklist-org", + "title": "Bump com.alibaba:fastjson from 1.2.47 to 1.2.83", + "body": "Bumps [com.alibaba:fastjson](https://github.com/alibaba/fastjson) from 1.2.47 to 1.2.83.\n
    \nRelease notes\n

    Sourced from com.alibaba:fastjson's releases.

    \n
    \n

    FASTJSON 1.2.83版本发布(安全修复)

    \n

    这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。

    \n

    安全修复方案https://github.com/alibaba/fastjson/wiki/security_update_20220523

    \n

    FASTJSON2已经发布并且提供兼容包,性能更好也更安全,升级指南 https://github.com/alibaba/fastjson2/wiki/fastjson_1_upgrade_cn

    \n

    Issues

    \n
      \n
    1. 安全加固
    2. \n
    3. 修复JDK17下setAccessible报错的问题 #4077
    4. \n
    \n\n

    fastjson 1.2.79版本发布,BUG修复

    \n

    这又是一个bug fixed的版本,大家按需升级

    \n

    Issues

    \n
      \n
    1. 修复引入MethodInheritanceComparator导致某些场景序列化报错的问题
    2. \n
    3. 增强JDK 9兼容
    4. \n
    5. 修复JSONArray/JSONObject的equals方法在内部对象map/list相同时不直接返回true的问题
    6. \n
    \n

    相关链接

    \n\n

    fastjson 1.2.76版本发布,BUG修复增强兼容

    \n

    这又是一个bug fixed的版本,大家按需升级

    \n

    Issues

    \n
      \n
    1. 修复一些直接抛RuntimeException的问题 #3631
    2. \n
    3. parser自动识别gzip bytes #3614
    4. \n
    5. 修复Throwable继承类属性不支持自动类型转换问题 #3217
    6. \n
    7. 修复PrettyFormat情况下引用计算不对的问题 #3672
    8. \n
    9. 修复AutoType不兼容LinkedHashMap的问题
    10. \n
    11. 增强对Enum类型的自定类型转换
    12. \n
    13. 修复deserializeUsing在泛型某些场景不能正常工作的问题 #3693
    14. \n
    15. 提升JSONReader性能,减少小对象创建 #3627
    16. \n
    17. 增强对JSONPath对filter的支持 #3629
    18. \n
    19. JSONPath支持忽略NullValue的选项 #3607
    20. \n
    21. 增强对定制化enum的支持 #3601
    22. \n
    23. 增强对java.time.Instant和org.joda.time.Instant的支持 #3539
    24. \n
    25. 修复Parser某些场景不能识别引用的问题
    26. \n
    \n

    相关链接

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.alibaba:fastjson&package-manager=maven&previous-version=1.2.47&new-version=1.2.83)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J-SpringBoot/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "d215a788021a7d7b221b29d0e3965303f573d85c", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.alibaba-fastjson-1.2.83", + "sha": "2b5d65a83a271b0717f3a27c5fcd4e471908ef39", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/28-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "https://github.com/xc-link/28-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-01-09T19:45:35Z", + "merge_commit_sha": "5812f3e279cb7bc2f5166156daecb35c2673959a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/18-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/18-networklist-org", + "title": "Create codeql.yml", + "body": "## Pull Request Submission Checklist\r\n- [ ] Follows [CONTRIBUTING](https://github.com/snyk/cli/blob/main/CONTRIBUTING.md) guidelines\r\n- [ ] Includes detailed description of changes\r\n- [ ] Contains risk assessment (Low | Medium | High)\r\n- [ ] Highlights breaking API changes (if applicable)\r\n- [ ] Links to automated tests covering new functionality\r\n- [ ] Includes manual testing instructions (if necessary)\r\n- [ ] Updates relevant GitBook documentation (PR link: ___)\r\n\r\n## What does this PR do?\r\n\r\n## Where should the reviewer start?\r\n\r\n## How should this be manually tested?\r\n\r\n", + "base": { + "ref": "main", + "sha": "b03974d97f8d4fa472e9f1bb19760f71df902f94", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/18-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "3cda59640cd9d1cc88657d82cde92aa55b06e023", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/18-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T18:01:44Z", + "merge_commit_sha": "6d53b0b7ff7eda76ca16be8fdf1348e8bcb51ace" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/19-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/19-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "main", + "sha": "c25580607cfb903b954c070bf304d3100b97859a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/19-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "8f03a81ae122c4734a56dbd5157b1b5af487bdf6", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/19-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-21T09:06:02Z", + "merge_commit_sha": "931e134598c1598f5f8fa5a0a32f1891995e190e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/15-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/15-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "gh-pages", + "sha": "67eb8a48355700df97f66b9088747f4fa44c2dae", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/15-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "13c3b86ab4a69dee2e41b79e1d8dc6ce1cdec7d3", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/15-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": "2025-06-22T16:56:07Z", + "closed_at": "2025-06-22T16:56:07Z", + "created_at": "2025-06-22T16:55:49Z", + "merge_commit_sha": "3cf4df6042eac210f345a053d85b874dae5d199d" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/cardano-sl/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/cardano-sl", + "title": "Bump elliptic from 6.4.1 to 6.6.1 in /explorer/frontend", + "body": "Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.1 to 6.6.1.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=elliptic&package-manager=npm_and_yarn&previous-version=6.4.1&new-version=6.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/cardano-sl/network/alerts).\n\n
    ", + "base": { + "ref": "develop", + "sha": "1499214d93767b703b9599369a431e67d83f10a2", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/cardano-sl" + }, + "head": { + "ref": "dependabot/npm_and_yarn/explorer/frontend/elliptic-6.6.1", + "sha": "beb70f656b57d6c45df9f9082ce088e172397ca0", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/cardano-sl" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/cardano-sl/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-02-13T06:08:26Z", + "merge_commit_sha": "3ff3b7ef5c0060bf89868430ab33941a71fc5e5a" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/23-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/23-networklist-org", + "title": "Create codeql.yml", + "body": "\r\n\r\n\r\n\r\n\r\n", + "base": { + "ref": "master", + "sha": "6a46be75c43e6489d7cb2aaea614ba552b31b35a", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/23-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "0b1b8ecac72be59080924bc6bf6857f67dadd536", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/23-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-20T17:03:08Z", + "merge_commit_sha": "6eda7b8a8a60c61e6f6c506509c27e2203ef3db4" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/16-networklist-org/pull/1", + "user": "https://github.com/xc-link", + "repository": "https://github.com/xc-link/16-networklist-org", + "title": "Create codeql.yml", + "body": null, + "base": { + "ref": "develop", + "sha": "25bbaafe45bb156916bcc26063f11b4829c8e614", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/16-networklist-org" + }, + "head": { + "ref": "xc-link-patch-1", + "sha": "79e2c17522a80bccadc2b3602437ef2e637dc737", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/16-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-06-22T02:54:10Z", + "merge_commit_sha": "50d3cb6863dc751773191f1cbe7716fa71aa03b2" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump commons-beanutils:commons-beanutils from 1.9.3 to 1.11.0", + "body": "Bumps commons-beanutils:commons-beanutils from 1.9.3 to 1.11.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-beanutils:commons-beanutils&package-manager=maven&previous-version=1.9.3&new-version=1.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "775ec58c63419e655dad18cb72db5766d18e9ab4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-beanutils-commons-beanutils-1.11.0", + "sha": "1383fc654a760d2e594151747ccaacadc1a90c2e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-05-28T18:00:58Z", + "merge_commit_sha": "acad4564d94856875a09028adc4db8965068e1e5" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump commons-fileupload:commons-fileupload from 1.3.3 to 1.6.0", + "body": "Bumps commons-fileupload:commons-fileupload from 1.3.3 to 1.6.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-fileupload:commons-fileupload&package-manager=maven&previous-version=1.3.3&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "775ec58c63419e655dad18cb72db5766d18e9ab4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-fileupload-commons-fileupload-1.6.0", + "sha": "260b14ae5cb76fe188ecd192f5b4bf770729f5fd", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-07-09T18:45:32Z", + "merge_commit_sha": "f6911c273be5b4bc007e70de5deff12126e3855e" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/3", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump com.squareup.okhttp3:okhttp from 3.13.1 to 4.9.2", + "body": "Bumps [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) from 3.13.1 to 4.9.2.\n
    \nChangelog\n

    Sourced from com.squareup.okhttp3:okhttp's changelog.

    \n
    \n

    Change Log

    \n

    Version 4.x

    \n

    See 4.x Change log for the stable version changelogs.

    \n

    Version 5.3.0

    \n

    2025-10-30

    \n
      \n
    • \n

      New: Add tags to Call, including computable tags. Use this to attach application-specific\nmetadata to a Call in an EventListener or Interceptor. The tag can be read in any other\nEventListener or Interceptor.

      \n
        override fun intercept(chain: Interceptor.Chain): Response {\n    chain.call().tag(MyAnalyticsTag::class) {\n      MyAnalyticsTag(...)\n    }\n
      return chain.proceed(chain.request())\n
      \n

      }\n

      \n
    • \n
    • \n

      New: Support request bodies on HTTP/1.1 connection upgrades.

      \n
    • \n
    • \n

      New: EventListener.plus() makes it easier to observe events in multiple listeners.

      \n
    • \n
    • \n

      Fix: Don't spam logs with ‘Method isLoggable in android.util.Log not mocked.’ when using\nOkHttp in Robolectric and Paparazzi tests.

      \n
    • \n
    • \n

      Upgrade: [Kotlin 2.2.21][kotlin_2_2_21].

      \n
    • \n
    • \n

      Upgrade: [Okio 3.16.2][okio_3_16_2].

      \n
    • \n
    • \n

      Upgrade: [ZSTD-KMP 0.4.0][zstd_kmp_0_4_0]. This update fixes a bug that caused APKs to fail\n[16 KB ELF alignment checks][elf_alignment].

      \n
    • \n
    \n

    Version 5.2.1

    \n

    2025-10-09

    \n
      \n
    • \n

      Fix: Don't crash when calling Socket.shutdownOutput() or shutdownInput() on an SSLSocket\non Android API 21 through 23. This method throws an UnsupportedOperationException, so we now\ncatch that and close the underlying stream instead.

      \n
    • \n
    • \n

      Upgrade: [Okio 3.16.1][okio_3_16_1].

      \n
    • \n
    \n

    Version 5.2.0

    \n

    2025-10-07

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.squareup.okhttp3:okhttp&package-manager=maven&previous-version=3.13.1&new-version=4.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/iBase4J/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "775ec58c63419e655dad18cb72db5766d18e9ab4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.squareup.okhttp3-okhttp-4.9.2", + "sha": "42f3481acb8b82534e6ce3dc6d18a4c146ddc69d", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-11-13T16:38:31Z", + "merge_commit_sha": "6ab54d29432adfeb093027ffb324618f9c5282bc" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/4", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump com.google.guava:guava from 28.0-jre to 32.0.0-jre", + "body": "Bumps [com.google.guava:guava](https://github.com/google/guava) from 28.0-jre to 32.0.0-jre.\n
    \nRelease notes\n

    Sourced from com.google.guava:guava's releases.

    \n
    \n

    32.0.0

    \n

    Maven

    \n
    <dependency>\n  <groupId>com.google.guava</groupId>\n  <artifactId>guava</artifactId>\n  <version>32.0.0-jre</version>\n  <!-- or, for Android: -->\n  <version>32.0.0-android</version>\n</dependency>\n
    \n

    Jar files

    \n\n

    Guava requires one runtime dependency, which you can download here:

    \n\n

    Javadoc

    \n\n

    JDiff

    \n\n

    Changelog

    \n

    Security fixes

    \n
      \n
    • Reimplemented Files.createTempDir and FileBackedOutputStream to further address CVE-2020-8908 (#4011) and CVE-2023-2976 (#2575). (feb83a1c8f)
    • \n
    \n

    While CVE-2020-8908 was officially closed when we deprecated Files.createTempDir in Guava 30.0, we've heard from users that even recent versions of Guava have been listed as vulnerable in other databases of security vulnerabilities. In response, we've reimplemented the method (and the very rarely used FileBackedOutputStream class, which had a similar issue) to eliminate the insecure behavior entirely. This change could technically affect users in a number of different ways (discussed under "Incompatible changes" below), but in practice, the only problem users are likely to encounter is with Windows. If you are using those APIs under Windows, you should skip 32.0.0 and go straight to 32.0.1 which fixes the problem. (Unfortunately, we didn't think of the Windows problem until after the release. And while we warn that common.io in particular may not work under Windows, we didn't intend to regress support.) Sorry for the trouble.

    \n

    Incompatible changes

    \n

    Although this release bumps Guava's major version number, it makes no binary-incompatible changes to the guava artifact.

    \n

    One change could cause issues for Widows users, and a few other changes could cause issues for users in more usual situations:

    \n
      \n
    • The new implementations of Files.createTempDir and FileBackedOutputStream throw an exception under Windows. This is fixed in 32.0.1. Sorry for the trouble.
    • \n
    • guava-gwt now requires GWT 2.10.0.
    • \n
    • This release makes a binary-incompatible change to a @Beta API in the separate artifact guava-testlib. Specifically, we changed the return type of TestingExecutors.sameThreadScheduledExecutor to ListeningScheduledExecutorService. The old return type was a package-private class, which caused the Kotlin compiler to produce warnings. (dafaa3e435)
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.guava:guava&package-manager=maven&previous-version=28.0-jre&new-version=32.0.0-jre)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/41-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "56293574f7de94e6910cafa57ca0713bff09a7c5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.google.guava-guava-32.0.0-jre", + "sha": "0f91b52352b31af9a3c73c3aaecd75aaf05a86e5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-09T02:20:55Z", + "merge_commit_sha": "cc3ef048ad5b55d8bfe7112015a3315bf5ac33a3" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/5", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump com.alipay.sofa:hessian from 3.3.3 to 3.5.5", + "body": "Bumps [com.alipay.sofa:hessian](https://github.com/alipay/sofa-hessian) from 3.3.3 to 3.5.5.\n
    \nRelease notes\n

    Sourced from com.alipay.sofa:hessian's releases.

    \n
    \n

    v3.5.4

    \n

    What's Changed

    \n

    enhance

    \n\n

    Full Changelog: https://github.com/sofastack/sofa-hessian/compare/v3.5.3...v3.5.4

    \n

    v3.5.3

    \n

    Fix

    \n\n

    Full Changelog: https://github.com/sofastack/sofa-hessian/compare/v3.5.2...v3.5.3

    \n

    v3.5.2

    \n

    Enhancement

    \n\n

    Fix

    \n\n

    Full Changelog: https://github.com/sofastack/sofa-hessian/compare/v3.5.0...v3.5.2

    \n

    v3.5.0

    \n

    Enhancement

    \n\n

    New Contributors

    \n\n

    Full Changelog: https://github.com/sofastack/sofa-hessian/compare/v3.4.0...v3.5.0

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.alipay.sofa:hessian&package-manager=maven&previous-version=3.3.3&new-version=3.5.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/41-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "56293574f7de94e6910cafa57ca0713bff09a7c5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/com.alipay.sofa-hessian-3.5.5", + "sha": "078ac119fbf36cd099181305b25c16742e7a5623", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-09T02:20:57Z", + "merge_commit_sha": "da82f5072888077815c13aaee4461d1406905891" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/6", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump commons-io:commons-io from 2.6 to 2.14.0", + "body": "Bumps commons-io:commons-io from 2.6 to 2.14.0.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=2.6&new-version=2.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/41-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "56293574f7de94e6910cafa57ca0713bff09a7c5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/commons-io-commons-io-2.14.0", + "sha": "9554a651cd535c2f49c68f270f335ee5327a9c5f", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-09T02:20:58Z", + "merge_commit_sha": "0c26af73e87fff4a1ca9bb59ea5553445b2b1195" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/41-networklist-org/pull/7", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/41-networklist-org", + "title": "Bump org.redisson:redisson from 3.5.6 to 3.22.0", + "body": "Bumps [org.redisson:redisson](https://github.com/redisson/redisson) from 3.5.6 to 3.22.0.\n
    \nRelease notes\n

    Sourced from org.redisson:redisson's releases.

    \n
    \n

    redisson-3.22.0

    \n

    Feature - Spring Data Redis 3.1.0 implementation
    \nFeature - Spring Boot 3.1.0 support
    \nFeature - lastEntry(), firstEntry(), pollLastEntries(), pollFirstEntries(), entryIterator(), rankEntry(), revRankEntry() methods added to RScoredSortedSet object
    \nFeature - RCountDownLatch, RLock, RPermitExpirableSemaphore, RSemaphore objects use sharded PubSub in Redis Cluster 7.0+
    \nFeature - slavesSyncTimeout, commandMapper, sslCiphers, sslTrustManagerFactory, sslKeyManagerFactory settings added
    \nFeature - RMultimap.fastRemoveValue() method added
    \nFeature - allowedClasses setting added to SerializationCodec
    \nFeature - entriesRead and makeStream parameters added to RStream.createGroup() method

    \n

    Breaking change - RCountDownLatch, RLock, RPermitExpirableSemaphore, RSemaphore objects now use sharded PubSub in Redis Cluster 7.0+

    \n

    Fixed - Expired LiveObjects with RIndex annotations retain indexed data
    \nFixed - RRingBuffer doesn't implement expire(), expireAt(), delete(), clearExpire() methods properly
    \nFixed - RLocalCachedMap local cache isn't cleared after instance expiration

    \n

    redisson-3.21.3

    \n

    Fixed - default retryInterval isn't applied to RBatch object
    \nFixed - RBatches no longer respect the default number of retries (regression since 3.21.1)

    \n

    redisson-3.21.2

    \n

    Feature - RBitSet.set(long[], boolean) method added (thanks to @​skasj)

    \n

    Fixed - Pattern Topic messages are missed/duplicated after failover in cluster if channel starts with __keyspace and __keyevent and subscriptionMode = SLAVE
    \nFixed - to many pubsub topics may cause memory leak
    \nFixed - RBatches no longer respect the default number of retries (regression since 3.21.1)

    \n

    redisson-3.21.1

    \n

    Feature - addIfAbsent(), addIfExists(), addIfGreater(), addIfLess(), addAll(), addAllIfAbsent(), addAllIfExist(), addAllIfGreater(), addAllIfLess() methods added to RSetCache object
    \nFeature - SetAddListener, SetRemoveListener, SetRemoveRandomListener added to RSet object
    \nFeature - ScoredSortedSetAddListener, ScoredSortedSetRemoveListener added to RScoredSortedSet object
    \nFeature - MapPutListener, MapRemoveListener added to RMap object
    \nFeature - IncrByListener added to RAtomicDouble and RAtomicLong objects
    \nFeature - RMapCache.getAllWithTTLOnly() method added

    \n

    Breaking change - RedissonDelayedQueue internal data format changed
    \nBreaking change - RedissonReliableTopic internal data format changed

    \n

    Improvement - RedissonReliableTopic internal structure optimization

    \n

    Fixed - RReliableTopic data loss
    \nFixed - failover isn't handled correctly in some cases
    \nFixed - BatchOptions.retryAttempts = 0 isn't applied to RBatch object
    \nFixed - RMap.keySet() throws NPE if CompositeCodec used
    \nFixed - RediSearch NumericFilter shouldn't set exclusive range by default
    \nFixed - RediSearch NumericFilter throws NPE
    \nFixed - RLocalCachedMap.removeListener() method doesn't remove loca cache listeners

    \n

    redisson-3.21.0

    \n

    Feature - RediSearch module support

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from org.redisson:redisson's changelog.

    \n
    \n

    05-Jun-2023 - 3.22.0 released

    \n

    Feature - Spring Data Redis 3.1.0 implementation
    \nFeature - Spring Boot 3.1.0 support
    \nFeature - lastEntry(), firstEntry(), pollLastEntries(), pollFirstEntries(), entryIterator(), rankEntry(), revRankEntry() methods added to RScoredSortedSet object
    \nFeature - RCountDownLatch, RLock, RPermitExpirableSemaphore, RSemaphore objects use sharded PubSub in Redis Cluster 7.0+
    \nFeature - slavesSyncTimeout, commandMapper, sslCiphers, sslTrustManagerFactory, sslKeyManagerFactory settings added
    \nFeature - RMultimap.fastRemoveValue() method added
    \nFeature - allowedClasses setting added to SerializationCodec
    \nFeature - entriesRead and makeStream parameters added to RStream.createGroup() method

    \n

    Breaking change - RCountDownLatch, RLock, RPermitExpirableSemaphore, RSemaphore objects now use sharded PubSub in Redis Cluster 7.0+

    \n

    Fixed - Expired LiveObjects with RIndex annotations retain indexed data
    \nFixed - RRingBuffer doesn't implement expire(), expireAt(), delete(), clearExpire() methods properly
    \nFixed - RLocalCachedMap local cache isn't cleared after instance expiration

    \n

    18-May-2023 - 3.21.3 released

    \n

    Fixed - default retryInterval isn't applied to RBatch object
    \nFixed - RBatches no longer respect the default number of retries (regression since 3.21.1)

    \n

    17-May-2023 - 3.21.2 released

    \n

    Feature - RBitSet.set(long[], boolean) method added (thanks to @​skasj)

    \n

    Fixed - Pattern Topic messages are missed/duplicated after failover in cluster if channel starts with __keyspace and __keyevent and subscriptionMode = SLAVE
    \nFixed - to many pubsub topics may cause memory leak
    \nFixed - RBatches no longer respect the default number of retries (regression since 3.21.1)

    \n

    11-May-2023 - 3.21.1 released

    \n

    Feature - addIfAbsent(), addIfExists(), addIfGreater(), addIfLess(), addAll(), addAllIfAbsent(), addAllIfExist(), addAllIfGreater(), addAllIfLess() methods added to RSetCache object
    \nFeature - SetAddListener, SetRemoveListener, SetRemoveRandomListener added to RSet object
    \nFeature - ScoredSortedSetAddListener, ScoredSortedSetRemoveListener added to RScoredSortedSet object
    \nFeature - MapPutListener, MapRemoveListener added to RMap object
    \nFeature - IncrByListener added to RAtomicDouble and RAtomicLong objects
    \nFeature - RMapCache.getAllWithTTLOnly() method added

    \n

    Breaking change - RedissonDelayedQueue internal data format changed
    \nBreaking change - RedissonReliableTopic internal data format changed

    \n

    Improvement - RedissonReliableTopic internal structure optimization

    \n

    Fixed - RReliableTopic data loss
    \nFixed - failover isn't handled correctly in some cases
    \nFixed - BatchOptions.retryAttempts = 0 isn't applied to RBatch object
    \nFixed - RMap.keySet() throws NPE if CompositeCodec used
    \nFixed - RediSearch NumericFilter shouldn't set exclusive range by default
    \nFixed - RediSearch NumericFilter throws NPE
    \nFixed - RLocalCachedMap.removeListener() method doesn't remove loca cache listeners

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 45aefeb [maven-release-plugin] prepare release redisson-3.22.0
    • \n
    • 0e6499f libs updated
    • \n
    • e911a87 javadocs fixed
    • \n
    • dfc49d8 Merge branch 'master' of github.com:redisson/redisson
    • \n
    • ade3b1e Feature - Add entriesRead and makeStream parameters to RStream.createGroup() ...
    • \n
    • 67214b8 Update README.md
    • \n
    • 77c315d refactoring
    • \n
    • 6c6debf Feature - added Config.slavesSyncTimeout setting. #4798
    • \n
    • 230d4a3 checkstyle fixed
    • \n
    • fe6a257 Feature - allowedClasses setting added to SerializationCodec https://github.c...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.redisson:redisson&package-manager=maven&previous-version=3.5.6&new-version=3.22.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/41-networklist-org/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "56293574f7de94e6910cafa57ca0713bff09a7c5", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.redisson-redisson-3.22.0", + "sha": "3f0b06b20247ee1dff823bd22e3e321fbdae43b8", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/41-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "https://github.com/xc-link/41-networklist-org/labels/java" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2026-02-09T02:20:59Z", + "merge_commit_sha": "a22db3e7269322bc4450b734e7abff15576a6898" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/vcpkg/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/vcpkg", + "title": "Bump jinja2 from 3.1.4 to 3.1.5 in /ports/qtinterfaceframework", + "body": "Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.4 to 3.1.5.\n
    \nRelease notes\n

    Sourced from jinja2's releases.

    \n
    \n

    3.1.5

    \n

    This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.5/\nChanges: https://jinja.palletsprojects.com/changes/#version-3-1-5\nMilestone: https://github.com/pallets/jinja/milestone/16?closed=1

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence types. #2032
    • \n
    • Calling sync render for an async template uses asyncio.run. #1952
    • \n
    • Avoid unclosed auto_aiter warnings. #1960
    • \n
    • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
    • \n
    • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
    • \n
    • The runtime uses the correct concat function for the current environment when calling block references. #1701
    • \n
    • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
    • \n
    • |int filter handles OverflowError from scientific notation. #1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
    • \n
    • Fix copy/pickle support for the internal missing object. #2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. #2061
    • \n
    • The error message from FileSystemLoader includes the paths that were searched. #1661
    • \n
    • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
    • \n
    • Improve annotations for methods returning copies. #1880
    • \n
    • urlize does not add mailto: to values like @a@b. #1870
    • \n
    • Tests decorated with @pass_context can be used with the |select filter. #1624
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from jinja2's changelog.

    \n
    \n

    Version 3.1.5

    \n

    Released 2024-12-21

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as\nby passing a stored reference to a filter that calls its argument.\n:ghsa:q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid\nissues with names that contain f-string syntax.\n:issue:1792, :ghsa:gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence\ntypes. :issue:2032
    • \n
    • Calling sync render for an async template uses asyncio.run.\n:pr:1952
    • \n
    • Avoid unclosed auto_aiter warnings. :pr:1960
    • \n
    • Return an aclose-able AsyncGenerator from\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving root_render_func() unclosed in\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends.\n:pr:1960
    • \n
    • The runtime uses the correct concat function for the current environment\nwhen calling block references. :issue:1701
    • \n
    • Make |unique async-aware, allowing it to be used after another\nasync-aware filter. :issue:1781
    • \n
    • |int filter handles OverflowError from scientific notation.\n:issue:1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %}\ncall. :issue:2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined\nobjects. :issue:2025
    • \n
    • Fix copy/pickle support for the internal missing object.\n:issue:2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. :pr:2061
    • \n
    • The error message from FileSystemLoader includes the paths that were\nsearched. :issue:1661
    • \n
    • PackageLoader shows a clearer error message when the package does not\ncontain the templates directory. :issue:1705
    • \n
    • Improve annotations for methods returning copies. :pr:1880
    • \n
    • urlize does not add mailto: to values like @a@b. :pr:1870
    • \n
    • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the\ntarget is a namespace attribute. :issue:1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks\ndoes not cause the variable to be considered initially undefined.\n:issue:1253
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • 877f6e5 release version 3.1.5
    • \n
    • 8d58859 remove test pypi
    • \n
    • eda8fe8 update dev dependencies
    • \n
    • c8fdce1 Fix bug involving calling set on a template parameter within all branches of ...
    • \n
    • 66587ce Fix bug where set would sometimes fail within if
    • \n
    • fbc3a69 Add support for namespaces in tuple parsing (#1664)
    • \n
    • b8f4831 more comments about nsref assignment
    • \n
    • ee83219 Add support for namespaces in tuple assignment
    • \n
    • 1d55cdd Triple quotes in docs (#2064)
    • \n
    • 8a8eafc edit block assignment section
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jinja2&package-manager=pip&previous-version=3.1.4&new-version=3.1.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/vcpkg/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "2dc91c6439568f694052c3fa25859dc78d9ff8e4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/vcpkg" + }, + "head": { + "ref": "dependabot/pip/ports/qtinterfaceframework/jinja2-3.1.5", + "sha": "386da046bea755b8f2df63fa5bdc2c57fffc001e", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/vcpkg" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/vcpkg/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": "2025-03-06T04:38:09Z", + "created_at": "2025-01-08T21:48:24Z", + "merge_commit_sha": "0e20d249e18e5e130ecbea6d45152c5737e1e223" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/71-networklist-org/pull/1", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/71-networklist-org", + "title": "Bump org.springframework.security:spring-security-core from 5.4.7 to 5.7.14", + "body": "Bumps [org.springframework.security:spring-security-core](https://github.com/spring-projects/spring-security) from 5.4.7 to 5.7.14.\n
    \nRelease notes\n

    Sourced from org.springframework.security:spring-security-core's releases.

    \n
    \n

    5.7.14

    \n

    :star: New Features

    \n
      \n
    • Support ServerExchangeRejectedHandler @Bean #15975
    • \n
    \n

    :beetle: Bug Fixes

    \n
      \n
    • Support ServerWebExchangeFirewall @Bean #15974
    • \n
    \n

    5.7.13

    \n

    No release notes provided.

    \n

    5.7.12

    \n

    :beetle: Bug Fixes

    \n
      \n
    • Check for null Authentication #14715
    • \n
    \n

    5.7.11

    \n

    :star: New Features

    \n
      \n
    • Automate spring-security.xsd #13819
    • \n
    \n

    5.7.10

    \n

    :beetle: Bug Fixes

    \n
      \n
    • Use default PathPatternParser instance #13461
    • \n
    \n

    :hammer: Dependency Upgrades

    \n
      \n
    • Update io.projectreactor to 2020.0.34 #13509
    • \n
    • Update org.springframework to 5.3.29 #13511
    • \n
    • Update org.springframework.data to 2021.2.14 #13512
    • \n
    • Update reactor-netty to 1.0.34 #13510
    • \n
    \n

    5.7.9

    \n

    :star: New Features

    \n
      \n
    • Convert to Asciidoctor Tabs #13404
    • \n
    • Use Antora name of security #13328
    • \n
    \n

    :beetle: Bug Fixes

    \n
      \n
    • Additional filters registered when using Custom DSL #13203
    • \n
    • Clarify that Kotlin DSL needs an import #13092
    • \n
    • Document missing OAuth2LoginAuthenticationFilter set AuthorizationRequestRepository #13098
    • \n
    • Fix Antora Warnings #13291
    • \n
    • Fix constant value in XContentTypeOptionsServerHttpHeadersWriter #13155
    • \n
    • Fix Documentation Title #13315
    • \n
    • Fix javadoc for migration from WebSecurityConfigurerAdapter #12996
    • \n
    • Fix typo in SecurityMockMvcResultMatchers.java #12793
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nChangelog\n

    Sourced from org.springframework.security:spring-security-core's changelog.

    \n
    \n

    = Release Process

    \n

    The release process for Spring Security is entirely automated via the https://github.com/spring-io/spring-security-release-tools/blob/main/release-plugin/README.adoc[Spring Security Release Plugin] and https://github.com/spring-io/spring-security-release-tools/tree/main/.github/workflows[reusable workflows].\nThe following table outlines the steps that are taken by the automation.

    \n

    WARNING: The 5.8.x branch does not have all of the improvements from the 6.x.x branches. See "Status (5.8.x)" for which steps are still manual.

    \n

    In case of a failure, you can follow the links below to read about each step, which includes instructions for performing the step manually if applicable.\nSee for troubleshooting tips.

    \n

    [cols="1,1,1"]\n|===\n| Step | Status (5.8.x) | Status (6.0.x+)

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :white_check_mark: automated\n| :white_check_mark: automated

    \n

    | \n| :x: manual\n| :white_check_mark: automated

    \n

    | \n| :x: manual\n| :white_check_mark: automated

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework.security:spring-security-core&package-manager=maven&previous-version=5.4.7&new-version=5.7.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/jeepay/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "fef5a882eb7dc739fa1b0827cb8fc7a8c3b0bc44", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/71-networklist-org" + }, + "head": { + "ref": "dependabot/maven/org.springframework.security-spring-security-core-5.7.14", + "sha": "38304839140d296c852bd26895a80d08ae2fdc52", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/71-networklist-org" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/71-networklist-org/labels/dependencies" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-01-10T16:20:09Z", + "merge_commit_sha": "f0c4ce3000d5fcba1865307087825c25d6640f8f" + }, + { + "type": "pull_request", + "url": "https://github.com/xc-link/vcpkg/pull/2", + "user": "https://github.com/dependabot[bot]", + "repository": "https://github.com/xc-link/vcpkg", + "title": "Bump jinja2 from 3.1.4 to 3.1.6 in /ports/qtinterfaceframework", + "body": "Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.4 to 3.1.6.\n
    \nRelease notes\n

    Sourced from jinja2's releases.

    \n
    \n

    3.1.6

    \n

    This is the Jinja 3.1.6 security release, which fixes security issues but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.6/\nChanges: https://jinja.palletsprojects.com/en/stable/changes/#version-3-1-6

    \n\n

    3.1.5

    \n

    This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

    \n

    PyPI: https://pypi.org/project/Jinja2/3.1.5/\nChanges: https://jinja.palletsprojects.com/changes/#version-3-1-5\nMilestone: https://github.com/pallets/jinja/milestone/16?closed=1

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence types. #2032
    • \n
    • Calling sync render for an async template uses asyncio.run. #1952
    • \n
    • Avoid unclosed auto_aiter warnings. #1960
    • \n
    • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
    • \n
    • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
    • \n
    • The runtime uses the correct concat function for the current environment when calling block references. #1701
    • \n
    • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
    • \n
    • |int filter handles OverflowError from scientific notation. #1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
    • \n
    • Fix copy/pickle support for the internal missing object. #2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. #2061
    • \n
    • The error message from FileSystemLoader includes the paths that were searched. #1661
    • \n
    • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
    • \n
    • Improve annotations for methods returning copies. #1880
    • \n
    • urlize does not add mailto: to values like @a@b. #1870
    • \n
    • Tests decorated with @pass_context can be used with the |select filter. #1624
    • \n
    • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
    • \n
    • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
    • \n
    \n
    \n
    \n
    \nChangelog\n

    Sourced from jinja2's changelog.

    \n
    \n

    Version 3.1.6

    \n

    Released 2025-03-05

    \n
      \n
    • The |attr filter does not bypass the environment's attribute lookup,\nallowing the sandbox to apply its checks. :ghsa:cpwx-vrp4-4pq7
    • \n
    \n

    Version 3.1.5

    \n

    Released 2024-12-21

    \n
      \n
    • The sandboxed environment handles indirect calls to str.format, such as\nby passing a stored reference to a filter that calls its argument.\n:ghsa:q2x7-8rv6-6q7h
    • \n
    • Escape template name before formatting it into error messages, to avoid\nissues with names that contain f-string syntax.\n:issue:1792, :ghsa:gmj6-6f8f-6699
    • \n
    • Sandbox does not allow clear and pop on known mutable sequence\ntypes. :issue:2032
    • \n
    • Calling sync render for an async template uses asyncio.run.\n:pr:1952
    • \n
    • Avoid unclosed auto_aiter warnings. :pr:1960
    • \n
    • Return an aclose-able AsyncGenerator from\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving root_render_func() unclosed in\nTemplate.generate_async. :pr:1960
    • \n
    • Avoid leaving async generators unclosed in blocks, includes and extends.\n:pr:1960
    • \n
    • The runtime uses the correct concat function for the current environment\nwhen calling block references. :issue:1701
    • \n
    • Make |unique async-aware, allowing it to be used after another\nasync-aware filter. :issue:1781
    • \n
    • |int filter handles OverflowError from scientific notation.\n:issue:1921
    • \n
    • Make compiling deterministic for tuple unpacking in a {% set ... %}\ncall. :issue:2021
    • \n
    • Fix dunder protocol (copy/pickle/etc) interaction with Undefined\nobjects. :issue:2025
    • \n
    • Fix copy/pickle support for the internal missing object.\n:issue:2027
    • \n
    • Environment.overlay(enable_async) is applied correctly. :pr:2061
    • \n
    • The error message from FileSystemLoader includes the paths that were\nsearched. :issue:1661
    • \n
    • PackageLoader shows a clearer error message when the package does not\ncontain the templates directory. :issue:1705
    • \n
    • Improve annotations for methods returning copies. :pr:1880
    • \n
    • urlize does not add mailto: to values like @a@b. :pr:1870
    • \n
    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jinja2&package-manager=pip&previous-version=3.1.4&new-version=3.1.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
    \nDependabot commands and options\n
    \n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/xc-link/vcpkg/network/alerts).\n\n
    ", + "base": { + "ref": "master", + "sha": "2dc91c6439568f694052c3fa25859dc78d9ff8e4", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/vcpkg" + }, + "head": { + "ref": "dependabot/pip/ports/qtinterfaceframework/jinja2-3.1.6", + "sha": "d1d524b59aad96f0ef68609cfb135155f595ed9b", + "user": "https://github.com/xc-link", + "repo": "https://github.com/xc-link/vcpkg" + }, + "assignee": null, + "assignees": [], + "milestone": null, + "labels": [ + "https://github.com/xc-link/vcpkg/labels/dependencies", + "https://github.com/xc-link/vcpkg/labels/python" + ], + "reactions": [], + "review_requests": [], + "close_issue_references": [], + "work_in_progress": false, + "merged_at": null, + "closed_at": null, + "created_at": "2025-03-06T04:38:07Z", + "merge_commit_sha": "6838b000ce173a3655f19a6cf33be55a04b8700f" + } +] \ No newline at end of file diff --git a/repositories_000001.json b/repositories_000001.json new file mode 100644 index 000000000..d66e83356 --- /dev/null +++ b/repositories_000001.json @@ -0,0 +1,12182 @@ +[ + { + "type": "repository", + "url": "https://github.com/xc-link/networklist-org", + "owner": "https://github.com/xc-link", + "name": "networklist-org", + "description": null, + "website": "https://networklist-org.vercel.app", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/networklist-org/labels/APIsec", + "name": "APIsec", + "color": "f7d39e", + "description": "", + "created_at": "2025-06-27T10:09:56Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-09-12T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2024-10-05T17:36:00Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/docker", + "name": "docker", + "color": "21ceff", + "description": "Pull requests that update Docker code", + "created_at": "2025-03-03T13:06:27Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-09-12T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-09-12T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-09-12T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/github_actions", + "name": "github_actions", + "color": "000000", + "description": "Pull requests that update GitHub Actions code", + "created_at": "2024-10-14T01:40:25Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-09-12T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-09-12T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-09-12T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/javascript", + "name": "javascript", + "color": "168700", + "description": "Pull requests that update Javascript code", + "created_at": "2024-10-05T17:36:00Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/no-issue-activity", + "name": "no-issue-activity", + "color": "ededed", + "description": null, + "created_at": "2025-03-18T05:49:42Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/no-pr-activity", + "name": "no-pr-activity", + "color": "ededed", + "description": null, + "created_at": "2025-01-13T05:49:57Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-09-12T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/token_price_template", + "name": "token_price_template", + "color": "1fc72b", + "description": "ERC-20:添加ZRX价格显示#3565", + "created_at": "2025-06-26T04:01:31Z" + }, + { + "url": "https://github.com/xc-link/networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-09-12T18:21:02Z" + } + ], + "collaborators": [], + "created_at": "2024-09-12T18:21:00Z", + "git_url": "tarball://root/repositories/xc-link/networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": false, + "allows_local_actions_only": false, + "allows_github_owned_actions": true, + "allows_verified_actions": true, + "allows_specific_actions_patterns": false, + "patterns": [] + }, + "wiki_url": "tarball://root/repositories/xc-link/networklist-org.wiki.git" + }, + { + "type": "repository", + "url": "https://github.com/xc-link/harmony-ipfs", + "owner": "https://github.com/xc-link", + "name": "harmony-ipfs", + "description": "simple upload to ipfs and harmony blockchain", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-12T19:51:27Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-10-22T03:33:33Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-10-22T03:33:34Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-10-22T03:33:34Z" + }, + { + "url": "https://github.com/xc-link/harmony-ipfs/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-10-22T03:33:34Z" + } + ], + "collaborators": [], + "created_at": "2024-10-22T03:33:31Z", + "git_url": "tarball://root/repositories/xc-link/harmony-ipfs.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Protected-Examples", + "owner": "https://github.com/xc-link", + "name": "Protected-Examples", + "description": null, + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Protected-Examples/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-10-30T01:19:14Z" + }, + { + "url": "https://github.com/xc-link/Protected-Examples/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-10-30T01:19:14Z" + } + ], + "collaborators": [], + "created_at": "2024-10-30T01:19:12Z", + "git_url": "tarball://root/repositories/xc-link/Protected-Examples.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/networklist-org.vercel.app", + "owner": "https://github.com/xc-link", + "name": "networklist-org.vercel.app", + "description": "xc-link/c++/networklist-org", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-08T18:48:07Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-08T18:48:07Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-08T18:48:07Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-08T18:48:07Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-08T18:48:08Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-08T18:48:07Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-08T18:48:08Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-08T18:48:08Z" + }, + { + "url": "https://github.com/xc-link/networklist-org.vercel.app/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-08T18:48:08Z" + } + ], + "collaborators": [], + "created_at": "2024-11-08T18:48:00Z", + "git_url": "tarball://root/repositories/xc-link/networklist-org.vercel.app.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetLicensingClient-csharp", + "owner": "https://github.com/xc-link", + "name": "NetLicensingClient-csharp", + "description": "C# wrapper for Labs64 NetLicensing RESTful API", + "website": "https://netlicensing.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-09T06:09:19Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-csharp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-09T06:09:19Z" + } + ], + "collaborators": [], + "created_at": "2024-11-09T06:09:17Z", + "git_url": "tarball://root/repositories/xc-link/NetLicensingClient-csharp.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetLicensingClient-javascript", + "owner": "https://github.com/xc-link", + "name": "NetLicensingClient-javascript", + "description": "JavaScript wrapper for Labs64 NetLicensing RESTful API", + "website": "https://io.labs64.com/NetLicensingClient-javascript/client-demo.html", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-20T02:09:38Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-09T16:32:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-javascript/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-09T16:32:13Z" + } + ], + "collaborators": [], + "created_at": "2024-11-09T16:32:10Z", + "git_url": "tarball://root/repositories/xc-link/NetLicensingClient-javascript.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetLicensingClient-php", + "owner": "https://github.com/xc-link", + "name": "NetLicensingClient-php", + "description": "PHP wrapper for Labs64 NetLicensing RESTful API", + "website": "https://netlicensing.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-09T16:40:32Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-09T16:40:32Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-09T16:40:32Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-09T16:40:33Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-09T16:40:33Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-09T16:40:33Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-09T16:40:33Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-09T16:40:33Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-php/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-09T16:40:33Z" + } + ], + "collaborators": [], + "created_at": "2024-11-09T16:40:30Z", + "git_url": "tarball://root/repositories/xc-link/NetLicensingClient-php.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/32-networklist-org", + "owner": "https://github.com/xc-link", + "name": "32-networklist-org", + "description": "Labs64 NetLicensing / eCommerce gateway", + "website": "https://netlicensing.io/wiki/gateway", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/32-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-05-27T19:56:09Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-05-27T19:56:09Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-13T06:40:15Z" + }, + { + "url": "https://github.com/xc-link/32-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-13T06:40:15Z" + } + ], + "collaborators": [], + "created_at": "2024-11-13T06:40:13Z", + "git_url": "tarball://root/repositories/xc-link/32-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-cpp", + "owner": "https://github.com/xc-link", + "name": "cryptolens-cpp", + "description": "C++ Interface for Cryptolens Web API", + "website": "https://cryptolens.io/support-cycle/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-13T07:06:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-cpp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-13T07:06:11Z" + } + ], + "collaborators": [], + "created_at": "2024-11-13T07:06:08Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-cpp.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetLicensing-Zapier", + "owner": "https://github.com/xc-link", + "name": "NetLicensing-Zapier", + "description": "Labs64 NetLicensing / Zapier Integration", + "website": "https://zapier.com/apps/netlicensing/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-20T02:09:35Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-14T23:56:13Z" + }, + { + "url": "https://github.com/xc-link/NetLicensing-Zapier/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-14T23:56:13Z" + } + ], + "collaborators": [], + "created_at": "2024-11-14T23:56:10Z", + "git_url": "tarball://root/repositories/xc-link/NetLicensing-Zapier.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/66-networklist-org", + "owner": "https://github.com/xc-link", + "name": "66-networklist-org", + "description": "Labs64 NetLicensing / Demo Application", + "website": "https://netlicensing.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/66-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-15T07:43:25Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:03:26Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/javascript", + "name": "javascript", + "color": "168700", + "description": "Pull requests that update Javascript code", + "created_at": "2025-03-08T11:59:21Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:03:27Z" + }, + { + "url": "https://github.com/xc-link/66-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:03:27Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:03:24Z", + "git_url": "tarball://root/repositories/xc-link/66-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/49-networklist-org", + "owner": "https://github.com/xc-link", + "name": "49-networklist-org", + "description": "Kotlin wrapper for Labs64 NetLicensing RESTful API", + "website": "https://netlicensing.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/49-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-07-12T02:04:01Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-07-12T02:04:01Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:06:32Z" + }, + { + "url": "https://github.com/xc-link/49-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:06:32Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:06:29Z", + "git_url": "tarball://root/repositories/xc-link/49-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/wiki", + "owner": "https://github.com/xc-link", + "name": "wiki", + "description": "Labs64 NetLicensing Wiki - Innovative License Management Solution", + "website": "https://netlicensing.io/wiki/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/wiki/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:14:01Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:14:02Z" + }, + { + "url": "https://github.com/xc-link/wiki/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:14:02Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:13:59Z", + "git_url": "tarball://root/repositories/xc-link/wiki.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetLicensingClient-python", + "owner": "https://github.com/xc-link", + "name": "NetLicensingClient-python", + "description": "Python wrapper for Labs64 NetLicensing RESTful API", + "website": "https://netlicensing.io", + "private": false, + "has_issues": false, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:16:01Z" + }, + { + "url": "https://github.com/xc-link/NetLicensingClient-python/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:16:01Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:15:58Z", + "git_url": "tarball://root/repositories/xc-link/NetLicensingClient-python.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/68-networklist-org", + "owner": "https://github.com/xc-link", + "name": "68-networklist-org", + "description": "Permitted.io's website's GitHub page", + "website": "https://permitted.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/68-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:19:13Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-19T14:52:01Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:19:13Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:19:13Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:19:13Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:19:14Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:19:13Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:19:14Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:19:14Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/ruby", + "name": "ruby", + "color": "ce2d2d", + "description": "Pull requests that update ruby code", + "created_at": "2025-03-21T21:29:08Z" + }, + { + "url": "https://github.com/xc-link/68-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:19:14Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:19:11Z", + "git_url": "tarball://root/repositories/xc-link/68-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Story-Podcast-Dapp", + "owner": "https://github.com/xc-link", + "name": "Story-Podcast-Dapp", + "description": "IP registed podcast for collaborating hosts with shared revenue and licensing on etherum blockchain", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T00:22:06Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T00:22:06Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T00:22:06Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T00:22:07Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T00:22:07Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T00:22:07Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T00:22:07Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T00:22:07Z" + }, + { + "url": "https://github.com/xc-link/Story-Podcast-Dapp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T00:22:07Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T00:22:04Z", + "git_url": "tarball://root/repositories/xc-link/Story-Podcast-Dapp.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-c", + "owner": "https://github.com/xc-link", + "name": "cryptolens-c", + "description": "Cryptolens client library for C", + "website": "https://help.cryptolens.io", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-c/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T01:06:36Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T01:06:37Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T01:06:37Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-c/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T01:06:37Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T01:06:34Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-c.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/sidekick", + "owner": "https://github.com/xc-link", + "name": "sidekick", + "description": "\"Sidekick\" is a utility CS-Cart add-on used to keep all your other HELOstore add-ons up-to-date.", + "website": "https://helostore.com/cs-cart-add-ons/sidekick/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/sidekick/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T01:09:08Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T01:09:08Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T01:09:08Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T01:09:09Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T01:09:09Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T01:09:09Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T01:09:09Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T01:09:09Z" + }, + { + "url": "https://github.com/xc-link/sidekick/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T01:09:09Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T01:09:07Z", + "git_url": "tarball://root/repositories/xc-link/sidekick.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/adls", + "owner": "https://github.com/xc-link", + "name": "adls", + "description": "ADLS (Application Distribution License System) is full-fledged application licensing & distribution system built as an add-on for CS-Cart. Can be coupled with our ADLS Subscriptions add-on.", + "website": "https://helostore.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/adls/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T01:12:03Z" + }, + { + "url": "https://github.com/xc-link/adls/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T01:12:03Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T01:12:00Z", + "git_url": "tarball://root/repositories/xc-link/adls.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/distware", + "owner": "https://github.com/xc-link", + "name": "distware", + "description": "Open-source licensing server for generating and validating software keys/licenses as well as distributing software updates.", + "website": "https://syncloudsoft.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/distware/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-22T03:26:21Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/javascript", + "name": "javascript", + "color": "168700", + "description": "Pull requests that update Javascript code", + "created_at": "2025-01-22T03:26:21Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/php", + "name": "php", + "color": "45229e", + "description": "Pull requests that update php code", + "created_at": "2025-03-12T22:01:37Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T17:01:29Z" + }, + { + "url": "https://github.com/xc-link/distware/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T17:01:29Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T17:01:26Z", + "git_url": "tarball://root/repositories/xc-link/distware.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/adls_subscriptions", + "owner": "https://github.com/xc-link", + "name": "adls_subscriptions", + "description": "\"ADLS Subscriptions\" is a CS-Cart add-on that adds subscription-based products and services, subscriptions management, sends subscription expiration reminders & post-expiration follow-up emails. It requires ADLS add-on.", + "website": "https://helostore.com/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T19:03:11Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T19:03:12Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T19:03:12Z" + }, + { + "url": "https://github.com/xc-link/adls_subscriptions/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T19:03:12Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T19:03:10Z", + "git_url": "tarball://root/repositories/xc-link/adls_subscriptions.git", + "default_branch": "feature/decoupling", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-nodejs", + "owner": "https://github.com/xc-link", + "name": "cryptolens-nodejs", + "description": "Client API to access the functionality of Cryptolens Software Licensing API", + "website": "https://cryptolens.io/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-15T19:32:18Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-nodejs/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-15T19:32:18Z" + } + ], + "collaborators": [], + "created_at": "2024-11-15T19:32:15Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-nodejs.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server", + "owner": "https://github.com/xc-link", + "name": "example-multi-tenant-licensing-server", + "description": "An example of how to implement a multi-tenant node-locked licensing server.", + "website": "https://keygen.sh", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-22T03:44:33Z" + }, + { + "url": "https://github.com/xc-link/example-multi-tenant-licensing-server/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-22T03:44:33Z" + } + ], + "collaborators": [], + "created_at": "2024-11-22T03:44:30Z", + "git_url": "tarball://root/repositories/xc-link/example-multi-tenant-licensing-server.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/roadmap", + "owner": "https://github.com/xc-link", + "name": "roadmap", + "description": "GitHub public roadmap", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/roadmap/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-23T17:59:07Z" + }, + { + "url": "https://github.com/xc-link/roadmap/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-23T17:59:07Z" + } + ], + "collaborators": [], + "created_at": "2024-11-23T17:59:05Z", + "git_url": "tarball://root/repositories/xc-link/roadmap.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/chains", + "owner": "https://github.com/xc-link", + "name": "chains", + "description": "provides metadata for chains", + "website": "https://chainid.network", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/chains/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-23T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-23T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-23T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-23T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-23T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-23T18:21:01Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-23T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-23T18:21:02Z" + }, + { + "url": "https://github.com/xc-link/chains/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-23T18:21:02Z" + } + ], + "collaborators": [], + "created_at": "2024-11-23T18:20:59Z", + "git_url": "tarball://root/repositories/xc-link/chains.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Simple-WebSocket-Server", + "owner": "https://github.com/xc-link", + "name": "Simple-WebSocket-Server", + "description": "A very simple, fast, multithreaded, platform independent WebSocket (WS) and WebSocket Secure (WSS) server and client library implemented using C++11, Boost.Asio and OpenSSL. Created to be an easy way to make WebSocket endpoints in C++.", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T04:28:10Z" + }, + { + "url": "https://github.com/xc-link/Simple-WebSocket-Server/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T04:28:10Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T04:28:08Z", + "git_url": "tarball://root/repositories/xc-link/Simple-WebSocket-Server.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/PublicMonitors", + "owner": "https://github.com/xc-link", + "name": "PublicMonitors", + "description": "对公网IP列表进行端口服务扫描,发现周期内的端口服务变化情况和弱口令安全风险", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/PublicMonitors/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T04:53:30Z" + }, + { + "url": "https://github.com/xc-link/PublicMonitors/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T04:53:30Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T04:53:28Z", + "git_url": "tarball://root/repositories/xc-link/PublicMonitors.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/i996", + "owner": "https://github.com/xc-link", + "name": "i996", + "description": "免费 免搭建 免安装 内网穿透 ssl证书签发 远程办公 居家办公工具 方便调试微信小程序(客户端无需安装任何程序拿来即用) 类似于natapp ngrok", + "website": "https://www.i996.me", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/i996/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T04:57:48Z" + }, + { + "url": "https://github.com/xc-link/i996/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T04:57:48Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T04:57:46Z", + "git_url": "tarball://root/repositories/xc-link/i996.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/app-space", + "owner": "https://github.com/xc-link", + "name": "app-space", + "description": "应用内网发布分发测试部署管理平台版本管理类似蒲公英蒲公英 类似fir.im fir App publish IOS超级签名免签 开源| https://app-space.up.railway.app |APP增量热更新| 支持iOS、Android、flutter、 react-native更新摇一摇提Bug SDK 提供自动化部署jenkins fastlane 丰富组件库 安卓苹果发布发版publish 管理发发布适用于企业手机应用内测服务应用内测托管的平台开源", + "website": "https://app-space.up.railway.app", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/app-space/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T05:01:12Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-12T19:45:15Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T05:01:12Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T05:01:13Z" + }, + { + "url": "https://github.com/xc-link/app-space/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T05:01:13Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T05:01:10Z", + "git_url": "tarball://root/repositories/xc-link/app-space.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NetTunnel", + "owner": "https://github.com/xc-link", + "name": "NetTunnel", + "description": "Net Tunnel 是基于 Netty 开发,开源,安全,高效,稳定的内网穿透和反向代理工具,提供没有公网IP希望暴露内网服务的解决方案。 Net Tunnel is an open source, safe, efficient, and stable intranet penetration and reverse proxy tool developed based on Netty, providing a solution for exposing intranet services without public IP.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NetTunnel/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T05:27:07Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T05:27:08Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T05:27:08Z" + }, + { + "url": "https://github.com/xc-link/NetTunnel/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T05:27:08Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T05:27:06Z", + "git_url": "tarball://root/repositories/xc-link/NetTunnel.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/simple-socket-proxy", + "owner": "https://github.com/xc-link", + "name": "simple-socket-proxy", + "description": "A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. 通过反向代理把局域网内的端口服务暴露到公网,一个脚本搞定无需安装vpn", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T05:40:42Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T05:40:42Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T05:40:43Z" + }, + { + "url": "https://github.com/xc-link/simple-socket-proxy/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T05:40:43Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T05:40:40Z", + "git_url": "tarball://root/repositories/xc-link/simple-socket-proxy.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/IPWarden", + "owner": "https://github.com/xc-link", + "name": "IPWarden", + "description": "IPWarden(守望者)是一个IP资产风险巡查工具。持续发现系统、Web两个维度的资产和安全风险。所有扫描结果可通过API访问json数据,方便二次开发或数据整理。适合甲方安全人员用于监控管理公网/内网IP资产风险暴露面。", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/IPWarden/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T05:42:05Z" + }, + { + "url": "https://github.com/xc-link/IPWarden/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T05:42:05Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T05:42:03Z", + "git_url": "tarball://root/repositories/xc-link/IPWarden.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/icloud-tcp-gateway", + "owner": "https://github.com/xc-link", + "name": "icloud-tcp-gateway", + "description": "通过在云端进行智能边缘核心设备的建立、身份制定、策略规则制定、函数编写,然后生成配置文件下发;物联网设备网关技术架构设计(Session 管理、心跳管理、数据上行、数据下行)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T05:53:08Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-03T19:12:21Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T05:53:08Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T05:53:08Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T05:53:09Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T05:53:09Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T05:53:09Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T05:53:09Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T05:53:09Z" + }, + { + "url": "https://github.com/xc-link/icloud-tcp-gateway/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T05:53:09Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T05:53:07Z", + "git_url": "tarball://root/repositories/xc-link/icloud-tcp-gateway.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/LtePlatform", + "owner": "https://github.com/xc-link", + "name": "LtePlatform", + "description": "LTE optimization tools for China Telecom. 中国电信LTE网络优化工具。内网地址:", + "website": "http://132.110.60.94:2016", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/LtePlatform/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T07:40:47Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-27T18:49:41Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T07:40:47Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T07:40:47Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T07:40:48Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T07:40:48Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T07:40:48Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T07:40:48Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T07:40:48Z" + }, + { + "url": "https://github.com/xc-link/LtePlatform/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T07:40:48Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T07:40:46Z", + "git_url": "tarball://root/repositories/xc-link/LtePlatform.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/5G", + "owner": "https://github.com/xc-link", + "name": "5G", + "description": "5G Mobile Networks -- Micro-book", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/5G/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T07:44:50Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T07:44:51Z" + }, + { + "url": "https://github.com/xc-link/5G/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T07:44:51Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T07:44:49Z", + "git_url": "tarball://root/repositories/xc-link/5G.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gps-sdr-sim", + "owner": "https://github.com/xc-link", + "name": "gps-sdr-sim", + "description": "Software-Defined GPS Signal Simulator", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T07:56:04Z" + }, + { + "url": "https://github.com/xc-link/gps-sdr-sim/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T07:56:04Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T07:56:02Z", + "git_url": "tarball://root/repositories/xc-link/gps-sdr-sim.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CoreStatus", + "owner": "https://github.com/xc-link", + "name": "CoreStatus", + "description": "网络状态监听者:可监听2G/3G/4G", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CoreStatus/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:07:15Z" + }, + { + "url": "https://github.com/xc-link/CoreStatus/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:07:15Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:07:13Z", + "git_url": "tarball://root/repositories/xc-link/CoreStatus.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/QCSuper", + "owner": "https://github.com/xc-link", + "name": "QCSuper", + "description": "QCSuper is a tool communicating with Qualcomm-based phones and modems, allowing to capture raw 2G/3G/4G radio frames, among other things.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/QCSuper/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:17:00Z" + }, + { + "url": "https://github.com/xc-link/QCSuper/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:17:00Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:16:58Z", + "git_url": "tarball://root/repositories/xc-link/QCSuper.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/srsRAN_4G", + "owner": "https://github.com/xc-link", + "name": "srsRAN_4G", + "description": "Open source SDR 4G software suite from Software Radio Systems (SRS) https://docs.srsran.com/projects/4g", + "website": "https://www.srsran.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:21:29Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:21:29Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:21:29Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:21:30Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:21:30Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:21:30Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:21:30Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:21:30Z" + }, + { + "url": "https://github.com/xc-link/srsRAN_4G/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:21:30Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:21:26Z", + "git_url": "tarball://root/repositories/xc-link/srsRAN_4G.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/OpenBTS-UMTS", + "owner": "https://github.com/xc-link", + "name": "OpenBTS-UMTS", + "description": "3G UMTS Data Radio Access Network Node", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:29:09Z" + }, + { + "url": "https://github.com/xc-link/OpenBTS-UMTS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:29:09Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:29:07Z", + "git_url": "tarball://root/repositories/xc-link/OpenBTS-UMTS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BaiduSpider", + "owner": "https://github.com/xc-link", + "name": "BaiduSpider", + "description": "BaiduSpider,一个爬取百度搜索结果的爬虫,目前支持百度网页搜索,百度图片搜索,百度知道搜索,百度视频搜索,百度资讯搜索,百度文库搜索,百度经验搜索和百度百科搜索。", + "website": "https://baiduspider.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BaiduSpider/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:36:02Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-08T16:30:50Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:36:02Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:36:02Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:36:02Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:36:03Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:36:03Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:36:03Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update python code", + "created_at": "2025-03-05T23:52:30Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:36:03Z" + }, + { + "url": "https://github.com/xc-link/BaiduSpider/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:36:03Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:36:01Z", + "git_url": "tarball://root/repositories/xc-link/BaiduSpider.git", + "default_branch": "dev", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/bypy", + "owner": "https://github.com/xc-link", + "name": "bypy", + "description": "Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/bypy/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:38:02Z" + }, + { + "url": "https://github.com/xc-link/bypy/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:38:02Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:37:59Z", + "git_url": "tarball://root/repositories/xc-link/bypy.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cos-js-sdk-v5", + "owner": "https://github.com/xc-link", + "name": "cos-js-sdk-v5", + "description": "腾讯云 COS JS SDK(XML API)", + "website": "https://cloud.tencent.com/product/cos", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-24T08:41:46Z" + }, + { + "url": "https://github.com/xc-link/cos-js-sdk-v5/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-24T08:41:46Z" + } + ], + "collaborators": [], + "created_at": "2024-11-24T08:41:43Z", + "git_url": "tarball://root/repositories/xc-link/cos-js-sdk-v5.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CryptoCoinPaperWallet", + "owner": "https://github.com/xc-link", + "name": "CryptoCoinPaperWallet", + "description": "Crypto Coin Paper Wallet Generator,support 510 cryptocurrencies. 通用加密货币 离线钱包/冷钱包 地址生成器。", + "website": "https://kokomoji.github.io/CryptoCoinPaperWallet/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-26T19:38:42Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-26T19:38:43Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-26T19:38:43Z" + }, + { + "url": "https://github.com/xc-link/CryptoCoinPaperWallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-26T19:38:43Z" + } + ], + "collaborators": [], + "created_at": "2024-11-26T19:38:40Z", + "git_url": "tarball://root/repositories/xc-link/CryptoCoinPaperWallet.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/LXWallet", + "owner": "https://github.com/xc-link", + "name": "LXWallet", + "description": "BTC,ETH多币种钱包,支持合约OMNI,ERC20 USDT地址生成,转账", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/LXWallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-26T19:45:10Z" + }, + { + "url": "https://github.com/xc-link/LXWallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-26T19:45:10Z" + } + ], + "collaborators": [], + "created_at": "2024-11-26T19:45:08Z", + "git_url": "tarball://root/repositories/xc-link/LXWallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/20-networklist-org", + "owner": "https://github.com/xc-link", + "name": "20-networklist-org", + "description": "Collection of comprehensive TypeScript libraries for Interaction with the Ethereum JSON RPC API and utility functions.", + "website": "https://web3js.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/20-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-21T23:24:27Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-26T20:11:31Z" + }, + { + "url": "https://github.com/xc-link/20-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-26T20:11:31Z" + } + ], + "collaborators": [], + "created_at": "2024-11-26T20:11:27Z", + "git_url": "tarball://root/repositories/xc-link/20-networklist-org.git", + "default_branch": "4.x", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/50-networklist-org", + "owner": "https://github.com/xc-link", + "name": "50-networklist-org", + "description": "Generate Java types from JSON or JSON Schema and annotate those types for data-binding with Jackson, Gson, etc", + "website": "http://www.jsonschema2pojo.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/50-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-07-12T01:34:18Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-07-12T01:34:18Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-26T20:54:54Z" + }, + { + "url": "https://github.com/xc-link/50-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-26T20:54:55Z" + } + ], + "collaborators": [], + "created_at": "2024-11-26T20:54:51Z", + "git_url": "tarball://root/repositories/xc-link/50-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/lastfm-iphone", + "owner": "https://github.com/xc-link", + "name": "lastfm-iphone", + "description": "This repository is no longer being maintained. Please visit https://github.com/lastfm/lastfm-iphone", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-27T18:38:15Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-27T18:38:15Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-27T18:38:16Z" + }, + { + "url": "https://github.com/xc-link/lastfm-iphone/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-27T18:38:16Z" + } + ], + "collaborators": [], + "created_at": "2024-11-27T18:38:14Z", + "git_url": "tarball://root/repositories/xc-link/lastfm-iphone.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/smEncrypt", + "owner": "https://github.com/xc-link", + "name": "smEncrypt", + "description": "sm2加密;sm3加密;js国密加密算法", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/smEncrypt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-13T06:08:29Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-27T18:47:15Z" + }, + { + "url": "https://github.com/xc-link/smEncrypt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-27T18:47:15Z" + } + ], + "collaborators": [], + "created_at": "2024-11-27T18:47:12Z", + "git_url": "tarball://root/repositories/xc-link/smEncrypt.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/33-networklist-org", + "owner": "https://github.com/xc-link", + "name": "33-networklist-org", + "description": "go语言封装的各种对称加密和非对称加密,可以直接使用,包括3重DES,AES的CBC和CTR模式,还有RSA非对称加密,ECC椭圆曲线的加密和数字签名", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/33-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-27T18:48:32Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-12-05T02:45:59Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-12-05T02:45:59Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-27T18:48:33Z" + }, + { + "url": "https://github.com/xc-link/33-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-27T18:48:33Z" + } + ], + "collaborators": [], + "created_at": "2024-11-27T18:48:31Z", + "git_url": "tarball://root/repositories/xc-link/33-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/34-networklist-org", + "owner": "https://github.com/xc-link", + "name": "34-networklist-org", + "description": "OrcaC2是一款基于Websocket加密通信的多功能C&C框架,使用Golang实现。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/34-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-03-12T23:01:09Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-03-12T23:01:09Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-27T18:52:30Z" + }, + { + "url": "https://github.com/xc-link/34-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-27T18:52:30Z" + } + ], + "collaborators": [], + "created_at": "2024-11-27T18:52:27Z", + "git_url": "tarball://root/repositories/xc-link/34-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/E0", + "owner": "https://github.com/xc-link", + "name": "E0", + "description": null, + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/E0/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T19:30:49Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T19:30:50Z" + }, + { + "url": "https://github.com/xc-link/E0/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T19:30:50Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T19:30:47Z", + "git_url": "tarball://root/repositories/xc-link/E0.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/E-Platformof", + "owner": "https://github.com/xc-link", + "name": "E-Platformof", + "description": null, + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/E-Platformof/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T19:39:38Z" + }, + { + "url": "https://github.com/xc-link/E-Platformof/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T19:39:39Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T19:39:36Z", + "git_url": "tarball://root/repositories/xc-link/E-Platformof.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Et0988", + "owner": "https://github.com/xc-link", + "name": "Et0988", + "description": "TRC20", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Et0988/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T19:44:23Z" + }, + { + "url": "https://github.com/xc-link/Et0988/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T19:44:23Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T19:44:21Z", + "git_url": "tarball://root/repositories/xc-link/Et0988.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/13-networklist-org", + "owner": "https://github.com/xc-link", + "name": "13-networklist-org", + "description": "move to https://github.com/consenlabs/token-core-monorepo", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/13-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T21:52:58Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T21:52:58Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T21:52:58Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T21:52:58Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T21:52:59Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T21:52:59Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T21:52:59Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T21:52:59Z" + }, + { + "url": "https://github.com/xc-link/13-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T21:52:59Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T21:52:57Z", + "git_url": "tarball://root/repositories/xc-link/13-networklist-org.git", + "default_branch": "dev", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TokenPocket", + "owner": "https://github.com/xc-link", + "name": "TokenPocket", + "description": "TokenPocket wallet source", + "website": "https://www.tokenpocket.pro", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TokenPocket/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T21:59:02Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T21:59:02Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T21:59:00Z", + "git_url": "tarball://root/repositories/xc-link/TokenPocket.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TokenPocket-Protocol", + "owner": "https://github.com/xc-link", + "name": "TokenPocket-Protocol", + "description": null, + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T22:03:10Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T22:03:10Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T22:03:10Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T22:03:10Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T22:03:11Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T22:03:10Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T22:03:11Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T22:03:11Z" + }, + { + "url": "https://github.com/xc-link/TokenPocket-Protocol/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T22:03:11Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T22:03:09Z", + "git_url": "tarball://root/repositories/xc-link/TokenPocket-Protocol.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tp-js-sdk", + "owner": "https://github.com/xc-link", + "name": "tp-js-sdk", + "description": "TokenPocket JS API for Dapp of ETH, IOST, TRON, COSMOS, SOLANA, EOS etc. (mobile only)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-28T22:12:15Z" + }, + { + "url": "https://github.com/xc-link/tp-js-sdk/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-28T22:12:15Z" + } + ], + "collaborators": [], + "created_at": "2024-11-28T22:12:13Z", + "git_url": "tarball://root/repositories/xc-link/tp-js-sdk.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6", + "owner": "https://github.com/xc-link", + "name": "0xe3800b338364711223a00af665492f1f-23a00af6", + "description": "0x", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-30T00:32:29Z" + }, + { + "url": "https://github.com/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-30T00:32:29Z" + } + ], + "collaborators": [], + "created_at": "2024-11-30T00:32:27Z", + "git_url": "tarball://root/repositories/xc-link/0xe3800b338364711223a00af665492f1f-23a00af6.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x", + "owner": "https://github.com/xc-link", + "name": "Tff94f0662240c63f9fe12e03f2a446e4x", + "description": "Tx", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-30T00:36:44Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-30T00:36:44Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-30T00:36:45Z" + }, + { + "url": "https://github.com/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-30T00:36:45Z" + } + ], + "collaborators": [], + "created_at": "2024-11-30T00:36:42Z", + "git_url": "tarball://root/repositories/xc-link/Tff94f0662240c63f9fe12e03f2a446e4x.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/21-networklist-org", + "owner": "https://github.com/xc-link", + "name": "21-networklist-org", + "description": "JavaScript MD5 implementation. Compatible with server-side environments like node.js, module loaders like RequireJS and all web browsers.", + "website": "https://blueimp.github.io/JavaScript-MD5/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/21-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-20T02:09:34Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-30T01:02:54Z" + }, + { + "url": "https://github.com/xc-link/21-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-30T01:02:54Z" + } + ], + "collaborators": [], + "created_at": "2024-11-30T01:02:51Z", + "git_url": "tarball://root/repositories/xc-link/21-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SwiftHash", + "owner": "https://github.com/xc-link", + "name": "SwiftHash", + "description": "🍕 MD5 in pure Swift", + "website": "https://onmyway133.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SwiftHash/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-11-30T01:06:39Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-11-30T01:06:39Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-11-30T01:06:40Z" + }, + { + "url": "https://github.com/xc-link/SwiftHash/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-11-30T01:06:40Z" + } + ], + "collaborators": [], + "created_at": "2024-11-30T01:06:37Z", + "git_url": "tarball://root/repositories/xc-link/SwiftHash.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/scatter-demo-eosjs2", + "owner": "https://github.com/xc-link", + "name": "scatter-demo-eosjs2", + "description": "online demo: https://tp-lab.tokenpocket.pro/scatter-demo-eosjs2/index.html", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-13T06:08:31Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-03T18:21:00Z" + }, + { + "url": "https://github.com/xc-link/scatter-demo-eosjs2/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-03T18:21:00Z" + } + ], + "collaborators": [], + "created_at": "2024-12-03T18:20:57Z", + "git_url": "tarball://root/repositories/xc-link/scatter-demo-eosjs2.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/25-networklist-org", + "owner": "https://github.com/xc-link", + "name": "25-networklist-org", + "description": "Token assets for TokenPocket", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/25-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-03T18:27:34Z" + }, + { + "url": "https://github.com/xc-link/25-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-03T18:27:34Z" + } + ], + "collaborators": [], + "created_at": "2024-12-03T18:27:30Z", + "git_url": "tarball://root/repositories/xc-link/25-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TIPs", + "owner": "https://github.com/xc-link", + "name": "TIPs", + "description": "TP Improvement Proposals (TIPs)", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TIPs/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-03T18:29:28Z" + }, + { + "url": "https://github.com/xc-link/TIPs/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-03T18:29:28Z" + } + ], + "collaborators": [], + "created_at": "2024-12-03T18:29:25Z", + "git_url": "tarball://root/repositories/xc-link/TIPs.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio", + "owner": "https://github.com/xc-link", + "name": "TP-Inicial-Laboratorio", + "description": "DevMaster2-0/TpLab", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-22T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-03T18:37:06Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-03T18:37:07Z" + }, + { + "url": "https://github.com/xc-link/TP-Inicial-Laboratorio/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-03T18:37:07Z" + } + ], + "collaborators": [], + "created_at": "2024-12-03T18:37:04Z", + "git_url": "tarball://root/repositories/xc-link/TP-Inicial-Laboratorio.git", + "default_branch": "development", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/vote-incentives", + "owner": "https://github.com/xc-link", + "name": "vote-incentives", + "description": null, + "website": "vote-incentives.vercel.app", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/vote-incentives/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-03T19:08:42Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-03T19:08:42Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-03T19:08:42Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-03T19:08:43Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-03T19:08:43Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-03T19:08:43Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-03T19:08:43Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-03T19:08:43Z" + }, + { + "url": "https://github.com/xc-link/vote-incentives/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-03T19:08:43Z" + } + ], + "collaborators": [], + "created_at": "2024-12-03T19:08:40Z", + "git_url": "tarball://root/repositories/xc-link/vote-incentives.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/72-networklist-org", + "owner": "https://github.com/xc-link", + "name": "72-networklist-org", + "description": "FinHack®,一个易于拓展的量化金融框架,它在当前版本中集成了数据采集、因子计算、因子挖掘、因子分析、机器学习、策略编写、量化回测、实盘接入等全流程的量化投研工作。", + "website": "https://github.com/FinHackCN/finhack/wiki/1%E3%80%81%E5%BF%AB%E9%80%9F%E5%85%A5%E9%97%A8", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/72-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T15:00:56Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-05-19T19:15:00Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T15:00:56Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T15:00:56Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T15:00:56Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T15:00:57Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T15:00:57Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T15:00:57Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update python code", + "created_at": "2025-05-19T19:15:00Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T15:00:57Z" + }, + { + "url": "https://github.com/xc-link/72-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T15:00:57Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T15:00:54Z", + "git_url": "tarball://root/repositories/xc-link/72-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Parallel-computing", + "owner": "https://github.com/xc-link", + "name": "Parallel-computing", + "description": "超级计算机及高性能计算 - 并行编程技术 (Supercomputer & OpenMP & MPI)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Parallel-computing/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T15:30:56Z" + }, + { + "url": "https://github.com/xc-link/Parallel-computing/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T15:30:56Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T15:30:52Z", + "git_url": "tarball://root/repositories/xc-link/Parallel-computing.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Raman-spectra", + "owner": "https://github.com/xc-link", + "name": "Raman-spectra", + "description": "拉曼光谱数学模型", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Raman-spectra/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:03:33Z" + }, + { + "url": "https://github.com/xc-link/Raman-spectra/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:03:33Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:03:30Z", + "git_url": "tarball://root/repositories/xc-link/Raman-spectra.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/My-RegexEngine", + "owner": "https://github.com/xc-link", + "name": "My-RegexEngine", + "description": "正则表达式引擎", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:08:12Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:08:13Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:08:13Z" + }, + { + "url": "https://github.com/xc-link/My-RegexEngine/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:08:13Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:08:07Z", + "git_url": "tarball://root/repositories/xc-link/My-RegexEngine.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/regex", + "owner": "https://github.com/xc-link", + "name": "regex", + "description": "Java实现的正则表达式引擎", + "website": "https://zxs.io/s/1i", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/regex/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:13:39Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:13:40Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:13:40Z" + }, + { + "url": "https://github.com/xc-link/regex/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:13:40Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:13:35Z", + "git_url": "tarball://root/repositories/xc-link/regex.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/chinese-xinhua", + "owner": "https://github.com/xc-link", + "name": "chinese-xinhua", + "description": ":orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:15:43Z" + }, + { + "url": "https://github.com/xc-link/chinese-xinhua/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:15:43Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:15:40Z", + "git_url": "tarball://root/repositories/xc-link/chinese-xinhua.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Json-XML", + "owner": "https://github.com/xc-link", + "name": "Json-XML", + "description": "swift(json数据相互转化字典,字符串,二进制,XML数据转化为字典)", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Json-XML/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:28:34Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:28:34Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:28:35Z" + }, + { + "url": "https://github.com/xc-link/Json-XML/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:28:35Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:28:31Z", + "git_url": "tarball://root/repositories/xc-link/Json-XML.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Mathematics", + "owner": "https://github.com/xc-link", + "name": "Mathematics", + "description": "数学函数,表达式,公式,坐标,长度,圆,圆弧,方程,计算式的Java语言实现。", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Mathematics/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:33:58Z" + }, + { + "url": "https://github.com/xc-link/Mathematics/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:33:58Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:33:55Z", + "git_url": "tarball://root/repositories/xc-link/Mathematics.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Mathematics-more", + "owner": "https://github.com/xc-link", + "name": "Mathematics-more", + "description": "数学知识点滴积累 矩阵 数值优化 神经网络反向传播 图优化 概率论 随机过程 卡尔曼滤波 粒子滤波 数学函数拟合", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Mathematics-more/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:39:42Z" + }, + { + "url": "https://github.com/xc-link/Mathematics-more/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:39:42Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:39:39Z", + "git_url": "tarball://root/repositories/xc-link/Mathematics-more.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Cryptology", + "owner": "https://github.com/xc-link", + "name": "Cryptology", + "description": "密码学中经典算法以及RSA、EIGamal数字签名技术", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Cryptology/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:47:02Z" + }, + { + "url": "https://github.com/xc-link/Cryptology/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:47:02Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:46:59Z", + "git_url": "tarball://root/repositories/xc-link/Cryptology.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/bpnn", + "owner": "https://github.com/xc-link", + "name": "bpnn", + "description": "bp 神经网络算法", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/bpnn/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-04T16:55:06Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-04T16:55:06Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-04T16:55:07Z" + }, + { + "url": "https://github.com/xc-link/bpnn/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-04T16:55:07Z" + } + ], + "collaborators": [], + "created_at": "2024-12-04T16:55:03Z", + "git_url": "tarball://root/repositories/xc-link/bpnn.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/10-networklist-org", + "owner": "https://github.com/xc-link", + "name": "10-networklist-org", + "description": "用C++实现md5加密算法", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/10-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-08T09:26:45Z" + }, + { + "url": "https://github.com/xc-link/10-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-08T09:26:45Z" + } + ], + "collaborators": [], + "created_at": "2024-12-08T09:26:43Z", + "git_url": "tarball://root/repositories/xc-link/10-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/51-networklist-org", + "owner": "https://github.com/xc-link", + "name": "51-networklist-org", + "description": "使用Java实现的各种测试数据的随机生成工具,包括身份证号码,银行卡号,姓名,手机号等", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/51-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-07-12T01:03:58Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-07-12T01:03:58Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-08T18:35:25Z" + }, + { + "url": "https://github.com/xc-link/51-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-08T18:35:25Z" + } + ], + "collaborators": [], + "created_at": "2024-12-08T18:35:23Z", + "git_url": "tarball://root/repositories/xc-link/51-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/HDNetworking", + "owner": "https://github.com/xc-link", + "name": "HDNetworking", + "description": "基于AFNetworking的v3.1.0进行网络请求,基于PINCache的v3.0.1进行网络数据缓存,支持清除指定url缓存、url及参数组合缓存,通过AFNetworkActivityLogger进行网络log打印。该代码使用灵活的请求方式,不包含任何业务代码,上层支持集中式、分布式网络接口管理方式,在请求前可以对请求进行配置,也支持对网络请求后返回的数据进行统一处理。", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/HDNetworking/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T01:59:53Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T01:59:54Z" + }, + { + "url": "https://github.com/xc-link/HDNetworking/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T01:59:54Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T01:59:51Z", + "git_url": "tarball://root/repositories/xc-link/HDNetworking.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/haproxyconsole", + "owner": "https://github.com/xc-link", + "name": "haproxyconsole", + "description": "主从HAProxy负载均衡任务管理系统", + "website": "http://youngsterxyf.github.io/haproxyconsole ", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/haproxyconsole/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:09:47Z" + }, + { + "url": "https://github.com/xc-link/haproxyconsole/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:09:47Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:09:44Z", + "git_url": "tarball://root/repositories/xc-link/haproxyconsole.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ProxySU", + "owner": "https://github.com/xc-link", + "name": "ProxySU", + "description": "Xray,V2ray,Trojan,NaiveProxy, Trojan-Go, ShadowsocksR(SSR),Shadowsocks-libev及相关插件,MTProto+TLS 一键安装工具,windows下用(一键科学上网)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ProxySU/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:13:40Z" + }, + { + "url": "https://github.com/xc-link/ProxySU/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:13:40Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:13:37Z", + "git_url": "tarball://root/repositories/xc-link/ProxySU.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/24-networklist-org", + "owner": "https://github.com/xc-link", + "name": "24-networklist-org", + "description": "The Istio proxy components.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/24-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-03-13T00:58:49Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-03-13T00:58:49Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:17:21Z" + }, + { + "url": "https://github.com/xc-link/24-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:17:21Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:17:18Z", + "git_url": "tarball://root/repositories/xc-link/24-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ProxyPool", + "owner": "https://github.com/xc-link", + "name": "ProxyPool", + "description": "An Efficient ProxyPool with Getter, Tester and Server", + "website": "https://proxypool.scrape.center", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ProxyPool/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:20:12Z" + }, + { + "url": "https://github.com/xc-link/ProxyPool/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:20:12Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:20:09Z", + "git_url": "tarball://root/repositories/xc-link/ProxyPool.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/proxyee-down", + "owner": "https://github.com/xc-link", + "name": "proxyee-down", + "description": "http下载工具,基于http代理,支持多连接分块下载", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/proxyee-down/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:22:55Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:22:55Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:22:55Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:22:55Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:22:56Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:22:55Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:22:56Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:22:56Z" + }, + { + "url": "https://github.com/xc-link/proxyee-down/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:22:56Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:22:53Z", + "git_url": "tarball://root/repositories/xc-link/proxyee-down.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ProxyBroker", + "owner": "https://github.com/xc-link", + "name": "ProxyBroker", + "description": "Proxy [Finder | Checker | Server]. HTTP(S) & SOCKS :performing_arts:", + "website": "http://proxybroker.readthedocs.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ProxyBroker/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:25:22Z" + }, + { + "url": "https://github.com/xc-link/ProxyBroker/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:25:22Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:25:20Z", + "git_url": "tarball://root/repositories/xc-link/ProxyBroker.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/proxy-Microsoft", + "owner": "https://github.com/xc-link", + "name": "proxy-Microsoft", + "description": "Proxy: Next Generation Polymorphism in C++", + "website": "https://wg21.link/p3086", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:27:50Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:27:50Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:27:50Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:27:50Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:27:51Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:27:50Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:27:51Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:27:51Z" + }, + { + "url": "https://github.com/xc-link/proxy-Microsoft/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:27:51Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:27:48Z", + "git_url": "tarball://root/repositories/xc-link/proxy-Microsoft.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/61-networklist-org", + "owner": "https://github.com/xc-link", + "name": "61-networklist-org", + "description": "Automated nginx proxy for Docker containers using docker-gen", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/61-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:29:22Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-06-10T10:31:43Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:29:22Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:29:22Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:29:22Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:29:23Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:29:23Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:29:23Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update python code", + "created_at": "2025-06-10T10:31:43Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:29:23Z" + }, + { + "url": "https://github.com/xc-link/61-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:29:23Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:29:20Z", + "git_url": "tarball://root/repositories/xc-link/61-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/40-networklist-org", + "owner": "https://github.com/xc-link", + "name": "40-networklist-org", + "description": "Automatically crawls proxy nodes on the public internet, de-duplicates and tests for usability and then provides a list of nodes", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/40-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:31:33Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-04-14T15:56:40Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:31:33Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:31:33Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:31:33Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-04-14T15:56:40Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:31:34Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:31:33Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:31:34Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:31:34Z" + }, + { + "url": "https://github.com/xc-link/40-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:31:34Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:31:31Z", + "git_url": "tarball://root/repositories/xc-link/40-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/nginx-proxy-manager", + "owner": "https://github.com/xc-link", + "name": "nginx-proxy-manager", + "description": "Docker container for managing Nginx proxy hosts with a simple, powerful interface", + "website": "https://nginxproxymanager.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-22T07:28:50Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:33:18Z" + }, + { + "url": "https://github.com/xc-link/nginx-proxy-manager/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:33:19Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:33:16Z", + "git_url": "tarball://root/repositories/xc-link/nginx-proxy-manager.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/proxygen", + "owner": "https://github.com/xc-link", + "name": "proxygen", + "description": "A collection of C++ HTTP libraries including an easy to use HTTP server.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/proxygen/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T02:35:06Z" + }, + { + "url": "https://github.com/xc-link/proxygen/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T02:35:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T02:35:03Z", + "git_url": "tarball://root/repositories/xc-link/proxygen.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/63-networklist-org", + "owner": "https://github.com/xc-link", + "name": "63-networklist-org", + "description": "✨基于 3D 卷积神经网络(CNN)的阿尔兹海默智能诊断 Web 应用 Alzheimer's Intelligent Diagnosis Web Application based on 3D Convolutional Neural Network and the ADNI Dataset ✨ 🚩(with README in English) 📌含在线demo:医学影像识别系统,图像识别可视化界面,OCR,快速部署深度学习模型为网页应用,Web预测系统,决策支持系统(DSS),图像识别前端网页,图像识别Demo展示-Pywebio。AI人工智能图像识别-Pytorch;nii医学影像处理;ADNI数据集。100%纯Python代码,轻量化,易复现 ", + "website": "http://www.bytesc.top", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/63-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-03-21T23:27:53Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update python code", + "created_at": "2025-03-21T23:27:53Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T03:03:29Z" + }, + { + "url": "https://github.com/xc-link/63-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T03:03:29Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T03:03:27Z", + "git_url": "tarball://root/repositories/xc-link/63-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cpuminer", + "owner": "https://github.com/xc-link", + "name": "cpuminer", + "description": "CPU miner for bitcoin", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cpuminer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T03:04:57Z" + }, + { + "url": "https://github.com/xc-link/cpuminer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T03:04:58Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T03:04:54Z", + "git_url": "tarball://root/repositories/xc-link/cpuminer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cpuminer-2", + "owner": "https://github.com/xc-link", + "name": "cpuminer-2", + "description": "CPU miner for Litecoin and Bitcoin", + "website": "https://bitcointalk.org/index.php?topic=55038.0", + "private": false, + "has_issues": false, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cpuminer-2/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T03:06:39Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-2/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T03:06:39Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T03:06:36Z", + "git_url": "tarball://root/repositories/xc-link/cpuminer-2.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cpuminer-multi", + "owner": "https://github.com/xc-link", + "name": "cpuminer-multi", + "description": "Multi-algo CPUMiner & Reference Cryptonote Miner (JSON-RPC 2.0)", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T03:07:48Z" + }, + { + "url": "https://github.com/xc-link/cpuminer-multi/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T03:07:48Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T03:07:45Z", + "git_url": "tarball://root/repositories/xc-link/cpuminer-multi.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/poi-baidugaodeditu", + "owner": "https://github.com/xc-link", + "name": "poi-baidugaodeditu", + "description": "百度以及高德地图POI数据和POI边界坐标数据(目前仅限百度)爬取代码,采用Python编写", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T06:42:06Z" + }, + { + "url": "https://github.com/xc-link/poi-baidugaodeditu/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T06:42:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T06:42:04Z", + "git_url": "tarball://root/repositories/xc-link/poi-baidugaodeditu.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cpuinfo", + "owner": "https://github.com/xc-link", + "name": "cpuinfo", + "description": "CPU INFOrmation library (x86/x86-64/ARM/ARM64, Linux/Windows/Android/macOS/iOS)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cpuinfo/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T06:44:15Z" + }, + { + "url": "https://github.com/xc-link/cpuinfo/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T06:44:15Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T06:44:13Z", + "git_url": "tarball://root/repositories/xc-link/cpuinfo.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DDNS", + "owner": "https://github.com/xc-link", + "name": "DDNS", + "description": ":triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,华为云,DNSCOM...)", + "website": "https://ddns.newfuture.cc/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DDNS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T06:46:10Z" + }, + { + "url": "https://github.com/xc-link/DDNS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T06:46:10Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T06:46:08Z", + "git_url": "tarball://root/repositories/xc-link/DDNS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/HarmonyOS", + "owner": "https://github.com/xc-link", + "name": "HarmonyOS", + "description": "A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/HarmonyOS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T06:50:05Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T06:50:05Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T06:50:05Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T06:50:05Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T06:50:06Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T06:50:06Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T06:50:06Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T06:50:06Z" + }, + { + "url": "https://github.com/xc-link/HarmonyOS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T06:50:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T06:50:03Z", + "git_url": "tarball://root/repositories/xc-link/HarmonyOS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + } +] \ No newline at end of file diff --git a/repositories_000002.json b/repositories_000002.json new file mode 100644 index 000000000..7f7b97a06 --- /dev/null +++ b/repositories_000002.json @@ -0,0 +1,12005 @@ +[ + { + "type": "repository", + "url": "https://github.com/xc-link/DNS-AUTO-Switch", + "owner": "https://github.com/xc-link", + "name": "DNS-AUTO-Switch", + "description": "自动检测服务器故障,并自动使用API修改并切换DNS解析,支持华为云DNS和CloudFlareDNS,支持TG·telegram机器人推送", + "website": "https://www.blueskyxn.com/202102/4210.html", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T06:51:48Z" + }, + { + "url": "https://github.com/xc-link/DNS-AUTO-Switch/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T06:51:48Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T06:51:46Z", + "git_url": "tarball://root/repositories/xc-link/DNS-AUTO-Switch.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gb28181ToH264", + "owner": "https://github.com/xc-link", + "name": "gb28181ToH264", + "description": "作为上级域,可以对接海康、大华、宇视等gb28181平台,获取ps流,转换为标准h.264裸流", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-10T07:02:19Z" + }, + { + "url": "https://github.com/xc-link/gb28181ToH264/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-10T07:02:19Z" + } + ], + "collaborators": [], + "created_at": "2024-12-10T07:02:16Z", + "git_url": "tarball://root/repositories/xc-link/gb28181ToH264.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/chnroute", + "owner": "https://github.com/xc-link", + "name": "chnroute", + "description": "为ros生成电信移动策略路由表", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/chnroute/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-12T17:39:06Z" + }, + { + "url": "https://github.com/xc-link/chnroute/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-12T17:39:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-12T17:39:04Z", + "git_url": "tarball://root/repositories/xc-link/chnroute.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/STM32_Projects", + "owner": "https://github.com/xc-link", + "name": "STM32_Projects", + "description": "基于STM32的项目代码和电路原理图", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/STM32_Projects/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-12T17:42:09Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-12T17:42:10Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-12T17:42:10Z" + }, + { + "url": "https://github.com/xc-link/STM32_Projects/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-12T17:42:10Z" + } + ], + "collaborators": [], + "created_at": "2024-12-12T17:42:07Z", + "git_url": "tarball://root/repositories/xc-link/STM32_Projects.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ide", + "owner": "https://github.com/xc-link", + "name": "ide", + "description": "✨ Simple, free and open-source online code editor.", + "website": "https://ide.judge0.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ide/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:36:15Z" + }, + { + "url": "https://github.com/xc-link/ide/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:36:15Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:36:13Z", + "git_url": "tarball://root/repositories/xc-link/ide.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/node-oracledb", + "owner": "https://github.com/xc-link", + "name": "node-oracledb", + "description": "Oracle Database driver for Node.js maintained by Oracle Corp.", + "website": "http://oracle.github.io/node-oracledb/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/node-oracledb/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:38:35Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:38:35Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:38:36Z" + }, + { + "url": "https://github.com/xc-link/node-oracledb/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:38:36Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:38:33Z", + "git_url": "tarball://root/repositories/xc-link/node-oracledb.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/39-networklist-org", + "owner": "https://github.com/xc-link", + "name": "39-networklist-org", + "description": "Query git repositories with SQL. Generate reports, perform status checks, analyze codebases. 🔍 📊", + "website": "https://mergestat.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/39-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-03-13T00:25:41Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-03-13T00:25:41Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:41:30Z" + }, + { + "url": "https://github.com/xc-link/39-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:41:30Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:41:28Z", + "git_url": "tarball://root/repositories/xc-link/39-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/go-sqlite-lite", + "owner": "https://github.com/xc-link", + "name": "go-sqlite-lite", + "description": "SQLite driver for the Go programming language", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:42:50Z" + }, + { + "url": "https://github.com/xc-link/go-sqlite-lite/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:42:50Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:42:48Z", + "git_url": "tarball://root/repositories/xc-link/go-sqlite-lite.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/server-sql", + "owner": "https://github.com/xc-link", + "name": "server-sql", + "description": "Bitwarden infrastructure/backend (API, database, Docker, etc).", + "website": "https://bitwarden.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/server-sql/labels/.NET", + "name": ".NET", + "color": "7121c6", + "description": "Pull requests that update .NET code", + "created_at": "2026-04-18T01:32:50Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2026-04-18T01:32:50Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:44:46Z" + }, + { + "url": "https://github.com/xc-link/server-sql/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:44:46Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:44:42Z", + "git_url": "tarball://root/repositories/xc-link/server-sql.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/sql-server-samples", + "owner": "https://github.com/xc-link", + "name": "sql-server-samples", + "description": "Azure Data SQL Samples - Official Microsoft GitHub Repository containing code samples for SQL Server, Azure SQL, Azure Synapse, and Azure SQL Edge", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/sql-server-samples/labels/.NET", + "name": ".NET", + "color": "7121c6", + "description": "Pull requests that update .net code", + "created_at": "2025-01-27T18:53:55Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:48:47Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-27T18:53:55Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update Python code", + "created_at": "2025-02-11T19:13:14Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:48:48Z" + }, + { + "url": "https://github.com/xc-link/sql-server-samples/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:48:48Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:48:45Z", + "git_url": "tarball://root/repositories/xc-link/sql-server-samples.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/37-networklist-org", + "owner": "https://github.com/xc-link", + "name": "37-networklist-org", + "description": "Data Access Layer (DAL) for PostgreSQL, CockroachDB, MySQL, SQLite and MongoDB with ORM-like features.", + "website": "https://upper.io/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/37-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:50:34Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-04-14T18:17:39Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:50:34Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:50:34Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:50:34Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-04-14T18:17:39Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:50:35Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:50:34Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:50:35Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:50:35Z" + }, + { + "url": "https://github.com/xc-link/37-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:50:35Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:50:32Z", + "git_url": "tarball://root/repositories/xc-link/37-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CallBackDump", + "owner": "https://github.com/xc-link", + "name": "CallBackDump", + "description": "dump lsass进程工具", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CallBackDump/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-13T06:59:07Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-13T06:59:07Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-13T06:59:08Z" + }, + { + "url": "https://github.com/xc-link/CallBackDump/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-13T06:59:08Z" + } + ], + "collaborators": [], + "created_at": "2024-12-13T06:59:05Z", + "git_url": "tarball://root/repositories/xc-link/CallBackDump.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-python", + "owner": "https://github.com/xc-link", + "name": "cryptolens-python", + "description": "Cryptolens Client API for Python", + "website": "https://cryptolens.io/support-cycle/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-python/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:38:23Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-python/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:38:23Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:38:20Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-python.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-golang", + "owner": "https://github.com/xc-link", + "name": "cryptolens-golang", + "description": "Client API to access the functionality of Cryptolens Software Licensing API", + "website": "https://cryptolens.io/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:40:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-golang/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:40:55Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:40:52Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-golang.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-java", + "owner": "https://github.com/xc-link", + "name": "cryptolens-java", + "description": "Client API to access the functionality of Cryptolens Web API", + "website": "https://cryptolens.io/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-java/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:41:57Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-java/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:41:57Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:41:55Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-java.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-dotnet", + "owner": "https://github.com/xc-link", + "name": "cryptolens-dotnet", + "description": "Client API to access the functionality of Cryptolens Web API", + "website": "https://help.cryptolens.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:43:16Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:43:17Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-dotnet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:43:17Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:43:14Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-dotnet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GDPR", + "owner": "https://github.com/xc-link", + "name": "GDPR", + "description": "cryptolens", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GDPR/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:53:22Z" + }, + { + "url": "https://github.com/xc-link/GDPR/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:53:22Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:53:20Z", + "git_url": "tarball://root/repositories/xc-link/GDPR.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-rust", + "owner": "https://github.com/xc-link", + "name": "cryptolens-rust", + "description": "Rust Interface for Cryptolens Web API", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T17:54:55Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T17:54:56Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-rust/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T17:54:56Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T17:54:53Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-rust.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-php", + "owner": "https://github.com/xc-link", + "name": "cryptolens-php", + "description": "Example of how to verify license keys in PHP", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-php/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T18:09:39Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-php/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T18:09:39Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T18:09:37Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-php.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/license-server", + "owner": "https://github.com/xc-link", + "name": "license-server", + "description": "License server that can be installed by your clients on-premise, especially if they have machines that need to be offline.", + "website": "https://cryptolens.io/products/license-server/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/license-server/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-14T18:10:12Z" + }, + { + "url": "https://github.com/xc-link/license-server/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-14T18:10:12Z" + } + ], + "collaborators": [], + "created_at": "2024-12-14T18:10:10Z", + "git_url": "tarball://root/repositories/xc-link/license-server.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/haproxy-auth-request", + "owner": "https://github.com/xc-link", + "name": "haproxy-auth-request", + "description": "auth-request allows you to add access control to your HTTP services based on a subrequest to a configured HAProxy backend.", + "website": "https://bl.duesterhus.eu/20180119/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:05:45Z" + }, + { + "url": "https://github.com/xc-link/haproxy-auth-request/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:05:45Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:05:42Z", + "git_url": "tarball://root/repositories/xc-link/haproxy-auth-request.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/get_cnip", + "owner": "https://github.com/xc-link", + "name": "get_cnip", + "description": "获取国内 IP 和域名,生成路由表和 PAC 文件", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/get_cnip/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:34:16Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-03T18:25:17Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:34:16Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:34:16Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:34:16Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:34:17Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:34:17Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:34:17Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:34:17Z" + }, + { + "url": "https://github.com/xc-link/get_cnip/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:34:17Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:34:15Z", + "git_url": "tarball://root/repositories/xc-link/get_cnip.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CN_ISP_RIB", + "owner": "https://github.com/xc-link", + "name": "CN_ISP_RIB", + "description": "中国大陆地区运营商路由表", + "website": "http://www.cnblogs.com/haiyangyu/p/5545133.html", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:35:36Z" + }, + { + "url": "https://github.com/xc-link/CN_ISP_RIB/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:35:36Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:35:34Z", + "git_url": "tarball://root/repositories/xc-link/CN_ISP_RIB.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/warp-google", + "owner": "https://github.com/xc-link", + "name": "warp-google", + "description": "修改 WireGuard 路由表只接管 Google 地址", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/warp-google/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:37:09Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:37:09Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:37:09Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:37:09Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:37:10Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:37:09Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:37:10Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:37:10Z" + }, + { + "url": "https://github.com/xc-link/warp-google/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:37:10Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:37:08Z", + "git_url": "tarball://root/repositories/xc-link/warp-google.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/halo-dal", + "owner": "https://github.com/xc-link", + "name": "halo-dal", + "description": "java 分布式数据库访问框架,可以结合任何使用PreparedStatement操作的框架。在java jdbc api层实现 分表分库 路由解析的 框架 可以单独或者与用hibernate ibatis spring-jdbc 等框架结合使用,屏蔽api层使用差异,能实现 jdbc 单数据库事务,目的是为了方便的进行分表分库程序的开发", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/halo-dal/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-31T19:09:06Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:41:14Z" + }, + { + "url": "https://github.com/xc-link/halo-dal/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:41:14Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:41:12Z", + "git_url": "tarball://root/repositories/xc-link/halo-dal.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/owmwpprt", + "owner": "https://github.com/xc-link", + "name": "owmwpprt", + "description": "OpenWrt Multi WAN Port Policy Routing Tool(OpenWrt固件多WAN口策略路由分流工具)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/owmwpprt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T04:42:43Z" + }, + { + "url": "https://github.com/xc-link/owmwpprt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T04:42:43Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T04:42:40Z", + "git_url": "tarball://root/repositories/xc-link/owmwpprt.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/FingerprintHub", + "owner": "https://github.com/xc-link", + "name": "FingerprintHub", + "description": "侦查守卫(ObserverWard)的指纹库", + "website": "https://0x727.github.io/FingerprintHub/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/FingerprintHub/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T05:06:08Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T05:06:10Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T05:06:11Z" + }, + { + "url": "https://github.com/xc-link/FingerprintHub/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T05:06:11Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T05:06:07Z", + "git_url": "tarball://root/repositories/xc-link/FingerprintHub.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera", + "owner": "https://github.com/xc-link", + "name": "Dlib_face_recognition_from_camera", + "description": "Detect and recognize the faces from camera / 调用摄像头进行人脸识别,支持多张人脸同时识别", + "website": "http://www.cnblogs.com/AdaminXie/p/9010298.html", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T05:08:30Z" + }, + { + "url": "https://github.com/xc-link/Dlib_face_recognition_from_camera/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T05:08:30Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T05:08:28Z", + "git_url": "tarball://root/repositories/xc-link/Dlib_face_recognition_from_camera.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/shadowsocks-qt5", + "owner": "https://github.com/xc-link", + "name": "shadowsocks-qt5", + "description": "A cross-platform shadowsocks GUI client", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-15T16:10:09Z" + }, + { + "url": "https://github.com/xc-link/shadowsocks-qt5/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-15T16:10:09Z" + } + ], + "collaborators": [], + "created_at": "2024-12-15T16:10:07Z", + "git_url": "tarball://root/repositories/xc-link/shadowsocks-qt5.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/17-networklist-org", + "owner": "https://github.com/xc-link", + "name": "17-networklist-org", + "description": "Public feedback discussions for: GitHub Mobile, GitHub Discussions, GitHub Codespaces, GitHub Sponsors, GitHub Issues and more!", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/17-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-03-10T22:57:16Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T06:06:32Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/ruby", + "name": "ruby", + "color": "ce2d2d", + "description": "Pull requests that update ruby code", + "created_at": "2025-03-10T22:57:16Z" + }, + { + "url": "https://github.com/xc-link/17-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T06:06:32Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T06:06:29Z", + "git_url": "tarball://root/repositories/xc-link/17-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/events", + "owner": "https://github.com/xc-link", + "name": "events", + "description": null, + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/events/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T13:53:10Z" + }, + { + "url": "https://github.com/xc-link/events/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T13:53:11Z" + }, + { + "url": "https://github.com/xc-link/events/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T13:53:11Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T13:53:08Z", + "git_url": "tarball://root/repositories/xc-link/events.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/many-model-forecasting", + "owner": "https://github.com/xc-link", + "name": "many-model-forecasting", + "description": "Bootstrap your large scale forecasting solution on Databricks with Many Models Forecasting (MMF) Project.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T20:42:54Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T20:42:55Z" + }, + { + "url": "https://github.com/xc-link/many-model-forecasting/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T20:42:55Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T20:42:52Z", + "git_url": "tarball://root/repositories/xc-link/many-model-forecasting.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/remill", + "owner": "https://github.com/xc-link", + "name": "remill", + "description": "Library for lifting machine code to LLVM bitcode", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/remill/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T20:44:34Z" + }, + { + "url": "https://github.com/xc-link/remill/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T20:44:34Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T20:44:32Z", + "git_url": "tarball://root/repositories/xc-link/remill.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Alfred_NumToCny", + "owner": "https://github.com/xc-link", + "name": "Alfred_NumToCny", + "description": "转换数字为人民币金额的Alfred Workflow", + "website": "http://www.packal.org/workflow/numtocny", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T21:06:35Z" + }, + { + "url": "https://github.com/xc-link/Alfred_NumToCny/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T21:06:35Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T21:06:32Z", + "git_url": "tarball://root/repositories/xc-link/Alfred_NumToCny.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/41-networklist-org", + "owner": "https://github.com/xc-link", + "name": "41-networklist-org", + "description": "Spring,SpringBoot 2.0,SpringMVC,Mybatis,mybatis-plus,motan/dubbo分布式,Redis缓存,Shiro权限管理,Spring-Session单点登录,Quartz分布式集群调度,Restful服务,QQ/微信登录,App token登录,微信/支付宝支付;日期转换、数据类型转换、序列化、汉字转拼音、身份证号码验证、数字转人民币、发送短信、发送邮件、加密解密、图片处理、excel导入导出、FTP/SFTP/fastDFS上传下载、二维码、XML读写、高精度计算、系统配置工具类等等。", + "website": "http://gitee.com/signup?inviter=iBase2J", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/41-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-05-28T18:00:58Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-05-28T18:00:59Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T21:09:21Z" + }, + { + "url": "https://github.com/xc-link/41-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T21:09:21Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T21:09:18Z", + "git_url": "tarball://root/repositories/xc-link/41-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/28-networklist-org", + "owner": "https://github.com/xc-link", + "name": "28-networklist-org", + "description": "Spring,SpringBoot,SpringMVC,Mybatis,mybatis-plus,motan/dubbo分布式,Redis缓存,Shiro权限管理,Spring-Session单点登录,Quartz分布式集群调度,Restful服务,QQ/微信登录,App token登录,微信/支付宝支付;日期转换、数据类型转换、序列化、汉字转拼音、身份证号码验证、数字转人民币、发送短信、发送邮件、加密解密、图片处理、excel导入导出、FTP/SFTP/fastDFS上传下载、二维码、XML读写、高精度计算、系统配置工具类等等。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/28-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-05-28T18:00:48Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-05-28T18:00:48Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T21:10:35Z" + }, + { + "url": "https://github.com/xc-link/28-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T21:10:35Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T21:10:32Z", + "git_url": "tarball://root/repositories/xc-link/28-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/29-networklist-org", + "owner": "https://github.com/xc-link", + "name": "29-networklist-org", + "description": "JAVA分布式快速开发平台:Spring,SpringMVC,Mybatis,mybatis-plus,motan/dubbo分布式,Redis缓存,Shiro权限管理,Spring-Session单点登录,Quartz分布式集群调度,Restful服务,QQ/微信登录,App token登录,微信/支付宝支付;日期转换、数据类型转换、序列化、汉字转拼音、身份证号码验证、数字转人民币、发送短信、发送邮件、加密解密、图片处理、excel导入导出、FTP/SFTP/fastDFS上传下载、二维码、XML读写、高精度计算、系统配置工具类等等。 https://www.oschina.net/p/iBase4J", + "website": " https://www.oschina.net/p/iBase4J", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/29-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-05-27T19:35:46Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/java", + "name": "java", + "color": "ffa221", + "description": "Pull requests that update java code", + "created_at": "2025-05-27T19:35:46Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T21:13:54Z" + }, + { + "url": "https://github.com/xc-link/29-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T21:13:54Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T21:13:51Z", + "git_url": "tarball://root/repositories/xc-link/29-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx", + "owner": "https://github.com/xc-link", + "name": "fleet-protocol-http-client-cxx", + "description": "C++ HTTP client for Fleet HTTP API", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T22:36:12Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-cxx/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T22:36:12Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T22:36:09Z", + "git_url": "tarball://root/repositories/xc-link/fleet-protocol-http-client-cxx.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/fleet-protocol-http-client-python", + "owner": "https://github.com/xc-link", + "name": "fleet-protocol-http-client-python", + "description": "Python client for Fleet Protocol HTTP API", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T22:57:29Z" + }, + { + "url": "https://github.com/xc-link/fleet-protocol-http-client-python/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T22:57:29Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T22:57:27Z", + "git_url": "tarball://root/repositories/xc-link/fleet-protocol-http-client-python.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/codespaces", + "owner": "https://github.com/xc-link", + "name": "codespaces", + "description": "Devops Workspaces in a Box", + "website": "https://codespaces-io.github.io/codespaces/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/codespaces/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-16T22:59:46Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-16T22:59:46Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-16T22:59:46Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-16T22:59:46Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-16T22:59:47Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-16T22:59:47Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-16T22:59:47Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-16T22:59:47Z" + }, + { + "url": "https://github.com/xc-link/codespaces/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-16T22:59:47Z" + } + ], + "collaborators": [], + "created_at": "2024-12-16T22:59:44Z", + "git_url": "tarball://root/repositories/xc-link/codespaces.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/70-networklist-org", + "owner": "https://github.com/xc-link", + "name": "70-networklist-org", + "description": "Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.", + "website": "https://devpod.sh", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/70-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-21T20:25:37Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/go", + "name": "go", + "color": "16e2e2", + "description": "Pull requests that update go code", + "created_at": "2025-03-13T01:17:31Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/javascript", + "name": "javascript", + "color": "168700", + "description": "Pull requests that update Javascript code", + "created_at": "2025-01-21T22:16:59Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T03:35:57Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/rust", + "name": "rust", + "color": "000000", + "description": "Pull requests that update Rust code", + "created_at": "2025-02-03T18:53:22Z" + }, + { + "url": "https://github.com/xc-link/70-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T03:35:57Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T03:35:54Z", + "git_url": "tarball://root/repositories/xc-link/70-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/kubernetes-in-codespaces", + "owner": "https://github.com/xc-link", + "name": "kubernetes-in-codespaces", + "description": "Kubernetes development cluster in GitHub Codespaces", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T03:40:20Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T03:40:20Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T03:40:20Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T03:40:21Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T03:40:21Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T03:40:21Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T03:40:21Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T03:40:21Z" + }, + { + "url": "https://github.com/xc-link/kubernetes-in-codespaces/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T03:40:21Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T03:40:18Z", + "git_url": "tarball://root/repositories/xc-link/kubernetes-in-codespaces.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": true, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/features", + "owner": "https://github.com/xc-link", + "name": "features", + "description": "🐳 Extra add-in features for Devcontainers and GitHub Codespaces", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/features/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T03:42:07Z" + }, + { + "url": "https://github.com/xc-link/features/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T03:42:08Z" + }, + { + "url": "https://github.com/xc-link/features/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T03:42:08Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T03:42:02Z", + "git_url": "tarball://root/repositories/xc-link/features.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BankList", + "owner": "https://github.com/xc-link", + "name": "BankList", + "description": "银行列表/银行名称/银行编码/银行LOGO/银行", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BankList/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T04:59:01Z" + }, + { + "url": "https://github.com/xc-link/BankList/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T04:59:01Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T04:58:59Z", + "git_url": "tarball://root/repositories/xc-link/BankList.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/WeiXinMPSDK", + "owner": "https://github.com/xc-link", + "name": "WeiXinMPSDK", + "description": "微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.", + "website": "https://weixin.senparc.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T05:08:04Z" + }, + { + "url": "https://github.com/xc-link/WeiXinMPSDK/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T05:08:04Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T05:08:02Z", + "git_url": "tarball://root/repositories/xc-link/WeiXinMPSDK.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/71-networklist-org", + "owner": "https://github.com/xc-link", + "name": "71-networklist-org", + "description": "Jeepay是一套适合互联网企业使用的开源支付系统,支持多渠道服务商和普通商户模式。已对接微信支付,支付宝,云闪付官方接口,支持聚合码支付。", + "website": "https://www.jeequan.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/71-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-10T16:20:11Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T05:09:56Z" + }, + { + "url": "https://github.com/xc-link/71-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T05:09:56Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T05:09:53Z", + "git_url": "tarball://root/repositories/xc-link/71-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/sdk-licensing", + "owner": "https://github.com/xc-link", + "name": "sdk-licensing", + "description": "Example code and help tools to securely protect .NET SDKs with focus on offline environments", + "website": "https://help.cryptolens.io/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/sdk-licensing/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T14:52:14Z" + }, + { + "url": "https://github.com/xc-link/sdk-licensing/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T14:52:14Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T14:52:10Z", + "git_url": "tarball://root/repositories/xc-link/sdk-licensing.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/translate", + "owner": "https://github.com/xc-link", + "name": "translate", + "description": "数字转人民币翻译系统", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/translate/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-17T18:33:52Z" + }, + { + "url": "https://github.com/xc-link/translate/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-17T18:33:52Z" + } + ], + "collaborators": [], + "created_at": "2024-12-17T18:33:49Z", + "git_url": "tarball://root/repositories/xc-link/translate.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/mixpanel-iphone", + "owner": "https://github.com/xc-link", + "name": "mixpanel-iphone", + "description": "Official iOS (Objective-C) Tracking Library for Mixpanel Analytics", + "website": "http://mixpanel.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:07:34Z" + }, + { + "url": "https://github.com/xc-link/mixpanel-iphone/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:07:34Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:07:32Z", + "git_url": "tarball://root/repositories/xc-link/mixpanel-iphone.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cardano-sl", + "owner": "https://github.com/xc-link", + "name": "cardano-sl", + "description": "Cryptographic currency implementing Ouroboros PoS protocol", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cardano-sl/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-02-13T06:08:27Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:36:34Z" + }, + { + "url": "https://github.com/xc-link/cardano-sl/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:36:34Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:36:31Z", + "git_url": "tarball://root/repositories/xc-link/cardano-sl.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/postgres", + "owner": "https://github.com/xc-link", + "name": "postgres", + "description": "Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch", + "website": "https://www.postgresql.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/postgres/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:38:51Z" + }, + { + "url": "https://github.com/xc-link/postgres/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:38:51Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:38:48Z", + "git_url": "tarball://root/repositories/xc-link/postgres.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/L-ink_Card", + "owner": "https://github.com/xc-link", + "name": "L-ink_Card", + "description": "Smart NFC & ink-Display Card", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/L-ink_Card/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:43:33Z" + }, + { + "url": "https://github.com/xc-link/L-ink_Card/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:43:33Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:43:30Z", + "git_url": "tarball://root/repositories/xc-link/L-ink_Card.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/phonegap-nfc", + "owner": "https://github.com/xc-link", + "name": "phonegap-nfc", + "description": "PhoneGap NFC Plugin", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:45:39Z" + }, + { + "url": "https://github.com/xc-link/phonegap-nfc/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:45:39Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:45:37Z", + "git_url": "tarball://root/repositories/xc-link/phonegap-nfc.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/libnfc", + "owner": "https://github.com/xc-link", + "name": "libnfc", + "description": "Platform independent Near Field Communication (NFC) library", + "website": "http://nfc-tools.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/libnfc/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:48:30Z" + }, + { + "url": "https://github.com/xc-link/libnfc/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:48:30Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:48:28Z", + "git_url": "tarball://root/repositories/xc-link/libnfc.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/RFIDIOt", + "owner": "https://github.com/xc-link", + "name": "RFIDIOt", + "description": "python RFID / NFC library & tools", + "website": "http://www.rfidiot.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/RFIDIOt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T05:51:18Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T05:51:18Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T05:51:18Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T05:51:19Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T05:51:19Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T05:51:19Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T05:51:19Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T05:51:19Z" + }, + { + "url": "https://github.com/xc-link/RFIDIOt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T05:51:19Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T05:51:17Z", + "git_url": "tarball://root/repositories/xc-link/RFIDIOt.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/LSQRScan", + "owner": "https://github.com/xc-link", + "name": "LSQRScan", + "description": "iphone 二维码扫描,oc编写,基于apple原生api,支持限制扫描范围", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/LSQRScan/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T06:11:47Z" + }, + { + "url": "https://github.com/xc-link/LSQRScan/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T06:11:47Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T06:11:44Z", + "git_url": "tarball://root/repositories/xc-link/LSQRScan.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cryptolens-autolisp", + "owner": "https://github.com/xc-link", + "name": "cryptolens-autolisp", + "description": "Wrapper around the C# functions that can be used in AutoLISP", + "website": "https://cryptolens.io/support-cycle/", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T17:02:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T17:02:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T17:02:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T17:02:11Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T17:02:12Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T17:02:12Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T17:02:12Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T17:02:12Z" + }, + { + "url": "https://github.com/xc-link/cryptolens-autolisp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T17:02:12Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T17:02:08Z", + "git_url": "tarball://root/repositories/xc-link/cryptolens-autolisp.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/admin-tools", + "owner": "https://github.com/xc-link", + "name": "admin-tools", + "description": "A collection of scripts and utilities that are useful when working with enterprise customers.", + "website": "https://cryptolens.io", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/admin-tools/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T17:06:10Z" + }, + { + "url": "https://github.com/xc-link/admin-tools/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T17:06:11Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T17:06:07Z", + "git_url": "tarball://root/repositories/xc-link/admin-tools.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/linphone-iphone", + "owner": "https://github.com/xc-link", + "name": "linphone-iphone", + "description": "Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of linphone-iphone (git://git.linphone.org/linphone-iphone.git)", + "website": "http://linphone.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/linphone-iphone/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T17:09:45Z" + }, + { + "url": "https://github.com/xc-link/linphone-iphone/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T17:09:45Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T17:09:42Z", + "git_url": "tarball://root/repositories/xc-link/linphone-iphone.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/linux", + "owner": "https://github.com/xc-link", + "name": "linux", + "description": "Spotify's Linux kernel for Debian-based systems", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/linux/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T17:17:58Z" + }, + { + "url": "https://github.com/xc-link/linux/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T17:17:58Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T17:17:55Z", + "git_url": "tarball://root/repositories/xc-link/linux.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/vcpkg", + "owner": "https://github.com/xc-link", + "name": "vcpkg", + "description": "C++ Library Manager for Windows, Linux, and MacOS", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/vcpkg/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-18T17:27:55Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-08T21:48:25Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-18T17:27:55Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-18T17:27:55Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-18T17:27:56Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-18T17:27:56Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-18T17:27:56Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-18T17:27:56Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/python", + "name": "python", + "color": "2b67c6", + "description": "Pull requests that update python code", + "created_at": "2025-03-06T04:38:08Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-18T17:27:56Z" + }, + { + "url": "https://github.com/xc-link/vcpkg/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-18T17:27:56Z" + } + ], + "collaborators": [], + "created_at": "2024-12-18T17:27:53Z", + "git_url": "tarball://root/repositories/xc-link/vcpkg.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/underscore", + "owner": "https://github.com/xc-link", + "name": "underscore", + "description": "🦉 underscore Source code analysis,Simplifying source code to see structure", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/underscore/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-19T01:39:06Z" + }, + { + "url": "https://github.com/xc-link/underscore/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-19T01:39:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-19T01:39:03Z", + "git_url": "tarball://root/repositories/xc-link/underscore.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/git-link", + "owner": "https://github.com/xc-link", + "name": "git-link", + "description": "Emacs package to get the GitHub/Bitbucket/GitLab/... URL for a buffer location", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/git-link/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T01:01:59Z" + }, + { + "url": "https://github.com/xc-link/git-link/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T01:01:59Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T01:01:57Z", + "git_url": "tarball://root/repositories/xc-link/git-link.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/infer", + "owner": "https://github.com/xc-link", + "name": "infer", + "description": "A static analyzer for Java, C, C++, and Objective-C", + "website": "http://fbinfer.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/infer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:09:38Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:09:38Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:09:38Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:09:38Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:09:39Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:09:38Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:09:39Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:09:39Z" + }, + { + "url": "https://github.com/xc-link/infer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:09:39Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:09:36Z", + "git_url": "tarball://root/repositories/xc-link/infer.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/staticRouter", + "owner": "https://github.com/xc-link", + "name": "staticRouter", + "description": "基于Mininet对SDN/OpenFlow网络进行仿真,搭建了由一个三层路由器staticRouter、一个二层自学习交换机以及若干台主机构成的网络拓扑。使用POX做控制器,编程实现了网络中各个主机之间的连通性。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/staticRouter/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:20:05Z" + }, + { + "url": "https://github.com/xc-link/staticRouter/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:20:05Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:20:03Z", + "git_url": "tarball://root/repositories/xc-link/staticRouter.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Ladon", + "owner": "https://github.com/xc-link", + "name": "Ladon", + "description": "Ladon大型内网渗透扫描器,PowerShell、Cobalt Strike插件、内存加载、无文件扫描。含端口扫描、服务识别、网络资产探测、密码审计、高危漏洞检测、漏洞利用、密码读取以及一键GetShell,支持批量A段/B段/C段以及跨网段扫描,支持URL、主机、域名列表扫描等。网络资产探测32种协议(ICMP\\NBT\\DNS\\MAC\\SMB\\WMI\\SSH\\HTTP\\HTTPS\\Exchange\\mssql\\FTP\\RDP)或方法快速获取目标网络存活主机IP、计算机名、工作组、共享资源、网卡地址、操作系统版本、网站、子域名、中间件、开放服务、路由器、交换机、数据库、打印机等,大量高危漏洞检测模块MS17010、Zimbra、Exchange", + "website": "http://k8gege.org/Ladon/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Ladon/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:25:05Z" + }, + { + "url": "https://github.com/xc-link/Ladon/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:25:06Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:25:02Z", + "git_url": "tarball://root/repositories/xc-link/Ladon.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Network_Automation", + "owner": "https://github.com/xc-link", + "name": "Network_Automation", + "description": "网络自动化工具,对交换机进行批量配置", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Network_Automation/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:26:59Z" + }, + { + "url": "https://github.com/xc-link/Network_Automation/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:26:59Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:26:57Z", + "git_url": "tarball://root/repositories/xc-link/Network_Automation.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/topology-scanner", + "owner": "https://github.com/xc-link", + "name": "topology-scanner", + "description": "网络拓扑自动扫描工具", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/topology-scanner/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:28:52Z" + }, + { + "url": "https://github.com/xc-link/topology-scanner/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:28:52Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:28:49Z", + "git_url": "tarball://root/repositories/xc-link/topology-scanner.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/easy-topo", + "owner": "https://github.com/xc-link", + "name": "easy-topo", + "description": "vue+svg+element-ui 快捷画出网络拓扑图", + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/easy-topo/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-21T05:30:23Z" + }, + { + "url": "https://github.com/xc-link/easy-topo/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-21T05:30:23Z" + } + ], + "collaborators": [], + "created_at": "2024-12-21T05:30:20Z", + "git_url": "tarball://root/repositories/xc-link/easy-topo.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Calculator", + "owner": "https://github.com/xc-link", + "name": "Calculator", + "description": "这一款计算器是科学计算器,它不单可以实现简单的加减乘除运算,还可进行乘方、开方、指数、对数、三角函数(弧度制和角度值切换)等方面的运算。它还可以存储计算历史记录,并且可以选择并使用历史记录。还可以更换计算器的主题风格。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Calculator/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-22T01:38:03Z" + }, + { + "url": "https://github.com/xc-link/Calculator/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-22T01:38:03Z" + } + ], + "collaborators": [], + "created_at": "2024-12-22T01:38:00Z", + "git_url": "tarball://root/repositories/xc-link/Calculator.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SYSU_Courses", + "owner": "https://github.com/xc-link", + "name": "SYSU_Courses", + "description": "本仓库包含本人在中山大学计算机科学与技术专业的课程资料:计网、算法、并行、信号与系统、人工智能、信安、区块链、数据库、机器人、自然语言处理、高级算法等。", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-22T01:42:11Z" + }, + { + "url": "https://github.com/xc-link/SYSU_Courses/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-22T01:42:11Z" + } + ], + "collaborators": [], + "created_at": "2024-12-22T01:42:09Z", + "git_url": "tarball://root/repositories/xc-link/SYSU_Courses.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/rubygems", + "owner": "https://github.com/xc-link", + "name": "rubygems", + "description": "Library packaging and distribution for Ruby.", + "website": "https://rubygems.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/rubygems/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-23T15:45:32Z" + }, + { + "url": "https://github.com/xc-link/rubygems/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-23T15:45:32Z" + } + ], + "collaborators": [], + "created_at": "2024-12-23T15:45:29Z", + "git_url": "tarball://root/repositories/xc-link/rubygems.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ImGui-Loader-Base", + "owner": "https://github.com/xc-link", + "name": "ImGui-Loader-Base", + "description": "A Base for a Loader or literally anything.", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-29T16:47:42Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-29T16:47:42Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-29T16:47:42Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-29T16:47:42Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-29T16:47:43Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-29T16:47:42Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-29T16:47:43Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-29T16:47:43Z" + }, + { + "url": "https://github.com/xc-link/ImGui-Loader-Base/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-29T16:47:43Z" + } + ], + "collaborators": [], + "created_at": "2024-12-29T16:47:40Z", + "git_url": "tarball://root/repositories/xc-link/ImGui-Loader-Base.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Self-Hosting-Guide", + "owner": "https://github.com/xc-link", + "name": "Self-Hosting-Guide", + "description": "Self-Hosting Guide. Learn all about locally hosting (on premises & private web servers) and managing software applications by yourself or your organization. Including Cloud, LLMs, WireGuard, Automation, Home Assistant, and Networking.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-30T05:00:50Z" + }, + { + "url": "https://github.com/xc-link/Self-Hosting-Guide/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-30T05:00:50Z" + } + ], + "collaborators": [], + "created_at": "2024-12-30T05:00:46Z", + "git_url": "tarball://root/repositories/xc-link/Self-Hosting-Guide.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "owner": "https://github.com/xc-link", + "name": "0xegilyon8321d679fa994a27139c7d5ddb00361c2", + "description": "0x", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2024-12-31T23:42:16Z" + }, + { + "url": "https://github.com/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2024-12-31T23:42:17Z" + } + ], + "collaborators": [], + "created_at": "2024-12-31T23:42:14Z", + "git_url": "tarball://root/repositories/xc-link/0xegilyon8321d679fa994a27139c7d5ddb00361c2.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/pocketbase", + "owner": "https://github.com/xc-link", + "name": "pocketbase", + "description": "Open Source realtime backend in 1 file", + "website": "https://pocketbase.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/pocketbase/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-02T00:11:58Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-02T00:11:58Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-02T00:11:58Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-02T00:11:58Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-02T00:11:59Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-02T00:11:58Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-02T00:11:59Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-02T00:11:59Z" + }, + { + "url": "https://github.com/xc-link/pocketbase/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-02T00:11:59Z" + } + ], + "collaborators": [], + "created_at": "2025-01-02T00:11:56Z", + "git_url": "tarball://root/repositories/xc-link/pocketbase.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/next-auth", + "owner": "https://github.com/xc-link", + "name": "next-auth", + "description": "Authentication for the Web.", + "website": "https://authjs.dev", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/next-auth/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-05T18:46:10Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-05T18:46:10Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-05T18:46:11Z" + }, + { + "url": "https://github.com/xc-link/next-auth/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-05T18:46:11Z" + } + ], + "collaborators": [], + "created_at": "2025-01-05T18:46:07Z", + "git_url": "tarball://root/repositories/xc-link/next-auth.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/casbin", + "owner": "https://github.com/xc-link", + "name": "casbin", + "description": "An authorization library that supports access control models like ACL, RBAC, ABAC in Golang: https://discord.gg/S5UjpzGZjN", + "website": "https://casbin.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/casbin/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-05T19:16:49Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-05T19:16:49Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-05T19:16:49Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-05T19:16:49Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-05T19:16:50Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-05T19:16:50Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-05T19:16:50Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-05T19:16:50Z" + }, + { + "url": "https://github.com/xc-link/casbin/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-05T19:16:50Z" + } + ], + "collaborators": [], + "created_at": "2025-01-05T19:16:47Z", + "git_url": "tarball://root/repositories/xc-link/casbin.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/supertokens-core", + "owner": "https://github.com/xc-link", + "name": "supertokens-core", + "description": "Open source alternative to Auth0 / Firebase Auth / AWS Cognito ", + "website": "https://supertokens.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/supertokens-core/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-05T19:34:17Z" + }, + { + "url": "https://github.com/xc-link/supertokens-core/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-05T19:34:17Z" + } + ], + "collaborators": [], + "created_at": "2025-01-05T19:34:15Z", + "git_url": "tarball://root/repositories/xc-link/supertokens-core.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tokens-trust", + "owner": "https://github.com/xc-link", + "name": "tokens-trust", + "description": "Upload yours token, coin and dApp image to get displayed in the Trust Wallet", + "website": "https://trustwallet.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tokens-trust/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-06T00:04:21Z" + }, + { + "url": "https://github.com/xc-link/tokens-trust/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-06T00:04:21Z" + } + ], + "collaborators": [], + "created_at": "2025-01-06T00:04:18Z", + "git_url": "tarball://root/repositories/xc-link/tokens-trust.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tokenAssets", + "owner": "https://github.com/xc-link", + "name": "tokenAssets", + "description": "A community-led initiative to improve access to ERC20 token icons in a manner that is inclusive, transparent, and decentralized.", + "website": "https://assets.smold.app/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tokenAssets/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-06T00:08:16Z" + }, + { + "url": "https://github.com/xc-link/tokenAssets/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-06T00:08:16Z" + } + ], + "collaborators": [], + "created_at": "2025-01-06T00:08:13Z", + "git_url": "tarball://root/repositories/xc-link/tokenAssets.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/38-networklist-org", + "owner": "https://github.com/xc-link", + "name": "38-networklist-org", + "description": "deepstream.io server", + "website": "https://deepstreamio.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/38-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-06T08:07:40Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-06T08:07:41Z" + }, + { + "url": "https://github.com/xc-link/38-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-06T08:07:41Z" + } + ], + "collaborators": [], + "created_at": "2025-01-06T08:07:38Z", + "git_url": "tarball://root/repositories/xc-link/38-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/budibase", + "owner": "https://github.com/xc-link", + "name": "budibase", + "description": "Create business apps and automate workflows in minutes. Supports PostgreSQL, MySQL, MariaDB, MSSQL, MongoDB, Rest API, Docker, K8s, and more 🚀 No code / Low code platform..", + "website": "https://budibase.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/budibase/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-06T23:33:15Z" + }, + { + "url": "https://github.com/xc-link/budibase/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-06T23:33:15Z" + } + ], + "collaborators": [], + "created_at": "2025-01-06T23:33:10Z", + "git_url": "tarball://root/repositories/xc-link/budibase.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/payload", + "owner": "https://github.com/xc-link", + "name": "payload", + "description": "Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.", + "website": "https://payloadcms.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/payload/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-06T23:46:31Z" + }, + { + "url": "https://github.com/xc-link/payload/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-06T23:46:31Z" + } + ], + "collaborators": [], + "created_at": "2025-01-06T23:46:28Z", + "git_url": "tarball://root/repositories/xc-link/payload.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/token-profile", + "owner": "https://github.com/xc-link", + "name": "token-profile", + "description": "Blockchain coin and token profile collection", + "website": "https://token.im", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/token-profile/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-10T03:21:34Z" + }, + { + "url": "https://github.com/xc-link/token-profile/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-10T03:21:34Z" + } + ], + "collaborators": [], + "created_at": "2025-01-10T03:21:31Z", + "git_url": "tarball://root/repositories/xc-link/token-profile.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/opencve", + "owner": "https://github.com/xc-link", + "name": "opencve", + "description": "CVE Alerting Platform", + "website": "https://www.opencve.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/opencve/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-10T06:15:35Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-10T06:15:36Z" + }, + { + "url": "https://github.com/xc-link/opencve/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-10T06:15:36Z" + } + ], + "collaborators": [], + "created_at": "2025-01-10T06:15:34Z", + "git_url": "tarball://root/repositories/xc-link/opencve.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cve-search", + "owner": "https://github.com/xc-link", + "name": "cve-search", + "description": "cve-search - a tool to perform local searches for known vulnerabilities", + "website": "https://www.cve-search.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cve-search/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-10T06:19:26Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-10T06:19:26Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-10T06:19:27Z" + }, + { + "url": "https://github.com/xc-link/cve-search/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-10T06:19:27Z" + } + ], + "collaborators": [], + "created_at": "2025-01-10T06:19:24Z", + "git_url": "tarball://root/repositories/xc-link/cve-search.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/rust-cevm", + "owner": "https://github.com/xc-link", + "name": "rust-cevm", + "description": "CompEVM: Rust Ethereum Virtual Machine Implementation designed for Smart Contract Composability testing", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/rust-cevm/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-11T05:08:51Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-11T05:08:52Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-11T05:08:52Z" + }, + { + "url": "https://github.com/xc-link/rust-cevm/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-11T05:08:52Z" + } + ], + "collaborators": [], + "created_at": "2025-01-11T05:08:48Z", + "git_url": "tarball://root/repositories/xc-link/rust-cevm.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ceviche-rs", + "owner": "https://github.com/xc-link", + "name": "ceviche-rs", + "description": "Rust daemon/service wrapper", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ceviche-rs/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-11T05:12:15Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-11T05:12:16Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-11T05:12:16Z" + }, + { + "url": "https://github.com/xc-link/ceviche-rs/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-11T05:12:16Z" + } + ], + "collaborators": [], + "created_at": "2025-01-11T05:12:13Z", + "git_url": "tarball://root/repositories/xc-link/ceviche-rs.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/kuaishou-live", + "owner": "https://github.com/xc-link", + "name": "kuaishou-live", + "description": "快手直播协议、快手弹幕协议、快手爬虫分析", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/kuaishou-live/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-13T05:28:21Z" + }, + { + "url": "https://github.com/xc-link/kuaishou-live/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-13T05:28:21Z" + } + ], + "collaborators": [], + "created_at": "2025-01-13T05:28:18Z", + "git_url": "tarball://root/repositories/xc-link/kuaishou-live.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DY-Data", + "owner": "https://github.com/xc-link", + "name": "DY-Data", + "description": "抖音搜索、抖音Api、抖音直播Api、抖音评论采集、抖音弹幕、抖音采集、抖音爬虫、抖音去水印、抖音下载、抖音解析抖音爬虫源码、抖音去水印源码、抖音解析源码、抖音桌面批量去水印工具源码、抖音快手视频剪辑去重工具源码、直播间送礼、粉丝团", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DY-Data/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-14T00:05:03Z" + }, + { + "url": "https://github.com/xc-link/DY-Data/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-14T00:05:03Z" + } + ], + "collaborators": [], + "created_at": "2025-01-14T00:05:00Z", + "git_url": "tarball://root/repositories/xc-link/DY-Data.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gopay", + "owner": "https://github.com/xc-link", + "name": "gopay", + "description": "微信、支付宝、通联支付、拉卡拉、PayPal、Apple 的Go版本SDK。【极简、易用的聚合支付SDK】", + "website": "https://github.com/go-pay/gopay", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gopay/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-14T00:08:10Z" + }, + { + "url": "https://github.com/xc-link/gopay/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-14T00:08:10Z" + } + ], + "collaborators": [], + "created_at": "2025-01-14T00:08:08Z", + "git_url": "tarball://root/repositories/xc-link/gopay.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "owner": "https://github.com/xc-link", + "name": "0xdAC17F958D2ee523a2206206994597C13D831ec7-HY", + "description": "TetherToken", + "website": null, + "private": true, + "has_issues": true, + "has_wiki": false, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-15T04:37:02Z" + }, + { + "url": "https://github.com/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-15T04:37:02Z" + } + ], + "collaborators": [], + "created_at": "2025-01-15T04:37:00Z", + "git_url": "tarball://root/repositories/xc-link/0xdAC17F958D2ee523a2206206994597C13D831ec7-HY.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": false, + "token_scanning_push_protection": false + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/solidity", + "owner": "https://github.com/xc-link", + "name": "solidity", + "description": "Solidity, the Smart Contract Programming Language", + "website": "https://soliditylang.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/solidity/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-15T05:10:45Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "description": "Pull requests that update a dependency file", + "created_at": "2025-01-15T23:33:30Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/github_actions", + "name": "github_actions", + "color": "000000", + "description": "Pull requests that update GitHub Actions code", + "created_at": "2025-01-15T23:33:30Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-15T05:10:46Z" + }, + { + "url": "https://github.com/xc-link/solidity/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-15T05:10:46Z" + } + ], + "collaborators": [], + "created_at": "2025-01-15T05:10:43Z", + "git_url": "tarball://root/repositories/xc-link/solidity.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/authelia", + "owner": "https://github.com/xc-link", + "name": "authelia", + "description": "The Single Sign-On Multi-Factor portal for web apps", + "website": "https://www.authelia.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/authelia/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-19T06:17:37Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-19T06:17:37Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-19T06:17:37Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-19T06:17:37Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-19T06:17:38Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-19T06:17:38Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-19T06:17:38Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-19T06:17:38Z" + }, + { + "url": "https://github.com/xc-link/authelia/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-19T06:17:38Z" + } + ], + "collaborators": [], + "created_at": "2025-01-19T06:17:34Z", + "git_url": "tarball://root/repositories/xc-link/authelia.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/compress", + "owner": "https://github.com/xc-link", + "name": "compress", + "description": "基于gzip、deflate、lz4、snappy、lzo等算法实现数据压缩,主要用于RPC通讯数据的压缩!", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/compress/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-19T19:30:44Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-19T19:30:44Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-19T19:30:44Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-19T19:30:44Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-19T19:30:45Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-19T19:30:44Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-19T19:30:45Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-19T19:30:45Z" + }, + { + "url": "https://github.com/xc-link/compress/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-19T19:30:45Z" + } + ], + "collaborators": [], + "created_at": "2025-01-19T19:30:42Z", + "git_url": "tarball://root/repositories/xc-link/compress.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/miner-proxy", + "owner": "https://github.com/xc-link", + "name": "miner-proxy", + "description": "it free, 高性能加密传输矿工与矿池中的数据, 适用所有币种/ssl/tcp, ", + "website": "http://perror.dev/miner-proxy/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/miner-proxy/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-20T02:38:19Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-20T02:38:20Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-20T02:38:20Z" + }, + { + "url": "https://github.com/xc-link/miner-proxy/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-20T02:38:20Z" + } + ], + "collaborators": [], + "created_at": "2025-01-20T02:38:17Z", + "git_url": "tarball://root/repositories/xc-link/miner-proxy.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gfw.press", + "owner": "https://github.com/xc-link", + "name": "gfw.press", + "description": "GFW.Press新一代军用级高强度加密抗干扰网络数据高速传输软件", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gfw.press/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-20T04:38:47Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-20T04:38:47Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-20T04:38:47Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-20T04:38:47Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-20T04:38:48Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-20T04:38:48Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-20T04:38:48Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-20T04:38:48Z" + }, + { + "url": "https://github.com/xc-link/gfw.press/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-20T04:38:48Z" + } + ], + "collaborators": [], + "created_at": "2025-01-20T04:38:45Z", + "git_url": "tarball://root/repositories/xc-link/gfw.press.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/git", + "owner": "https://github.com/xc-link", + "name": "git", + "description": "Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/git/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-20T16:18:35Z" + }, + { + "url": "https://github.com/xc-link/git/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-20T16:18:35Z" + } + ], + "collaborators": [], + "created_at": "2025-01-20T16:18:31Z", + "git_url": "tarball://root/repositories/xc-link/git.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DataFlow-Engine", + "owner": "https://github.com/xc-link", + "name": "DataFlow-Engine", + "description": "数据流引擎是一款面向数据集成、数据同步、数据交换、数据共享、任务配置、任务调度的底层数据驱动引擎。数据流引擎采用管执分离、多流层、插件库等体系应对大规模数据任务、数据高频上报、数据高频采集、异构数据兼容的实际数据问题。", + "website": "https://www.risesoft.net/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-22T02:31:50Z" + }, + { + "url": "https://github.com/xc-link/DataFlow-Engine/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-22T02:31:50Z" + } + ], + "collaborators": [], + "created_at": "2025-01-22T02:31:47Z", + "git_url": "tarball://root/repositories/xc-link/DataFlow-Engine.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + } +] \ No newline at end of file diff --git a/repositories_000003.json b/repositories_000003.json new file mode 100644 index 000000000..08816438f --- /dev/null +++ b/repositories_000003.json @@ -0,0 +1,11813 @@ +[ + { + "type": "repository", + "url": "https://github.com/xc-link/22-networklist-org", + "owner": "https://github.com/xc-link", + "name": "22-networklist-org", + "description": ":globe_with_meridians: :electric_plug: The MetaMask browser extension enables browsing Ethereum blockchain enabled websites", + "website": "https://metamask.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/22-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-22T06:04:53Z" + }, + { + "url": "https://github.com/xc-link/22-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-22T06:04:53Z" + } + ], + "collaborators": [], + "created_at": "2025-01-22T06:04:48Z", + "git_url": "tarball://root/repositories/xc-link/22-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SentenceSimilarity", + "owner": "https://github.com/xc-link", + "name": "SentenceSimilarity", + "description": "self complement of Sentence Similarity compute based on cilin, hownet, simhash, wordvector,vsm models,基于同义词词林,知网,指纹,字词向量,向量空间模型的句子相似度计算。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-25T14:35:22Z" + }, + { + "url": "https://github.com/xc-link/SentenceSimilarity/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-25T14:35:22Z" + } + ], + "collaborators": [], + "created_at": "2025-01-25T14:35:19Z", + "git_url": "tarball://root/repositories/xc-link/SentenceSimilarity.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/wallet", + "owner": "https://github.com/xc-link", + "name": "wallet", + "description": "Bitpay Wallet (formerly Copay) is a secure Bitcoin and other crypto currencies wallet platform for both desktop and mobile devices.", + "website": "http://bitpay.com/wallet", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/wallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-26T01:45:20Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-26T01:45:21Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-26T01:45:21Z" + }, + { + "url": "https://github.com/xc-link/wallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-26T01:45:21Z" + } + ], + "collaborators": [], + "created_at": "2025-01-26T01:45:17Z", + "git_url": "tarball://root/repositories/xc-link/wallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/open-gpu-kernel-modules", + "owner": "https://github.com/xc-link", + "name": "open-gpu-kernel-modules", + "description": "NVIDIA Linux open GPU kernel module source", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-30T03:11:27Z" + }, + { + "url": "https://github.com/xc-link/open-gpu-kernel-modules/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-30T03:11:27Z" + } + ], + "collaborators": [], + "created_at": "2025-01-30T03:11:23Z", + "git_url": "tarball://root/repositories/xc-link/open-gpu-kernel-modules.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/track_beidou", + "owner": "https://github.com/xc-link", + "name": "track_beidou", + "description": "追踪北斗卫星位置", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/track_beidou/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-30T14:10:53Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-30T14:10:54Z" + }, + { + "url": "https://github.com/xc-link/track_beidou/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-30T14:10:54Z" + } + ], + "collaborators": [], + "created_at": "2025-01-30T14:10:50Z", + "git_url": "tarball://root/repositories/xc-link/track_beidou.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/bds_loc_info_com_protocol", + "owner": "https://github.com/xc-link", + "name": "bds_loc_info_com_protocol", + "description": "GA/T 1481.6-2018 北斗/全球卫星导航系统公安应用 第6部分:定位信息通信协议及数据格式", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-30T14:19:40Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-30T14:19:40Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-30T14:19:40Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-30T14:19:41Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-30T14:19:41Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-30T14:19:41Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-30T14:19:41Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-30T14:19:41Z" + }, + { + "url": "https://github.com/xc-link/bds_loc_info_com_protocol/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-30T14:19:41Z" + } + ], + "collaborators": [], + "created_at": "2025-01-30T14:19:37Z", + "git_url": "tarball://root/repositories/xc-link/bds_loc_info_com_protocol.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BD3Monitor", + "owner": "https://github.com/xc-link", + "name": "BD3Monitor", + "description": "新一代北斗卫星导航信号监测接收机仿真代码", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BD3Monitor/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-30T15:13:17Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-30T15:13:18Z" + }, + { + "url": "https://github.com/xc-link/BD3Monitor/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-30T15:13:18Z" + } + ], + "collaborators": [], + "created_at": "2025-01-30T15:13:14Z", + "git_url": "tarball://root/repositories/xc-link/BD3Monitor.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/dockerfiles", + "owner": "https://github.com/xc-link", + "name": "dockerfiles", + "description": ":whale: A curated list of delicious docker recipes 🇺🇦🇮🇱 (Let's Fight Against Dictatorship)", + "website": "https://hub.docker.com/u/vimagick/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/dockerfiles/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-01-31T04:18:38Z" + }, + { + "url": "https://github.com/xc-link/dockerfiles/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-01-31T04:18:38Z" + } + ], + "collaborators": [], + "created_at": "2025-01-31T04:18:35Z", + "git_url": "tarball://root/repositories/xc-link/dockerfiles.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/docker-goof", + "owner": "https://github.com/xc-link", + "name": "docker-goof", + "description": "A demo repo showcasing Snyk's Docker offering", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/docker-goof/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T12:20:11Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T12:20:11Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T12:20:11Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T12:20:11Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T12:20:12Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T12:20:12Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T12:20:12Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T12:20:12Z" + }, + { + "url": "https://github.com/xc-link/docker-goof/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T12:20:12Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T12:20:09Z", + "git_url": "tarball://root/repositories/xc-link/docker-goof.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/18-networklist-org", + "owner": "https://github.com/xc-link", + "name": "18-networklist-org", + "description": "Snyk CLI scans and monitors your projects for security vulnerabilities.", + "website": "https://snyk.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/18-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T12:22:55Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T12:22:56Z" + }, + { + "url": "https://github.com/xc-link/18-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T12:22:56Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T12:22:46Z", + "git_url": "tarball://root/repositories/xc-link/18-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/snyk-cicd-integration-examples", + "owner": "https://github.com/xc-link", + "name": "snyk-cicd-integration-examples", + "description": "Examples of integrating the Snyk CLI into a CI/CD system", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T12:25:44Z" + }, + { + "url": "https://github.com/xc-link/snyk-cicd-integration-examples/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T12:25:44Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T12:25:41Z", + "git_url": "tarball://root/repositories/xc-link/snyk-cicd-integration-examples.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/pysnyk", + "owner": "https://github.com/xc-link", + "name": "pysnyk", + "description": "A Python client for the Snyk API.", + "website": "https://snyk.docs.apiary.io/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/pysnyk/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T13:53:25Z" + }, + { + "url": "https://github.com/xc-link/pysnyk/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T13:53:25Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T13:53:20Z", + "git_url": "tarball://root/repositories/xc-link/pysnyk.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/actions", + "owner": "https://github.com/xc-link", + "name": "actions", + "description": "A set of GitHub actions for checking your projects for vulnerabilities", + "website": "https://snyk.co/SnykGH", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/actions/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T13:58:20Z" + }, + { + "url": "https://github.com/xc-link/actions/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T13:58:20Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T13:58:16Z", + "git_url": "tarball://root/repositories/xc-link/actions.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/snyk-chat-goof", + "owner": "https://github.com/xc-link", + "name": "snyk-chat-goof", + "description": null, + "website": null, + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T14:02:40Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T14:02:40Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T14:02:40Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T14:02:40Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T14:02:41Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T14:02:41Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T14:02:41Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T14:02:41Z" + }, + { + "url": "https://github.com/xc-link/snyk-chat-goof/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T14:02:41Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T14:02:37Z", + "git_url": "tarball://root/repositories/xc-link/snyk-chat-goof.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/snyk-to-sarif", + "owner": "https://github.com/xc-link", + "name": "snyk-to-sarif", + "description": "Convert Snyk JSON CLI output to SARIF for use in GitHub Security", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-03T15:03:39Z" + }, + { + "url": "https://github.com/xc-link/snyk-to-sarif/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-03T15:03:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-03T15:03:36Z", + "git_url": "tarball://root/repositories/xc-link/snyk-to-sarif.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/custom", + "owner": "https://github.com/xc-link", + "name": "custom", + "description": null, + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/custom/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-08T04:55:39Z" + }, + { + "url": "https://github.com/xc-link/custom/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-08T04:55:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-08T04:55:35Z", + "git_url": "tarball://root/repositories/xc-link/custom.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ruby-builder", + "owner": "https://github.com/xc-link", + "name": "ruby-builder", + "description": "A repository building Ruby/JRuby/TruffleRuby releases to be used in GitHub Actions", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ruby-builder/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-09T01:36:11Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-09T01:36:11Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-09T01:36:12Z" + }, + { + "url": "https://github.com/xc-link/ruby-builder/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-09T01:36:12Z" + } + ], + "collaborators": [], + "created_at": "2025-02-09T01:36:09Z", + "git_url": "tarball://root/repositories/xc-link/ruby-builder.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ruby-build", + "owner": "https://github.com/xc-link", + "name": "ruby-build", + "description": "A tool to download, compile, and install Ruby on Unix-like systems.", + "website": "https://rbenv.org/man/ruby-build.1", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ruby-build/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-09T02:36:18Z" + }, + { + "url": "https://github.com/xc-link/ruby-build/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-09T02:36:18Z" + } + ], + "collaborators": [], + "created_at": "2025-02-09T02:36:15Z", + "git_url": "tarball://root/repositories/xc-link/ruby-build.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/okx-api-arbitrage", + "owner": "https://github.com/xc-link", + "name": "okx-api-arbitrage", + "description": "nodejs crypto trading 币圈量化,okx-v5-api模板,引流 币安 欧易 binance okx coinbase", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-09T10:27:51Z" + }, + { + "url": "https://github.com/xc-link/okx-api-arbitrage/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-09T10:27:51Z" + } + ], + "collaborators": [], + "created_at": "2025-02-09T10:27:48Z", + "git_url": "tarball://root/repositories/xc-link/okx-api-arbitrage.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ethereum-org-website", + "owner": "https://github.com/xc-link", + "name": "ethereum-org-website", + "description": "Ethereum.org is a primary online resource for the Ethereum community.", + "website": "https://ethereum.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T12:29:08Z" + }, + { + "url": "https://github.com/xc-link/ethereum-org-website/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T12:29:08Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T12:29:03Z", + "git_url": "tarball://root/repositories/xc-link/ethereum-org-website.git", + "default_branch": "dev", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/23-networklist-org", + "owner": "https://github.com/xc-link", + "name": "23-networklist-org", + "description": "Bitcoin Core integration/staging tree", + "website": "https://bitcoincore.org/en/download", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/23-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T12:51:32Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T12:51:33Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T12:51:33Z" + }, + { + "url": "https://github.com/xc-link/23-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T12:51:33Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T12:51:29Z", + "git_url": "tarball://root/repositories/xc-link/23-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tronj", + "owner": "https://github.com/xc-link", + "name": "tronj", + "description": "Java sdk of tron", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tronj/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T13:43:11Z" + }, + { + "url": "https://github.com/xc-link/tronj/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T13:43:12Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T13:43:08Z", + "git_url": "tarball://root/repositories/xc-link/tronj.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/java-tron", + "owner": "https://github.com/xc-link", + "name": "java-tron", + "description": "Java implementation of the Tron whitepaper", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/java-tron/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T13:44:38Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T13:44:38Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T13:44:38Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T13:44:38Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T13:44:39Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T13:44:38Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T13:44:39Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T13:44:39Z" + }, + { + "url": "https://github.com/xc-link/java-tron/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T13:44:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T13:44:35Z", + "git_url": "tarball://root/repositories/xc-link/java-tron.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/16-networklist-org", + "owner": "https://github.com/xc-link", + "name": "16-networklist-org", + "description": "Wallet CLI", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/16-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T13:46:38Z" + }, + { + "url": "https://github.com/xc-link/16-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T13:46:38Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T13:46:35Z", + "git_url": "tarball://root/repositories/xc-link/16-networklist-org.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tron-docker", + "owner": "https://github.com/xc-link", + "name": "tron-docker", + "description": "Docker automation for TRON nodes", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tron-docker/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T13:48:31Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T13:48:31Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T13:48:31Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T13:48:31Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T13:48:32Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T13:48:32Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T13:48:32Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T13:48:32Z" + }, + { + "url": "https://github.com/xc-link/tron-docker/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T13:48:32Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T13:48:29Z", + "git_url": "tarball://root/repositories/xc-link/tron-docker.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tron-box", + "owner": "https://github.com/xc-link", + "name": "tron-box", + "description": "TronBox - Simple development framework for tronweb", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tron-box/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T13:51:17Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T13:51:17Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T13:51:17Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T13:51:17Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T13:51:18Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T13:51:17Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T13:51:18Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T13:51:18Z" + }, + { + "url": "https://github.com/xc-link/tron-box/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T13:51:18Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T13:51:06Z", + "git_url": "tarball://root/repositories/xc-link/tron-box.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tronbox", + "owner": "https://github.com/xc-link", + "name": "tronbox", + "description": "TronBox - Simple development framework for tronweb", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tronbox/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T15:04:52Z" + }, + { + "url": "https://github.com/xc-link/tronbox/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T15:04:52Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T15:04:49Z", + "git_url": "tarball://root/repositories/xc-link/tronbox.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tronweb", + "owner": "https://github.com/xc-link", + "name": "tronweb", + "description": "Javascript API Library for interacting with the TRON Network ", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tronweb/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-10T15:06:01Z" + }, + { + "url": "https://github.com/xc-link/tronweb/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-10T15:06:01Z" + } + ], + "collaborators": [], + "created_at": "2025-02-10T15:05:58Z", + "git_url": "tarball://root/repositories/xc-link/tronweb.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ToolsFx", + "owner": "https://github.com/xc-link", + "name": "ToolsFx", + "description": "跨平台密码学工具箱。包含编解码,编码转换,加解密, 哈希,MAC,签名,大数运算,压缩,二维码功能,CTF等功能。", + "website": "https://github.com/Leon406/ToolsFx/wiki", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ToolsFx/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T02:37:53Z" + }, + { + "url": "https://github.com/xc-link/ToolsFx/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T02:37:53Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T02:37:51Z", + "git_url": "tarball://root/repositories/xc-link/ToolsFx.git", + "default_branch": "dev", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/kache", + "owner": "https://github.com/xc-link", + "name": "kache", + "description": "iOS缓存控件,支持哈希,队列和时间池", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/kache/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T02:39:38Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T02:39:38Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T02:39:38Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T02:39:38Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T02:39:39Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T02:39:38Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T02:39:39Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T02:39:39Z" + }, + { + "url": "https://github.com/xc-link/kache/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T02:39:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T02:39:36Z", + "git_url": "tarball://root/repositories/xc-link/kache.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/python-encrypt", + "owner": "https://github.com/xc-link", + "name": "python-encrypt", + "description": "md5,sha256哈希。aes,des,rsa,ecc加密算法", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/python-encrypt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T02:41:07Z" + }, + { + "url": "https://github.com/xc-link/python-encrypt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T02:41:07Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T02:41:04Z", + "git_url": "tarball://root/repositories/xc-link/python-encrypt.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/HashCalculator", + "owner": "https://github.com/xc-link", + "name": "HashCalculator", + "description": "哈希值计算工具,批量计算/批量校验/查找重复文件/改变哈希值等,支持集成到系统右键菜单", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/HashCalculator/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T02:42:39Z" + }, + { + "url": "https://github.com/xc-link/HashCalculator/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T02:42:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T02:42:36Z", + "git_url": "tarball://root/repositories/xc-link/HashCalculator.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/LFScrollNumberDemo", + "owner": "https://github.com/xc-link", + "name": "LFScrollNumberDemo", + "description": "老虎机滚动数字显示", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T04:42:11Z" + }, + { + "url": "https://github.com/xc-link/LFScrollNumberDemo/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T04:42:11Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T04:42:08Z", + "git_url": "tarball://root/repositories/xc-link/LFScrollNumberDemo.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/github", + "owner": "https://github.com/xc-link", + "name": "github", + "description": "A higher-level wrapper around the Github API. Intended for the browser.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/github/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T11:56:17Z" + }, + { + "url": "https://github.com/xc-link/github/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T11:56:17Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T11:56:14Z", + "git_url": "tarball://root/repositories/xc-link/github.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Flash-USDT", + "owner": "https://github.com/xc-link", + "name": "Flash-USDT", + "description": "🔐Fake USDT Sender / Flash USDT - Efficient and user-friendly software for rapid Tether (USDT) transactions. ", + "website": "https://scripters.shop/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Flash-USDT/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T14:42:16Z" + }, + { + "url": "https://github.com/xc-link/Flash-USDT/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T14:42:16Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T14:42:13Z", + "git_url": "tarball://root/repositories/xc-link/Flash-USDT.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/flash", + "owner": "https://github.com/xc-link", + "name": "flash", + "description": "Command line script to flash SD card images of any kind", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/flash/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T14:45:01Z" + }, + { + "url": "https://github.com/xc-link/flash/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T14:45:01Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T14:44:57Z", + "git_url": "tarball://root/repositories/xc-link/flash.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/4dface", + "owner": "https://github.com/xc-link", + "name": "4dface", + "description": "Real-time 3D face tracking and reconstruction from 2D video", + "website": "https://www.4dface.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/4dface/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T14:47:37Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T14:47:37Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T14:47:37Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T14:47:38Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T14:47:38Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T14:47:38Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T14:47:38Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T14:47:38Z" + }, + { + "url": "https://github.com/xc-link/4dface/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T14:47:38Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T14:47:32Z", + "git_url": "tarball://root/repositories/xc-link/4dface.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/FAIR-Play", + "owner": "https://github.com/xc-link", + "name": "FAIR-Play", + "description": "2.5D visual sound dataset", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/FAIR-Play/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T14:50:33Z" + }, + { + "url": "https://github.com/xc-link/FAIR-Play/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T14:50:33Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T14:50:29Z", + "git_url": "tarball://root/repositories/xc-link/FAIR-Play.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Sheas-Cealer", + "owner": "https://github.com/xc-link", + "name": "Sheas-Cealer", + "description": "Just Ceal It (可用于无代理合法抵御网络监听和开展网络研究)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T14:52:50Z" + }, + { + "url": "https://github.com/xc-link/Sheas-Cealer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T14:52:50Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T14:52:46Z", + "git_url": "tarball://root/repositories/xc-link/Sheas-Cealer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/waf", + "owner": "https://github.com/xc-link", + "name": "waf", + "description": ":vertical_traffic_light:Web Application Firewall or API Gateway(应用防火墙/API网关)", + "website": "https://github.com/chengdedeng/waf", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/waf/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:10:55Z" + }, + { + "url": "https://github.com/xc-link/waf/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:10:55Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:10:52Z", + "git_url": "tarball://root/repositories/xc-link/waf.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SMx", + "owner": "https://github.com/xc-link", + "name": "SMx", + "description": "国家商用加密算法 SMx(SM2,SM3,SM4)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SMx/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:16:08Z" + }, + { + "url": "https://github.com/xc-link/SMx/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:16:08Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:16:04Z", + "git_url": "tarball://root/repositories/xc-link/SMx.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BlockRDPBrute", + "owner": "https://github.com/xc-link", + "name": "BlockRDPBrute", + "description": "[HIPS]RDP(3389)爆破防护", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:20:34Z" + }, + { + "url": "https://github.com/xc-link/BlockRDPBrute/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:20:34Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:20:19Z", + "git_url": "tarball://root/repositories/xc-link/BlockRDPBrute.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ssh_guard", + "owner": "https://github.com/xc-link", + "name": "ssh_guard", + "description": "ssh 防爆破,自动将 ip 加入黑名单", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ssh_guard/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:22:38Z" + }, + { + "url": "https://github.com/xc-link/ssh_guard/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:22:38Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:22:35Z", + "git_url": "tarball://root/repositories/xc-link/ssh_guard.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/safe_duck", + "owner": "https://github.com/xc-link", + "name": "safe_duck", + "description": "一款linux下的安全产品目的是满足个人安全需求有SSH爆破防护和SYN攻击扫描防护功能,基于netfilter,", + "website": "https://key08.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/safe_duck/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:24:16Z" + }, + { + "url": "https://github.com/xc-link/safe_duck/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:24:16Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:24:12Z", + "git_url": "tarball://root/repositories/xc-link/safe_duck.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/violate_blastIP", + "owner": "https://github.com/xc-link", + "name": "violate_blastIP", + "description": "防SSH爆破自动封禁IP 脚本", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/violate_blastIP/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:25:35Z" + }, + { + "url": "https://github.com/xc-link/violate_blastIP/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:25:35Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:25:30Z", + "git_url": "tarball://root/repositories/xc-link/violate_blastIP.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/A-Lightweight-Firewall", + "owner": "https://github.com/xc-link", + "name": "A-Lightweight-Firewall", + "description": "基于 Linux 、 Netfilter 框架的轻量级状态检测防火墙,支持对数据包的状态检测和过滤,支持基于 IP 地址、端口、协议五元组的访问控制,支持基于 MAC 地址的访问控制,支持基于用户自定义策略的访问控制,支持封禁 PING 、 HTTP/HTTPS 等功能,支持设置和修改防火墙启用时间,支持查看和修改防火墙过滤规则,支持查看和记录防火墙日志文件。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:27:12Z" + }, + { + "url": "https://github.com/xc-link/A-Lightweight-Firewall/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:27:13Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:27:09Z", + "git_url": "tarball://root/repositories/xc-link/A-Lightweight-Firewall.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TrafficLimit", + "owner": "https://github.com/xc-link", + "name": "TrafficLimit", + "description": "通过iptables对单个端口的TCP+UDP流量进行自动封禁/解除封禁操作", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TrafficLimit/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:37:27Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:37:27Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:37:27Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:37:28Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:37:28Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:37:28Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:37:28Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:37:28Z" + }, + { + "url": "https://github.com/xc-link/TrafficLimit/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:37:28Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:37:24Z", + "git_url": "tarball://root/repositories/xc-link/TrafficLimit.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/plugin-rtsp", + "owner": "https://github.com/xc-link", + "name": "plugin-rtsp", + "description": "rtsp协议实现,接受RTSP推流以及提供拉流转发功能", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T15:39:15Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T15:39:16Z" + }, + { + "url": "https://github.com/xc-link/plugin-rtsp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T15:39:16Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T15:39:13Z", + "git_url": "tarball://root/repositories/xc-link/plugin-rtsp.git", + "default_branch": "v4", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/yuze", + "owner": "https://github.com/xc-link", + "name": "yuze", + "description": "A socksv5 proxy tool Written by CLang. 一款纯C实现的基于socks5协议的轻量内网穿透工具,支持ew的全部数据转发方式,支持跨平台使用", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/yuze/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T16:26:35Z" + }, + { + "url": "https://github.com/xc-link/yuze/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T16:26:35Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T16:26:31Z", + "git_url": "tarball://root/repositories/xc-link/yuze.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/hppt", + "owner": "https://github.com/xc-link", + "name": "hppt", + "description": "一款可通过任意协议转发tcp端口的工具 A tool to forward tcp ports over any protocol", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/hppt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T16:29:14Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T16:29:15Z" + }, + { + "url": "https://github.com/xc-link/hppt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T16:29:15Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T16:29:10Z", + "git_url": "tarball://root/repositories/xc-link/hppt.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CCKiller", + "owner": "https://github.com/xc-link", + "name": "CCKiller", + "description": "Linux轻量级CC攻击防御工具脚本", + "website": "https://zhang.ge/5066.html", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CCKiller/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T16:35:19Z" + }, + { + "url": "https://github.com/xc-link/CCKiller/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T16:35:19Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T16:35:16Z", + "git_url": "tarball://root/repositories/xc-link/CCKiller.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/nod32-update-mirror", + "owner": "https://github.com/xc-link", + "name": "nod32-update-mirror", + "description": ":large_orange_diamond: [WIP] ESET Nod32 Updates Mirror", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-12T19:12:00Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-12T19:12:00Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-12T19:12:01Z" + }, + { + "url": "https://github.com/xc-link/nod32-update-mirror/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-12T19:12:01Z" + } + ], + "collaborators": [], + "created_at": "2025-02-12T19:11:57Z", + "git_url": "tarball://root/repositories/xc-link/nod32-update-mirror.git", + "default_branch": "bash-version", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Erebus", + "owner": "https://github.com/xc-link", + "name": "Erebus", + "description": "CobaltStrike后渗透测试插件", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Erebus/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T03:18:11Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T03:18:11Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T03:18:11Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T03:18:11Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T03:18:12Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T03:18:11Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T03:18:12Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T03:18:12Z" + }, + { + "url": "https://github.com/xc-link/Erebus/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T03:18:12Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T03:18:07Z", + "git_url": "tarball://root/repositories/xc-link/Erebus.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ARP-Attack", + "owner": "https://github.com/xc-link", + "name": "ARP-Attack", + "description": "ARP断网攻击", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ARP-Attack/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T03:24:25Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T03:24:25Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T03:24:25Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T03:24:25Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T03:24:26Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T03:24:25Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T03:24:26Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T03:24:26Z" + }, + { + "url": "https://github.com/xc-link/ARP-Attack/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T03:24:26Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T03:24:12Z", + "git_url": "tarball://root/repositories/xc-link/ARP-Attack.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ksubdomain", + "owner": "https://github.com/xc-link", + "name": "ksubdomain", + "description": "无状态子域名爆破工具", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ksubdomain/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T03:44:20Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T03:44:22Z" + }, + { + "url": "https://github.com/xc-link/ksubdomain/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T03:44:22Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T03:44:17Z", + "git_url": "tarball://root/repositories/xc-link/ksubdomain.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/K8CScan", + "owner": "https://github.com/xc-link", + "name": "K8CScan", + "description": "K8Ladon大型内网渗透自定义插件化扫描神器,包含信息收集、网络资产、漏洞扫描、密码爆破、漏洞利用,程序采用多线程批量扫描大型内网多个IP段C段主机,目前插件包含: C段旁注扫描、子域名扫描、Ftp密码爆破、Mysql密码爆破、Oracle密码爆破、MSSQL密码爆破、Windows/Linux系统密码爆破、存活主机扫描、端口扫描、Web信息探测、操作系统版本探测、Cisco思科设备扫描等,支持调用任意外部程序或脚本,支持Cobalt Strike联动", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/K8CScan/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T04:53:20Z" + }, + { + "url": "https://github.com/xc-link/K8CScan/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T04:53:20Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T04:53:18Z", + "git_url": "tarball://root/repositories/xc-link/K8CScan.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/InjectJDBC", + "owner": "https://github.com/xc-link", + "name": "InjectJDBC", + "description": "注入JVM进程 动态获取目标进程连接的数据库", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/InjectJDBC/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T05:19:34Z" + }, + { + "url": "https://github.com/xc-link/InjectJDBC/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T05:19:34Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T05:19:32Z", + "git_url": "tarball://root/repositories/xc-link/InjectJDBC.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SecGPT", + "owner": "https://github.com/xc-link", + "name": "SecGPT", + "description": "SecGPT网络安全大模型", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SecGPT/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-13T13:09:44Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-13T13:09:44Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-13T13:09:45Z" + }, + { + "url": "https://github.com/xc-link/SecGPT/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-13T13:09:45Z" + } + ], + "collaborators": [], + "created_at": "2025-02-13T13:09:41Z", + "git_url": "tarball://root/repositories/xc-link/SecGPT.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/amm-arbitrageur", + "owner": "https://github.com/xc-link", + "name": "amm-arbitrageur", + "description": "An arbitrage bot between Uniswap AMMs", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-14T02:10:59Z" + }, + { + "url": "https://github.com/xc-link/amm-arbitrageur/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-14T02:10:59Z" + } + ], + "collaborators": [], + "created_at": "2025-02-14T02:10:56Z", + "git_url": "tarball://root/repositories/xc-link/amm-arbitrageur.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/v2-core", + "owner": "https://github.com/xc-link", + "name": "v2-core", + "description": "🦄 🦄 Core smart contracts of Uniswap V2", + "website": "https://uniswap.org/docs", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/v2-core/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-14T02:13:38Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-14T02:13:38Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-14T02:13:38Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-14T02:13:38Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-14T02:13:39Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-14T02:13:39Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-14T02:13:39Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-14T02:13:39Z" + }, + { + "url": "https://github.com/xc-link/v2-core/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-14T02:13:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-14T02:13:36Z", + "git_url": "tarball://root/repositories/xc-link/v2-core.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/v3-core", + "owner": "https://github.com/xc-link", + "name": "v3-core", + "description": "🦄 🦄 🦄 Core smart contracts of Uniswap v3", + "website": "https://uniswap.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/v3-core/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-14T02:14:51Z" + }, + { + "url": "https://github.com/xc-link/v3-core/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-14T02:14:51Z" + } + ], + "collaborators": [], + "created_at": "2025-02-14T02:14:48Z", + "git_url": "tarball://root/repositories/xc-link/v3-core.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/runner-images", + "owner": "https://github.com/xc-link", + "name": "runner-images", + "description": "GitHub Actions runner images", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/runner-images/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-14T10:31:38Z" + }, + { + "url": "https://github.com/xc-link/runner-images/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-14T10:31:38Z" + } + ], + "collaborators": [], + "created_at": "2025-02-14T10:31:34Z", + "git_url": "tarball://root/repositories/xc-link/runner-images.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/usdtwallet", + "owner": "https://github.com/xc-link", + "name": "usdtwallet", + "description": "泰达币转账", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/usdtwallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-15T18:07:54Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-15T18:07:54Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-15T18:07:54Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-15T18:07:55Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-15T18:07:55Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-15T18:07:55Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-15T18:07:55Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-15T18:07:55Z" + }, + { + "url": "https://github.com/xc-link/usdtwallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-15T18:07:55Z" + } + ], + "collaborators": [], + "created_at": "2025-02-15T18:07:52Z", + "git_url": "tarball://root/repositories/xc-link/usdtwallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/sniffer", + "owner": "https://github.com/xc-link", + "name": "sniffer", + "description": "一个跨平台的网络数据嗅探&抓包程序,基于Qt 4.x 以及 libpcap 库(Linux下)和 Winpcap库(Windows 下)。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/sniffer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-15T18:11:54Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-15T18:11:54Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-15T18:11:55Z" + }, + { + "url": "https://github.com/xc-link/sniffer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-15T18:11:55Z" + } + ], + "collaborators": [], + "created_at": "2025-02-15T18:11:52Z", + "git_url": "tarball://root/repositories/xc-link/sniffer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/xiaxiang-killer", + "owner": "https://github.com/xc-link", + "name": "xiaxiang-killer", + "description": "提权神器,低权限强k安全软件:安全狗,360全家套餐,护卫神,云锁,D盾,卡巴斯基,金山,电脑管家,天网防火墙。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T13:09:18Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T13:09:19Z" + }, + { + "url": "https://github.com/xc-link/xiaxiang-killer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T13:09:19Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T13:09:12Z", + "git_url": "tarball://root/repositories/xc-link/xiaxiang-killer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/bypassWAF", + "owner": "https://github.com/xc-link", + "name": "bypassWAF", + "description": "bypassD盾、安全狗、云锁", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/bypassWAF/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T13:16:14Z" + }, + { + "url": "https://github.com/xc-link/bypassWAF/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T13:16:14Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T13:16:07Z", + "git_url": "tarball://root/repositories/xc-link/bypassWAF.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/aliCloudfw", + "owner": "https://github.com/xc-link", + "name": "aliCloudfw", + "description": "阿里云云防火墙接口", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/aliCloudfw/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T13:20:38Z" + }, + { + "url": "https://github.com/xc-link/aliCloudfw/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T13:20:39Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T13:20:34Z", + "git_url": "tarball://root/repositories/xc-link/aliCloudfw.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/qcip", + "owner": "https://github.com/xc-link", + "name": "qcip", + "description": "[Archive] 腾讯云/阿里云 服务器/轻量应用服务器防火墙来源限制自动设置脚本", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/qcip/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T13:22:58Z" + }, + { + "url": "https://github.com/xc-link/qcip/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T13:22:58Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T13:22:52Z", + "git_url": "tarball://root/repositories/xc-link/qcip.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security", + "owner": "https://github.com/xc-link", + "name": "prevent_iphone_hacked_ios_security", + "description": "防止iPhone被黑:iOS安全", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:03:00Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:03:00Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:03:00Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:03:00Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:03:01Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:03:00Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:03:01Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:03:01Z" + }, + { + "url": "https://github.com/xc-link/prevent_iphone_hacked_ios_security/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:03:01Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:02:58Z", + "git_url": "tarball://root/repositories/xc-link/prevent_iphone_hacked_ios_security.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GPUImage", + "owner": "https://github.com/xc-link", + "name": "GPUImage", + "description": "An open source iOS framework for GPU-based image and video processing", + "website": "http://www.sunsetlakesoftware.com/2012/02/12/introducing-gpuimage-framework", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GPUImage/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:05:31Z" + }, + { + "url": "https://github.com/xc-link/GPUImage/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:05:31Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:05:29Z", + "git_url": "tarball://root/repositories/xc-link/GPUImage.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GPUImage2", + "owner": "https://github.com/xc-link", + "name": "GPUImage2", + "description": "GPUImage 2 is a BSD-licensed Swift framework for GPU-accelerated video and image processing.", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GPUImage2/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:07:26Z" + }, + { + "url": "https://github.com/xc-link/GPUImage2/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:07:26Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:07:24Z", + "git_url": "tarball://root/repositories/xc-link/GPUImage2.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GPUImage3", + "owner": "https://github.com/xc-link", + "name": "GPUImage3", + "description": "GPUImage 3 is a BSD-licensed Swift framework for GPU-accelerated video and image processing using Metal.", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GPUImage3/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:09:11Z" + }, + { + "url": "https://github.com/xc-link/GPUImage3/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:09:11Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:09:08Z", + "git_url": "tarball://root/repositories/xc-link/GPUImage3.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gpu", + "owner": "https://github.com/xc-link", + "name": "gpu", + "description": "Dissecting the M1's GPU for 3D acceleration", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gpu/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:11:21Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:11:21Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:11:22Z" + }, + { + "url": "https://github.com/xc-link/gpu/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:11:22Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:11:18Z", + "git_url": "tarball://root/repositories/xc-link/gpu.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gpuweb", + "owner": "https://github.com/xc-link", + "name": "gpuweb", + "description": "Where the GPU for the Web work happens!", + "website": "https://webgpu.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gpuweb/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:13:00Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:13:01Z" + }, + { + "url": "https://github.com/xc-link/gpuweb/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:13:01Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:12:58Z", + "git_url": "tarball://root/repositories/xc-link/gpuweb.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DIGITS", + "owner": "https://github.com/xc-link", + "name": "DIGITS", + "description": "Deep Learning GPU Training System", + "website": "https://developer.nvidia.com/digits", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DIGITS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:15:41Z" + }, + { + "url": "https://github.com/xc-link/DIGITS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:15:41Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:15:38Z", + "git_url": "tarball://root/repositories/xc-link/DIGITS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gpu-operator", + "owner": "https://github.com/xc-link", + "name": "gpu-operator", + "description": "NVIDIA GPU Operator creates, configures, and manages GPUs in Kubernetes", + "website": "https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/index.html", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gpu-operator/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:17:11Z" + }, + { + "url": "https://github.com/xc-link/gpu-operator/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:17:11Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:17:09Z", + "git_url": "tarball://root/repositories/xc-link/gpu-operator.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/gpu.cpp", + "owner": "https://github.com/xc-link", + "name": "gpu.cpp", + "description": "A lightweight library for portable low-level GPU computation using WebGPU. ", + "website": "https://gpucpp.answer.ai", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gpu.cpp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-16T14:28:21Z" + }, + { + "url": "https://github.com/xc-link/gpu.cpp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-16T14:28:21Z" + } + ], + "collaborators": [], + "created_at": "2025-02-16T14:28:18Z", + "git_url": "tarball://root/repositories/xc-link/gpu.cpp.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ids", + "owner": "https://github.com/xc-link", + "name": "ids", + "description": "高效的分布式id生成器,每个客户端实例tps可达到100万,服务端毫无压力。即使服务端宕机了,id生成依然可用。支持多数据中心,支持id加密。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ids/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-18T05:43:56Z" + }, + { + "url": "https://github.com/xc-link/ids/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-18T05:43:56Z" + } + ], + "collaborators": [], + "created_at": "2025-02-18T05:43:53Z", + "git_url": "tarball://root/repositories/xc-link/ids.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/middleman", + "owner": "https://github.com/xc-link", + "name": "middleman", + "description": "将服务器端的TCP端口数据包加密后映射到本地客户端", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/middleman/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-18T05:51:23Z" + }, + { + "url": "https://github.com/xc-link/middleman/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-18T05:51:23Z" + } + ], + "collaborators": [], + "created_at": "2025-02-18T05:51:19Z", + "git_url": "tarball://root/repositories/xc-link/middleman.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Blockchair.Support", + "owner": "https://github.com/xc-link", + "name": "Blockchair.Support", + "description": "Public repository for issues and feature requests. Submit your favorite bug!", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-18T08:27:18Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-18T08:27:19Z" + }, + { + "url": "https://github.com/xc-link/Blockchair.Support/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-18T08:27:19Z" + } + ], + "collaborators": [], + "created_at": "2025-02-18T08:27:15Z", + "git_url": "tarball://root/repositories/xc-link/Blockchair.Support.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/51bitquant", + "owner": "https://github.com/xc-link", + "name": "51bitquant", + "description": "51bitquant Python数字货币量化交易视频 CCXT框架 爬取交易所数据 比特币量化交易 交易机器人51bitquant tradingbot cryptocurrency quantitative trading btc trading", + "website": "https://space.bilibili.com/401686908/video", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/51bitquant/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-22T09:10:14Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-22T09:10:15Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-22T09:10:15Z" + }, + { + "url": "https://github.com/xc-link/51bitquant/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-22T09:10:15Z" + } + ], + "collaborators": [], + "created_at": "2025-02-22T09:10:11Z", + "git_url": "tarball://root/repositories/xc-link/51bitquant.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview", + "owner": "https://github.com/xc-link", + "name": "crypto_trading_service_for_tradingview", + "description": "TradingView与OKEx交易所对接的自动化交易软件", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-22T09:20:15Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-22T09:20:16Z" + }, + { + "url": "https://github.com/xc-link/crypto_trading_service_for_tradingview/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-22T09:20:16Z" + } + ], + "collaborators": [], + "created_at": "2025-02-22T09:20:12Z", + "git_url": "tarball://root/repositories/xc-link/crypto_trading_service_for_tradingview.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/evm", + "owner": "https://github.com/xc-link", + "name": "evm", + "description": "超轻量级物联网虚拟机", + "website": "https://scriptiot.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/evm/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-23T06:52:35Z" + }, + { + "url": "https://github.com/xc-link/evm/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-23T06:52:35Z" + } + ], + "collaborators": [], + "created_at": "2025-02-23T06:52:32Z", + "git_url": "tarball://root/repositories/xc-link/evm.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/LavaXVM", + "owner": "https://github.com/xc-link", + "name": "LavaXVM", + "description": "LavaX虚拟机", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/LavaXVM/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-23T06:56:27Z" + }, + { + "url": "https://github.com/xc-link/LavaXVM/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-23T06:56:27Z" + } + ], + "collaborators": [], + "created_at": "2025-02-23T06:56:25Z", + "git_url": "tarball://root/repositories/xc-link/LavaXVM.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/btcpayserver", + "owner": "https://github.com/xc-link", + "name": "btcpayserver", + "description": "Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor. ", + "website": "https://btcpayserver.org/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/btcpayserver/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-02-25T13:25:41Z" + }, + { + "url": "https://github.com/xc-link/btcpayserver/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-02-25T13:25:41Z" + } + ], + "collaborators": [], + "created_at": "2025-02-25T13:25:35Z", + "git_url": "tarball://root/repositories/xc-link/btcpayserver.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Security-Baseline", + "owner": "https://github.com/xc-link", + "name": "Security-Baseline", + "description": "Linux/Windows 安全加固脚本", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Security-Baseline/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:07:49Z" + }, + { + "url": "https://github.com/xc-link/Security-Baseline/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:07:49Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:07:47Z", + "git_url": "tarball://root/repositories/xc-link/Security-Baseline.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Packer", + "owner": "https://github.com/xc-link", + "name": "Packer", + "description": "PE加壳程序", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Packer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:16:37Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:16:37Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:16:37Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:16:37Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:16:38Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:16:38Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:16:38Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:16:38Z" + }, + { + "url": "https://github.com/xc-link/Packer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:16:38Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:16:35Z", + "git_url": "tarball://root/repositories/xc-link/Packer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/MatryoshkaDollTool", + "owner": "https://github.com/xc-link", + "name": "MatryoshkaDollTool", + "description": "MatryoshkaDollTool-程序加壳/捆绑工具", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:18:22Z" + }, + { + "url": "https://github.com/xc-link/MatryoshkaDollTool/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:18:22Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:18:20Z", + "git_url": "tarball://root/repositories/xc-link/MatryoshkaDollTool.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GuiShou_Pack", + "owner": "https://github.com/xc-link", + "name": "GuiShou_Pack", + "description": "使用C++控制台实现的加壳器", + "website": "https://blog.csdn.net/qq_38474570", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:21:27Z" + }, + { + "url": "https://github.com/xc-link/GuiShou_Pack/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:21:27Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:21:24Z", + "git_url": "tarball://root/repositories/xc-link/GuiShou_Pack.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DecryptApp", + "owner": "https://github.com/xc-link", + "name": "DecryptApp", + "description": "动态砸壳,主动加载所有动态库(framework,dylib)", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DecryptApp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:24:22Z" + }, + { + "url": "https://github.com/xc-link/DecryptApp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:24:22Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:24:20Z", + "git_url": "tarball://root/repositories/xc-link/DecryptApp.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/upx-SM4", + "owner": "https://github.com/xc-link", + "name": "upx-SM4", + "description": "基于upx的SM4加密壳", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/upx-SM4/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:26:25Z" + }, + { + "url": "https://github.com/xc-link/upx-SM4/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:26:25Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:26:22Z", + "git_url": "tarball://root/repositories/xc-link/upx-SM4.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/systracer", + "owner": "https://github.com/xc-link", + "name": "systracer", + "description": "SysTracer: Linux 系统活动跟踪器", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/systracer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:30:19Z" + }, + { + "url": "https://github.com/xc-link/systracer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:30:19Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:30:16Z", + "git_url": "tarball://root/repositories/xc-link/systracer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/YBTaskScheduler", + "owner": "https://github.com/xc-link", + "name": "YBTaskScheduler", + "description": "iOS 任务调度器,为 CPU 和内存减负(用于性能优化)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:32:24Z" + }, + { + "url": "https://github.com/xc-link/YBTaskScheduler/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:32:24Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:32:22Z", + "git_url": "tarball://root/repositories/xc-link/YBTaskScheduler.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/rwProcMem33", + "owner": "https://github.com/xc-link", + "name": "rwProcMem33", + "description": "Linux ARM64内核硬件进程内存读写驱动、硬件断点调试驱动。硬件级读写Linux进程内存、硬件级下断点。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/rwProcMem33/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-01T07:36:38Z" + }, + { + "url": "https://github.com/xc-link/rwProcMem33/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-01T07:36:38Z" + } + ], + "collaborators": [], + "created_at": "2025-03-01T07:36:35Z", + "git_url": "tarball://root/repositories/xc-link/rwProcMem33.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/AuthOTP", + "owner": "https://github.com/xc-link", + "name": "AuthOTP", + "description": "golang实现google authencatior服务器RestAPI(密钥生成、OTP生成、OTP认证 )", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/AuthOTP/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-02T05:43:55Z" + }, + { + "url": "https://github.com/xc-link/AuthOTP/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-02T05:43:55Z" + } + ], + "collaborators": [], + "created_at": "2025-03-02T05:43:52Z", + "git_url": "tarball://root/repositories/xc-link/AuthOTP.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt", + "owner": "https://github.com/xc-link", + "name": "spring-cloud-security-oauth2-jwt", + "description": "使用spring-cloud-security-oauth2来实现oauth server和resource server,oauth Server和resource Server分开,oauth Server和resource Server使用了jwt的方式进行了实现。认证服务器生成jwt格式的token,并不对其进行持久化,然后资源服务器使用密钥进行校验token。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-02T05:45:34Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-02T05:45:34Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-02T05:45:34Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-02T05:45:34Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-02T05:45:35Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-02T05:45:34Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-02T05:45:35Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-02T05:45:35Z" + }, + { + "url": "https://github.com/xc-link/spring-cloud-security-oauth2-jwt/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-02T05:45:35Z" + } + ], + "collaborators": [], + "created_at": "2025-03-02T05:45:32Z", + "git_url": "tarball://root/repositories/xc-link/spring-cloud-security-oauth2-jwt.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/googleAuthenticator", + "owner": "https://github.com/xc-link", + "name": "googleAuthenticator", + "description": "googleAuthenticator 是一个简单易用的 Go 包,用于生成 Google 身份验证器(2FA)所需的密钥和代码。它支持生成随机密钥、计算一次性密码(TOTP),并能生成对应的二维码以便于扫描。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-02T06:55:38Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-02T06:55:39Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-02T06:55:39Z" + }, + { + "url": "https://github.com/xc-link/googleAuthenticator/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-02T06:55:39Z" + } + ], + "collaborators": [], + "created_at": "2025-03-02T06:55:36Z", + "git_url": "tarball://root/repositories/xc-link/googleAuthenticator.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/mnemonic-sdk", + "owner": "https://github.com/xc-link", + "name": "mnemonic-sdk", + "description": "Mnemonic bip39 bip32 bip44 生成助记词 私钥", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-05T11:33:32Z" + }, + { + "url": "https://github.com/xc-link/mnemonic-sdk/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-05T11:33:32Z" + } + ], + "collaborators": [], + "created_at": "2025-03-05T11:33:30Z", + "git_url": "tarball://root/repositories/xc-link/mnemonic-sdk.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian", + "owner": "https://github.com/xc-link", + "name": "Blockchain_Army_Knife-wallet-cracker-with-multichian", + "description": "A powerful wallet cracker/stealer with multichain|privatekey stealer|mnemonic stealer|Потужний зломщик гаманців з мультичай|区块链钱包碰撞工具支持多链|зіткнення гаманця|мнемонічна колізія|私钥碰撞|助记词碰撞|钱包破解|钱包碰撞|钱包找回|助记词找回", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-05T11:36:29Z" + }, + { + "url": "https://github.com/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-05T11:36:29Z" + } + ], + "collaborators": [], + "created_at": "2025-03-05T11:36:27Z", + "git_url": "tarball://root/repositories/xc-link/Blockchain_Army_Knife-wallet-cracker-with-multichian.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/blockchain", + "owner": "https://github.com/xc-link", + "name": "blockchain", + "description": "区块链钱包相关,支持生成助记词、私钥、公钥、地址等🧸", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/blockchain/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-08T04:13:11Z" + }, + { + "url": "https://github.com/xc-link/blockchain/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-08T04:13:11Z" + } + ], + "collaborators": [], + "created_at": "2025-03-08T04:13:08Z", + "git_url": "tarball://root/repositories/xc-link/blockchain.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + } +] \ No newline at end of file diff --git a/repositories_000004.json b/repositories_000004.json new file mode 100644 index 000000000..02436516a --- /dev/null +++ b/repositories_000004.json @@ -0,0 +1,11835 @@ +[ + { + "type": "repository", + "url": "https://github.com/xc-link/gradle", + "owner": "https://github.com/xc-link", + "name": "gradle", + "description": "Adaptable, fast automation for all", + "website": "https://gradle.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/gradle/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T10:37:24Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T10:37:25Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T10:37:25Z" + }, + { + "url": "https://github.com/xc-link/gradle/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T10:37:25Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T10:37:20Z", + "git_url": "tarball://root/repositories/xc-link/gradle.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/DateTimeExtensions", + "owner": "https://github.com/xc-link", + "name": "DateTimeExtensions", + "description": "This project is a merge of several common DateTime operations on the form of extensions to System.DateTime, including natural date difference text (precise and human rounded), holidays and working days calculations on several culture locales.", + "website": "http://datetimeextensions.azurewebsites.net/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T10:39:40Z" + }, + { + "url": "https://github.com/xc-link/DateTimeExtensions/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T10:39:40Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T10:39:37Z", + "git_url": "tarball://root/repositories/xc-link/DateTimeExtensions.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/up-for-grabs.net", + "owner": "https://github.com/xc-link", + "name": "up-for-grabs.net", + "description": "This is a list of projects which have curated tasks specifically for new contributors. These issues are a great way to get started with a project, or to help share the load of working on open source projects. Jump in!", + "website": "https://up-for-grabs.net/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T11:06:50Z" + }, + { + "url": "https://github.com/xc-link/up-for-grabs.net/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T11:06:50Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T11:06:47Z", + "git_url": "tarball://root/repositories/xc-link/up-for-grabs.net.git", + "default_branch": "gh-pages", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BIN_LuaBind", + "owner": "https://github.com/xc-link", + "name": "BIN_LuaBind", + "description": "BIN_LuaBind是一个和luabind、tolua++类似的库,提供了简洁的C/C++到lua的绑定机制,但与之不同的是BIN_LuaBind比他们更安全:lua层不在直接依赖于C/C++层指针,避免野指针引起宕机。除此之外,BIN_LuaBind对Lua提供了对lua_state,user data和table的抽象类,在C++端能方便的操作lua", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T11:38:38Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T11:38:38Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T11:38:38Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T11:38:39Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T11:38:39Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T11:38:39Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T11:38:39Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T11:38:39Z" + }, + { + "url": "https://github.com/xc-link/BIN_LuaBind/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T11:38:39Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T11:38:36Z", + "git_url": "tarball://root/repositories/xc-link/BIN_LuaBind.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SmartPointer", + "owner": "https://github.com/xc-link", + "name": "SmartPointer", + "description": "C++智能指针的实现", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SmartPointer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T11:41:14Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T11:41:15Z" + }, + { + "url": "https://github.com/xc-link/SmartPointer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T11:41:15Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T11:41:12Z", + "git_url": "tarball://root/repositories/xc-link/SmartPointer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/metamask-ios-sdk", + "owner": "https://github.com/xc-link", + "name": "metamask-ios-sdk", + "description": "MetaMask SDK for iOS", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T13:39:00Z" + }, + { + "url": "https://github.com/xc-link/metamask-ios-sdk/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T13:39:00Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T13:38:58Z", + "git_url": "tarball://root/repositories/xc-link/metamask-ios-sdk.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/core", + "owner": "https://github.com/xc-link", + "name": "core", + "description": "This monorepo is a collection of packages used across multiple MetaMask clients", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/core/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T13:43:47Z" + }, + { + "url": "https://github.com/xc-link/core/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T13:43:47Z" + }, + { + "url": "https://github.com/xc-link/core/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T13:43:47Z" + }, + { + "url": "https://github.com/xc-link/core/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T13:43:47Z" + }, + { + "url": "https://github.com/xc-link/core/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T13:43:48Z" + }, + { + "url": "https://github.com/xc-link/core/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T13:43:47Z" + }, + { + "url": "https://github.com/xc-link/core/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T13:43:48Z" + }, + { + "url": "https://github.com/xc-link/core/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T13:43:48Z" + }, + { + "url": "https://github.com/xc-link/core/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T13:43:48Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T13:43:43Z", + "git_url": "tarball://root/repositories/xc-link/core.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/31-networklist-org", + "owner": "https://github.com/xc-link", + "name": "31-networklist-org", + "description": "INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。", + "website": "https://infospider.vercel.app", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/31-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/31-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T14:00:32Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T14:00:30Z", + "git_url": "tarball://root/repositories/xc-link/31-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cloudflare_temp_email", + "owner": "https://github.com/xc-link", + "name": "cloudflare_temp_email", + "description": "CloudFlare free temp domain email 免费收发 临时域名邮箱 支持附件 IMAP SMTP TelegramBot", + "website": "https://mail.awsl.uk", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-09T14:02:58Z" + }, + { + "url": "https://github.com/xc-link/cloudflare_temp_email/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-09T14:02:58Z" + } + ], + "collaborators": [], + "created_at": "2025-03-09T14:02:56Z", + "git_url": "tarball://root/repositories/xc-link/cloudflare_temp_email.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/btc-rpc-explorer", + "owner": "https://github.com/xc-link", + "name": "btc-rpc-explorer", + "description": "Database-free, self-hosted Bitcoin explorer, via RPC to Bitcoin Core.", + "website": "https://bitcoinexplorer.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T02:38:27Z" + }, + { + "url": "https://github.com/xc-link/btc-rpc-explorer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T02:38:28Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T02:38:24Z", + "git_url": "tarball://root/repositories/xc-link/btc-rpc-explorer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GitTime", + "owner": "https://github.com/xc-link", + "name": "GitTime", + "description": "GitTime is GitHub Tracking App. Using ReactorKit, RxSwift, Moya.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GitTime/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T02:47:51Z" + }, + { + "url": "https://github.com/xc-link/GitTime/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T02:47:52Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T02:47:49Z", + "git_url": "tarball://root/repositories/xc-link/GitTime.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/first-contributions", + "owner": "https://github.com/xc-link", + "name": "first-contributions", + "description": "🚀✨ Help beginners to contribute to open source projects", + "website": "https://firstcontributions.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/first-contributions/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T04:34:08Z" + }, + { + "url": "https://github.com/xc-link/first-contributions/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T04:34:08Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T04:34:05Z", + "git_url": "tarball://root/repositories/xc-link/first-contributions.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/XcodesApp", + "owner": "https://github.com/xc-link", + "name": "XcodesApp", + "description": "The easiest way to install and switch between multiple versions of Xcode - with a mouse click. ", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/XcodesApp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T04:43:09Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T04:43:09Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T04:43:10Z" + }, + { + "url": "https://github.com/xc-link/XcodesApp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T04:43:10Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T04:43:07Z", + "git_url": "tarball://root/repositories/xc-link/XcodesApp.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/terminal", + "owner": "https://github.com/xc-link", + "name": "terminal", + "description": "The new Windows Terminal and the original Windows console host, all in the same place!", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/terminal/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T04:45:31Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T04:45:32Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T04:45:32Z" + }, + { + "url": "https://github.com/xc-link/terminal/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T04:45:32Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T04:45:28Z", + "git_url": "tarball://root/repositories/xc-link/terminal.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Files", + "owner": "https://github.com/xc-link", + "name": "Files", + "description": "A modern file manager that helps users organize their files and folders.", + "website": "https://files.community", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Files/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T12:14:04Z" + }, + { + "url": "https://github.com/xc-link/Files/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T12:14:04Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T12:14:01Z", + "git_url": "tarball://root/repositories/xc-link/Files.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Website", + "owner": "https://github.com/xc-link", + "name": "Website", + "description": null, + "website": "https://files.community", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Website/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-10T12:17:10Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-10T12:17:10Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-10T12:17:11Z" + }, + { + "url": "https://github.com/xc-link/Website/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-10T12:17:11Z" + } + ], + "collaborators": [], + "created_at": "2025-03-10T12:17:08Z", + "git_url": "tarball://root/repositories/xc-link/Website.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tomcat", + "owner": "https://github.com/xc-link", + "name": "tomcat", + "description": "Apache Tomcat", + "website": "https://tomcat.apache.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tomcat/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-11T04:36:46Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-11T04:36:46Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-11T04:36:46Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-11T04:36:46Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-11T04:36:47Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-11T04:36:47Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-11T04:36:47Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-11T04:36:47Z" + }, + { + "url": "https://github.com/xc-link/tomcat/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-11T04:36:47Z" + } + ], + "collaborators": [], + "created_at": "2025-03-11T04:36:44Z", + "git_url": "tarball://root/repositories/xc-link/tomcat.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/apache-websocket", + "owner": "https://github.com/xc-link", + "name": "apache-websocket", + "description": "Apache WebSocket module", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/apache-websocket/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-11T04:45:18Z" + }, + { + "url": "https://github.com/xc-link/apache-websocket/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-11T04:45:18Z" + } + ], + "collaborators": [], + "created_at": "2025-03-11T04:45:16Z", + "git_url": "tarball://root/repositories/xc-link/apache-websocket.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/web", + "owner": "https://github.com/xc-link", + "name": "web", + "description": "Base", + "website": "https://base.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/web/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-11T10:24:16Z" + }, + { + "url": "https://github.com/xc-link/web/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-11T10:24:16Z" + } + ], + "collaborators": [], + "created_at": "2025-03-11T10:24:14Z", + "git_url": "tarball://root/repositories/xc-link/web.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/go-connect-eth-contract", + "owner": "https://github.com/xc-link", + "name": "go-connect-eth-contract", + "description": "golang连接以太坊合约。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-14T13:31:30Z" + }, + { + "url": "https://github.com/xc-link/go-connect-eth-contract/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-14T13:31:30Z" + } + ], + "collaborators": [], + "created_at": "2025-03-14T13:31:28Z", + "git_url": "tarball://root/repositories/xc-link/go-connect-eth-contract.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/puter", + "owner": "https://github.com/xc-link", + "name": "puter", + "description": "🌐 The Internet OS! Free, Open-Source, and Self-Hostable.", + "website": "https://puter.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/puter/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-19T05:54:47Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-19T05:54:47Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-19T05:54:47Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-19T05:54:47Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-19T05:54:48Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-19T05:54:48Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-19T05:54:48Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-19T05:54:48Z" + }, + { + "url": "https://github.com/xc-link/puter/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-19T05:54:48Z" + } + ], + "collaborators": [], + "created_at": "2025-03-19T05:54:45Z", + "git_url": "tarball://root/repositories/xc-link/puter.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/twenty", + "owner": "https://github.com/xc-link", + "name": "twenty", + "description": "Building a modern alternative to Salesforce, powered by the community.", + "website": "https://twenty.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/twenty/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-19T21:02:20Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-19T21:02:21Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-19T21:02:21Z" + }, + { + "url": "https://github.com/xc-link/twenty/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-19T21:02:21Z" + } + ], + "collaborators": [], + "created_at": "2025-03-19T21:02:17Z", + "git_url": "tarball://root/repositories/xc-link/twenty.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/responsively-app", + "owner": "https://github.com/xc-link", + "name": "responsively-app", + "description": "A modified web browser that helps in responsive web development. A web developer's must have dev-tool.", + "website": "https://responsively.app", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/responsively-app/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-20T04:19:14Z" + }, + { + "url": "https://github.com/xc-link/responsively-app/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-20T04:19:14Z" + } + ], + "collaborators": [], + "created_at": "2025-03-20T04:19:11Z", + "git_url": "tarball://root/repositories/xc-link/responsively-app.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/signoz", + "owner": "https://github.com/xc-link", + "name": "signoz", + "description": "SigNoz is an open-source observability platform native to OpenTelemetry with logs, traces and metrics in a single application. An open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool", + "website": "https://signoz.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/signoz/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-22T07:25:33Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-22T07:25:33Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-22T07:25:33Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-22T07:25:33Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-22T07:25:34Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-22T07:25:34Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-22T07:25:34Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-22T07:25:34Z" + }, + { + "url": "https://github.com/xc-link/signoz/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-22T07:25:34Z" + } + ], + "collaborators": [], + "created_at": "2025-03-22T07:25:31Z", + "git_url": "tarball://root/repositories/xc-link/signoz.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/openvino", + "owner": "https://github.com/xc-link", + "name": "openvino", + "description": "OpenVINO™ is an open source toolkit for optimizing and deploying AI inference", + "website": "https://docs.openvino.ai", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/openvino/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-25T07:04:43Z" + }, + { + "url": "https://github.com/xc-link/openvino/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-25T07:04:43Z" + } + ], + "collaborators": [], + "created_at": "2025-03-25T07:04:40Z", + "git_url": "tarball://root/repositories/xc-link/openvino.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/cloudstream", + "owner": "https://github.com/xc-link", + "name": "cloudstream", + "description": "Android app for streaming and downloading media.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/cloudstream/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-27T19:53:33Z" + }, + { + "url": "https://github.com/xc-link/cloudstream/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-27T19:53:33Z" + } + ], + "collaborators": [], + "created_at": "2025-03-27T19:53:31Z", + "git_url": "tarball://root/repositories/xc-link/cloudstream.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/openllmetry", + "owner": "https://github.com/xc-link", + "name": "openllmetry", + "description": "Open-source observability for your LLM application, based on OpenTelemetry", + "website": "https://www.traceloop.com/openllmetry", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/openllmetry/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-03-29T14:36:03Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-03-29T14:36:04Z" + }, + { + "url": "https://github.com/xc-link/openllmetry/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-03-29T14:36:04Z" + } + ], + "collaborators": [], + "created_at": "2025-03-29T14:36:01Z", + "git_url": "tarball://root/repositories/xc-link/openllmetry.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Checkmate", + "owner": "https://github.com/xc-link", + "name": "Checkmate", + "description": "Checkmate is an open-source, self-hosted tool designed to track and monitor server hardware, uptime, response times, and incidents in real-time with beautiful visualizations.", + "website": "https://checkmate.so/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Checkmate/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-04-04T07:32:05Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-04-04T07:32:06Z" + }, + { + "url": "https://github.com/xc-link/Checkmate/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-04-04T07:32:06Z" + } + ], + "collaborators": [], + "created_at": "2025-04-04T07:32:03Z", + "git_url": "tarball://root/repositories/xc-link/Checkmate.git", + "default_branch": "develop", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/token-getting-started", + "owner": "https://github.com/xc-link", + "name": "token-getting-started", + "description": "Getting started for imToken Applicatoin.", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/token-getting-started/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-04-23T04:09:40Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-04-23T04:09:40Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-04-23T04:09:40Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-04-23T04:09:41Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-04-23T04:09:41Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-04-23T04:09:41Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-04-23T04:09:41Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-04-23T04:09:41Z" + }, + { + "url": "https://github.com/xc-link/token-getting-started/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-04-23T04:09:41Z" + } + ], + "collaborators": [], + "created_at": "2025-04-23T04:09:38Z", + "git_url": "tarball://root/repositories/xc-link/token-getting-started.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ImagesSequencesPredictions", + "owner": "https://github.com/xc-link", + "name": "ImagesSequencesPredictions", + "description": "雷达回波外推,ConvLSTM,训练模型并外推。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-04-25T08:37:22Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-04-25T08:37:23Z" + }, + { + "url": "https://github.com/xc-link/ImagesSequencesPredictions/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-04-25T08:37:23Z" + } + ], + "collaborators": [], + "created_at": "2025-04-25T08:37:20Z", + "git_url": "tarball://root/repositories/xc-link/ImagesSequencesPredictions.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/web3jdemo", + "owner": "https://github.com/xc-link", + "name": "web3jdemo", + "description": "功能强大的web3j以太坊用例,支持批量生成钱包,批量不同账户转账,查询余额等,监控,定时任务,交易mint等方法,持续更新中... ...", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/web3jdemo/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-01T11:02:56Z" + }, + { + "url": "https://github.com/xc-link/web3jdemo/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-01T11:02:56Z" + } + ], + "collaborators": [], + "created_at": "2025-05-01T11:02:54Z", + "git_url": "tarball://root/repositories/xc-link/web3jdemo.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/QQrobot", + "owner": "https://github.com/xc-link", + "name": "QQrobot", + "description": "QQ主体和robot插件。QQ主体解析WebQQ协议,负责QQ号码登录,信息接收和发送功能。robot分析聊天内容,跟据聊天内容智能做出回应。 QQ主体窗口内,可监控显示聊天信息、好友列表、群列表和机器人列表。为QQ群或者个人指定随意多个机器人为之提供服务。也提供了信息发送功能,可随时向QQ群或者个人发送信息。 robot插件,使用Qt5的plugin技术,可单独开发,编译后拷贝到plugins目录中,QQ主体自动识别安装运行。robot插件只要完成接口RobotInterface内的name和listenandsay方法就ok,name返回robot的名子,listenandsay的参数是收到的聊天内容和发送者信息,返回值是robot回应信息。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/QQrobot/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-04T06:55:24Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-04T06:55:25Z" + }, + { + "url": "https://github.com/xc-link/QQrobot/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-04T06:55:25Z" + } + ], + "collaborators": [], + "created_at": "2025-05-04T06:55:23Z", + "git_url": "tarball://root/repositories/xc-link/QQrobot.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Apt_t00ls", + "owner": "https://github.com/xc-link", + "name": "Apt_t00ls", + "description": "高危漏洞利用工具", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-04T12:00:29Z" + }, + { + "url": "https://github.com/xc-link/Apt_t00ls/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-04T12:00:29Z" + } + ], + "collaborators": [], + "created_at": "2025-05-04T12:00:27Z", + "git_url": "tarball://root/repositories/xc-link/Apt_t00ls.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/65-networklist-org", + "owner": "https://github.com/xc-link", + "name": "65-networklist-org", + "description": "Scripts to build your own IPsec VPN server, with IPsec/L2TP, Cisco IPsec and IKEv2", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/65-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-09T16:37:45Z" + }, + { + "url": "https://github.com/xc-link/65-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-09T16:37:45Z" + } + ], + "collaborators": [], + "created_at": "2025-05-09T16:37:42Z", + "git_url": "tarball://root/repositories/xc-link/65-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/19-networklist-org", + "owner": "https://github.com/xc-link", + "name": "19-networklist-org", + "description": "Personal VPN using Shadowsocks and v2ray", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/19-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-09T16:40:06Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-09T16:40:06Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-09T16:40:07Z" + }, + { + "url": "https://github.com/xc-link/19-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-09T16:40:07Z" + } + ], + "collaborators": [], + "created_at": "2025-05-09T16:40:04Z", + "git_url": "tarball://root/repositories/xc-link/19-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/IPProxyPool", + "owner": "https://github.com/xc-link", + "name": "IPProxyPool", + "description": "IPProxyPool代理池项目,提供代理ip", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/IPProxyPool/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-11T17:18:43Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-11T17:18:43Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-11T17:18:43Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-11T17:18:43Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-11T17:18:44Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-11T17:18:44Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-11T17:18:44Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-11T17:18:44Z" + }, + { + "url": "https://github.com/xc-link/IPProxyPool/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-11T17:18:44Z" + } + ], + "collaborators": [], + "created_at": "2025-05-11T17:18:42Z", + "git_url": "tarball://root/repositories/xc-link/IPProxyPool.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/e710db1245622eac", + "owner": "https://github.com/xc-link", + "name": "e710db1245622eac", + "description": null, + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-05-30T20:09:56Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-05-30T20:09:56Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-05-30T20:09:57Z" + }, + { + "url": "https://github.com/xc-link/e710db1245622eac/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-05-30T20:09:57Z" + } + ], + "collaborators": [], + "created_at": "2025-05-30T20:09:55Z", + "git_url": "tarball://root/repositories/xc-link/e710db1245622eac.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": true, + "vulnerability_alerts": true, + "vulnerability_updates": true, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/pay-spring-boot", + "owner": "https://github.com/xc-link", + "name": "pay-spring-boot", + "description": "开箱即用的支付模块,整合支付宝支付、微信支付", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-17T02:29:11Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-17T02:29:11Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-17T02:29:11Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-17T02:29:11Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-17T02:29:12Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-17T02:29:11Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-17T02:29:12Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-17T02:29:12Z" + }, + { + "url": "https://github.com/xc-link/pay-spring-boot/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-17T02:29:12Z" + } + ], + "collaborators": [], + "created_at": "2025-06-17T02:29:10Z", + "git_url": "tarball://root/repositories/xc-link/pay-spring-boot.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GameServer", + "owner": "https://github.com/xc-link", + "name": "GameServer", + "description": "一个服务器处理框架,包括 协议处理,消息处理,持久层数据处理", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GameServer/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-17T02:45:21Z" + }, + { + "url": "https://github.com/xc-link/GameServer/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-17T02:45:21Z" + } + ], + "collaborators": [], + "created_at": "2025-06-17T02:45:19Z", + "git_url": "tarball://root/repositories/xc-link/GameServer.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BlockChainSimpleDemo", + "owner": "https://github.com/xc-link", + "name": "BlockChainSimpleDemo", + "description": "基于Python3区块链简单Demo,帮助了解区块链。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-17T04:14:33Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-17T04:14:33Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-17T04:14:33Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-17T04:14:34Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-17T04:14:34Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-17T04:14:34Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-17T04:14:34Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-17T04:14:34Z" + }, + { + "url": "https://github.com/xc-link/BlockChainSimpleDemo/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-17T04:14:34Z" + } + ], + "collaborators": [], + "created_at": "2025-06-17T04:14:31Z", + "git_url": "tarball://root/repositories/xc-link/BlockChainSimpleDemo.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/64-networklist-org", + "owner": "https://github.com/xc-link", + "name": "64-networklist-org", + "description": "jni加密解密,jni签名检测,jni模拟器检测,jni-xpose框架检测,jni-root机器检测", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/64-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-20T02:43:15Z" + }, + { + "url": "https://github.com/xc-link/64-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-20T02:43:15Z" + } + ], + "collaborators": [], + "created_at": "2025-06-20T02:43:13Z", + "git_url": "tarball://root/repositories/xc-link/64-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell", + "owner": "https://github.com/xc-link", + "name": "AntSword-Cryption-WebShell", + "description": "Some traffic encryption webshell and encoder for AntSword. 蚁剑流量加密马及编码器", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-20T02:48:36Z" + }, + { + "url": "https://github.com/xc-link/AntSword-Cryption-WebShell/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-20T02:48:36Z" + } + ], + "collaborators": [], + "created_at": "2025-06-20T02:48:34Z", + "git_url": "tarball://root/repositories/xc-link/AntSword-Cryption-WebShell.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/14-networklist-org", + "owner": "https://github.com/xc-link", + "name": "14-networklist-org", + "description": ":tiger: 移动 web 最佳实践", + "website": "https://mcuking.github.io/mobile-web-best-practice", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/14-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-22T16:51:42Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-22T16:51:43Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-22T16:51:43Z" + }, + { + "url": "https://github.com/xc-link/14-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-22T16:51:43Z" + } + ], + "collaborators": [], + "created_at": "2025-06-22T16:51:40Z", + "git_url": "tarball://root/repositories/xc-link/14-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/15-networklist-org", + "owner": "https://github.com/xc-link", + "name": "15-networklist-org", + "description": "移动端下拉刷新、上拉加载更多插件", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/15-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-22T16:54:25Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-22T16:54:25Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-22T16:54:26Z" + }, + { + "url": "https://github.com/xc-link/15-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-22T16:54:26Z" + } + ], + "collaborators": [], + "created_at": "2025-06-22T16:54:24Z", + "git_url": "tarball://root/repositories/xc-link/15-networklist-org.git", + "default_branch": "gh-pages", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/12-networklist-org", + "owner": "https://github.com/xc-link", + "name": "12-networklist-org", + "description": "A DPoS blockchain.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/12-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-24T18:44:56Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-24T18:44:57Z" + }, + { + "url": "https://github.com/xc-link/12-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-24T18:44:57Z" + } + ], + "collaborators": [], + "created_at": "2025-06-24T18:44:54Z", + "git_url": "tarball://root/repositories/xc-link/12-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/findhash", + "owner": "https://github.com/xc-link", + "name": "findhash", + "description": "一个IDA脚本,可以检测出哈希算法(无论是否魔改常数)并生成frida hook 代码。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/findhash/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-06-25T09:19:52Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-06-25T09:19:53Z" + }, + { + "url": "https://github.com/xc-link/findhash/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-06-25T09:19:53Z" + } + ], + "collaborators": [], + "created_at": "2025-06-25T09:19:50Z", + "git_url": "tarball://root/repositories/xc-link/findhash.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/60-networklist-org", + "owner": "https://github.com/xc-link", + "name": "60-networklist-org", + "description": "Octokit plugin to paginate GraphQL Query responses", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/60-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-03T02:41:35Z" + }, + { + "url": "https://github.com/xc-link/60-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-03T02:41:35Z" + } + ], + "collaborators": [], + "created_at": "2025-07-03T02:41:32Z", + "git_url": "tarball://root/repositories/xc-link/60-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/59-networklist-org", + "owner": "https://github.com/xc-link", + "name": "59-networklist-org", + "description": "Copilot Chat extension for VS Code", + "website": "https://code.visualstudio.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/59-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-03T02:46:38Z" + }, + { + "url": "https://github.com/xc-link/59-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-03T02:46:38Z" + } + ], + "collaborators": [], + "created_at": "2025-07-03T02:46:35Z", + "git_url": "tarball://root/repositories/xc-link/59-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SmartDev-Contract", + "owner": "https://github.com/xc-link", + "name": "SmartDev-Contract", + "description": "Solidity智能合约库,包含了基础类型到上层业务的一系列智能合约库代码,便于开发者借鉴、引入和复用。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-05T11:04:23Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-05T11:04:24Z" + }, + { + "url": "https://github.com/xc-link/SmartDev-Contract/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-05T11:04:24Z" + } + ], + "collaborators": [], + "created_at": "2025-07-05T11:04:21Z", + "git_url": "tarball://root/repositories/xc-link/SmartDev-Contract.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/57-networklist-org", + "owner": "https://github.com/xc-link", + "name": "57-networklist-org", + "description": "Cross-platform modern general purpose math library written in C++23", + "website": "http://libomath.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/57-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-08T05:42:55Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-08T05:42:56Z" + }, + { + "url": "https://github.com/xc-link/57-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-08T05:42:56Z" + } + ], + "collaborators": [], + "created_at": "2025-07-08T05:42:53Z", + "git_url": "tarball://root/repositories/xc-link/57-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tethering", + "owner": "https://github.com/xc-link", + "name": "tethering", + "description": "Proxy and DNS Server on iOS", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tethering/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-08T06:40:48Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-08T06:40:48Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-08T06:40:49Z" + }, + { + "url": "https://github.com/xc-link/tethering/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-08T06:40:49Z" + } + ], + "collaborators": [], + "created_at": "2025-07-08T06:40:47Z", + "git_url": "tarball://root/repositories/xc-link/tethering.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/react-tether", + "owner": "https://github.com/xc-link", + "name": "react-tether", + "description": "React wrapper around Tether", + "website": "https://danreeves.github.io/react-tether/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/react-tether/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-08T06:59:54Z" + }, + { + "url": "https://github.com/xc-link/react-tether/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-08T06:59:54Z" + } + ], + "collaborators": [], + "created_at": "2025-07-08T06:59:51Z", + "git_url": "tarball://root/repositories/xc-link/react-tether.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/52-networklist-org", + "owner": "https://github.com/xc-link", + "name": "52-networklist-org", + "description": "TetherToken 合约部署测试", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/52-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-08T21:25:35Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-08T21:25:35Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-08T21:25:35Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-08T21:25:35Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-08T21:25:36Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-08T21:25:36Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-08T21:25:36Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-08T21:25:36Z" + }, + { + "url": "https://github.com/xc-link/52-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-08T21:25:36Z" + } + ], + "collaborators": [], + "created_at": "2025-07-08T21:25:34Z", + "git_url": "tarball://root/repositories/xc-link/52-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/26-networklist-org", + "owner": "https://github.com/xc-link", + "name": "26-networklist-org", + "description": "比特币/莱特币、以太坊、EOS、BCH(Bitcoin Cash)私钥及地址生成,BIP39助记词及私钥生成。", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/26-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-10T00:33:55Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-10T00:33:55Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-10T00:33:55Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-10T00:33:55Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-10T00:33:56Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-10T00:33:55Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-10T00:33:56Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-10T00:33:56Z" + }, + { + "url": "https://github.com/xc-link/26-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-10T00:33:56Z" + } + ], + "collaborators": [], + "created_at": "2025-07-10T00:33:52Z", + "git_url": "tarball://root/repositories/xc-link/26-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/55-networklist-org", + "owner": "https://github.com/xc-link", + "name": "55-networklist-org", + "description": "please submit Issues about the PayPal JS SDK here: https://github.com/paypal/paypal-js/issues", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/55-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-10T01:35:07Z" + }, + { + "url": "https://github.com/xc-link/55-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-10T01:35:07Z" + } + ], + "collaborators": [], + "created_at": "2025-07-10T01:35:04Z", + "git_url": "tarball://root/repositories/xc-link/55-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/11-networklist-org", + "owner": "https://github.com/xc-link", + "name": "11-networklist-org", + "description": "A framework for building native Windows apps with React.", + "website": "https://microsoft.github.io/react-native-windows/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/11-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-10T07:43:54Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-10T07:43:55Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-10T07:43:55Z" + }, + { + "url": "https://github.com/xc-link/11-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-10T07:43:55Z" + } + ], + "collaborators": [], + "created_at": "2025-07-10T07:43:51Z", + "git_url": "tarball://root/repositories/xc-link/11-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": { + "cname": null, + "https_redirect": true, + "source": null, + "source_ref_name": "gh-pages", + "source_subdir": "/", + "is_public": true, + "subdomain": null, + "parent_domain": null, + "theme": null, + "build_type": "legacy" + }, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/defi-bot", + "owner": "https://github.com/xc-link", + "name": "defi-bot", + "description": "Tutorial for building DeFi arbitrage bots", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/defi-bot/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-11T04:10:30Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-11T04:10:31Z" + }, + { + "url": "https://github.com/xc-link/defi-bot/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-11T04:10:31Z" + } + ], + "collaborators": [], + "created_at": "2025-07-11T04:10:28Z", + "git_url": "tarball://root/repositories/xc-link/defi-bot.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/53-networklist-org", + "owner": "https://github.com/xc-link", + "name": "53-networklist-org", + "description": "支持 OneBot 11 和 Satori 协议", + "website": "https://llonebot.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/53-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-11T19:05:47Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-11T19:05:47Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-11T19:05:47Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-11T19:05:48Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-11T19:05:48Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-11T19:05:48Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-11T19:05:48Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-11T19:05:48Z" + }, + { + "url": "https://github.com/xc-link/53-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-11T19:05:48Z" + } + ], + "collaborators": [], + "created_at": "2025-07-11T19:05:45Z", + "git_url": "tarball://root/repositories/xc-link/53-networklist-org.git", + "default_branch": "dev", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Tokenss", + "owner": "https://github.com/xc-link", + "name": "Tokenss", + "description": "Ethereum Token Contracts", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Tokenss/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-21T23:43:28Z" + }, + { + "url": "https://github.com/xc-link/Tokenss/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-21T23:43:29Z" + } + ], + "collaborators": [], + "created_at": "2025-07-21T23:43:26Z", + "git_url": "tarball://root/repositories/xc-link/Tokenss.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/token-lists", + "owner": "https://github.com/xc-link", + "name": "token-lists", + "description": "📚 The Token Lists specification", + "website": "https://tokenlists.org", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/token-lists/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-22T00:52:16Z" + }, + { + "url": "https://github.com/xc-link/token-lists/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-22T00:52:16Z" + } + ], + "collaborators": [], + "created_at": "2025-07-22T00:52:14Z", + "git_url": "tarball://root/repositories/xc-link/token-lists.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/56-networklist-org", + "owner": "https://github.com/xc-link", + "name": "56-networklist-org", + "description": "Ethereum token definitions", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/56-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-23T09:39:24Z" + }, + { + "url": "https://github.com/xc-link/56-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-23T09:39:24Z" + } + ], + "collaborators": [], + "created_at": "2025-07-23T09:39:22Z", + "git_url": "tarball://root/repositories/xc-link/56-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/47-networklist-org", + "owner": "https://github.com/xc-link", + "name": "47-networklist-org", + "description": "✅一款同时支持动态和静态收款地址收取TRX、USDT-TRC20、ETH系列区块链所有代币的支付解决方案!✅A payment solution that supports both dynamic and static payee addresses to receive TRX, USDT-TRC20, all tokens of ETH series blockchain! ", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/47-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-27T23:58:01Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-27T23:58:01Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-27T23:58:01Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-27T23:58:01Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-27T23:58:02Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-27T23:58:02Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-27T23:58:02Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-27T23:58:02Z" + }, + { + "url": "https://github.com/xc-link/47-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-27T23:58:02Z" + } + ], + "collaborators": [], + "created_at": "2025-07-27T23:58:00Z", + "git_url": "tarball://root/repositories/xc-link/47-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/62-networklist-org", + "owner": "https://github.com/xc-link", + "name": "62-networklist-org", + "description": "抖音逆向,抖音爬虫,抖音全部api、直播间监听", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/62-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-07-30T00:30:11Z" + }, + { + "url": "https://github.com/xc-link/62-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-07-30T00:30:11Z" + } + ], + "collaborators": [], + "created_at": "2025-07-30T00:30:08Z", + "git_url": "tarball://root/repositories/xc-link/62-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/48-networklist-org", + "owner": "https://github.com/xc-link", + "name": "48-networklist-org", + "description": "Token based authentication for Rails JSON APIs. Designed to work with jToker and ng-token-auth.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/48-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-08-02T16:48:49Z" + }, + { + "url": "https://github.com/xc-link/48-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-08-02T16:48:49Z" + } + ], + "collaborators": [], + "created_at": "2025-08-02T16:48:47Z", + "git_url": "tarball://root/repositories/xc-link/48-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/46-networklist-org", + "owner": "https://github.com/xc-link", + "name": "46-networklist-org", + "description": "Red Hat Dependency Analytics extension", + "website": "https://marketplace.visualstudio.com/items?itemName=redhat.fabric8-analytics", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/46-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-08-31T19:16:21Z" + }, + { + "url": "https://github.com/xc-link/46-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-08-31T19:16:21Z" + } + ], + "collaborators": [], + "created_at": "2025-08-31T19:16:18Z", + "git_url": "tarball://root/repositories/xc-link/46-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/bitchat", + "owner": "https://github.com/xc-link", + "name": "bitchat", + "description": "一个基于Netty的网络框架,同一端口支持HTTP/自定义TCP协议/WebSocket协议,支持多种序列化方式", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/bitchat/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-09-01T20:22:37Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-09-01T20:22:38Z" + }, + { + "url": "https://github.com/xc-link/bitchat/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-09-01T20:22:38Z" + } + ], + "collaborators": [], + "created_at": "2025-09-01T20:22:35Z", + "git_url": "tarball://root/repositories/xc-link/bitchat.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/44-networklist-org", + "owner": "https://github.com/xc-link", + "name": "44-networklist-org", + "description": "aqua's Standard Registry", + "website": "https://aquaproj.github.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/44-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-09-29T06:03:54Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-09-29T06:03:54Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-09-29T06:03:54Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-09-29T06:03:54Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-09-29T06:03:55Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-09-29T06:03:54Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-09-29T06:03:55Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-09-29T06:03:55Z" + }, + { + "url": "https://github.com/xc-link/44-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-09-29T06:03:55Z" + } + ], + "collaborators": [], + "created_at": "2025-09-29T06:03:51Z", + "git_url": "tarball://root/repositories/xc-link/44-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/45-networklist-org", + "owner": "https://github.com/xc-link", + "name": "45-networklist-org", + "description": "Chrome DevTools for coding agents", + "website": "https://npmjs.org/package/chrome-devtools-mcp", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/45-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-09-29T06:35:28Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-09-29T06:35:29Z" + }, + { + "url": "https://github.com/xc-link/45-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-09-29T06:35:29Z" + } + ], + "collaborators": [], + "created_at": "2025-09-29T06:35:26Z", + "git_url": "tarball://root/repositories/xc-link/45-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/67-networklist-org", + "owner": "https://github.com/xc-link", + "name": "67-networklist-org", + "description": "Browser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser", + "website": "https://browsermcp.io", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/67-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-09-29T06:38:43Z" + }, + { + "url": "https://github.com/xc-link/67-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-09-29T06:38:43Z" + } + ], + "collaborators": [], + "created_at": "2025-09-29T06:38:40Z", + "git_url": "tarball://root/repositories/xc-link/67-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Cesium-Satellite", + "owner": "https://github.com/xc-link", + "name": "Cesium-Satellite", + "description": "Cesium 卫星态势感知系统", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:33:35Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:33:35Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:33:35Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:33:36Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:33:36Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:33:36Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:33:36Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:33:36Z" + }, + { + "url": "https://github.com/xc-link/Cesium-Satellite/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:33:36Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:33:33Z", + "git_url": "tarball://root/repositories/xc-link/Cesium-Satellite.git", + "default_branch": "satellite_v2", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/MineEarth", + "owner": "https://github.com/xc-link", + "name": "MineEarth", + "description": "我的地球🌏--让卫星为你拍壁纸🛰", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/MineEarth/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:37:11Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:37:11Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:37:11Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:37:12Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:37:12Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:37:12Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:37:12Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:37:12Z" + }, + { + "url": "https://github.com/xc-link/MineEarth/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:37:12Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:37:09Z", + "git_url": "tarball://root/repositories/xc-link/MineEarth.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/JT1078", + "owner": "https://github.com/xc-link", + "name": "JT1078", + "description": "JT1078协议、GB1078协议、道路运输车辆卫星定位系统-视频通讯协议", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/JT1078/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:41:54Z" + }, + { + "url": "https://github.com/xc-link/JT1078/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:41:54Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:41:52Z", + "git_url": "tarball://root/repositories/xc-link/JT1078.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/satellite_seg", + "owner": "https://github.com/xc-link", + "name": "satellite_seg", + "description": "CCF BCDI2017 卫星影像的AI分类与识别", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/satellite_seg/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:45:03Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:45:03Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:45:03Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:45:03Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:45:04Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:45:03Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:45:04Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:45:04Z" + }, + { + "url": "https://github.com/xc-link/satellite_seg/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:45:04Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:45:01Z", + "git_url": "tarball://root/repositories/xc-link/satellite_seg.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/StarTools", + "owner": "https://github.com/xc-link", + "name": "StarTools", + "description": "放卫星", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/StarTools/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:48:06Z" + }, + { + "url": "https://github.com/xc-link/StarTools/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:48:06Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:48:04Z", + "git_url": "tarball://root/repositories/xc-link/StarTools.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Read_Himawari_binary_data", + "owner": "https://github.com/xc-link", + "name": "Read_Himawari_binary_data", + "description": "读取向日葵卫星标准数据资料", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:50:15Z" + }, + { + "url": "https://github.com/xc-link/Read_Himawari_binary_data/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:50:16Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:50:13Z", + "git_url": "tarball://root/repositories/xc-link/Read_Himawari_binary_data.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ls", + "owner": "https://github.com/xc-link", + "name": "ls", + "description": "微小卫星通信系统", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ls/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:53:34Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:53:35Z" + }, + { + "url": "https://github.com/xc-link/ls/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:53:35Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:53:32Z", + "git_url": "tarball://root/repositories/xc-link/ls.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/GPS_GAL_SSS", + "owner": "https://github.com/xc-link", + "name": "GPS_GAL_SSS", + "description": "GPS and Galileo Satellite Signal Simulator(GPS/Galileo卫星信号模拟,基于RTKLIB)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:55:51Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:55:52Z" + }, + { + "url": "https://github.com/xc-link/GPS_GAL_SSS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:55:52Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:55:48Z", + "git_url": "tarball://root/repositories/xc-link/GPS_GAL_SSS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/BD3_FPGA", + "owner": "https://github.com/xc-link", + "name": "BD3_FPGA", + "description": "新一代北斗卫星导航监测接收机的FPGA实现", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T20:57:49Z" + }, + { + "url": "https://github.com/xc-link/BD3_FPGA/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T20:57:49Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T20:57:47Z", + "git_url": "tarball://root/repositories/xc-link/BD3_FPGA.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/fy4_image_dp", + "owner": "https://github.com/xc-link", + "name": "fy4_image_dp", + "description": "FY-4号卫星数据处理程序系统", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T21:02:05Z" + }, + { + "url": "https://github.com/xc-link/fy4_image_dp/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T21:02:05Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T21:02:03Z", + "git_url": "tarball://root/repositories/xc-link/fy4_image_dp.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SatellitePosition", + "owner": "https://github.com/xc-link", + "name": "SatellitePosition", + "description": "根据广播星历确定卫星位置", + "website": "", + "private": false, + "has_issues": false, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SatellitePosition/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T21:05:27Z" + }, + { + "url": "https://github.com/xc-link/SatellitePosition/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T21:05:27Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T21:05:24Z", + "git_url": "tarball://root/repositories/xc-link/SatellitePosition.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": false, + "projects": true, + "discussions": false, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": false, + "delete_branch_heads": false, + "update_branch": false, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/42-networklist-org", + "owner": "https://github.com/xc-link", + "name": "42-networklist-org", + "description": "自动化更新HAM常用的卫星TLE星历文件", + "website": "https://www.hellocq.net/forum/read.php?tid=370636", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/42-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T21:48:52Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T21:48:52Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T21:48:52Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T21:48:52Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T21:48:53Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T21:48:52Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T21:48:53Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T21:48:53Z" + }, + { + "url": "https://github.com/xc-link/42-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T21:48:53Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T21:48:50Z", + "git_url": "tarball://root/repositories/xc-link/42-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/58-networklist-org", + "owner": "https://github.com/xc-link", + "name": "58-networklist-org", + "description": "关于iOS 性能优化梳理、内存泄露、卡顿、网络、GPU、电量、 App 包体积瘦身、启动速度优化等、Instruments 高级技巧、常见的优化技能- Get — Edit", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/58-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T22:02:25Z" + }, + { + "url": "https://github.com/xc-link/58-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T22:02:25Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T22:02:23Z", + "git_url": "tarball://root/repositories/xc-link/58-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SekiroIOS", + "owner": "https://github.com/xc-link", + "name": "SekiroIOS", + "description": "SekiroIOS是IOS终端和Sekiro即时通讯的网络工具,主要用于IOS加解密和群控方向", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SekiroIOS/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T22:04:48Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T22:04:48Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T22:04:48Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T22:04:48Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T22:04:49Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T22:04:49Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T22:04:49Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T22:04:49Z" + }, + { + "url": "https://github.com/xc-link/SekiroIOS/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T22:04:49Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T22:04:47Z", + "git_url": "tarball://root/repositories/xc-link/SekiroIOS.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/ios", + "owner": "https://github.com/xc-link", + "name": "ios", + "description": " React Native Push Notification API for iOS.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/ios/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-06T22:07:04Z" + }, + { + "url": "https://github.com/xc-link/ios/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-06T22:07:05Z" + } + ], + "collaborators": [], + "created_at": "2025-10-06T22:07:02Z", + "git_url": "tarball://root/repositories/xc-link/ios.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/eos-bp-profile", + "owner": "https://github.com/xc-link", + "name": "eos-bp-profile", + "description": "EOS block producer profile collection", + "website": "https://token.im", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-08T05:49:47Z" + }, + { + "url": "https://github.com/xc-link/eos-bp-profile/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-08T05:49:47Z" + } + ], + "collaborators": [], + "created_at": "2025-10-08T05:49:45Z", + "git_url": "tarball://root/repositories/xc-link/eos-bp-profile.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/Mobile-SDK", + "owner": "https://github.com/xc-link", + "name": "Mobile-SDK", + "description": " Android and iOS native SDK, developer can use this sdk to pull up TokenPocket wallet and do actions such as token transfer,push action, login etc. MiniWallet supported now.", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-08T05:54:44Z" + }, + { + "url": "https://github.com/xc-link/Mobile-SDK/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-08T05:54:44Z" + } + ], + "collaborators": [], + "created_at": "2025-10-08T05:54:42Z", + "git_url": "tarball://root/repositories/xc-link/Mobile-SDK.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/china-tower", + "owner": "https://github.com/xc-link", + "name": "china-tower", + "description": "中国铁塔官网", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/china-tower/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T14:31:22Z" + }, + { + "url": "https://github.com/xc-link/china-tower/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T14:31:22Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T14:31:19Z", + "git_url": "tarball://root/repositories/xc-link/china-tower.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/freeresource", + "owner": "https://github.com/xc-link", + "name": "freeresource", + "description": "中央广播电视总台等免费资源", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/freeresource/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T14:35:09Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T14:35:10Z" + }, + { + "url": "https://github.com/xc-link/freeresource/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T14:35:10Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T14:35:08Z", + "git_url": "tarball://root/repositories/xc-link/freeresource.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/CarrierProj", + "owner": "https://github.com/xc-link", + "name": "CarrierProj", + "description": "电力载波800bps+无线", + "website": "HomePage", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/CarrierProj/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T14:37:46Z" + }, + { + "url": "https://github.com/xc-link/CarrierProj/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T14:37:46Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T14:37:44Z", + "git_url": "tarball://root/repositories/xc-link/CarrierProj.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/QT-earthq", + "owner": "https://github.com/xc-link", + "name": "QT-earthq", + "description": "qt上位机,配合无线传感器网路使用。协调器收集节点数据并融合上传,通过电脑wifi接收然后绘制震动波形并显示各个节点在地图上的位置。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/QT-earthq/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T14:43:12Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T14:43:12Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T14:43:12Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T14:43:12Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T14:43:13Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T14:43:12Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T14:43:13Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T14:43:13Z" + }, + { + "url": "https://github.com/xc-link/QT-earthq/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T14:43:13Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T14:43:10Z", + "git_url": "tarball://root/repositories/xc-link/QT-earthq.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/NXP-K64-gateway", + "owner": "https://github.com/xc-link", + "name": "NXP-K64-gateway", + "description": "DM-MK64系列小规模智能物联网关使用了RT-Thread操作系统,是集成了模拟信号采集、开关量输入、开关量输出、计数和 无线数据通信于一体的高性能测控装置,可以直接接入各种传感器、标准变送器信号、仪表等输 出的模拟信号、电平信号、脉冲信号等,是实施无线测控的最佳选择。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T15:00:36Z" + }, + { + "url": "https://github.com/xc-link/NXP-K64-gateway/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T15:00:36Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T15:00:34Z", + "git_url": "tarball://root/repositories/xc-link/NXP-K64-gateway.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/qt_signal_slot_sys", + "owner": "https://github.com/xc-link", + "name": "qt_signal_slot_sys", + "description": "简单模拟实现QT的信号槽机制,对于moc元对象编译器生成的moc_xxx.cpp直接手动生成,手动填入元对象信息。", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T15:03:02Z" + }, + { + "url": "https://github.com/xc-link/qt_signal_slot_sys/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T15:03:03Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T15:03:00Z", + "git_url": "tarball://root/repositories/xc-link/qt_signal_slot_sys.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/unionpay-server", + "owner": "https://github.com/xc-link", + "name": "unionpay-server", + "description": "云闪付免签服务端", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/unionpay-server/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T15:19:43Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T15:19:43Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T15:19:44Z" + }, + { + "url": "https://github.com/xc-link/unionpay-server/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T15:19:44Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T15:19:42Z", + "git_url": "tarball://root/repositories/xc-link/unionpay-server.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/HwdNetWork", + "owner": "https://github.com/xc-link", + "name": "HwdNetWork", + "description": "护卫盾网络验证", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/HwdNetWork/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-10-24T15:36:31Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-10-24T15:36:31Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-10-24T15:36:31Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-10-24T15:36:32Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-10-24T15:36:32Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-10-24T15:36:32Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-10-24T15:36:32Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-10-24T15:36:32Z" + }, + { + "url": "https://github.com/xc-link/HwdNetWork/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-10-24T15:36:32Z" + } + ], + "collaborators": [], + "created_at": "2025-10-24T15:36:30Z", + "git_url": "tarball://root/repositories/xc-link/HwdNetWork.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/35-networklist-org", + "owner": "https://github.com/xc-link", + "name": "35-networklist-org", + "description": "AliPay For Flutter.支付宝Flutter插件", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/35-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-12-25T04:44:03Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-12-25T04:44:03Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-12-25T04:44:03Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-12-25T04:44:03Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-12-25T04:44:04Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-12-25T04:44:04Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-12-25T04:44:04Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-12-25T04:44:04Z" + }, + { + "url": "https://github.com/xc-link/35-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-12-25T04:44:04Z" + } + ], + "collaborators": [], + "created_at": "2025-12-25T04:44:02Z", + "git_url": "tarball://root/repositories/xc-link/35-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/alipay_kit", + "owner": "https://github.com/xc-link", + "name": "alipay_kit", + "description": "Flutter版支付宝登录/支付", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/alipay_kit/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-12-25T04:46:22Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-12-25T04:46:22Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-12-25T04:46:22Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-12-25T04:46:22Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-12-25T04:46:23Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-12-25T04:46:23Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-12-25T04:46:23Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-12-25T04:46:23Z" + }, + { + "url": "https://github.com/xc-link/alipay_kit/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-12-25T04:46:23Z" + } + ], + "collaborators": [], + "created_at": "2025-12-25T04:46:20Z", + "git_url": "tarball://root/repositories/xc-link/alipay_kit.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/qrpay", + "owner": "https://github.com/xc-link", + "name": "qrpay", + "description": "五合一收款码在线生成,40个模板 支持微信支付、支付宝支付、手机QQ支付、京东钱包、百度钱包,PayPal五合一收款,将其二维码合并为一个二维码,无需手续费,支持qq头像,昵称判断(HTML单页版多模板免安装) 腾讯云服务器 https://api.isoyu.com/qrpay/ 腾讯云COS https://qrpay.isoyu.com/", + "website": "https://api.isoyu.com/qrpay/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/qrpay/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2025-12-25T04:48:10Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2025-12-25T04:48:11Z" + }, + { + "url": "https://github.com/xc-link/qrpay/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2025-12-25T04:48:11Z" + } + ], + "collaborators": [], + "created_at": "2025-12-25T04:48:08Z", + "git_url": "tarball://root/repositories/xc-link/qrpay.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/30-networklist-org", + "owner": "https://github.com/xc-link", + "name": "30-networklist-org", + "description": "`Packer-InfoFinder` 是一款专为现代Web应用设计的自动化安全扫描工具。它能深度抓取目标网站的JavaScript文件,智能还原由Webpack等打包器进行代码拆分(Code Splitting)的异步模块,并利用强大的正则引擎扫描所有JS代码,发现其中可能存在的敏感信息,如API密钥、内部路径、凭证、个人身份信息(PII)等", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/30-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-01-07T09:16:19Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-01-07T09:16:20Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-01-07T09:16:20Z" + }, + { + "url": "https://github.com/xc-link/30-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-01-07T09:16:20Z" + } + ], + "collaborators": [], + "created_at": "2026-01-07T09:16:17Z", + "git_url": "tarball://root/repositories/xc-link/30-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/27-networklist-org", + "owner": "https://github.com/xc-link", + "name": "27-networklist-org", + "description": "c2c钱包,CG钱包,购宝钱包,钱能钱包,Gopay,K豆钱包,988PAY,KKPay,MiPay,NO钱包,c2c交易,承兑系统,OTC交易平台,场外交易系统", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/27-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-02-04T16:25:47Z" + }, + { + "url": "https://github.com/xc-link/27-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-02-04T16:25:47Z" + } + ], + "collaborators": [], + "created_at": "2026-02-04T16:25:45Z", + "git_url": "tarball://root/repositories/xc-link/27-networklist-org.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/36-networklist-org", + "owner": "https://github.com/xc-link", + "name": "36-networklist-org", + "description": "短信转发器——监控Android手机短信、来电、APP通知,并根据指定规则转发到其他手机:钉钉群自定义机器人、钉钉企业内机器人、企业微信群机器人、飞书机器人、企业微信应用消息、邮箱、bark、webhook、Telegram机器人、Server酱、PushPlus、手机短信等。包括主动控制服务端与客户端,让你轻松远程发短信、查短信、查通话、查话簿、查电量等。(V3.0 新增)PS.这个APK主要是学习与自用,如有BUG请提ISSUE,同时欢迎大家提PR指正", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/36-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-02-07T14:05:20Z" + }, + { + "url": "https://github.com/xc-link/36-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-02-07T14:05:20Z" + } + ], + "collaborators": [], + "created_at": "2026-02-07T14:05:18Z", + "git_url": "tarball://root/repositories/xc-link/36-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + } +] \ No newline at end of file diff --git a/repositories_000005.json b/repositories_000005.json new file mode 100644 index 000000000..87af6b5cc --- /dev/null +++ b/repositories_000005.json @@ -0,0 +1,1182 @@ +[ + { + "type": "repository", + "url": "https://github.com/xc-link/75-networklist-org", + "owner": "https://github.com/xc-link", + "name": "75-networklist-org", + "description": "【波场钱包对接】trx钱包对接+trc20代币对接+usdt钱包对接+tron 自动充提+Fil充提 FileCoin", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/75-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-19T13:57:39Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-19T13:57:39Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-19T13:57:40Z" + }, + { + "url": "https://github.com/xc-link/75-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-19T13:57:40Z" + } + ], + "collaborators": [], + "created_at": "2026-03-19T13:57:37Z", + "git_url": "tarball://root/repositories/xc-link/75-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tronwallet", + "owner": "https://github.com/xc-link", + "name": "tronwallet", + "description": "波场币钱包", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tronwallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-19T14:00:32Z" + }, + { + "url": "https://github.com/xc-link/tronwallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-19T14:00:32Z" + } + ], + "collaborators": [], + "created_at": "2026-03-19T14:00:29Z", + "git_url": "tarball://root/repositories/xc-link/tronwallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/tron-wallet", + "owner": "https://github.com/xc-link", + "name": "tron-wallet", + "description": "波场币钱包工具", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/tron-wallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-19T14:02:30Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-19T14:02:31Z" + }, + { + "url": "https://github.com/xc-link/tron-wallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-19T14:02:31Z" + } + ], + "collaborators": [], + "created_at": "2026-03-19T14:02:29Z", + "git_url": "tarball://root/repositories/xc-link/tron-wallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/76-networklist-org", + "owner": "https://github.com/xc-link", + "name": "76-networklist-org", + "description": "Write workflows scripting the GitHub API in JavaScript", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/76-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-19T18:11:20Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-19T18:11:21Z" + }, + { + "url": "https://github.com/xc-link/76-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-19T18:11:21Z" + } + ], + "collaborators": [], + "created_at": "2026-03-19T18:11:18Z", + "git_url": "tarball://root/repositories/xc-link/76-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/eth-lightwallet", + "owner": "https://github.com/xc-link", + "name": "eth-lightwallet", + "description": "Lightweight JS Wallet for Node and the browser ", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-22T01:28:52Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-22T01:28:52Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-22T01:28:52Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-22T01:28:52Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-22T01:28:53Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-22T01:28:52Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-22T01:28:53Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-22T01:28:53Z" + }, + { + "url": "https://github.com/xc-link/eth-lightwallet/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-22T01:28:53Z" + } + ], + "collaborators": [], + "created_at": "2026-03-22T01:28:51Z", + "git_url": "tarball://root/repositories/xc-link/eth-lightwallet.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/74-networklist-org", + "owner": "https://github.com/xc-link", + "name": "74-networklist-org", + "description": "A Utility CLI for AI Coding Agents", + "website": "http://rulesync.dyoshikawa.com/", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/74-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-22T06:16:39Z" + }, + { + "url": "https://github.com/xc-link/74-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-22T06:16:39Z" + } + ], + "collaborators": [], + "created_at": "2026-03-22T06:16:37Z", + "git_url": "tarball://root/repositories/xc-link/74-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/73-networklist-org", + "owner": "https://github.com/xc-link", + "name": "73-networklist-org", + "description": "The open agent skills tool - npx skills", + "website": "https://skills.sh", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/73-networklist-org/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-03-24T04:46:15Z" + }, + { + "url": "https://github.com/xc-link/73-networklist-org/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-03-24T04:46:15Z" + } + ], + "collaborators": [], + "created_at": "2026-03-24T04:46:13Z", + "git_url": "tarball://root/repositories/xc-link/73-networklist-org.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": true + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/TSN-2022-winter", + "owner": "https://github.com/xc-link", + "name": "TSN-2022-winter", + "description": "网络时延保障&高可靠路由算法", + "website": null, + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-05-01T12:44:08Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-05-01T12:44:08Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-05-01T12:44:08Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-05-01T12:44:08Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-05-01T12:44:09Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-05-01T12:44:08Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-05-01T12:44:09Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-05-01T12:44:09Z" + }, + { + "url": "https://github.com/xc-link/TSN-2022-winter/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-05-01T12:44:09Z" + } + ], + "collaborators": [], + "created_at": "2026-05-01T12:44:06Z", + "git_url": "tarball://root/repositories/xc-link/TSN-2022-winter.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SMS-China", + "owner": "https://github.com/xc-link", + "name": "SMS-China", + "description": "中国移动CMPP、联通SGIP、电信SMGP三网合一企业短信网关 (Java)", + "website": "", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SMS-China/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-05-01T12:50:05Z" + }, + { + "url": "https://github.com/xc-link/SMS-China/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-05-01T12:50:06Z" + } + ], + "collaborators": [], + "created_at": "2026-05-01T12:50:03Z", + "git_url": "tarball://root/repositories/xc-link/SMS-China.git", + "default_branch": "master", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + }, + { + "type": "repository", + "url": "https://github.com/xc-link/SecAutoBan", + "owner": "https://github.com/xc-link", + "name": "SecAutoBan", + "description": "恶意IP全自动封禁平台。支持收集如下安全设备告警:长亭WAF社区版(SafeLine)、微步蜜罐HFish、奇安信天眼、奇安信椒图、绿盟WAF、天融信WAF、科来网络安全分析审计系统、深信服态势感知、启明星辰全网安全态势感知系统。支持如下设备联动封禁:RouterOS、OPNsense、CheckPoint、旁路阻断(无需设备配合)、BGP、奇安信防火墙、天融信防火墙、深信服防火墙。", + "website": "https://secaegis.com", + "private": false, + "has_issues": true, + "has_wiki": true, + "has_downloads": true, + "is_archived": false, + "labels": [ + { + "url": "https://github.com/xc-link/SecAutoBan/labels/bug", + "name": "bug", + "color": "d73a4a", + "description": "Something isn't working", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/documentation", + "name": "documentation", + "color": "0075ca", + "description": "Improvements or additions to documentation", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/duplicate", + "name": "duplicate", + "color": "cfd3d7", + "description": "This issue or pull request already exists", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "description": "New feature or request", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/good%20first%20issue", + "name": "good first issue", + "color": "7057ff", + "description": "Good for newcomers", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/help%20wanted", + "name": "help wanted", + "color": "008672", + "description": "Extra attention is needed", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/invalid", + "name": "invalid", + "color": "e4e669", + "description": "This doesn't seem right", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/question", + "name": "question", + "color": "d876e3", + "description": "Further information is requested", + "created_at": "2026-05-01T12:52:51Z" + }, + { + "url": "https://github.com/xc-link/SecAutoBan/labels/wontfix", + "name": "wontfix", + "color": "ffffff", + "description": "This will not be worked on", + "created_at": "2026-05-01T12:52:51Z" + } + ], + "collaborators": [], + "created_at": "2026-05-01T12:52:48Z", + "git_url": "tarball://root/repositories/xc-link/SecAutoBan.git", + "default_branch": "main", + "webhooks": [], + "page": null, + "public_keys": [], + "repository_topics": [], + "security_and_analysis": { + "dependency_graph": false, + "vulnerability_alerts": false, + "vulnerability_updates": false, + "advanced_security": false, + "token_scanning": true, + "token_scanning_push_protection": true + }, + "autolinks": [], + "general_settings": { + "template": false, + "allow_forking": true, + "sponsorships": true, + "projects": true, + "discussions": true, + "merge_commit": true, + "squash_merge": true, + "rebase_merge": true, + "auto_merge": true, + "delete_branch_heads": true, + "update_branch": true, + "git_lfs_in_archives": false + }, + "actions_general_settings": { + "actions_disabled": false, + "allows_all_actions": true, + "allows_local_actions_only": false, + "allows_github_owned_actions": false, + "allows_verified_actions": false, + "allows_specific_actions_patterns": false, + "patterns": [] + } + } +] \ No newline at end of file diff --git a/schema.json b/schema.json new file mode 100644 index 000000000..0a491d80c --- /dev/null +++ b/schema.json @@ -0,0 +1 @@ +{"version":"1.0.1","github_sha":"1d2f357913a19537e418620e70a055ff37db9c0b"} \ No newline at end of file diff --git a/users_000001.json b/users_000001.json new file mode 100644 index 000000000..67505bee1 --- /dev/null +++ b/users_000001.json @@ -0,0 +1,61 @@ +[ + { + "type": "user", + "url": "https://github.com/codecov-commenter", + "avatar_url": "https://avatars.githubusercontent.com/u/65553080?v=4", + "login": "codecov-commenter", + "name": "Codecov Comments Bot", + "bio": "I'm a coverage bot that adds PR comments using Codecov. For a better experience, install the [Codecov GitHub App](https://github.com/apps/codecov)!", + "company": "Codecov by Sentry", + "website": "https://github.com/apps/codecov", + "location": null, + "emails": [ + { + "address": "65553080+codecov-commenter@users.noreply.github.com", + "primary": true, + "verified": true + } + ], + "social_accounts": [], + "billing_plan": null, + "created_at": "2020-05-18T14:52:15Z" + }, + { + "type": "user", + "url": "https://github.com/xc-link", + "avatar_url": "https://avatars.githubusercontent.com/u/180995034?v=4", + "login": "xc-link", + "name": "xc", + "bio": "@xc-xyz @xc-npc @xc-net @xc-npc ", + "company": "xc", + "website": "https://github.com/xc-link/networklist-org", + "location": "中国", + "emails": [ + { + "address": "cai_liyong@qq.com", + "primary": true, + "verified": true + } + ], + "social_accounts": [ + { + "provider": "generic", + "url": "https://github.com/xc-xyz/networklist-org" + }, + { + "provider": "generic", + "url": "https://app.tether.to" + }, + { + "provider": "generic", + "url": "https://tether.to" + } + ], + "billing_plan": { + "name": "free", + "space": 976562499, + "private_repos": 10000 + }, + "created_at": "2024-09-09T17:01:23Z" + } +] \ No newline at end of file diff --git a/verify_signature.js b/verify_signature.js new file mode 100644 index 000000000..bc2323e22 --- /dev/null +++ b/verify_signature.js @@ -0,0 +1,44 @@ +let encoder = new TextEncoder(); + +async function verifySignature(secret, header, payload) { + let parts = header.split("="); + let sigHex = parts[1]; + + let algorithm = { name: "HMAC", hash: { name: 'SHA-256' } }; + + let keyBytes = encoder.encode(secret); + let extractable = false; + let key = await crypto.subtle.importKey( + "raw", + keyBytes, + algorithm, + extractable, + [ "sign", "verify" ], + ); + + let sigBytes = hexToBytes(sigHex); + let dataBytes = encoder.encode(payload); + let equal = await crypto.subtle.verify( + algorithm.name, + key, + sigBytes, + dataBytes, + ); + + return equal; +} + +function hexToBytes(hex) { + let len = hex.length / 2; + let bytes = new Uint8Array(len); + + let index = 0; + for (let i = 0; i < hex.length; i += 2) { + let c = hex.slice(i, i + 2); + let b = parseInt(c, 16); + bytes[index] = b; + index += 1; + } + + return bytes; +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 000000000..ac9f6324d --- /dev/null +++ b/yarn.lock @@ -0,0 +1,1353 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@adraffy/ens-normalize@^1.8.8": + version "1.11.0" + resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz" + integrity sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg== + +"@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7": + version "7.12.5" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz" + integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== + dependencies: + regenerator-runtime "^0.13.4" + +"@emnapi/runtime@^1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.4.3.tgz#c0564665c80dc81c448adac23f9dfbed6c838f7d" + integrity sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ== + dependencies: + tslib "^2.4.0" + +"@emotion/hash@^0.8.0": + version "0.8.0" + resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz" + integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== + +"@ethereumjs/rlp@^4.0.1": + version "4.0.1" + resolved "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz" + integrity sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw== + +"@ethereumjs/rlp@^5.0.2": + version "5.0.2" + resolved "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz" + integrity sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== + +"@img/sharp-darwin-arm64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.2.tgz#65049ef7c6be7857da742cd028f97602ce209635" + integrity sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg== + optionalDependencies: + "@img/sharp-libvips-darwin-arm64" "1.1.0" + +"@img/sharp-darwin-x64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.2.tgz#d37ff7c75c46d5a68a3756e3f1924ef7ca7b285e" + integrity sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g== + optionalDependencies: + "@img/sharp-libvips-darwin-x64" "1.1.0" + +"@img/sharp-libvips-darwin-arm64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz#843f7c09c7245dc0d3cfec2b3c83bb08799a704f" + integrity sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA== + +"@img/sharp-libvips-darwin-x64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz#1239c24426c06a8e833815562f78047a3bfbaaf8" + integrity sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ== + +"@img/sharp-libvips-linux-arm64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz#20d276cefd903ee483f0441ba35961679c286315" + integrity sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew== + +"@img/sharp-libvips-linux-arm@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz#067c0b566eae8063738cf1b1db8f8a8573b5465c" + integrity sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA== + +"@img/sharp-libvips-linux-ppc64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz#682334595f2ca00e0a07a675ba170af165162802" + integrity sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ== + +"@img/sharp-libvips-linux-s390x@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz#82fcd68444b3666384235279c145c2b28d8ee302" + integrity sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA== + +"@img/sharp-libvips-linux-x64@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz" + integrity sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q== + +"@img/sharp-libvips-linuxmusl-arm64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz#72accf924e80b081c8db83b900b444a67c203f01" + integrity sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w== + +"@img/sharp-libvips-linuxmusl-x64@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz#1fa052737e203f46bf44192acd01f9faf11522d7" + integrity sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A== + +"@img/sharp-linux-arm64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.2.tgz#c9690fac5f3137eaab3f7ad6065390d10f66f1fa" + integrity sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q== + optionalDependencies: + "@img/sharp-libvips-linux-arm64" "1.1.0" + +"@img/sharp-linux-arm@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.2.tgz#771dd2ec645f85f98441359bfc118afaf38cbd8b" + integrity sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ== + optionalDependencies: + "@img/sharp-libvips-linux-arm" "1.1.0" + +"@img/sharp-linux-s390x@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.2.tgz#82132d158abff57bd90b53574f2865f72f94e6c8" + integrity sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw== + optionalDependencies: + "@img/sharp-libvips-linux-s390x" "1.1.0" + +"@img/sharp-linux-x64@0.34.2": + version "0.34.2" + resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.2.tgz" + integrity sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ== + optionalDependencies: + "@img/sharp-libvips-linux-x64" "1.1.0" + +"@img/sharp-linuxmusl-arm64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.2.tgz#cfac45b2abbc04628f676e123bfe3aeb300266c7" + integrity sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-arm64" "1.1.0" + +"@img/sharp-linuxmusl-x64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.2.tgz#b876c23ff51d0fb6d9f3b0a07e2f4d1436c203ad" + integrity sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-x64" "1.1.0" + +"@img/sharp-wasm32@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.34.2.tgz#b1dd0bab547dccf517586eb1fa5852160bba3b82" + integrity sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ== + dependencies: + "@emnapi/runtime" "^1.4.3" + +"@img/sharp-win32-arm64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.2.tgz#f37bee0f60c167f825a09d2b8de6849b823e8b30" + integrity sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ== + +"@img/sharp-win32-ia32@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.2.tgz#8fc30b6655bc6ff8910344a2020d334aa6361672" + integrity sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw== + +"@img/sharp-win32-x64@0.34.2": + version "0.34.2" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.2.tgz#ecf19250f8fe35de684aa2b0ec6f773b3447247b" + integrity sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw== + +"@material-ui/core@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz" + integrity sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/styles" "^4.11.3" + "@material-ui/system" "^4.11.3" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + "@types/react-transition-group" "^4.2.0" + clsx "^1.0.4" + hoist-non-react-statics "^3.3.2" + popper.js "1.16.1-lts" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + react-transition-group "^4.4.0" + +"@material-ui/icons@^4.11.2": + version "4.11.2" + resolved "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz" + integrity sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ== + dependencies: + "@babel/runtime" "^7.4.4" + +"@material-ui/lab@^4.0.0-alpha.57": + version "4.0.0-alpha.57" + resolved "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz" + integrity sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + clsx "^1.0.4" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + +"@material-ui/styles@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz" + integrity sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg== + dependencies: + "@babel/runtime" "^7.4.4" + "@emotion/hash" "^0.8.0" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + clsx "^1.0.4" + csstype "^2.5.2" + hoist-non-react-statics "^3.3.2" + jss "^10.5.1" + jss-plugin-camel-case "^10.5.1" + jss-plugin-default-unit "^10.5.1" + jss-plugin-global "^10.5.1" + jss-plugin-nested "^10.5.1" + jss-plugin-props-sort "^10.5.1" + jss-plugin-rule-value-function "^10.5.1" + jss-plugin-vendor-prefixer "^10.5.1" + prop-types "^15.7.2" + +"@material-ui/system@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz" + integrity sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + csstype "^2.5.2" + prop-types "^15.7.2" + +"@material-ui/types@^5.1.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz" + integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A== + +"@material-ui/utils@^4.11.2": + version "4.11.2" + resolved "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz" + integrity sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA== + dependencies: + "@babel/runtime" "^7.4.4" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + +"@next/env@15.3.3": + version "15.3.3" + resolved "https://registry.npmjs.org/@next/env/-/env-15.3.3.tgz" + integrity sha512-OdiMrzCl2Xi0VTjiQQUK0Xh7bJHnOuET2s+3V+Y40WJBAXrJeGA3f+I8MZJ/YQ3mVGi5XGR1L66oFlgqXhQ4Vw== + +"@next/swc-darwin-arm64@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.3.tgz#994de8515cdfb74d337bdad645c33605de44c68b" + integrity sha512-WRJERLuH+O3oYB4yZNVahSVFmtxRNjNF1I1c34tYMoJb0Pve+7/RaLAJJizyYiFhjYNGHRAE1Ri2Fd23zgDqhg== + +"@next/swc-darwin-x64@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.3.tgz#71588bad245180ffd1af1e1f894477287e739eb0" + integrity sha512-XHdzH/yBc55lu78k/XwtuFR/ZXUTcflpRXcsu0nKmF45U96jt1tsOZhVrn5YH+paw66zOANpOnFQ9i6/j+UYvw== + +"@next/swc-linux-arm64-gnu@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.3.tgz#66a15f749c14f04a89f8c7e21c7a8d343fc34e6e" + integrity sha512-VZ3sYL2LXB8znNGcjhocikEkag/8xiLgnvQts41tq6i+wql63SMS1Q6N8RVXHw5pEUjiof+II3HkDd7GFcgkzw== + +"@next/swc-linux-arm64-musl@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.3.tgz#14bd66213f7f33d6909574750bcb05037221a2ac" + integrity sha512-h6Y1fLU4RWAp1HPNJWDYBQ+e3G7sLckyBXhmH9ajn8l/RSMnhbuPBV/fXmy3muMcVwoJdHL+UtzRzs0nXOf9SA== + +"@next/swc-linux-x64-gnu@15.3.3": + version "15.3.3" + resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.3.tgz" + integrity sha512-jJ8HRiF3N8Zw6hGlytCj5BiHyG/K+fnTKVDEKvUCyiQ/0r5tgwO7OgaRiOjjRoIx2vwLR+Rz8hQoPrnmFbJdfw== + +"@next/swc-linux-x64-musl@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.3.tgz#41ab140dd0a04ab7291adbec5836c1ce251a588c" + integrity sha512-HrUcTr4N+RgiiGn3jjeT6Oo208UT/7BuTr7K0mdKRBtTbT4v9zJqCDKO97DUqqoBK1qyzP1RwvrWTvU6EPh/Cw== + +"@next/swc-win32-arm64-msvc@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.3.tgz#fcd1d7e0007b7b73d1acdbf0ad6d91f7aa2deb15" + integrity sha512-SxorONgi6K7ZUysMtRF3mIeHC5aA3IQLmKFQzU0OuhuUYwpOBc1ypaLJLP5Bf3M9k53KUUUj4vTPwzGvl/NwlQ== + +"@next/swc-win32-x64-msvc@15.3.3": + version "15.3.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.3.tgz#c0e33e069d7922dd0546cac77a0247ad81d4a1aa" + integrity sha512-4QZG6F8enl9/S2+yIiOiju0iCTFd93d8VC1q9LZS4p/Xuk81W2QDjCFeoogmrWWkAD59z8ZxepBQap2dKS5ruw== + +"@noble/curves@1.4.2", "@noble/curves@~1.4.0": + version "1.4.2" + resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz" + integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw== + dependencies: + "@noble/hashes" "1.4.0" + +"@noble/hashes@1.4.0", "@noble/hashes@~1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== + +"@scure/base@~1.1.6": + version "1.1.9" + resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz" + integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== + +"@scure/bip32@1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz" + integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg== + dependencies: + "@noble/curves" "~1.4.0" + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + +"@scure/bip39@1.3.0": + version "1.3.0" + resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz" + integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ== + dependencies: + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + +"@swc/counter@0.1.3": + version "0.1.3" + resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz" + integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== + +"@swc/helpers@0.5.15": + version "0.5.15" + resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz" + integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g== + dependencies: + tslib "^2.8.0" + +"@types/node@*": + version "24.3.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.0.tgz#89b09f45cb9a8ee69466f18ee5864e4c3eb84dec" + integrity sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow== + dependencies: + undici-types "~7.10.0" + +"@types/prop-types@*": + version "15.7.3" + resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz" + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + +"@types/react-transition-group@^4.2.0": + version "4.4.1" + resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz" + integrity sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ== + dependencies: + "@types/react" "*" + +"@types/react@*": + version "17.0.2" + resolved "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz" + integrity sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + +"@types/ws@8.5.3": + version "8.5.3" + resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz" + integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== + dependencies: + "@types/node" "*" + +abitype@0.7.1: + version "0.7.1" + resolved "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz" + integrity sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ== + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + +call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz" + integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA== + dependencies: + call-bind-apply-helpers "^1.0.1" + get-intrinsic "^1.2.6" + +caniuse-lite@^1.0.30001579: + version "1.0.30001701" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz" + integrity sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw== + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +clsx@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" + integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.9.0: + version "1.9.1" + resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/color/-/color-4.2.3.tgz" + integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== + dependencies: + color-convert "^2.0.1" + color-string "^1.9.0" + +crc-32@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz" + integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== + +cross-fetch@^3.0.4: + version "3.2.0" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz" + integrity sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q== + dependencies: + node-fetch "^2.7.0" + +cross-fetch@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz" + integrity sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw== + dependencies: + node-fetch "^2.7.0" + +css-vendor@^2.0.8: + version "2.0.8" + resolved "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz" + integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ== + dependencies: + "@babel/runtime" "^7.8.3" + is-in-browser "^1.0.2" + +csstype@^2.5.2: + version "2.6.16" + resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz" + integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== + +csstype@^3.0.2: + version "3.0.7" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz" + integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g== + +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +dequal@2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz" + integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug== + +detect-libc@^2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz" + integrity sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA== + +dom-helpers@^5.0.1: + version "5.2.0" + resolved "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz" + integrity sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + +ethereum-cryptography@^2.0.0: + version "2.2.1" + resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz" + integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg== + dependencies: + "@noble/curves" "1.4.2" + "@noble/hashes" "1.4.0" + "@scure/bip32" "1.4.0" + "@scure/bip39" "1.3.0" + +eventemitter3@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" + integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== + +fbemitter@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" + integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== + dependencies: + fbjs "^3.0.0" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + +fbjs@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz" + integrity sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg== + dependencies: + cross-fetch "^3.0.4" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + +flux@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz" + integrity sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ== + dependencies: + fbemitter "^3.0.0" + fbjs "^3.0.0" + +for-each@^0.3.3: + version "0.3.5" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz" + integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg== + dependencies: + is-callable "^1.2.7" + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +get-intrinsic@^1.2.4, get-intrinsic@^1.2.6: + version "1.3.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + +get-proto@^1.0.0, get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + +has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hoist-non-react-statics@^3.3.2: + version "3.3.2" + resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +hyphenate-style-name@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz" + integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== + +indefinite-observable@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz" + integrity sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ== + dependencies: + symbol-observable "1.2.0" + +inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-arguments@^1.0.4: + version "1.2.0" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz" + integrity sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA== + dependencies: + call-bound "^1.0.2" + has-tostringtag "^1.0.2" + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-generator-function@^1.0.7: + version "1.1.0" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz" + integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ== + dependencies: + call-bound "^1.0.3" + get-proto "^1.0.0" + has-tostringtag "^1.0.2" + safe-regex-test "^1.1.0" + +is-in-browser@^1.0.2, is-in-browser@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz" + integrity sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU= + +is-regex@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz" + integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== + dependencies: + call-bound "^1.0.2" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-typed-array@^1.1.3: + version "1.1.15" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz" + integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== + dependencies: + which-typed-array "^1.1.16" + +isomorphic-ws@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz" + integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw== + +"js-tokens@^3.0.0 || ^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +jss-plugin-camel-case@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz" + integrity sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg== + dependencies: + "@babel/runtime" "^7.3.1" + hyphenate-style-name "^1.0.3" + jss "10.5.1" + +jss-plugin-default-unit@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz" + integrity sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-global@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz" + integrity sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-nested@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz" + integrity sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + tiny-warning "^1.0.2" + +jss-plugin-props-sort@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz" + integrity sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-rule-value-function@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz" + integrity sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + tiny-warning "^1.0.2" + +jss-plugin-vendor-prefixer@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz" + integrity sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ== + dependencies: + "@babel/runtime" "^7.3.1" + css-vendor "^2.0.8" + jss "10.5.1" + +jss@10.5.1, jss@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz" + integrity sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg== + dependencies: + "@babel/runtime" "^7.3.1" + csstype "^3.0.2" + indefinite-observable "^2.0.1" + is-in-browser "^1.1.3" + tiny-warning "^1.0.2" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + +nanoid@^3.3.6: + version "3.3.8" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== + +next@^15.3.3: + version "15.3.3" + resolved "https://registry.npmjs.org/next/-/next-15.3.3.tgz" + integrity sha512-JqNj29hHNmCLtNvd090SyRbXJiivQ+58XjCcrC50Crb5g5u2zi7Y2YivbsEfzk6AtVI80akdOQbaMZwWB1Hthw== + dependencies: + "@next/env" "15.3.3" + "@swc/counter" "0.1.3" + "@swc/helpers" "0.5.15" + busboy "1.6.0" + caniuse-lite "^1.0.30001579" + postcss "8.4.31" + styled-jsx "5.1.6" + optionalDependencies: + "@next/swc-darwin-arm64" "15.3.3" + "@next/swc-darwin-x64" "15.3.3" + "@next/swc-linux-arm64-gnu" "15.3.3" + "@next/swc-linux-arm64-musl" "15.3.3" + "@next/swc-linux-x64-gnu" "15.3.3" + "@next/swc-linux-x64-musl" "15.3.3" + "@next/swc-win32-arm64-msvc" "15.3.3" + "@next/swc-win32-x64-msvc" "15.3.3" + sharp "^0.34.1" + +node-fetch@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +picocolors@^1.0.0: + version "1.1.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +popper.js@1.16.1-lts: + version "1.16.1-lts" + resolved "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz" + integrity sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA== + +possible-typed-array-names@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz" + integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg== + +postcss@8.4.31: + version "8.4.31" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" + integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +prop-types@^15.6.2, prop-types@^15.7.2: + version "15.7.2" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" + +react-dom@17.0.1: + version "17.0.1" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz" + integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.1" + +react-is@^16.7.0, "react-is@^16.8.0 || ^17.0.0", react-is@^16.8.1: + version "16.13.1" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-transition-group@^4.4.0: + version "4.4.1" + resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz" + integrity sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react@17.0.1: + version "17.0.1" + resolved "https://registry.npmjs.org/react/-/react-17.0.1.tgz" + integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +regenerator-runtime@^0.13.4: + version "0.13.7" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" + integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== + +safe-regex-test@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz" + integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + is-regex "^1.2.1" + +scheduler@^0.20.1: + version "0.20.1" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz" + integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +semver@^7.7.2: + version "7.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz" + integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA== + +set-function-length@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +sharp@^0.34.1: + version "0.34.2" + resolved "https://registry.npmjs.org/sharp/-/sharp-0.34.2.tgz" + integrity sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg== + dependencies: + color "^4.2.3" + detect-libc "^2.0.4" + semver "^7.7.2" + optionalDependencies: + "@img/sharp-darwin-arm64" "0.34.2" + "@img/sharp-darwin-x64" "0.34.2" + "@img/sharp-libvips-darwin-arm64" "1.1.0" + "@img/sharp-libvips-darwin-x64" "1.1.0" + "@img/sharp-libvips-linux-arm" "1.1.0" + "@img/sharp-libvips-linux-arm64" "1.1.0" + "@img/sharp-libvips-linux-ppc64" "1.1.0" + "@img/sharp-libvips-linux-s390x" "1.1.0" + "@img/sharp-libvips-linux-x64" "1.1.0" + "@img/sharp-libvips-linuxmusl-arm64" "1.1.0" + "@img/sharp-libvips-linuxmusl-x64" "1.1.0" + "@img/sharp-linux-arm" "0.34.2" + "@img/sharp-linux-arm64" "0.34.2" + "@img/sharp-linux-s390x" "0.34.2" + "@img/sharp-linux-x64" "0.34.2" + "@img/sharp-linuxmusl-arm64" "0.34.2" + "@img/sharp-linuxmusl-x64" "0.34.2" + "@img/sharp-wasm32" "0.34.2" + "@img/sharp-win32-arm64" "0.34.2" + "@img/sharp-win32-ia32" "0.34.2" + "@img/sharp-win32-x64" "0.34.2" + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +source-map-js@^1.0.2: + version "1.2.1" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +styled-jsx@5.1.6: + version "5.1.6" + resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz" + integrity sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA== + dependencies: + client-only "0.0.1" + +swr@^0.5.6: + version "0.5.6" + resolved "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz" + integrity sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w== + dependencies: + dequal "2.0.2" + +symbol-observable@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +tiny-warning@^1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +tslib@^2.4.0, tslib@^2.8.0: + version "2.8.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +ua-parser-js@^0.7.18: + version "0.7.40" + resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz" + integrity sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ== + +undici-types@~7.10.0: + version "7.10.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.10.0.tgz#4ac2e058ce56b462b056e629cc6a02393d3ff350" + integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag== + +util@^0.12.5: + version "0.12.5" + resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +web3-core@^4.4.0, web3-core@^4.5.0, web3-core@^4.6.0, web3-core@^4.7.1: + version "4.7.1" + resolved "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz" + integrity sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ== + dependencies: + web3-errors "^1.3.1" + web3-eth-accounts "^4.3.1" + web3-eth-iban "^4.0.7" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + optionalDependencies: + web3-providers-ipc "^4.0.7" + +web3-errors@^1.1.3, web3-errors@^1.2.0, web3-errors@^1.3.0, web3-errors@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz" + integrity sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ== + dependencies: + web3-types "^1.10.0" + +web3-eth-abi@^4.4.1: + version "4.4.1" + resolved "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz" + integrity sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg== + dependencies: + abitype "0.7.1" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-accounts@^4.3.1: + version "4.3.1" + resolved "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz" + integrity sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ== + dependencies: + "@ethereumjs/rlp" "^4.0.1" + crc-32 "^1.2.2" + ethereum-cryptography "^2.0.0" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-contract@^4.5.0, web3-eth-contract@^4.7.2: + version "4.7.2" + resolved "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz" + integrity sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA== + dependencies: + "@ethereumjs/rlp" "^5.0.2" + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth "^4.11.1" + web3-eth-abi "^4.4.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-ens@^4.4.0: + version "4.4.0" + resolved "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz" + integrity sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ== + dependencies: + "@adraffy/ens-normalize" "^1.8.8" + web3-core "^4.5.0" + web3-errors "^1.2.0" + web3-eth "^4.8.0" + web3-eth-contract "^4.5.0" + web3-net "^4.1.0" + web3-types "^1.7.0" + web3-utils "^4.3.0" + web3-validator "^2.0.6" + +web3-eth-iban@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz" + integrity sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ== + dependencies: + web3-errors "^1.1.3" + web3-types "^1.3.0" + web3-utils "^4.0.7" + web3-validator "^2.0.3" + +web3-eth-personal@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz" + integrity sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ== + dependencies: + web3-core "^4.6.0" + web3-eth "^4.9.0" + web3-rpc-methods "^1.3.0" + web3-types "^1.8.0" + web3-utils "^4.3.1" + web3-validator "^2.0.6" + +web3-eth@^4.11.1, web3-eth@^4.8.0, web3-eth@^4.9.0: + version "4.11.1" + resolved "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz" + integrity sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w== + dependencies: + setimmediate "^1.0.5" + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth-abi "^4.4.1" + web3-eth-accounts "^4.3.1" + web3-net "^4.1.0" + web3-providers-ws "^4.0.8" + web3-rpc-methods "^1.3.0" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-net@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz" + integrity sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA== + dependencies: + web3-core "^4.4.0" + web3-rpc-methods "^1.3.0" + web3-types "^1.6.0" + web3-utils "^4.3.0" + +web3-providers-http@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz" + integrity sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ== + dependencies: + cross-fetch "^4.0.0" + web3-errors "^1.3.0" + web3-types "^1.7.0" + web3-utils "^4.3.1" + +web3-providers-ipc@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz" + integrity sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g== + dependencies: + web3-errors "^1.1.3" + web3-types "^1.3.0" + web3-utils "^4.0.7" + +web3-providers-ws@^4.0.8: + version "4.0.8" + resolved "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz" + integrity sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw== + dependencies: + "@types/ws" "8.5.3" + isomorphic-ws "^5.0.0" + web3-errors "^1.2.0" + web3-types "^1.7.0" + web3-utils "^4.3.1" + ws "^8.17.1" + +web3-rpc-methods@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz" + integrity sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig== + dependencies: + web3-core "^4.4.0" + web3-types "^1.6.0" + web3-validator "^2.0.6" + +web3-rpc-providers@^1.0.0-rc.4: + version "1.0.0-rc.4" + resolved "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz" + integrity sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw== + dependencies: + web3-errors "^1.3.1" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-types@^1.10.0, web3-types@^1.3.0, web3-types@^1.6.0, web3-types@^1.7.0, web3-types@^1.8.0: + version "1.10.0" + resolved "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz" + integrity sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw== + +web3-utils@^4.0.7, web3-utils@^4.3.0, web3-utils@^4.3.1, web3-utils@^4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz" + integrity sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw== + dependencies: + ethereum-cryptography "^2.0.0" + eventemitter3 "^5.0.1" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-validator "^2.0.6" + +web3-validator@^2.0.3, web3-validator@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz" + integrity sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg== + dependencies: + ethereum-cryptography "^2.0.0" + util "^0.12.5" + web3-errors "^1.2.0" + web3-types "^1.6.0" + zod "^3.21.4" + +web3@^4.16.0: + version "4.16.0" + resolved "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz" + integrity sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ== + dependencies: + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth "^4.11.1" + web3-eth-abi "^4.4.1" + web3-eth-accounts "^4.3.1" + web3-eth-contract "^4.7.2" + web3-eth-ens "^4.4.0" + web3-eth-iban "^4.0.7" + web3-eth-personal "^4.1.0" + web3-net "^4.1.0" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-rpc-methods "^1.3.0" + web3-rpc-providers "^1.0.0-rc.4" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-typed-array@^1.1.16, which-typed-array@^1.1.2: + version "1.1.18" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz" + integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" + for-each "^0.3.3" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + +ws@^8.17.1: + version "8.18.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz" + integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w== + +zod@^3.21.4: + version "3.24.2" + resolved "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz" + integrity sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==