mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-05 07:43:30 +00:00
96798e71fa
* Add support for the Archos Safe-T mini * Safe-T mini: Fix version requirements * Fix fade-in animation is not hitting the 5th wallet option * Disable safe-t on electron:
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
import { WalletLib } from 'shared/enclave/types';
|
|
|
|
const SafeT: 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 SafeT;
|