mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-17 13:37:01 +00:00
* balance fetching * fix tests * bump deps * validate custom token form * equiv values * fix rates saga naming * address review comments
9 lines
163 B
JavaScript
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');
|
|
}
|
|
}
|