@ledgerhq/coin-near
Version:
12 lines • 407 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
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