mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-05 15:53:26 +00:00
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;
|