![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@parity/qr-signer
Advanced tools
A React Component that handles generating and scanning QR codes compatible with Parity Signer
A React Component that handles generating and scanning QR codes compatible with Parity Signer mobile app (iOS, Android).
npm install --save @parity/qr-signer
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 if scan === false
- Ethereum address, 0x
prefixed.rlp
- string, required if scan === false
unless data
is present - RLP-encoded Ethereum transaction, 0x
prefixed.data
- string, required if scan === false
unless rlp
is present - arbitrary byte data to sign, 0x
prefixed.import React, { Component } from 'react'
import QrSigner from '@parity/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'
rlp='0xeb808504a817c8008252089400255cf193f1ba6dd3ec08ebe62e393030f4dd34872386f26fc10000802a8080'
onScan={(signature) => this.setState({ signature })}
/>
<button onClick={() => this.setState({ scan: !this.state.scan })}>Toggle Scan</button>
</div>
)
}
}
GPLv3
FAQs
A React Component that handles generating and scanning QR codes compatible with Parity Signer
We found that @parity/qr-signer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.