efx-api-node
Version:
<img src="https://avatars3.githubusercontent.com/u/33315316?s=200&v=4" align="right" />
11 lines (9 loc) • 310 B
JavaScript
/**
* Returns the amount you have locked for given token
*/
module.exports = (efx, token) => {
const currency = efx.config['0x'].tokenRegistry[token]
const action = 'balanceOf'
const args = [ efx.get('account') ]
return efx.eth.call(efx.contract.abi.locker, currency.wrapperAddress, action, args)
}