Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/images/wallets/clave.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions src/data/wallets/wallet-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BraavosImage from "@/public/images/wallets/braavos_wallet.png"
import BridgeWalletImage from "@/public/images/wallets/bridge.png"
import BurnerImage from "@/public/images/wallets/burner.png"
import CakeWalletImage from "@/public/images/wallets/cakewallet.png"
import ClaveWallet from "@/public/images/wallets/clave.png"
import ClearWallet from "@/public/images/wallets/clearwallet.png"
import Coin98Image from "@/public/images/wallets/coin98.png"
import CoinbaseImage from "@/public/images/wallets/coinbase.png"
Expand Down Expand Up @@ -2705,6 +2706,50 @@ export const walletsData: WalletData[] = [
"Blast",
],
},
{
last_updated: "2025-09-24",
name: "Clave",
image: ClaveWallet,
twBackgroundColor: "bg-[#000000]",
twGradiantBrandColor: "from-[#000000]",
url: "https://www.getclave.com/",
active_development_team: true,
languages_supported: ["en"],
twitter: "https://x.com/getclave",
discord: "https://discord.com/invite/getclave",
reddit: "",
telegram: "https://t.me/getclave",
ios: true,
android: true,
linux: false,
windows: false,
macOS: false,
firefox: false,
chromium: false,
hardware: false,
open_source: true,
repo_url: "https://github.com/getclave",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Parizval @ulerdogan Hey folks! Just checking, are the apps themselves open source? The github link here is to the org where I see several repos but not spotting the app itself but may be missing it, thanks!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The mobile app repo is not available directly, but separate packages and tool are available. Also, smart contracts are verified on explorers.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay—this flag is reserved for fully open-source so I would request we flip that to false in the meantime 🙏

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure

non_custodial: true,
security_audit: ["https://github.com/getclave/audits"],
scam_protection: true,
hardware_support: false,
rpc_importing: false,
nft_support: false,
connect_to_dapps: false,
staking: true,
swaps: true,
layer_2: true,
gas_fee_customization: false,
ens_support: true,
erc_20_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
social_recovery: true,
onboard_documentation: "",
documentation: "",
supported_chains: ["Arbitrum One", "Base"],
},
] as const satisfies Omit<WalletData, "new_to_crypto">[]

export type WalletName = (typeof walletsData)[number]["name"]
Expand Down