UNPKG

@libra-opensource/client-sdk-typescript

Version:
10 lines (9 loc) 283 B
import { KeyPair } from '../utils/signer'; import { Bytes } from '../utils/bytes'; export default class AccountKeys { readonly privateKey: Bytes; readonly publicKey: Bytes; readonly authKey: Bytes; readonly accountAddress: Bytes; constructor(keyPair: KeyPair); }