Skip to content

Latest commit

 

History

History
70 lines (58 loc) · 1.06 KB

README.md

File metadata and controls

70 lines (58 loc) · 1.06 KB

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;
  description: string;
  homepage: string;
  chains: string[];
  versions: 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