UNPKG

@1hive/connect-core

Version:

Access and interact with Aragon Organizations and their apps.

35 lines 1.38 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.arbitratorAbi = exports.miniMeAbi = exports.forwarderFeeAbi = exports.forwarderAbi = exports.erc20ABI = void 0; exports.erc20ABI = [ 'function balanceOf(address _who) public view returns (uint256)', 'function allowance(address _owner, address _spender) public view returns (uint256)', 'function approve(address _spender, uint256 _value) public returns (bool)', ]; exports.forwarderAbi = [ 'function forward(bytes evmCallScript) public', 'function isForwarder() external pure returns (bool)', 'function canForward(address sender, bytes evmCallScript) public view returns (bool)', ]; exports.forwarderFeeAbi = [ 'function forwardFee() external view returns (address, uint256)', ]; exports.miniMeAbi = [ 'function balanceOf(address _owner) external view returns (uint256)', 'function balanceOfAt(address _owner, uint256 _blockNumber) external view returns (uint256)', ]; exports.arbitratorAbi = [ { inputs: [], name: 'getDisputeFees', outputs: [ { name: 'recipient', type: 'address' }, { name: 'feeToken', type: 'address' }, { name: 'feeAmount', type: 'uint256' }, ], payable: false, stateMutability: 'view', type: 'function', }, ]; //# sourceMappingURL=abis.js.map