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/nufi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions src/data/wallets/wallet-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import LedgerImage from "@/public/images/wallets/ledger.png"
import LoopringImage from "@/public/images/wallets/loopring.png"
import MetaMaskImage from "@/public/images/wallets/metamask.png"
import MewImage from "@/public/images/wallets/mew.png"
import NuFiImage from "@/public/images/wallets/nufi.png"
import OneKeyImage from "@/public/images/wallets/onekey.png"
import PhantomImage from "@/public/images/wallets/phantom.png"
import PillarImage from "@/public/images/wallets/pillar.png"
Expand Down Expand Up @@ -2583,6 +2584,57 @@ export const walletsData: WalletData[] = [
"zkSync Mainnet",
],
},
{
last_updated: "2025-02-05",
name: "NuFi",
image: NuFiImage,
twBackgroundColor: "bg-[#bae440]",
twGradiantBrandColor: "from-[#bae440]",
url: "https://nu.fi",
active_development_team: true,
languages_supported: ["en"],
twitter: "https://twitter.com/nufiwallet",
discord: "https://discord.com/invite/jSyVPAXw3w",
reddit: "",
telegram: "",
ios: false,
android: false,
linux: false,
windows: false,
macOS: false,
firefox: true,
chromium: true,
hardware: false,
open_source: false,
repo_url: "https://github.com/nufi-official",
non_custodial: true,
security_audit: [],
scam_protection: true,
hardware_support: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
staking: false,
swaps: true,
layer_2: true,
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
social_recovery: false,
onboard_documentation: "https://support.nu.fi/",
documentation: "https://support.nu.fi/",
supported_chains: [
"Ethereum Mainnet",
"Arbitrum One",
"OP Mainnet",
"Base",
"Linea",
"Blast",
],
},
] as const satisfies Omit<WalletData, "new_to_crypto">[]

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