@ledgerhq/coin-near
Version:
10 lines • 345 B
TypeScript
export type NearAddress = {
publicKey: string;
address: string;
};
export type NearSignature = Buffer | undefined;
export interface NearSigner {
getAddress(path: string, verify?: boolean): Promise<NearAddress>;
signTransaction(transaction: Uint8Array, path: string): Promise<NearSignature>;
}
//# sourceMappingURL=signer.d.ts.map