Max F. 판매

TypeScript frontend for a multi-chain crypto wallet supporting Bitcoin, Ethereum, Solana, Tron, and stablecoins (USDT/USDC) across multiple networks. Built with Next.js 14, React 18, and Tailwind CSS, it includes withdrawal/deposit flows, real-time updates via Socket.io, and QR code generation. Includes comprehensive multi-network asset reference documentation for proper asset/network parameter handling across ERC-20, BEP-20, TRC-20, and SPL token standards.
walletFrontend is a Next.js-based cryptocurrency wallet frontend supporting multi-chain asset management. It provides a complete UI for wallet operations including deposits, withdrawals, internal transfers, and balance tracking across multiple blockchain networks (Bitcoin, Ethereum, BSC, Solana, Tron, XRP).
The application includes comprehensive multi-chain network reference documentation to guide developers on correct asset and network parameter usage for API requests.
npm install
# or
yarn install
npm run dev
Starts the development server at http://localhost:3000
npm run build
npm start
npm run lint
next.config.js)images.pexels.comDemo credentials for testing:
demo@example.comdemo1234| Asset | asset | network | Blockchain |
|---|---|---|---|
| Bitcoin | btc | btc | Bitcoin |
| Ethereum | eth | eth | Ethereum |
| BNB | bnb | bsc | BNB Smart Chain |
| Solana | sol | sol | Solana |
| Tron | trx | trx | Tron |
| XRP | xrp | xrp | XRP Ledger |
| Asset | asset | network | Blockchain |
|---|---|---|---|
| USDT | usdt | erc20, bep20, trc20, spl | Ethereum, BSC, Tron, Solana |
| USDC | usdc | erc20, bep20, spl | Ethereum, BSC, Solana |
POST /api/wallet/withdraw
{
"asset": "eth",
"network": "eth",
"amount": "0.5",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f5bA12",
"withdrawal_password": "123456"
}
POST /api/wallet/withdraw
{
"asset": "usdt",
"network": "trc20",
"amount": "50",
"address": "TExampleTrxAddressHere",
"withdrawal_password": "123456"
}
GET /api/wallet/withdraw/preview?asset=trx&network=trx&amount=100
POST /api/wallet/internal-transfer
{
"asset": "usdt",
"network": "bep20",
"amount": "100",
"to_user_id": "12345"
}
❌ Using token network for native coins
{ "asset": "trx", "network": "trc20" } // Wrong!
✅ Correct
{ "asset": "trx", "network": "trx" }
❌ Using native network for tokens
{ "asset": "usdt", "network": "trx" } // Wrong!
✅ Correct
{ "asset": "usdt", "network": "trc20" }
❌ Using "bnb" as network
{ "asset": "bnb", "network": "bnb" } // Wrong!
✅ Correct
{ "asset": "bnb", "network": "bsc" }
src/
├── app/
│ ├── error.tsx # Page-level error boundary
│ └── ... # Page components
├── components/ # Reusable UI components
├── hooks/ # Custom React hooks
└── utils/ # Utility functions
public/
├── manifest.json # PWA manifest
└── icons/ # App icons (192x512)
next.config.js격리된 샌드박스를 띄워 서버에서 바로 실행하세요 — 로컬 설정 불필요.
샌드박스 검증이 완료되었으며 감지된 실행 경로가 통과했습니다.
This Next.js, React web app completed archive review. Structure, dependency manifests, documentation, functional source, and common risk patterns were checked by the Tetrees verification pipeline; runtime phases are stated separately.
Deterministic AVCP artifact review
파이프라인 avcp-2026-08-04.1 · SHA-256 b939e4dcb30dcae8…
This version-scoped review deterministically inspects the submitted archive for structure, dependencies, documentation, functional source, and common malicious or high-risk signals. Build and test phases are reported as passed only after an isolated sandbox audition. It is not a guarantee of perfect security.
검토일 2026년 8월 4일
전체 설치 가이드와 연동 프롬프트는 구매 후 열람할 수 있습니다.
이 제품을 AI IDE, 웹 빌더 또는 클라우드 IDE로 바로 가져오세요.
Tetrees를 호환 AI IDE에 연결해 보유 제품을 불러오고, 판매자 업로드 권한을 노출하지 않은 채 검증된 ZIP을 받으세요.
리뷰 25개
Great starting point. Picked up this automation setup for a client workflow — The abstractions are sensible and easy to swap out. Highly recommend.
Clean and well thought out. Zero mystery dependencies, everything is documented, and the README covered every config I needed.
Really solid work. As someone who automates these all day, the code is readable and the structure makes sense.
Dropped it into my stack and it just worked. As someone who automates these all day, typeScript types are actually accurate, no fighting the compiler. Will definitely check their other products.
Dropped it into my stack and it just worked. Setup was a single command and it ran first try, and the walkthrough got me running in minutes.
Saved me a ton of time. Dropped "Multilanguage Web Crypto Wallet" straight into the workflow; docs were clear enough that I never had to open an issue. Support answered my question fast.
Exactly what I needed. As someone who automates these all day, setup was a single command and it ran first try.
Worth every point. Picked up this automation setup for a client workflow — No spaghetti — the folder layout is sane.
Punches well above its price. Used this automation setup to automate my workflow and it cut days off the build.
Shipped with this same week. Picked up this automation setup for a client workflow — The abstractions are sensible and easy to swap out.
토론을 불러오는 중…