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/railway.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 28 additions & 30 deletions src/components/FindWalletProductTable/hooks/useWalletFilters.tsx
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

🔥

Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { FilterOption } from "@/lib/types"

import FindWalletLanguageSelectInput from "@/components/FindWalletProductTable/FindWalletLanguageSelectInput"
import Layer2SelectInput from "@/components/FindWalletProductTable/Layer2SelectInput"
// TODO: Re-enable when at least one privacy-enabled wallet has been listed
// import PrivacyIcon from "@/components/icons/privacy.svg"
import PrivacyIcon from "@/components/icons/privacy.svg"
import {
BrowserIcon,
BuyCryptoIcon,
Expand Down Expand Up @@ -878,34 +877,33 @@ export const useWalletFilters = (): FilterOption[] => {
},
options: [],
},
// TODO: Re-enable when at least one privacy-enabled wallet has been listed
// {
// filterKey: "privacy",
// filterLabel: t("page-find-wallet-privacy"),
// description: t("page-find-wallet-privacy-desc"),
// inputState: false,
// input: (filterIndex, itemIndex, inputState, updateFilterState) => {
// return (
// <SwitchFilterInput
// Icon={PrivacyIcon}
// label={t("page-find-wallet-privacy")}
// description={t("page-find-wallet-privacy-desc")}
// filterIndex={filterIndex}
// itemIndex={itemIndex}
// inputState={inputState}
// updateFilterState={(filterIndex, itemIndex, newInputState) => {
// trackCustomEvent({
// eventCategory: "WalletFilterSidebar",
// eventAction: `${t("page-find-wallet-privacy")}`,
// eventName: `privacy ${newInputState}`,
// })
// updateFilterState(filterIndex, itemIndex, newInputState)
// }}
// />
// )
// },
// options: [],
// },
{
filterKey: "privacy",
filterLabel: t("page-find-wallet-privacy"),
description: t("page-find-wallet-privacy-desc"),
inputState: false,
input: (filterIndex, itemIndex, inputState, updateFilterState) => {
return (
<SwitchFilterInput
Icon={PrivacyIcon}
label={t("page-find-wallet-privacy")}
description={t("page-find-wallet-privacy-desc")}
filterIndex={filterIndex}
itemIndex={itemIndex}
inputState={inputState}
updateFilterState={(filterIndex, itemIndex, newInputState) => {
trackCustomEvent({
eventCategory: "WalletFilterSidebar",
eventAction: `${t("page-find-wallet-privacy")}`,
eventName: `privacy ${newInputState}`,
})
updateFilterState(filterIndex, itemIndex, newInputState)
}}
/>
)
},
options: [],
},
],
},
{
Expand Down
47 changes: 47 additions & 0 deletions src/data/wallets/wallet-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import OneKeyImage from "@/public/images/wallets/onekey.png"
import PhantomImage from "@/public/images/wallets/phantom.png"
import PillarImage from "@/public/images/wallets/pillar.png"
import RabbyWalletImage from "@/public/images/wallets/rabbywallet.png"
import RailwayImage from "@/public/images/wallets/railway.png"
import RainbowImage from "@/public/images/wallets/rainbow.png"
import ReadyImage from "@/public/images/wallets/ready.png"
import SafeImage from "@/public/images/wallets/safe.png"
Expand Down Expand Up @@ -152,6 +153,52 @@ export const walletsData: WalletData[] = [
documentation: "",
supported_chains: ["Ethereum Mainnet"],
},
{
last_updated: "2025-10-01",
name: "Railway Wallet",
image: RailwayImage,
twBackgroundColor: "bg-[#000000]",
twGradiantBrandColor: "from-[#000000]",
url: "https://www.railway.xyz/",
active_development_team: true,
languages_supported: ["en"],
twitter: "https://x.com/Railway_xyz",
discord: "",
reddit: "",
telegram: "https://t.me/railwaywallet",
ios: true,
android: true,
linux: true,
windows: true,
macOS: true,
firefox: false,
chromium: false,
hardware: false,
open_source: true,
repo_url: "https://github.com/Railway-Wallet/Railway-Wallet/",
non_custodial: true,
security_audit: [],
scam_protection: false,
hardware_support: false,
rpc_importing: true,
nft_support: false,
connect_to_dapps: false,
staking: false,
swaps: true,
multichain: true,
layer_2: true,
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "https://help.railway.xyz/",
documentation: "https://help.railway.xyz/",
supported_chains: ["Arbitrum One", "Ethereum Mainnet"],
privacy: true,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

🔥

},
{
last_updated: "2025-07-15",
name: "Ready Wallet",
Expand Down