@iota/pearl-diver-react-native
v1.0.0-beta.30
Published
Transaction nonce searcher for IOTA apps built with react-native.
Downloads
186
Readme
@iota/pearl-diver-react-native
IOTA transaction nonce searcher for react native apps.
Installation
npm install @iota/pearl-diver-react-native
Automatic linking:
react-native link @iota/pearl-diver-react-native
Usage
import { composeAPI } from '@iota/core'
import { attachToTangle } from '@iota/pearl-diver-react-native';
const iota = composeAPI({
provider: 'http://...',
attachToTangle
})
const seed = 'SOME9GOOD9RANDOM9SEED...'
const transfers = [{
address: '9'.repeat(81),
value: 0
}]
const depth = 3
const minWeightMagnitude = 14
iota.prepareTransfers(seed, transfers)
.then(trytes => iota.sendTrytes(trytes, depth, minWeightMagnitude))
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜@iota/pearl-diver-react-native
and addPearlDiver.xcodeproj
- In XCode, in the project navigator, select your project. Add
libPearlDiver.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 org.iota.PearlDiver.PearlDiverPackage;
to the imports at the top of the file - Add
new PearlDiverPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':@iota/pearl-diver-react-native' project(':@iota/pearl-diver-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@iota/pearl-diver-react-native/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':@iota/pearl-diver-react-native')