Skip to main content

Solana

Keystone is now integrated with multiple Solana wallets, including Solflare, Backpack.

Connect with Keystone

For Solana, Keystone defines the new UR type crypto-multi-accounts to expose the public keys. Software can utilize these data to generate the desired addresses. Developers can use the SDK to retrieve and parse this data from the QR Code displayed on the Keystone device.

Here is a sample code snippet to scan the animated QR code and parse the data:

import KeystoneSDK, {UR, URType} from "@keystonehq/keystone-sdk"
import {AnimatedQRScanner} from "@keystonehq/animated-qr"

/**
* Represents a component that handles the scanning of an animated QR code to retrieve
* the crypto hdkey information from a Keystone hardware wallet.
*
* The component uses the `AnimatedQRScanner` from `@keystonehq/animated-qr` to scan the QR code,
* and the `KeystoneSDK` to parse the scanned data into a human-readable account information format.
*/

const Account = () => {

/**
* Callback function to handle successful QR code scans.
*
* @param {Object} data - The data object containing the type and cbor encoded string.
* @param {string} data.type - The type of the scanned data.
* @param {string} data.cbor - The cbor encoded string representing the account information.
*/
const onSucceed = ({type, cbor}) => {
// Parses the crypto multi accounts from the scanned QR code data.
const account = KeystoneSDK.parseMultiAccounts(new UR(Buffer.from(cbor, "hex"), type))
console.log("multiAccounts: ", multiAccounts);
}

/**
* Callback function to handle errors during QR code scanning.
*
* @param {string} errorMessage - The error message describing what went wrong during scanning.
*/
const onError = (errorMessage) => {
console.log("error: ", errorMessage);
}

// Renders the AnimatedQRScanner component with the specified handlers for success and error events.
return <AnimatedQRScanner handleScan={onSucceed} handleError={onError} urTypes={[URType.CryptoMultiAccounts]} />
}

Here is an example of the resulting data:

{
"masterFingerprint": "f23f9fd2",
"keys": [
{
"chain": "SOL",
"path": "m/44'/501'/0'",
"publicKey": "b6...",
"name": "SOL-0",
"chainCode": "",
"extendedPublicKey": ""
},
{
"chain": "SOL",
"path": "m/44'/501'/1'",
"publicKey": "1b...",
"name": "SOL-1",
"chainCode": "",
"extendedPublicKey": ""
}
],
"device": "Keystone"
}

Here is the type defination of the CryptoMutliAccounts:

interface MultiAccounts {
masterFingerprint: string // A 4 bytes hex string indicates the current mnemonic, e.g. 'f23f9fd2'
keys: Account[] // An array of public keys
device?: string // The device name, e.g. 'Keystone'
deviceId?: string // The device id, e.g. '28475c8d80f6c06bafbe46a7d1750f3fcf2565f7'
deviceVersion?: String // The device firmware version, e.g. '1.0.2'
}

interface Account {
chain: string // The symbol of the coin this key belongs to, e.g. 'SOL'
path: string // The full derivation path of current key
publicKey: string // Public key in hex string
name?: string // The address name in hardware wallet
chainCode: string // The chain code if exist
extendedPublicKey?: string // The bip32 extended public key, e.g. xpub...
note?: string // The note for current account
}

Keystone will provide the master fingerprint and the public keys, allowing software wallets to select the necessary data to generate the desired addresses.

Genereate the sign request

For Solana, Keystone introdue the new UR type sol-sign-request to encode the solana transaction data or message. The request can also be splited into these two types:

  • Transaction
  • Message

Here is the sample data structure for sol-sign-request:

requestId: String // UUID for current request
signData: String // the unsigned transaction data, in hex string
path: String // the HD path to tell which private key should be used to sign the data
xfp: String // master fingerprint provided by Keystone when getting accounts
dataType: Enum // supported data type. Currently supports transaction and message
origin: Optional(String) // source of the request, wallet name etc
address: Optional(String) // the address for request this signing

Here is a sample code snippet demonstrating how to use the SDK to generate the sign request :

 import KeystoneSDK, {KeystoneSolanaSDK} from "@keystonehq/keystone-sdk";
import {AnimatedQRCode} from "@keystonehq/animated-qr";

const solSignRequest = {
requestId: "6c3633c0-02c0-4313-9cd7-e25f4f296729", // uuid.v4()
signData: "48656c6c6f2c204b657973746f6e652e",
dataType: KeystoneSolanaSDK.DataType.Message,
path: "m/44'/501'/0'/0'/0'",
xfp: "F23F9FD2",
chainId: 1,
origin: "Solfare"
}

