React Native Core
Hooks-based React Native library for building multi-chain wallet apps with WDK
Features
Quick Start
1. Install
npm install @tetherto/wdk-react-native-core2. Wrap Your App
import { WdkAppProvider } from '@tetherto/wdk-react-native-core'
import { bundle } from './.wdk' // See Bundle Configuration below
export default function App() {
return (
<WdkAppProvider bundle={{ bundle }} wdkConfigs={configs}>
<YourApp />
</WdkAppProvider>
)
}
