Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@jayvdb/react-native-lightning-experimental
Advanced tools
:warning: This is pre-alpha software. Please use as your own risk.
:warning: This is pre-alpha software. Please use as your own risk.
This library hopes to simplify the process of adding Lightning via LND's Neutrino to any React-Native app.
Video Walkthrough: [TODO]
If you have any trouble, please use this commit as a reference to what needs to be changed/added to your project to get everything working.
Install Dependencies:
yarn add react-native-lightning buffer
yarn add -D rn-nodeify
yarn install
Start the project:
react-native run-android
import lnd from 'react-native-lightning';
const lndConf = new LndConf(Networks.regtest);
...
const res = await lnd.start(lndConf);
if (res.isOk()) {
//Lnd started
}
yarn add react-native-lightning buffer react-native-randombytes
Add the following to the end of your postinstall script in yourproject/package.json:
Copy necessary files over for Android & iOS respectively (Note: Create the directories if they do not exist):
android/app/src/main/java/com/yourproject/
and be sure to replace "com.rnlightning" at the top of each file with the name of your own project.ios/lightning/
.Generate the Lndmobile.aar & Lndmobile.framework files.
Add the Lndmobile.aar & Lndmobile.framework files to the project:
android/Lndmobile
ios/lightning
Add packages.add(new LndNativePackage());
to "getPackages" in MainApplication.java just above return packages
"
For Android you'll need these additional dependencies in YourProject/android/app/build.gradle
:
implementation 'com.google.protobuf:protobuf-java:3.13.0'
implementation 'com.android.support:multidex:1.0.3'
multiDexEnabled true
under defaultConfig
in the same gradle file.react-native run-ios
react-native run-android
FAQs
:warning: This is pre-alpha software. Please use as your own risk.
The npm package @jayvdb/react-native-lightning-experimental receives a total of 7 weekly downloads. As such, @jayvdb/react-native-lightning-experimental popularity was classified as not popular.
We found that @jayvdb/react-native-lightning-experimental demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.