14.05.2026 rip

This commit is contained in:
2026-05-14 22:06:48 +03:00
parent 789d99aa12
commit 0668ecccf3
2 changed files with 2 additions and 3 deletions

View File

@@ -8,7 +8,6 @@ interface Props {
tokenOptions: Token[]
amount: string
usd?: string
slippage?: string
onTokenChange: (token: Token) => void
onAmountChange?: (v: string) => void
onSetPercent?: (p: number) => void
@@ -20,7 +19,7 @@ const NETWORKS = ['ETH', 'BSC', 'TRX', 'SOL']
const PERCENTS = [25, 50, 100]
export function SwapCard({
mode, token, tokenOptions, amount, usd, slippage,
mode, token, tokenOptions, amount, usd,
onTokenChange, onAmountChange, onSetPercent,
selectedNetwork, onNetworkChange,
}: Props) {