crptm 780f3ba94f balance fetching (#41)
* balance fetching

* fix tests

* bump deps

* validate custom token form

* equiv values

* fix rates saga naming

* address review comments
2017-07-13 16:02:39 -05:00

9 lines
163 B
JavaScript

// @flow
import Big from 'big.js';
export default class BaseNode {
async getBalance(address: string): Promise<Big> {
throw new Error('Implement me');
}
}