@maticnetwork/react-native-ether
v1.1.2
Published
Wallet utils module for react native
Downloads
2
Readme
react-native-ether
Getting started
$ npm install @maticnetwork/react-native-ether --save
Mostly automatic installation
$ react-native link @maticnetwork/react-native-ether
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜@maticnetwork/react-native-ether
and addRNEther.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNEther.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNEtherPackage;
to the imports at the top of the file - Add
new RNEtherPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-ether' project(':react-native-ether').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-ether/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-ether')
Usage
import RNEther from '@maticnetwork/react-native-ether';
RNEther.generatePKfromMnemonic(mnemonic, index)
.then(privateKey => {})
.catch((errorString, error) => {})