// @flow import Big from 'bignumber.js'; import type { TransactionWithoutGas } from 'libs/transaction'; import type { Token } from 'config/data'; export default class BaseNode { async getBalance(_address: string): Promise { throw new Error('Implement me'); } async getTokenBalances(_address: string, _tokens: Token[]): Promise { throw new Error('Implement me'); } async estimateGas(_tx: TransactionWithoutGas): Promise { throw new Error('Implement me'); } }