single-call-balance-checker-abi
Version:
A simple node module that exports the [Ethereum ABI](1) for eth-balance-checker smart contract
55 lines (53 loc) • 892 B
JavaScript
module.exports = [
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
},
{
"constant": true,
"inputs": [
{
"name": "user",
"type": "address"
},
{
"name": "token",
"type": "address"
}
],
"name": "tokenBalance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "users",
"type": "address[]"
},
{
"name": "tokens",
"type": "address[]"
}
],
"name": "balances",
"outputs": [
{
"name": "",
"type": "uint256[]"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
}
]