MyCrypto/shared/enclave/server/wallets/keepkey.ts

22 lines
410 B
TypeScript
Raw Normal View History

2018-04-27 20:49:17 +00:00
import { WalletLib } from 'shared/enclave/types';
const KeepKey: WalletLib = {
async getChainCode() {
2018-05-04 04:26:25 +00:00
throw new Error('Not yet implemented');
},
async signTransaction() {
throw new Error('Not yet implemented');
},
async signMessage() {
throw new Error('Not yet implemented');
2018-05-04 04:40:32 +00:00
},
async displayAddress() {
throw new Error('Not yet implemented');
2018-04-27 20:49:17 +00:00
}
};
export default KeepKey;