Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

This React Native library packages practical crypto function written in Rust for Substrate, Polkadot and Ethereum.

License

Notifications You must be signed in to change notification settings

paritytech/react-native-substrate-sign

Repository files navigation

react-native-substrate-sign

npm version

This React Native library packages practical crypto functions written in Rust for Substrate, Polkadot and Ethereum. Originally used for Parity Signer.

Getting started

yarn add react-native-substrate-sign
cd ios && pod install && cd ..

Usage

All the functions could be find in the index.d.ts file. They are wrapped with async behaviors, since we need access to Rust runtime, be sure to use await or then to access the result.

import SubstrateSign from 'react-native-substrate-sign';

async function getRandomPhrase(){
  const newRandomPhrase = SubstrateSign.randomPhrase(12);
}

Build and Develop

Requirements

  • node.js ( >=10)
  • yarn (tested on 1.6.0)
  • rustup (tested on rustup 1.21.0)
  • rustc (tested on rustc 1.41.1, from 1.42.0 rust dropped 32-bit apple target support)
  • cargo (tested on cargo 1.41.0)
  • android_ndk (tested on r21, can be downloaded here)
  • $NDK_HOME envarionment variable set to ndk home directory (eg. /usr/local/opt/android-ndk)

* It's recommended to install Android Studio and use that to install the necessary build tools and SDKs for the Android version you want to test on. It's also the best way to test in the emulator.

Setup

  • Use the following script to install the required rust toolchains.
./scripts/init.sh

Develop

After update the rust code, you need to change the following files for updating the interface to native android and ios code.

  • ios/signer.h
  • ios/SubstrateSign.m
  • ios/SubstrateSign.swift
  • android/src/main/java/com/reactlibrary/SubstrateSignModule.java
  • index.js
  • index.d.ts

Test

  • To run the rust test
yarn test

Build

  • Use the following script to build the dynamic library for Android and static library for iOS.
./scripts/build.sh

About

This React Native library packages practical crypto function written in Rust for Substrate, Polkadot and Ethereum.

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •