UNPKG

@ledgerhq/coin-algorand

Version:
12 lines (11 loc) 320 B
export type AlgorandAddress = { publicKey: string; address: string; }; export type AlgorandSignature = { signature: null | Buffer; }; export interface AlgorandSigner { getAddress(path: string, boolDisplay?: boolean): Promise<AlgorandAddress>; sign(path: string, message: string): Promise<AlgorandSignature>; }