UNPKG

@xmr-core/xmr-crypto-utils

Version:

Core crypto operations for Monero and implementations and interfaces of various hardware devices for creating Monero transactions securely

15 lines (12 loc) 178 B
export interface Commit { mask: string; amount: string; } export interface KeyPair { pub: string; sec: string; } export interface Keys { view: KeyPair; spend: KeyPair; }