https://github.com/tetherto/wdk-uikit-react-native
UI component library for building React Native crypto wallets.
https://github.com/tetherto/wdk-uikit-react-native
android ios mobile react-native ui-components wdk
Last synced: 25 days ago
JSON representation
UI component library for building React Native crypto wallets.
- Host: GitHub
- URL: https://github.com/tetherto/wdk-uikit-react-native
- Owner: tetherto
- License: apache-2.0
- Created: 2025-10-01T16:11:25.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-03-19T23:32:23.000Z (4 months ago)
- Last Synced: 2026-03-20T14:19:30.129Z (4 months ago)
- Topics: android, ios, mobile, react-native, ui-components, wdk
- Language: TypeScript
- Homepage: https://docs.wdk.tether.io/ui-kits/react-native-ui-kit
- Size: 30.3 KB
- Stars: 2
- Watchers: 0
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# @tetherto/wdk-uikit-react-native
A set of reusable, stateless components anyone can use to ship production-quality wallet or wallet-enabled apps fast.
To see it in action, please check the Wallet [WDK React Native Starter](https://github.com/tetherto/wdk-starter-react-native), a complete wallet application built with WDK and WDK UI Kit.
## ๐ About WDK
This repository is part of the [**WDK (Wallet Development Kit)**](https://wallet.tether.io/) project, which empowers developers to build secure, non-custodial wallets with unified blockchain access, stateless architecture, and complete user control.
For detailed documentation about the complete WDK ecosystem, visit [docs.wallet.tether.io](https://docs.wallet.tether.io).
## ๐ Features
- Ready-made wallet building blocks: amount input, asset selector, address input, QR code, balance, transaction item/list, seed phrase
- Themeable out of the box: light/dark modes, brand colors, `ThemeProvider` and `useTheme` API
- Type-safe, documented props and theme types for excellent DX
- Composable and unopinionated: no business logic; wire in your own data/state from WDK or elsewhere
- Mobile-first: React Native primitives with sensible defaults and accessible touch targets
- Customizable visuals: override per-component variants via `componentVariants` or fine-tune with `componentOverrides`
## โฌ๏ธ Install
```bash
npm install @tetherto/wdk-uikit-react-native
```
## ๐ Quick Start
Wrap your app with the theme and render a list.
```tsx
import { ThemeProvider, lightTheme, TransactionList } from '@tetherto/wdk-uikit-react-native'
export default function App() {
const transactions = [{ id: '1', token: 'USDT', amount: '10.00', fiatAmount: '10.00', fiatCurrency: 'USD', network: 'Ethereum', type: 'received' }]
return (
)
}
```
## ๐ Use with WDK
Wire data from WDK into these UI components.
```tsx
import * as React from 'react'
import WDK from '@tetherto/wdk'
import WalletManagerEvm from '@tetherto/wdk-wallet-evm'
import WalletManagerBtc from '@tetherto/wdk-wallet-btc'
import { ThemeProvider, lightTheme, Balance, CryptoAddressInput, AmountInput } from '@tetherto/wdk-uikit-react-native'
export function WalletScreen() {
const [balance, setBalance] = React.useState(null)
const [error, setError] = React.useState(null)
React.useEffect(() => {
async function bootstrap() {
try {
const wdkWithWallets = new WDK('your seed phrase')
.registerWallet('bitcoin', WalletManagerBtc, { provider: 'https://blockstream.info/api' })
const accounts = await wdkWithWallets.getAccount('bitcoin', 0)
const address = await accounts.getAddress()
const balance = await accounts.getBalance()
setBalance(balance)
} catch (e: any) {
setError(e?.message ?? 'Unknown error')
}
}
bootstrap()
}, [])
return (
{/** do something */}} />
setAmount(balance ?? 0)}
/>
)
}
```
## ๐ Components
| Component | Description |
| --- | --- |
| `AmountInput` | Numeric input with token/fiat toggle, balance helper and Max action. |
| `AssetSelector` | Token search & pick list with recent items and empty states. |
| `NetworkSelector` | Network picker with gas level indicators and colors. |
| `Balance` | Displays a balance value with optional masking and custom loader. |
| `CryptoAddressInput` | Address input with QR scan and paste helpers, validation state. |
| `QRCode` | QR renderer for addresses/payment requests with labeling and styling. |
| `TransactionItem` | Single transaction row (sent/received) with token, amounts, network. |
| `TransactionList` | Virtualized list of transactions using `TransactionItem`. |
| `SeedPhrase` | Grid of seed words with optional editing and loading states. |
## ๐งพ Component APIs
Each component exposes a typed, minimal API designed to work with WDK data models. Below are the primary props. For example usage, see the Quick Start and the Template Wallet.
### AmountInput
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| label | string | no | 'Enter Amount' | Field label |
| value | string | yes | โ | Amount text |
| onChangeText | (text: string) => void | yes | โ | Called when text changes |
| tokenSymbol | string | yes | โ | Token code, e.g. 'ETH' |
| tokenBalance | string | yes | โ | Token balance (e.g. '1.23') |
| tokenBalanceUSD | string | yes | โ | Balance in fiat (e.g. '$4200.00') |
| inputMode | 'token' | 'fiat' | yes | โ | Current input mode |
| onToggleInputMode | () => void | yes | โ | Switch token/fiat |
| onUseMax | () => void | yes | โ | Fill with max amount |
| error | string | no | โ | Error message |
| editable | boolean | no | true | Disable input when false |
### AssetSelector
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| tokens | Token[] | yes | โ | Full list of tokens to display/filter |
| recentTokens | string[] | yes | โ | Array of recent token names to show in the Recent row |
| onSelectToken | (t: Token) => void | yes | โ | Called when user picks a token; disabled when `hasBalance` is false |
`Token` type:
```ts
type Token = {
id: string
symbol: string
name: string
balance: string
balanceUSD: string
icon: ImageSourcePropType
color: string
network?: string
hasBalance: boolean
}
```
### Balance
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| value | number | no | 0 | Balance number |
| isLoading | boolean | no | false | Show loader state |
| Loader | React.ComponentType | no | โ | Custom loader component |
| showHide | boolean | no | true | Toggle hide/show balance |
| currency | string | no | 'USD' | Currency label |
| EyeOpenIcon | React.ComponentType | no | default | Shown when hidden |
| EyeClosedIcon | React.ComponentType | no | default | Shown when visible |
### CryptoAddressInput
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| label | string | no | 'Recipient Address' | Field label |
| value | string | yes | โ | Address text |
| onChangeText | (text: string) => void | yes | โ | Called when text changes |
| placeholder | string | no | 'T08p3BGPIuh1l934IIflu....Kc2GXhKc' | Hint text |
| onPaste | () => void | no | โ | Paste action handler |
| onQRScan | () => void | no | โ | Open QR scanner |
| editable | boolean | no | true | Disable input when false |
| error | string | no | โ | Error message |
### QRCode
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| value | string | yes | โ | Data to encode |
| size | number | no | 200 | QR side in px |
| color | string | no | theme.primary | Dot color |
| backgroundColor | string | no | 'transparent' | Background behind QR |
| label | string | no | โ | Optional title above QR |
| containerStyle | ViewStyle | no | โ | Wrapper style |
| labelStyle | any | no | โ | Style for label |
### TransactionItem
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| transaction | { id: string; token: string; amount: string; fiatAmount: string; fiatCurrency: string; network: string; type: 'sent' | 'received' } | yes | โ | Transaction data |
| onPress | () => void | no | โ | Row press handler |
### TransactionList
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| transactions | Transaction[] | yes | โ | List of transactions |
### NetworkSelector
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| networks | { id: string; name: string; gasLevel: 'High' | 'Normal' | 'Low'; gasColor: string; icon: string | any; color: string }[] | yes | โ | Networks to pick from |
| onSelectNetwork | (network: Network) => void | yes | โ | Called when a network is chosen |
### SeedPhrase
| Prop | Type | Required | Default | Notes |
| --- | --- | --- | --- | --- |
| words | string[] | yes | โ | Seed words list (12/24, etc.) |
| editable | boolean | no | false | Allow editing inputs |
| onWordChange | (index: number, word: string) => void | no | โ | Called on word edit |
| onKeyPress | (index: number, key: string) => void | no | โ | Handle key press (e.g. Backspace navigation) |
| isLoading | boolean | no | false | Show generating/loading state |
## ๐จ Theming
Use a built-in theme or create one from your brand. The theming system is lightweight and flexible:
- Follow system light/dark or force a mode
- Start with `lightTheme`/`darkTheme`, or generate from brand colors via `createThemeFromBrand`
- Access theme values anywhere with `useTheme`
- Customize visuals globally with `componentVariants` and surgically with `componentOverrides`
See full guidance in [`THEME_USAGE.md`](./THEME_USAGE.md).
```tsx
import { ThemeProvider, darkTheme, createThemeFromBrand } from '@tetherto/wdk-uikit-react-native'
const brandTheme = createThemeFromBrand({
primaryColor: '#0F62FE',
secondaryColor: '#6F6F6F',
fontFamily: { regular: 'System', bold: 'System' },
}, 'light')
export function Root() {
return (
{/* your UI */}
)
}
```
### Theme API
Key types: `Theme`, `ThemeMode`, `ColorPalette`, `Typography`, `Spacing`, `BorderRadius`, `ComponentVariant`, `ComponentOverrides`, `BrandConfig`.
`Theme` shape:
```ts
type Theme = {
mode: 'light' | 'dark' | 'auto'
colors: ColorPalette
typography: Typography
spacing: Spacing
borderRadius: BorderRadius
componentVariants?: ComponentVariant
componentOverrides?: ComponentOverrides
}
```
`BrandConfig` for `createThemeFromBrand`:
```ts
type BrandConfig = {
primaryColor: string
secondaryColor?: string
fontFamily?: {
regular?: string
medium?: string
semiBold?: string
bold?: string
}
}
```
Notes:
- `mode` can be 'light', 'dark', or 'auto' (follows system settings).
- `componentVariants` sets default variants/styles per component key (e.g., `AmountInput.default`, `TransactionItem.compact`).
- `componentOverrides` enables targeted overrides for specific component parts (e.g., paddings, font sizes, colors).
Key theme pieces at a glance:
| Token | Purpose |
| --- | --- |
| `colors` | Brand palette and semantic UI colors. |
| `typography` | Font families, sizes, weights. |
| `spacing` | Consistent spacing scale for paddings/margins. |
| `borderRadius` | Rounded corners scale. |
| `componentVariants` | Default visual variants by component. |
| `componentOverrides` | Fine-grained style overrides by component part. |
## ๐งช Full Example Integration
Check the [WDK React Native Starter Wallet](https://github.com/tetherto/wdk-starter-react-native), a complete wallet application built with WDK and WDK UI Kit.
## ๐ ๏ธ Development
```bash
npm install
npm run lint
npm test
```
## ๐ License
This project is licensed under the Apache-2.0 - see the [LICENSE](LICENSE) file for details.
## ๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Read the [code of conduct](CODE_OF_CONDUCT.md)
- See [contributing guide](CONTRIBUTING.md)
## ๐ Support
For support, please open an issue on the GitHub repository.