const Solana = () => {
const keystoneSDK = new KeystoneSDK();
const ur = keystoneSDK.sol.generateSignRequest(solSignRequest);

return <AnimatedQRCode type={ur.type} cbor={ur.cbor.toString("hex")}/>
}
options={{
size: number, // optional, QR code width and length in UI, default 180px
capacity: number, // optional, the capacity of a single QR code, default 400 bytes per image
interval: number // optional, the QR code change time interval in mill seconds for animated QR code, default 100ms
}}

Here is a javascript sample code snippet demonstrating how to use the Keystone SDK to encode a solana transaction into the UR type sol-sign-request and embed it into QR codes.

AnimatedQRCode will decide whether the animated QR codes are needed, the option props of AnimatedQRCode component can be used to control the size, capacity and the update interval of QR code. Please avoid setting the capacity too high, as larger value can make it more difficult for Keystone to scan.

Sign request examples

import KeystoneSDK, {KeystoneSolanaSDK} from "@keystonehq/keystone-sdk";
import {AnimatedQRCode} from "@keystonehq/animated-qr";
import { Transaction, PublicKey, LAMPORTS_PER_SOL, SystemProgram } from "@solana/web3.js";

let transaction = new Transaction({
recentBlockhash: "CBP1Vd5bL3LC7erH2EUykCo3sPKGMvG9ZCbRBwkXmbbr", // recent block hash
feePayer: new PublicKey("DHwzop9H7oWEhyFV89TU7sC2U8LJmVLNstRjGa2tvkwg"),
});
transaction.add(
SystemProgram.transfer({
fromPubkey: new PublicKey("DHwzop9H7oWEhyFV89TU7sC2U8LJmVLNstRjGa2tvkwg"), // m/44'/501'/0'/0'
toPubkey: new PublicKey("2q8vpggiroLnp65iDfm74RhLd1q9rpQrjdcJP27i5fhC"), // m/44'/501'/0'/1'
lamports: 1 * LAMPORTS_PER_SOL,
}),
);

const solSignRequest = {
requestId: uuid.v4(),
signData: transaction.serializeMessage(),
dataType: KeystoneSolanaSDK.DataType.Transaction,
path: "m/44'/501'/0'/0'",
xfp: "F23F9FD2",
origin: "Solflare"
}

const Solana = () => {
const keystoneSDK = new KeystoneSDK();
const ur = keystoneSDK.sol.generateSignRequest(solSignRequest);

return <AnimatedQRCode type={ur.type} cbor={ur.cbor.toString("hex")}/>
}

Sign message example

import KeystoneSDK, {KeystoneSolanaSDK} from "@keystonehq/keystone-sdk";
import {AnimatedQRCode} from "@keystonehq/animated-qr";

const unsignedMessage = "68656c6c6f" // hex string of the message "hello"

const solSignRequest = {
requestId: uuid.v4(),
signData: unsignedMessage,
dataType: KeystoneSolanaSDK.DataType.Message,
path: "m/44'/501'/0'/0'",
xfp: "F23F9FD2",
chainId: 1,
origin: "Solflare"
}

const Solana = () => {
const keystoneSDK = new KeystoneSDK();
const ur = keystoneSDK.sol.generateSignRequest(solSignRequest);

return <AnimatedQRCode type={ur.type} cbor={ur.cbor.toString("hex")}/>
}

Extract signature

After Keystone scans the QR Codes, it will verify and display the transaction details for user confirmation. Once Keystone signs the data, it generates a signature and encodes it into a QR Code. An new UR type sol-signature is introduced, After the signing is completed, a software wallet can scan the QR Code to retrieve the signature. The signature is a 64-byte hex string.

Signature (
requestId: String // the requestId from sign request
signature: String // the serialized signature in hex string
)

Here are some code samples demonstrating how to use the SDK to achieve this.

import KeystoneSDK, {UR, URType} from "@keystonehq/keystone-sdk"
import {AnimatedQRScanner} from "@keystonehq/animated-qr"

const Solana = () => {
const keystoneSDK = new KeystoneSDK();

const onSucceed = ({type, cbor}) => {
const signature = keystoneSDK.sol.parseSignature(new UR(Buffer.from(cbor, "hex"), type))
console.log("signature: ", signature);
}
const onError = (errorMessage) => {
console.log("error: ", errorMessage);
}

return <AnimatedQRScanner handleScan={onSucceed} handleError={onError} urTypes={[URType.SolSignature]} />
}

AnimatedQRScanner helps scan the QR code on Keystone hardware wallet and returns signature which can be parsed by KeystoneSDK.

After getting the signature, software wallet can get the it and construct the transaction, then broadcast it.