0.1.12 • Published 9 months ago
@chainplatform/sdk v0.1.12
ChainSDK
@chainplatform/sdk is a React Native library implement for react-native and react-native-web. Require crypto-js and react-native-mmkv packages.
Install
npm install @chainplatform/sdk --save
or
yarn add @chainplatform/sdk
Usage
import React from 'react';
import * as ChainSDK from '@chainplatform/sdk';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<View style={{flex:1}}></View>
);
}
}