More Info
Private Name Tags
Latest 25 from a total of 3,389 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 15198320 | 889 days ago | IN | 0 ETH | 0.00028162 | ||||
Claim | 13708390 | 1125 days ago | IN | 0 ETH | 0.0036548 | ||||
Claim | 13708390 | 1125 days ago | IN | 0 ETH | 0.0035086 | ||||
Claim | 13708390 | 1125 days ago | IN | 0 ETH | 0.0035086 | ||||
Claim | 13708390 | 1125 days ago | IN | 0 ETH | 0.00343551 | ||||
Claim | 13708390 | 1125 days ago | IN | 0 ETH | 0.00328932 | ||||
Claim | 12874881 | 1255 days ago | IN | 0 ETH | 0.00162637 | ||||
Transfer Erc20 | 12638394 | 1292 days ago | IN | 0 ETH | 0.00033965 | ||||
Transfer Erc20 | 12638383 | 1292 days ago | IN | 0 ETH | 0.00052747 | ||||
Claim | 12536139 | 1308 days ago | IN | 0 ETH | 0.00228321 | ||||
Claim | 12534715 | 1308 days ago | IN | 0 ETH | 0.00192583 | ||||
Claim | 12531120 | 1308 days ago | IN | 0 ETH | 0.00277956 | ||||
Claim | 12527959 | 1309 days ago | IN | 0 ETH | 0.00198639 | ||||
Claim | 12527901 | 1309 days ago | IN | 0 ETH | 0.00199036 | ||||
Claim | 12527866 | 1309 days ago | IN | 0 ETH | 0.00199036 | ||||
Claim | 12522479 | 1310 days ago | IN | 0 ETH | 0.00098679 | ||||
Claim | 12522437 | 1310 days ago | IN | 0 ETH | 0.00119694 | ||||
Claim | 12515377 | 1311 days ago | IN | 0 ETH | 0.0029781 | ||||
Claim | 12512271 | 1311 days ago | IN | 0 ETH | 0.00363824 | ||||
Claim | 12509707 | 1312 days ago | IN | 0 ETH | 0.00327591 | ||||
Claim | 12508946 | 1312 days ago | IN | 0 ETH | 0.00317625 | ||||
Claim | 12508299 | 1312 days ago | IN | 0 ETH | 0.00372789 | ||||
Claim | 12507771 | 1312 days ago | IN | 0 ETH | 0.00972846 | ||||
Claim | 12506285 | 1312 days ago | IN | 0 ETH | 0.00317587 | ||||
Claim | 12475065 | 1317 days ago | IN | 0 ETH | 0.00456642 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RewardClaimer
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16; import "./Ownable.sol"; import "./KineSafeMath.sol"; import "./IERC20.sol"; import "./SafeERC20.sol"; pragma experimental ABIEncoderV2; contract RewardClaimer is Ownable { using KineSafeMath for uint; using SafeERC20 for IERC20; event RewardPaid(uint256 indexed id, address indexed to, uint256 rewardAmount); event Paused(); event Unpaused(); event NewTruthHolder(address oldTruthHolder, address newTruthHolder); event TransferErc20(address indexed erc20, address indexed target, uint amount); event NewClaimCap(uint oldClaimCap, uint newClaimCap); bool public paused; IERC20 public kine; address public truthHolder; mapping(uint => uint) public claimHistory; uint public claimCap; constructor (address kine_, address truthHolder_, uint claimCap_) public { paused = false; kine = IERC20(kine_); truthHolder = truthHolder_; claimCap = claimCap_; } modifier notPaused() { require(!paused, "paused"); _; } function claim(bytes calldata message, bytes calldata signature) external notPaused { address source = source(message, signature); require(source == truthHolder, "only accept truthHolder signed message"); (uint256 id, address to, uint256 reward) = abi.decode(message, (uint256, address, uint256)); require(claimHistory[id] == 0, "already claimed"); require(reward < claimCap, "reached claimCap limit"); claimHistory[id] = block.number; kine.safeTransfer(to, reward); emit RewardPaid(id, to, reward); } function source(bytes memory message, bytes memory signature) public pure returns (address) { (bytes32 r, bytes32 s, uint8 v) = abi.decode(signature, (bytes32, bytes32, uint8)); bytes32 hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(message))); return ecrecover(hash, v, r, s); } function _pause() external onlyOwner { paused = true; emit Paused(); } function _unpause() external onlyOwner { paused = false; emit Unpaused(); } function _changeTruthHolder(address newTruthHolder) external onlyOwner { address oldHolder = truthHolder; truthHolder = newTruthHolder; emit NewTruthHolder(oldHolder, newTruthHolder); } function _changeClaimCap(uint newClaimCap) external onlyOwner { uint oldCap = claimCap; claimCap = newClaimCap; emit NewClaimCap(oldCap, newClaimCap); } function transferErc20(address erc20Addr, address target, uint amount) external onlyOwner { IERC20 erc20 = IERC20(erc20Addr); uint balance = erc20.balanceOf(address(this)); require(balance >= amount, "not enough erc20 balance"); erc20.safeTransfer(target, amount); emit TransferErc20(erc20Addr, target, amount); } }
pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ /** * Original work from OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.5.0/contracts/math/SafeMath.sol * changes we made: * 1. add two methods that take errorMessage as input parameter */ library KineSafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. * added by Kine */ function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. * added by Kine */ function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, errorMessage); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.5.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.5.0; import "./IERC20.sol"; import "./KineSafeMath.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using KineSafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"kine_","type":"address"},{"internalType":"address","name":"truthHolder_","type":"address"},{"internalType":"uint256","name":"claimCap_","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldClaimCap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newClaimCap","type":"uint256"}],"name":"NewClaimCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTruthHolder","type":"address"},{"indexed":false,"internalType":"address","name":"newTruthHolder","type":"address"}],"name":"NewTruthHolder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"erc20","type":"address"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferErc20","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newClaimCap","type":"uint256"}],"name":"_changeClaimCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newTruthHolder","type":"address"}],"name":"_changeTruthHolder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"_pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"_unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"claimCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimHistory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kine","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"source","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"erc20Addr","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferErc20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"truthHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001489380380620014898339810160408190526200003491620000fd565b6000620000496001600160e01b03620000d916565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b039485166001600160a01b03199182161790915560028054939094169216919091179091556004556200018b565b3390565b8051620000ea8162000166565b92915050565b8051620000ea8162000180565b6000806000606084860312156200011357600080fd5b6000620001218686620000dd565b93505060206200013486828701620000dd565b92505060406200014786828701620000f0565b9150509250925092565b60006001600160a01b038216620000ea565b90565b620001718162000151565b81146200017d57600080fd5b50565b620001718162000163565b6112ee806200019b6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638f32d59b11610097578063f2fde38b11610066578063f2fde38b146101d0578063f3da6cbd146101e3578063f6dd2353146101f6578063fc8234cb1461020957610100565b80638f32d59b14610198578063a720969f146101a0578063b09fb0f4146101a8578063be27b22c146101bd57610100565b8063482a6193116100d3578063482a6193146101535780635c975abb14610173578063715018a6146101885780638da5cb5b1461019057610100565b806302cba741146101055780632712d7851461011a578063320b2ad91461012d578063392d145214610135575b600080fd5b610118610113366004610b57565b610211565b005b610118610128366004610cde565b61034d565b6101186103b7565b61013d610417565b60405161014a9190611197565b60405180910390f35b610166610161366004610c75565b61041d565b60405161014a9190611059565b61017b6104cb565b60405161014a919061109d565b6101186104db565b610166610549565b61017b610558565b61016661057c565b6101b061058b565b60405161014a91906110e9565b6101186101cb366004610c05565b61059a565b6101186101de366004610b39565b610748565b61013d6101f1366004610cde565b610778565b610118610204366004610b39565b61078a565b610118610801565b610219610558565b61023e5760405162461bcd60e51b815260040161023590611147565b60405180910390fd5b6040516370a0823160e01b815283906000906001600160a01b038316906370a082319061026f903090600401611059565b60206040518083038186803b15801561028757600080fd5b505afa15801561029b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102bf9190810190610cfc565b9050828110156102e15760405162461bcd60e51b8152600401610235906110f7565b6102fb6001600160a01b038316858563ffffffff61085b16565b836001600160a01b0316856001600160a01b03167f885659fe89289ab9fe52ee4e1395c6853ca1eb6746529e4a00f980f1eec07bd98560405161033e9190611197565b60405180910390a35050505050565b610355610558565b6103715760405162461bcd60e51b815260040161023590611147565b60048054908290556040517f9d662656fe8e22de14b3bb02108e965c653903da3980aa1e0e20f119157c3dfb906103ab90839085906111a5565b60405180910390a15050565b6103bf610558565b6103db5760405162461bcd60e51b815260040161023590611147565b6000805460ff60a01b1916600160a01b1781556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e7529190a1565b60045481565b600080600080848060200190516104379190810190610bc2565b925092509250600086805190602001206040516020016104579190611039565b6040516020818303038152906040528051906020012090506001818386866040516000815260200160405260405161049294939291906110ab565b6020604051602081039080840390855afa1580156104b4573d6000803e3d6000fd5b505050602060405103519450505050505b92915050565b600054600160a01b900460ff1681565b6104e3610558565b6104ff5760405162461bcd60e51b815260040161023590611147565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b031661056d6108b9565b6001600160a01b031614905090565b6002546001600160a01b031681565b6001546001600160a01b031681565b600054600160a01b900460ff16156105c45760405162461bcd60e51b815260040161023590611177565b600061063985858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152925087915086908190840183828082843760009201919091525061041d92505050565b6002549091506001600160a01b038083169116146106695760405162461bcd60e51b815260040161023590611117565b6000808061067987890189610d1a565b6000838152600360205260409020549295509093509150156106ad5760405162461bcd60e51b815260040161023590611127565b60045481106106ce5760405162461bcd60e51b815260040161023590611167565b60008381526003602052604090204390556001546106fc906001600160a01b0316838363ffffffff61085b16565b816001600160a01b0316837f04492fab062412e7e4e5f46c9e919f1640652946a5e163ad6e6c1c03d87954d2836040516107369190611197565b60405180910390a35050505050505050565b610750610558565b61076c5760405162461bcd60e51b815260040161023590611147565b610775816108bd565b50565b60036020526000908152604090205481565b610792610558565b6107ae5760405162461bcd60e51b815260040161023590611147565b600280546001600160a01b038381166001600160a01b03198316179092556040519116907f81b88ce749f5ea02a8cec52c72adf48d4bae4bb5c855faaae1a248b327ff00ca906103ab9083908590611067565b610809610558565b6108255760405162461bcd60e51b815260040161023590611147565b6000805460ff60a01b191681556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d169339190a1565b6040516108b490849063a9059cbb60e01b9061087d9086908690602401611082565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261093e565b505050565b3390565b6001600160a01b0381166108e35760405162461bcd60e51b815260040161023590611107565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610950826001600160a01b0316610a29565b61096c5760405162461bcd60e51b815260040161023590611187565b60006060836001600160a01b0316836040516109889190611026565b6000604051808303816000865af19150503d80600081146109c5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ca565b606091505b5091509150816109ec5760405162461bcd60e51b815260040161023590611137565b805115610a235780806020019051610a079190810190610ba4565b610a235760405162461bcd60e51b815260040161023590611157565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610a5d57508115155b949350505050565b80356104c58161127c565b80516104c581611290565b80516104c581611299565b60008083601f840112610a9857600080fd5b50813567ffffffffffffffff811115610ab057600080fd5b602083019150836001820283011115610ac857600080fd5b9250929050565b600082601f830112610ae057600080fd5b8135610af3610aee826111da565b6111b3565b91508082526020830160208301858383011115610b0f57600080fd5b610b1a838284611244565b50505092915050565b80356104c581611299565b80516104c5816112a2565b600060208284031215610b4b57600080fd5b6000610a5d8484610a65565b600080600060608486031215610b6c57600080fd5b6000610b788686610a65565b9350506020610b8986828701610a65565b9250506040610b9a86828701610b23565b9150509250925092565b600060208284031215610bb657600080fd5b6000610a5d8484610a70565b600080600060608486031215610bd757600080fd5b6000610be38686610a7b565b9350506020610bf486828701610a7b565b9250506040610b9a86828701610b2e565b60008060008060408587031215610c1b57600080fd5b843567ffffffffffffffff811115610c3257600080fd5b610c3e87828801610a86565b9450945050602085013567ffffffffffffffff811115610c5d57600080fd5b610c6987828801610a86565b95989497509550505050565b60008060408385031215610c8857600080fd5b823567ffffffffffffffff811115610c9f57600080fd5b610cab85828601610acf565b925050602083013567ffffffffffffffff811115610cc857600080fd5b610cd485828601610acf565b9150509250929050565b600060208284031215610cf057600080fd5b6000610a5d8484610b23565b600060208284031215610d0e57600080fd5b6000610a5d8484610a7b565b600080600060608486031215610d2f57600080fd5b6000610b788686610b23565b610d4481611214565b82525050565b610d448161121f565b610d4481611224565b610d44610d6882611224565b611224565b6000610d7882611202565b610d828185611206565b9350610d92818560208601611250565b9290920192915050565b610d4481611239565b6000610db2601c83611206565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c0192915050565b6000610deb60188361120b565b7f6e6f7420656e6f7567682065726332302062616c616e63650000000000000000815260200192915050565b6000610e2460268361120b565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000610e6c60268361120b565b7f6f6e6c7920616363657074207472757468486f6c646572207369676e6564206d81526565737361676560d01b602082015260400192915050565b6000610eb4600f8361120b565b6e185b1c9958591e4818db185a5b5959608a1b815260200192915050565b6000610edf60208361120b565b7f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815260200192915050565b6000610f1860208361120b565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000610f51602a8361120b565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015260400192915050565b6000610f9d60168361120b565b751c995858da19590818db185a5b50d85c081b1a5b5a5d60521b815260200192915050565b6000610fcf60068361120b565b651c185d5cd95960d21b815260200192915050565b6000610ff1601f8361120b565b7f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400815260200192915050565b610d4481611233565b60006110328284610d6d565b9392505050565b600061104482610da5565b91506110508284610d5c565b50602001919050565b602081016104c58284610d3b565b604081016110758285610d3b565b6110326020830184610d3b565b604081016110908285610d3b565b6110326020830184610d53565b602081016104c58284610d4a565b608081016110b98287610d53565b6110c6602083018661101d565b6110d36040830185610d53565b6110e06060830184610d53565b95945050505050565b602081016104c58284610d9c565b602080825281016104c581610dde565b602080825281016104c581610e17565b602080825281016104c581610e5f565b602080825281016104c581610ea7565b602080825281016104c581610ed2565b602080825281016104c581610f0b565b602080825281016104c581610f44565b602080825281016104c581610f90565b602080825281016104c581610fc2565b602080825281016104c581610fe4565b602081016104c58284610d53565b604081016110908285610d53565b60405181810167ffffffffffffffff811182821017156111d257600080fd5b604052919050565b600067ffffffffffffffff8211156111f157600080fd5b506020601f91909101601f19160190565b5190565b919050565b90815260200190565b60006104c582611227565b151590565b90565b6001600160a01b031690565b60ff1690565b60006104c582611214565b82818337506000910152565b60005b8381101561126b578181015183820152602001611253565b83811115610a235750506000910152565b61128581611214565b811461077557600080fd5b6112858161121f565b61128581611224565b6112858161123356fea365627a7a723158202c132f4d570610ee83302df7612b49fdfa52e8568f6bb34c9bdabba23204c50c6c6578706572696d656e74616cf564736f6c63430005100040000000000000000000000000cbfef8fdd706cde6f208460f2bf39aa9c785f05d000000000000000000000000e9d3d0370878eb6dd4010901104c099b9cce135f000000000000000000000000000000000000000000000002b5e3af16b1880001
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638f32d59b11610097578063f2fde38b11610066578063f2fde38b146101d0578063f3da6cbd146101e3578063f6dd2353146101f6578063fc8234cb1461020957610100565b80638f32d59b14610198578063a720969f146101a0578063b09fb0f4146101a8578063be27b22c146101bd57610100565b8063482a6193116100d3578063482a6193146101535780635c975abb14610173578063715018a6146101885780638da5cb5b1461019057610100565b806302cba741146101055780632712d7851461011a578063320b2ad91461012d578063392d145214610135575b600080fd5b610118610113366004610b57565b610211565b005b610118610128366004610cde565b61034d565b6101186103b7565b61013d610417565b60405161014a9190611197565b60405180910390f35b610166610161366004610c75565b61041d565b60405161014a9190611059565b61017b6104cb565b60405161014a919061109d565b6101186104db565b610166610549565b61017b610558565b61016661057c565b6101b061058b565b60405161014a91906110e9565b6101186101cb366004610c05565b61059a565b6101186101de366004610b39565b610748565b61013d6101f1366004610cde565b610778565b610118610204366004610b39565b61078a565b610118610801565b610219610558565b61023e5760405162461bcd60e51b815260040161023590611147565b60405180910390fd5b6040516370a0823160e01b815283906000906001600160a01b038316906370a082319061026f903090600401611059565b60206040518083038186803b15801561028757600080fd5b505afa15801561029b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102bf9190810190610cfc565b9050828110156102e15760405162461bcd60e51b8152600401610235906110f7565b6102fb6001600160a01b038316858563ffffffff61085b16565b836001600160a01b0316856001600160a01b03167f885659fe89289ab9fe52ee4e1395c6853ca1eb6746529e4a00f980f1eec07bd98560405161033e9190611197565b60405180910390a35050505050565b610355610558565b6103715760405162461bcd60e51b815260040161023590611147565b60048054908290556040517f9d662656fe8e22de14b3bb02108e965c653903da3980aa1e0e20f119157c3dfb906103ab90839085906111a5565b60405180910390a15050565b6103bf610558565b6103db5760405162461bcd60e51b815260040161023590611147565b6000805460ff60a01b1916600160a01b1781556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e7529190a1565b60045481565b600080600080848060200190516104379190810190610bc2565b925092509250600086805190602001206040516020016104579190611039565b6040516020818303038152906040528051906020012090506001818386866040516000815260200160405260405161049294939291906110ab565b6020604051602081039080840390855afa1580156104b4573d6000803e3d6000fd5b505050602060405103519450505050505b92915050565b600054600160a01b900460ff1681565b6104e3610558565b6104ff5760405162461bcd60e51b815260040161023590611147565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b031661056d6108b9565b6001600160a01b031614905090565b6002546001600160a01b031681565b6001546001600160a01b031681565b600054600160a01b900460ff16156105c45760405162461bcd60e51b815260040161023590611177565b600061063985858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152925087915086908190840183828082843760009201919091525061041d92505050565b6002549091506001600160a01b038083169116146106695760405162461bcd60e51b815260040161023590611117565b6000808061067987890189610d1a565b6000838152600360205260409020549295509093509150156106ad5760405162461bcd60e51b815260040161023590611127565b60045481106106ce5760405162461bcd60e51b815260040161023590611167565b60008381526003602052604090204390556001546106fc906001600160a01b0316838363ffffffff61085b16565b816001600160a01b0316837f04492fab062412e7e4e5f46c9e919f1640652946a5e163ad6e6c1c03d87954d2836040516107369190611197565b60405180910390a35050505050505050565b610750610558565b61076c5760405162461bcd60e51b815260040161023590611147565b610775816108bd565b50565b60036020526000908152604090205481565b610792610558565b6107ae5760405162461bcd60e51b815260040161023590611147565b600280546001600160a01b038381166001600160a01b03198316179092556040519116907f81b88ce749f5ea02a8cec52c72adf48d4bae4bb5c855faaae1a248b327ff00ca906103ab9083908590611067565b610809610558565b6108255760405162461bcd60e51b815260040161023590611147565b6000805460ff60a01b191681556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d169339190a1565b6040516108b490849063a9059cbb60e01b9061087d9086908690602401611082565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261093e565b505050565b3390565b6001600160a01b0381166108e35760405162461bcd60e51b815260040161023590611107565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610950826001600160a01b0316610a29565b61096c5760405162461bcd60e51b815260040161023590611187565b60006060836001600160a01b0316836040516109889190611026565b6000604051808303816000865af19150503d80600081146109c5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ca565b606091505b5091509150816109ec5760405162461bcd60e51b815260040161023590611137565b805115610a235780806020019051610a079190810190610ba4565b610a235760405162461bcd60e51b815260040161023590611157565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610a5d57508115155b949350505050565b80356104c58161127c565b80516104c581611290565b80516104c581611299565b60008083601f840112610a9857600080fd5b50813567ffffffffffffffff811115610ab057600080fd5b602083019150836001820283011115610ac857600080fd5b9250929050565b600082601f830112610ae057600080fd5b8135610af3610aee826111da565b6111b3565b91508082526020830160208301858383011115610b0f57600080fd5b610b1a838284611244565b50505092915050565b80356104c581611299565b80516104c5816112a2565b600060208284031215610b4b57600080fd5b6000610a5d8484610a65565b600080600060608486031215610b6c57600080fd5b6000610b788686610a65565b9350506020610b8986828701610a65565b9250506040610b9a86828701610b23565b9150509250925092565b600060208284031215610bb657600080fd5b6000610a5d8484610a70565b600080600060608486031215610bd757600080fd5b6000610be38686610a7b565b9350506020610bf486828701610a7b565b9250506040610b9a86828701610b2e565b60008060008060408587031215610c1b57600080fd5b843567ffffffffffffffff811115610c3257600080fd5b610c3e87828801610a86565b9450945050602085013567ffffffffffffffff811115610c5d57600080fd5b610c6987828801610a86565b95989497509550505050565b60008060408385031215610c8857600080fd5b823567ffffffffffffffff811115610c9f57600080fd5b610cab85828601610acf565b925050602083013567ffffffffffffffff811115610cc857600080fd5b610cd485828601610acf565b9150509250929050565b600060208284031215610cf057600080fd5b6000610a5d8484610b23565b600060208284031215610d0e57600080fd5b6000610a5d8484610a7b565b600080600060608486031215610d2f57600080fd5b6000610b788686610b23565b610d4481611214565b82525050565b610d448161121f565b610d4481611224565b610d44610d6882611224565b611224565b6000610d7882611202565b610d828185611206565b9350610d92818560208601611250565b9290920192915050565b610d4481611239565b6000610db2601c83611206565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c0192915050565b6000610deb60188361120b565b7f6e6f7420656e6f7567682065726332302062616c616e63650000000000000000815260200192915050565b6000610e2460268361120b565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000610e6c60268361120b565b7f6f6e6c7920616363657074207472757468486f6c646572207369676e6564206d81526565737361676560d01b602082015260400192915050565b6000610eb4600f8361120b565b6e185b1c9958591e4818db185a5b5959608a1b815260200192915050565b6000610edf60208361120b565b7f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815260200192915050565b6000610f1860208361120b565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000610f51602a8361120b565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015260400192915050565b6000610f9d60168361120b565b751c995858da19590818db185a5b50d85c081b1a5b5a5d60521b815260200192915050565b6000610fcf60068361120b565b651c185d5cd95960d21b815260200192915050565b6000610ff1601f8361120b565b7f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400815260200192915050565b610d4481611233565b60006110328284610d6d565b9392505050565b600061104482610da5565b91506110508284610d5c565b50602001919050565b602081016104c58284610d3b565b604081016110758285610d3b565b6110326020830184610d3b565b604081016110908285610d3b565b6110326020830184610d53565b602081016104c58284610d4a565b608081016110b98287610d53565b6110c6602083018661101d565b6110d36040830185610d53565b6110e06060830184610d53565b95945050505050565b602081016104c58284610d9c565b602080825281016104c581610dde565b602080825281016104c581610e17565b602080825281016104c581610e5f565b602080825281016104c581610ea7565b602080825281016104c581610ed2565b602080825281016104c581610f0b565b602080825281016104c581610f44565b602080825281016104c581610f90565b602080825281016104c581610fc2565b602080825281016104c581610fe4565b602081016104c58284610d53565b604081016110908285610d53565b60405181810167ffffffffffffffff811182821017156111d257600080fd5b604052919050565b600067ffffffffffffffff8211156111f157600080fd5b506020601f91909101601f19160190565b5190565b919050565b90815260200190565b60006104c582611227565b151590565b90565b6001600160a01b031690565b60ff1690565b60006104c582611214565b82818337506000910152565b60005b8381101561126b578181015183820152602001611253565b83811115610a235750506000910152565b61128581611214565b811461077557600080fd5b6112858161121f565b61128581611224565b6112858161123356fea365627a7a723158202c132f4d570610ee83302df7612b49fdfa52e8568f6bb34c9bdabba23204c50c6c6578706572696d656e74616cf564736f6c63430005100040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cbfef8fdd706cde6f208460f2bf39aa9c785f05d000000000000000000000000e9d3d0370878eb6dd4010901104c099b9cce135f000000000000000000000000000000000000000000000002b5e3af16b1880001
-----Decoded View---------------
Arg [0] : kine_ (address): 0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D
Arg [1] : truthHolder_ (address): 0xE9D3D0370878eB6DD4010901104C099B9cCe135F
Arg [2] : claimCap_ (uint256): 50000000000000000001
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000cbfef8fdd706cde6f208460f2bf39aa9c785f05d
Arg [1] : 000000000000000000000000e9d3d0370878eb6dd4010901104c099b9cce135f
Arg [2] : 000000000000000000000000000000000000000000000002b5e3af16b1880001
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.000047 | 193,537 | $9.19 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.