@susy-js/qr-signer
v0.3.2
Published
A React Component that handles generating and scanning QR codes compatible with Susy Signer
Downloads
3
Readme
qr-signer
A React Component that handles generating and scanning QR codes compatible with Susy Signer mobile app (iOS, Android).
Install
npm install --save @susy-js/qr-signer
Props
scan
- boolean, required - whether to show the QR scanner or a QR code.onScan
- function, required - Callback that will be executed with the data scanned from the QR code.size
- number - Display width and height in pixels, QR code will be scaled if necessary.account
- string, required ifscan === false
- Sophon address,0x
prefixed.srlp
- string, required ifscan === false
unlessdata
is present - RLP-encoded Sophon transaction,0x
prefixed.data
- string, required ifscan === false
unlesssrlp
is present - arbitrary byte data to sign,0x
prefixed.
Example
import React, { Component } from 'react'
import QrSigner from '@susy-js/qr-signer'
class Example extends Component {
state = {
scan: false,
signature: ''
}
render () {
const { scan, signature } = this.state;
if (signature) {
return <div>Signature: {signature}</div>;
}
return (
<div>
<QrSigner
size={300}
scan={scan}
account='0x007311b88A03af17dbb37B47ab7C9Ab556708D56'
srlp='0xeb808504a817c8008252089400255cf193f1ba6dd3ec08ebe62e393030f4dd34872386f26fc10000802a8080'
onScan={(signature) => this.setState({ signature })}
/>
<button onClick={() => this.setState({ scan: !this.state.scan })}>Toggle Scan</button>
</div>
)
}
}
License
GPLv3