2017-07-03 22:21:19 -05:00

8 lines
101 B
JavaScript

// @flow
export default class BaseWallet {
getAddress(): string {
throw 'Implement me';
}
}