WalletConnect Swift v2

repository·develop·Indexed 19 days ago

https://github.com/walletconnect/walletconnectswiftv2

Swift implementation of WalletConnect v2. This package is deprecated as the project transitions to the Reown brand and will reach End-of-Life on February 17th, 2025.

Tokens
528
Snippets
3
Records
4
Agent score
15%

What's inside walletconnectswiftv2

  1. List GitHub Action artifacts via API

    develop

    To find the available artifacts for a specific workflow run, use the gh api command. You will need the RUN_ID, which is the numeric ID found in the URL of the specific GitHub Actions run (e.g., in https://github.com/OWNER/REPO/actions/runs/5122160070, the ID is 5122160070).

    Replace OWNER, REPO, and RUN_ID in the command below:

    gh api \
      -H "Accept: application/vnd.github+json" \
      -H "X-GitHub-Api-Version: 2022-11-28" \
      /repos/OWNER/REPO/actions/runs/RUN_ID/artifacts 
  2. Migration from WalletConnect Swift to Reown

    develop

    This repository is deprecated as WalletConnect Inc is transitioning to Reown. This specific package will reach End-of-Life on February 17th, 2025.

    To ensure continued support and access to the latest features, developers should migrate to the equivalent packages published under the Reown organization. Detailed migration guides and information regarding deprecations can be found in the official Reown documentation.

  3. Download a specific GitHub Action artifact

    develop

    Once you have listed the artifacts, identify the id or the archive_download_url for the file you need. Use the gh api command to download the artifact and redirect the output to a local .zip file.

    Replace OWNER, REPO, and ARTIFACT_ID (the numeric ID from the list step) in the command below:

    gh api \
      -H "Accept: application/vnd.github+json" \
      -H "X-GitHub-Api-Version: 2022-11-28" \
      /repos/OWNER/REPO/actions/artifacts/ARTIFACT_ID/zip > YOUR_FILENAME.zip