Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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/imkey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions src/data/wallets/wallet-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import FoxWalletImage from "@/public/images/wallets/foxwallet.png"
import FrameImage from "@/public/images/wallets/frame.png"
import GemWalletImage from "@/public/images/wallets/gemwallet.png"
import GridPlusImage from "@/public/images/wallets/gridplus.png"
import imKeyImage from "@/public/images/wallets/imkey.png"
import imTokenImage from "@/public/images/wallets/imtoken.png"
import IoFinnetImage from "@/public/images/wallets/iofinnet.png"
import KeystoneImage from "@/public/images/wallets/keystone.png"
Expand Down Expand Up @@ -2924,6 +2925,70 @@ export const walletsData: WalletData[] = [
"Zora",
],
},
{
last_updated: "2025-12-17",
name: "imKey Pro Hardware Wallet",
image: imKeyImage,
twBackgroundColor: "bg-[#2A3535]",
twGradiantBrandColor: "from-[#2A3535]",
url: "https://imkey.im/",
active_development_team: true,
languages_supported: ["en", "zh"],
twitter: "https://x.com/imKeyOfficial",
discord: "https://discord.com/invite/imtoken",
reddit: "",
telegram: "",
ios: true,
android: true,
linux: false,
windows: true,
macOS: true,
firefox: false,
chromium: true,
hardware: true,
open_source: true,
repo_url: "https://github.com/consenlabs/imkey-core",
non_custodial: true,
security_audit: [
"https://drive.google.com/file/d/1P9NEfAQe_RMoou4XRm-8HHy6nuUKSyoD/view?usp=drive_link",
"https://learn.imkey.im/hc/en-001/articles/52018691808665",
],
scam_protection: true,
hardware_support: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
staking: true,
swaps: true,
multichain: true,
layer_2: true,
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "https://support.imkey.im",
documentation: "https://learn.imkey.im/",
supported_chains: [
"Ethereum Mainnet",
"zkSync Mainnet",
"Arbitrum One",
"OP Mainnet",
"Scroll",
"Linea",
"Blast",
"Polygon zkEVM",
"Base",
"Unichain",
"Arbitrum Nova",
"Taiko Alethia",
"Manta Pacific Mainnet",
"Abstract",
"World Chain",
],
},
] as const satisfies Omit<WalletData, "new_to_crypto">[]

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