Contract Overview
Balance:
0 MATIC
Token:
My Name Tag:
Not Available
[ Download CSV Export ]
Contract Name:
GOBHoldingRewards
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/security/Pausable.sol'; contract GOBHoldingRewards is Ownable, Pausable { address[] private holders; mapping(address => bool) private claimed; mapping(uint256 => bytes32) public merkleRoots; mapping(address => uint256) public amountClaimed; IERC20 immutable gobContract; uint256 public claimWindowOpens; event Claimed(address indexed account, uint amount); constructor( address _gobContract, uint256 _claimWindowOpens ) { gobContract = IERC20(_gobContract); claimWindowOpens = _claimWindowOpens; } /** * @notice add a new merkle root * * @param _key the key of new merkle root * @param _merkleRoot the new merkle root */ function addMerkleRoot(uint256 _key, bytes32 _merkleRoot) external onlyOwner { merkleRoots[_key] = _merkleRoot; } /** * @notice claim GOB tokens * * @param merkleRootKey the key of the merkle root in merkleRoots mapping * @param amount the amount of tokens to claim in "wei" * @param index the index of the merkle proof * @param maxAmount the max amount sender wallet is eligible to claim * @param merkleProof the merkle proof for sender wallet */ function claim( uint256 merkleRootKey, uint256 amount, uint256 index, uint256 maxAmount, bytes32[] calldata merkleProof ) external payable whenNotPaused { require( block.timestamp >= claimWindowOpens, "claim window not open yet" ); require( amountClaimed[msg.sender] + amount <= maxAmount , "claimable amount exceeded" ); bytes32 node = keccak256(abi.encodePacked(index, msg.sender, maxAmount)); require( MerkleProof.verify(merkleProof, merkleRoots[merkleRootKey], node), "invalid merkle proof" ); amountClaimed[msg.sender] += amount; if (!claimed[msg.sender]) { claimed[msg.sender] = true; holders.push(msg.sender); } gobContract.transfer(msg.sender, amount); emit Claimed(msg.sender, amount); } /** * @notice withdraw given amount of GOB from contract * * @param receiver the wallet address to send GOB to * @param amount the GOB amount to withdraw */ function withdrawGOB(address receiver, uint256 amount) external onlyOwner { gobContract.transfer(receiver, amount); } /** * @notice pause claims */ function pause() external onlyOwner { _pause(); } /** * @notice unpause claims */ function unpause() external onlyOwner { _unpause(); } /** * @notice edit claim window * * @param _claimWindowOpens claim window opening timestamp */ function setClaimWindow(uint256 _claimWindowOpens) external onlyOwner { claimWindowOpens = _claimWindowOpens; } /** * @notice return the number of tokens a wallet already claimed * * @param _account the wallet address to query */ function getAmountClaimed(address _account) public view returns (uint256) { return amountClaimed[_account]; } function getAllClaimedAmount() public view returns (address[] memory, uint256[] memory) { address[] memory mAddresses = new address[](holders.length); uint256[] memory mUint = new uint256[](holders.length); for (uint256 i = 0; i < holders.length; i++) { mAddresses[i] = holders[i]; mUint[i] = amountClaimed[holders[i]]; } return (mAddresses, mUint); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * 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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner { _transferOwnership(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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"_gobContract","type":"address"},{"internalType":"uint256","name":"_claimWindowOpens","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","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":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"_key","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"addMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"merkleRootKey","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimWindowOpens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllClaimedAmount","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAmountClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimWindowOpens","type":"uint256"}],"name":"setClaimWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawGOB","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561001057600080fd5b5060405161100a38038061100a83398101604081905261002f916100ab565b6100383361005b565b6000805460ff60a01b191690556001600160a01b039091166080526005556100e5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100be57600080fd5b82516001600160a01b03811681146100d557600080fd5b6020939093015192949293505050565b608051610f036101076000396000818161038401526106cc0152610f036000f3fe6080604052600436106100e85760003560e01c80638456cb591161008a578063d7e1ea1711610059578063d7e1ea171461026c578063eeb58fa214610299578063f2fde38b146102b9578063fff01ab0146102d957600080fd5b80638456cb59146101d65780638da5cb5b146101eb5780639caa44d314610213578063d36862e81461023657600080fd5b80635463c3e8116100c65780635463c3e8146101445780635c975abb14610157578063715018a61461018657806371c5ecb11461019b57600080fd5b806309e77269146100ed5780633bf0bcd01461010f5780633f4ba83a1461012f575b600080fd5b3480156100f957600080fd5b5061010d610108366004610c3f565b6102ef565b005b34801561011b57600080fd5b5061010d61012a366004610c7d565b610334565b34801561013b57600080fd5b5061010d610405565b61010d610152366004610ca7565b610439565b34801561016357600080fd5b50600054600160a01b900460ff1660405190151581526020015b60405180910390f35b34801561019257600080fd5b5061010d61078f565b3480156101a757600080fd5b506101c86101b6366004610d42565b60036020526000908152604090205481565b60405190815260200161017d565b3480156101e257600080fd5b5061010d6107c3565b3480156101f757600080fd5b506000546040516001600160a01b03909116815260200161017d565b34801561021f57600080fd5b506102286107f5565b60405161017d929190610d5b565b34801561024257600080fd5b506101c8610251366004610ddf565b6001600160a01b031660009081526004602052604090205490565b34801561027857600080fd5b506101c8610287366004610ddf565b60046020526000908152604090205481565b3480156102a557600080fd5b5061010d6102b4366004610d42565b610976565b3480156102c557600080fd5b5061010d6102d4366004610ddf565b6109a5565b3480156102e557600080fd5b506101c860055481565b6000546001600160a01b031633146103225760405162461bcd60e51b815260040161031990610e01565b60405180910390fd5b60009182526003602052604090912055565b6000546001600160a01b0316331461035e5760405162461bcd60e51b815260040161031990610e01565b60405163a9059cbb60e01b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb90604401602060405180830381600087803b1580156103c857600080fd5b505af11580156103dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104009190610e36565b505050565b6000546001600160a01b0316331461042f5760405162461bcd60e51b815260040161031990610e01565b610437610a40565b565b600054600160a01b900460ff16156104865760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610319565b6005544210156104d85760405162461bcd60e51b815260206004820152601960248201527f636c61696d2077696e646f77206e6f74206f70656e20796574000000000000006044820152606401610319565b3360009081526004602052604090205483906104f5908790610e6e565b11156105435760405162461bcd60e51b815260206004820152601960248201527f636c61696d61626c6520616d6f756e74206578636565646564000000000000006044820152606401610319565b60408051602081018690526bffffffffffffffffffffffff193360601b1691810191909152605481018490526000906074016040516020818303038152906040528051906020012090506105d883838080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508c8152600360205260409020549250859150610add9050565b61061b5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610319565b336000908152600460205260408120805488929061063a908490610e6e565b90915550503360009081526002602052604090205460ff166106b057336000818152600260205260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b03191690911790555b60405163a9059cbb60e01b8152336004820152602481018790527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561071857600080fd5b505af115801561072c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107509190610e36565b5060405186815233907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a9060200160405180910390a250505050505050565b6000546001600160a01b031633146107b95760405162461bcd60e51b815260040161031990610e01565b6104376000610af3565b6000546001600160a01b031633146107ed5760405162461bcd60e51b815260040161031990610e01565b610437610b43565b606080600060018054905067ffffffffffffffff81111561081857610818610e86565b604051908082528060200260200182016040528015610841578160200160208202803683370190505b5060015490915060009067ffffffffffffffff81111561086357610863610e86565b60405190808252806020026020018201604052801561088c578160200160208202803683370190505b50905060005b60015481101561096c57600181815481106108af576108af610e9c565b9060005260206000200160009054906101000a90046001600160a01b03168382815181106108df576108df610e9c565b60200260200101906001600160a01b031690816001600160a01b031681525050600460006001838154811061091657610916610e9c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054825183908390811061094f5761094f610e9c565b60209081029190910101528061096481610eb2565b915050610892565b5090939092509050565b6000546001600160a01b031633146109a05760405162461bcd60e51b815260040161031990610e01565b600555565b6000546001600160a01b031633146109cf5760405162461bcd60e51b815260040161031990610e01565b6001600160a01b038116610a345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610319565b610a3d81610af3565b50565b600054600160a01b900460ff16610a905760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610319565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082610aea8584610bcb565b14949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600054600160a01b900460ff1615610b905760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610319565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ac03390565b600081815b8451811015610c37576000858281518110610bed57610bed610e9c565b60200260200101519050808311610c135760008381526020829052604090209250610c24565b600081815260208490526040902092505b5080610c2f81610eb2565b915050610bd0565b509392505050565b60008060408385031215610c5257600080fd5b50508035926020909101359150565b80356001600160a01b0381168114610c7857600080fd5b919050565b60008060408385031215610c9057600080fd5b610c9983610c61565b946020939093013593505050565b60008060008060008060a08789031215610cc057600080fd5b86359550602087013594506040870135935060608701359250608087013567ffffffffffffffff80821115610cf457600080fd5b818901915089601f830112610d0857600080fd5b813581811115610d1757600080fd5b8a60208260051b8501011115610d2c57600080fd5b6020830194508093505050509295509295509295565b600060208284031215610d5457600080fd5b5035919050565b604080825283519082018190526000906020906060840190828701845b82811015610d9d5781516001600160a01b031684529284019290840190600101610d78565b5050508381038285015284518082528583019183019060005b81811015610dd257835183529284019291840191600101610db6565b5090979650505050505050565b600060208284031215610df157600080fd5b610dfa82610c61565b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610e4857600080fd5b81518015158114610dfa57600080fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115610e8157610e81610e58565b500190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000600019821415610ec657610ec6610e58565b506001019056fea2646970667358221220b901c1b1dfe308586d99d9de0dd33938774d6ca597c2c39b097ff8b00caac96f64736f6c63430008090033000000000000000000000000995abfd579c1db43bc31e77dcce6d526a8cbb3350000000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000995abfd579c1db43bc31e77dcce6d526a8cbb3350000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _gobContract (address): 0x995abfd579c1db43bc31e77dcce6d526a8cbb335
Arg [1] : _claimWindowOpens (uint256): 0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000995abfd579c1db43bc31e77dcce6d526a8cbb335
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|