
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
@passkeys/react-native
Advanced tools
@passkeys/react-native
npm install @passkeys/react-native
import {
Passkeys,
connect,
signMessage,
signTransaction,
exportPrivateKey,
shareWallet,
} from '@passkeys/react-native';
// ...
<Passkeys appId="test" />;
const { addresses, credentialId: id } = await connect();
const signedMessageResponse = await signMessage({
message: {
rawMessage: Buffer.from('Hello World!'),
},
baseAssetName: 'ethereum',
credentialId,
metadata: { title: 'Sign Message' },
});
const signedMessageResponse = await signMessage({
message: {
EIP712Message: {
types: {
EIP712Domain: [
{ name: 'name', type: 'string' },
{ name: 'version', type: 'string' },
{ name: 'chainId', type: 'uint256' },
{ name: 'verifyingContract', type: 'address' },
],
DummyType: [{ name: 'name', type: 'string' }],
},
primaryType: 'DummyType',
domain: {
name: 'Passkeys Network',
version: '1',
chainId: 1,
verifyingContract: '0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC',
},
message: {
name: 'Fred',
},
},
},
});
const signTransactionResponse = await signTransaction({
transaction: {
txData: {
transactionBuffer: Buffer.from(
'AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEDlQMu5tnOGTuT6craZOCkndrjA9o2EJb1rBw/ohlcpypy8Z7Z8rsF8SRaO8FE7vKMoIjCMnrsYrINFR5JNNf2tAbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCppgV9A6KWVpt6hEMng2GqzikT9gsGmsvUzYWZIQ6KoPcBAgMBAQAJA0BCDwAAAAAA',
'base64'
),
},
txMeta: Object.create(null),
},
baseAssetName: 'solana',
credentialId,
metadata: { title: 'Sign Transaction' },
});
const exportPrivateKeyResponse = await exportPrivateKey({
assetName: 'solana',
credentialId,
});
const shareWalletResponse = await shareWallet({
credentialId,
});
MIT
FAQs
@passkeys/react-native
The npm package @passkeys/react-native receives a total of 156 weekly downloads. As such, @passkeys/react-native popularity was classified as not popular.
We found that @passkeys/react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 27 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.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.