@ledgerhq/coin-algorand
Version:
Ledger Algorand Coin integration
12 lines (11 loc) • 320 B
text/typescript
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>;
}