Skip to content
Open
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/sspwallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions src/data/wallets/wallet-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import RabbyWalletImage from "@/public/images/wallets/rabbywallet.png"
import RainbowImage from "@/public/images/wallets/rainbow.png"
import SafeImage from "@/public/images/wallets/safe.png"
import ShapeShiftImage from "@/public/images/wallets/shapeshift.png"
import SSPWalletImage from "@/public/images/wallets/sspwallet.png"
import TahoImage from "@/public/images/wallets/taho.png"
import TokenPocketImage from "@/public/images/wallets/tokenpocket.png"
import TorusImage from "@/public/images/wallets/torus.png"
Expand Down Expand Up @@ -2478,6 +2479,89 @@ export const walletsData: WalletData[] = [
"Taiko Alethia",
],
},
{
last_updated: "2025-03-19",
name: "SSP Wallet",
image: SSPWalletImage,
twBackgroundColor: "bg-[#FFFFFF]",
twGradiantBrandColor: "from-[#FFFFFF]",
url: "https://sspwallet.io",
active_development_team: true,
languages_supported: [
"en",
"id",
"cs",
"fil",
"ru",
"de",
"fr",
"it",
"bn",
"hi",
"hr",
"el",
"ta",
"fi",
"hu",
"ja",
"es",
"vi",
"zh",
"zh-tw",
"ko",
"bg",
"sl",
"pt",
"uk",
"ms",
"th",
"ca",
"nl",
"pl",
"ro",
"sk",
"nb",
],
twitter: "https://twitter.com/RunOnFlux",
discord: "https://discord.gg/runonflux",
reddit: "https://www.reddit.com/r/Flux_Official",
telegram: "https://t.me/runonflux",
ios: true,
android: true,
linux: false,
windows: false,
macOS: false,
firefox: true,
chromium: true,
hardware: false,
open_source: true,
repo_url: "https://github.com/runonflux/ssp-wallet",
non_custodial: true,
security_audit: [
"https://github.com/RunOnFlux/ssp-wallet/blob/master/SSP_Security_Audit_HALBORN_2025.pdf",
"https://github.com/RunOnFlux/ssp-wallet/blob/master/Account_Abstraction_Schnorr_MultiSig_SDK_SecAudit_HALBORN_2025.pdf",
"https://github.com/RunOnFlux/ssp-wallet/blob/master/Account_Abstraction_Schnorr_MultiSig_SmartContracts_SecAudit_HALBORN_2025.pdf",
],
scam_protection: false,
hardware_support: false,
rpc_importing: true,
nft_support: false,
connect_to_dapps: true,
staking: false,
swaps: true,
multichain: true,
layer_2: true,
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: true,
social_recovery: false,
onboard_documentation: "https://sspwallet.io/guide",
documentation: "https://docs.sspwallet.io",
supported_chains: ["Ethereum Mainnet", "Base"],
},
] as const satisfies Omit<WalletData, "new_to_crypto">[]

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