12 lines
198 B
JavaScript
Raw Normal View History

2017-06-30 03:03:11 +04:00
// @flow
export default class BaseWallet {
2017-07-03 22:21:19 -05:00
getAddress(): string {
throw 'Implement me';
}
getNakedAddress(): string {
return this.getAddress().replace('0x', '').toLowerCase();
}
2017-06-30 03:03:11 +04:00
}