2017-07-04 01:25:01 +00:00
|
|
|
// @flow
|
2017-07-13 21:02:39 +00:00
|
|
|
import Big from 'big.js';
|
2017-07-04 01:25:01 +00:00
|
|
|
|
|
|
|
export default class BaseNode {
|
2017-07-13 21:02:39 +00:00
|
|
|
async getBalance(address: string): Promise<Big> {
|
|
|
|
throw new Error('Implement me');
|
2017-07-04 03:21:19 +00:00
|
|
|
}
|
2017-07-04 01:25:01 +00:00
|
|
|
}
|