@rhino.fi/client-js
Version:
56 lines (55 loc) • 1.29 kB
JavaScript
/**
* Token abi, used for faucet
*
* see:
* https://ropsten.etherscan.io/address/0x513c6802d75A48d3B9A1557720f1B43689Fac1C9#code
*/
module.exports = [{
inputs: [
{ internalType: 'address[3]', name: '_tokens', type: 'address[3]' },
{ internalType: 'uint256', name: '_maxBalance', type: 'uint256' },
],
payable: false,
stateMutability: 'nonpayable',
type: 'constructor',
}, {
constant: false,
inputs: [],
name: 'drip',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
}, {
constant: true,
inputs: [],
name: 'maxBalance',
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
payable: false,
stateMutability: 'view',
type: 'function',
}, {
constant: true,
inputs: [],
name: 'token1',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
payable: false,
stateMutability: 'view',
type: 'function',
}, {
constant: true,
inputs: [],
name: 'token2',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
payable: false,
stateMutability: 'view',
type: 'function',
}, {
constant: true,
inputs: [],
name: 'token3',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
payable: false,
stateMutability: 'view',
type: 'function',
}]