fabriziovigevani / walletconnect-registry

App Registry for WalletConnect Protocol

Home Page:https://registry.walletconnect.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

walletconnect-registry

App Registry for WalletConnect Protocol

Submit new App

  1. Go to the "Issues" tab above
  2. Press "New Issue"
  3. Select "App Submission"
  4. Fill in the template
  5. Submit new issue

API

// Dapps
https://registry.walletconnect.org/data/dapps.json

// Wallets
https://registry.walletconnect.org/data/wallets.json

// Logos
// [size] = "sm" | "md" | "lg"
// [id] = present in app entry
https://registry.walletconnect.org/logo/[size]/[id].jpeg

Schema

interface AppEntry {
  id: string;
  name: string;
  homepage: string;
  chains: string[];
  app: {
    browser: string;
    ios: string;
    android: string;
    mac: string;
    windows: string;
    linux: string;
  };
  mobile: {
    native: string;
    universal: string;
  };
  desktop: {
    native: string;
    universal: string;
  };
  metadata: {
    shortName: string;
    colors: {
      primary: string;
      secondary: string;
    };
  };
}

interface AppRegistry {
  [id: string]: AppEntry;
}

License

MIT

About

App Registry for WalletConnect Protocol

https://registry.walletconnect.org

License:MIT License


Languages

Language:TypeScript 49.7%Language:JavaScript 48.4%Language:CSS 2.0%