Part of the HelixKey documentation. Reading time: ~16 min.
npm install @helixkey/sdk
# or
pip install helixkey
# or
cargo add helixkeyimport { HelixKey } from '@helixkey/sdk';
const hk = new HelixKey({
network: 'sui-mainnet',
rpcUrl: 'https://mainnet.sui.rpcpool.com',
});const result = await hk.verifyIdentity('0x7c3aed...');
// result.verified: boolean
// result.anchoredAt: bigint (Sui checkpoint)
// result.attestation: FIDO2AttestationObject | nullFive lines. That's the whole hello-world path.
Add HelixKey to your dApp: see Developer Hub for reference integrations. Deep on the on-chain surface: Architecture. Understand the security model: Security.