22 lines
410 B
TypeScript
22 lines
410 B
TypeScript
|
import { WalletLib } from 'shared/enclave/types';
|
||
|
|
||
|
const KeepKey: WalletLib = {
|
||
|
async getChainCode() {
|
||
|
throw new Error('Not yet implemented');
|
||
|
},
|
||
|
|
||
|
async signTransaction() {
|
||
|
throw new Error('Not yet implemented');
|
||
|
},
|
||
|
|
||
|
async signMessage() {
|
||
|
throw new Error('Not yet implemented');
|
||
|
},
|
||
|
|
||
|
async displayAddress() {
|
||
|
throw new Error('Not yet implemented');
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default KeepKey;
|