Remove old ledger

This commit is contained in:
Jacob Evans 2018-03-05 21:07:07 -05:00
parent 8521775389
commit 71e7e9c9c3
No known key found for this signature in database
GPG Key ID: 2036DA2ADDFB0842
2 changed files with 0 additions and 39 deletions

View File

@ -54,35 +54,6 @@ declare module '@ledgerhq/hw-transport-u2f' {
}
}
declare module 'ledgerco' {
interface comm {
close_async(): Promise<void>;
}
export class comm_node implements comm {
public static create_async(timeoutMilliseconds?: number): Promise<comm_node>;
public close_async(): Promise<void>;
}
export class comm_u2f implements comm {
public static create_async(): Promise<comm_u2f>;
public close_async(): Promise<void>;
}
export class eth {
public comm: comm;
constructor(comm: comm);
public getAddress_async(
path: string,
display?: boolean,
chaincode?: boolean,
): Promise<{ publicKey: string; address: string; chainCode: string }>;
public signTransaction_async(path: string, rawTxHex: string): Promise<ECSignatureString>;
public getAppConfiguration_async(): Promise<{
arbitraryDataEnabled: number;
version: string;
}>;
public signPersonalMessage_async(path: string, messageHex: string): Promise<ECSignature>;
}
}
// Semaphore-async-await declarations
declare module 'semaphore-async-await' {
class Semaphore {

View File

@ -25,13 +25,3 @@ export async function ledgerEthereumBrowserClientFactoryAsync(): Promise<LedgerE
const ledgerEthClient = new LedgerEthereumClientFn(ledgerConnection);
return ledgerEthClient;
}
// /**
// * A factory for creating a LedgerEthereumClient usable in a Node.js context.
// * @return LedgerEthereumClient A Node.js client
// */
// export async function ledgerEthereumNodeJsClientFactoryAsync(): Promise<LedgerEthereumClient> {
// const ledgerConnection = await LedgerNodeCommunication.create_async();
// const ledgerEthClient = new LedgerEthereumClientFn(ledgerConnection);
// return ledgerEthClient;
// }