App Registry for WalletConnect Protocol
- Go to the "Issues" tab above
- Press "New Issue"
- Select "App Submission"
- Fill in the template
- Submit new issue
// 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
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;
}
MIT