@ledgerhq/coin-algorand
Version:
Ledger Algorand Coin integration
12 lines • 366 B
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>;
}
//# sourceMappingURL=signer.d.ts.map