accounts
Version:
Tempo Accounts SDK
10 lines • 480 B
TypeScript
import type * as Keystore from '../Keystore.js';
/**
* Pure-JS secp256k1 keystore. The private key is held as hex in the handle
* and signing runs in JavaScript — at-rest protection is the host app's
* storage adapter, and the key is readable by anything with JS execution.
* Opt into it via `keyType: 'secp256k1'`; secp256k1 signatures are the
* chain's cheapest envelope.
*/
export declare function secp256k1(): Keystore.Keystore;
//# sourceMappingURL=secp256k1.d.ts.map