You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initial neutrino sync times can take a while for first time users. This is a trusted setup that allows the app to download a cached pre-synced archive of the neutrino headers. This speeds up the time it takes for LND to become usable as syncing doesn't need to start from scratch.
107
+
```bash
108
+
#Add these dependencies to your app
109
+
yarn add react-native-fs react-native-zip-archive
110
+
#or
111
+
npm i react-native-fs react-native-zip-archive -S
112
+
113
+
cd ios && pod install &&cd ../
114
+
````
115
+
116
+
Using it:
117
+
118
+
```javascript
119
+
import lndCache from '@synonymdev/react-native-lightning/dist/utils/neutrino-cache';
0 commit comments