@interest-protocol/enclave-sdk
v0.0.3
Published
SDK for Lattice Enclave on Sui
Readme
@lattice/enclave-sdk
SDK for AWS Nitro Enclave attestation verification on Sui.
Installation
bun installUsage
import { Enclave } from '@lattice/enclave-sdk';
const enclave = new Enclave({
suiClient,
packageId: ENCLAVE_PACKAGE_ID,
enclaveConfigSharedObjectData,
});
// Register a new enclave
const tx = enclave.registerEnclave({
attestationDocument: attestation,
});
// Verify enclave signature
const tx = enclave.verifySignature({
enclaveId,
message,
signature,
});Development
bun run build # Build package
bun run test # Run tests
bun run lint # Run linterDocumentation
See ../CLAUDE.md for SDK architecture patterns.
