Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,189 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 17379312 | 616 days ago | IN | 0 ETH | 0.00308588 | ||||
Claim | 16987811 | 671 days ago | IN | 0 ETH | 0.00133451 | ||||
Claim | 16037588 | 804 days ago | IN | 0 ETH | 0.00140975 | ||||
Claim | 16023313 | 806 days ago | IN | 0 ETH | 0.00131961 | ||||
Claim | 15946832 | 817 days ago | IN | 0 ETH | 0.00288459 | ||||
Claim | 15938717 | 818 days ago | IN | 0 ETH | 0.0026673 | ||||
Claim | 15906245 | 822 days ago | IN | 0 ETH | 0.00158906 | ||||
Claim | 15903212 | 823 days ago | IN | 0 ETH | 0.00161579 | ||||
Claim | 15899240 | 823 days ago | IN | 0 ETH | 0.003102 | ||||
Claim | 15881813 | 826 days ago | IN | 0 ETH | 0.00107761 | ||||
Claim | 15822162 | 834 days ago | IN | 0 ETH | 0.00162035 | ||||
Claim | 15819130 | 834 days ago | IN | 0 ETH | 0.00114525 | ||||
Claim | 15819125 | 834 days ago | IN | 0 ETH | 0.00420104 | ||||
Claim | 15814968 | 835 days ago | IN | 0 ETH | 0.00154594 | ||||
Claim | 15788729 | 839 days ago | IN | 0 ETH | 0.00226341 | ||||
Claim | 15788224 | 839 days ago | IN | 0 ETH | 0.00242659 | ||||
Claim | 15760554 | 843 days ago | IN | 0 ETH | 0.00038272 | ||||
Claim | 15633947 | 860 days ago | IN | 0 ETH | 0.00178775 | ||||
Claim | 15579964 | 868 days ago | IN | 0 ETH | 0.00109793 | ||||
Claim | 15566865 | 870 days ago | IN | 0 ETH | 0.00024173 | ||||
Claim | 15553233 | 872 days ago | IN | 0 ETH | 0.0007247 | ||||
Claim | 15463654 | 886 days ago | IN | 0 ETH | 0.00058699 | ||||
Claim | 15461735 | 886 days ago | IN | 0 ETH | 0.00484975 | ||||
Claim | 15452831 | 888 days ago | IN | 0 ETH | 0.00112805 | ||||
Claim | 15452410 | 888 days ago | IN | 0 ETH | 0.0002306 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Reward
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; contract Reward is Ownable, EIP712, ReentrancyGuard { using SafeERC20 for IERC20; bytes32 public constant REWARD_CALL_HASH_TYPE = keccak256('Airdrop(address receiver,uint256 amount,address inviter,uint256 rewards)'); address tokenAddress; event RewardExe( uint8 indexed activityID, address indexed receiver, uint256 receiver_rewards, address indexed inviter, uint256 inviter_rewards ); mapping(uint8 => mapping(address => bool)) public rewardClaimed; mapping(uint8 => address) public rewardProvider; mapping(uint8 => address) public rewardSigner; constructor(address _tokenAddress) EIP712('SomniLife', '1') { tokenAddress = _tokenAddress; } function claim( uint8 activityID, uint256 amount, address inviter, uint256 rewards, uint8 v, bytes32 r, bytes32 s ) external nonReentrant { require(!rewardClaimed[activityID][_msgSender()], 'Claimed'); bytes32 digest = _hashTypedDataV4( keccak256(abi.encode(REWARD_CALL_HASH_TYPE, _msgSender(), amount, inviter, rewards)) ); require( rewardSigner[activityID] != address(0) && ECDSA.recover(digest, v, r, s) == rewardSigner[activityID], 'Invalid signer' ); require(rewardProvider[activityID] != address(0), 'Invalid Provider'); IERC20(tokenAddress).safeTransferFrom(rewardProvider[activityID], _msgSender(), amount); if (inviter != address(0)) { IERC20(tokenAddress).safeTransferFrom(rewardProvider[activityID], inviter, rewards); } rewardClaimed[activityID][_msgSender()] = true; emit RewardExe(activityID, _msgSender(), amount, inviter, rewards); } function setRewardProvider(uint8 activityID, address provider) public onlyOwner { require(rewardProvider[activityID] != address(0), 'The reward id does not exit'); require(rewardProvider[activityID] != provider, 'Provider is same with previous one'); _setRewardProvider(activityID, provider); } function setRewardSigner(uint8 activityID, address signer) public onlyOwner { require(rewardSigner[activityID] != address(0), 'The reward id does not exit'); require(rewardSigner[activityID] != signer, 'Signer is same with previous one'); _setRewardSigner(activityID, signer); } function setReward( uint8 activityID, address provider, address signer ) public onlyOwner { require(rewardProvider[activityID] == address(0), 'The reward id already exit'); _setRewardProvider(activityID, provider); _setRewardSigner(activityID, signer); } function _setRewardProvider(uint8 _activityID, address _provider) internal { rewardProvider[_activityID] = _provider; } function _setRewardSigner(uint8 _activityID, address _signer) internal { rewardSigner[_activityID] = _signer; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/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 IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { 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)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 `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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "evmVersion": "istanbul", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"uint8","name":"activityID","type":"uint8"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"receiver_rewards","type":"uint256"},{"indexed":true,"internalType":"address","name":"inviter","type":"address"},{"indexed":false,"internalType":"uint256","name":"inviter_rewards","type":"uint256"}],"name":"RewardExe","type":"event"},{"inputs":[],"name":"REWARD_CALL_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"activityID","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"inviter","type":"address"},{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"address","name":"","type":"address"}],"name":"rewardClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"rewardProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"rewardSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"activityID","type":"uint8"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"signer","type":"address"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"activityID","type":"uint8"},{"internalType":"address","name":"provider","type":"address"}],"name":"setRewardProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"activityID","type":"uint8"},{"internalType":"address","name":"signer","type":"address"}],"name":"setRewardSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b5060405162001c3138038062001c3183398101604081905262000035916200019d565b60405180604001604052806009815260200168536f6d6e694c69666560b81b815250604051806040016040528060018152602001603160f81b8152506200008b620000856200014960201b60201c565b6200014d565b815160208084019190912082518383012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c00190528051940193909320919290916080523060601b60c052610120525050600180555050600280546001600160a01b0319166001600160a01b0392909216919091179055620001cf565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620001b057600080fd5b81516001600160a01b0381168114620001c857600080fd5b9392505050565b60805160a05160c05160601c60e0516101005161012051611a0f62000222600039600061106d015260006110af0152600061108e01526000610ff20152600061101c015260006110460152611a0f6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063deea4a1c11610081578063f2fde38b1161005b578063f2fde38b14610225578063fd20ca2c14610238578063fefaa5011461024b57600080fd5b8063deea4a1c1461019e578063e8629725146101d4578063eb1c3e64146101e757600080fd5b8063715018a6116100b2578063715018a6146101635780638da5cb5b1461016d578063d6c1e1801461018b57600080fd5b80630a84f7f8146100ce578063339a295c14610108575b600080fd5b6100f57fc5498ad62d3087db936277480f57531bfca718a8b9068c01936998008004f7e381565b6040519081526020015b60405180910390f35b61013e610116366004611816565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ff565b61016b61025e565b005b60005473ffffffffffffffffffffffffffffffffffffffff1661013e565b61016b610199366004611831565b6102f0565b61013e6101ac366004611816565b60046020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61016b6101e23660046118a7565b61050f565b6102156101f5366004611831565b600360209081526000928352604080842090915290825290205460ff1681565b60405190151581526020016100ff565b61016b6102333660046117d9565b61094d565b61016b610246366004611831565b610a7d565b61016b610259366004611864565b610c76565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6102ee6000610e31565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff821660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16610400576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5468652072657761726420696420646f6573206e6f742065786974000000000060448201526064016102db565b60ff821660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff828116911614156104bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50726f76696465722069732073616d6520776974682070726576696f7573206f60448201527f6e6500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60ff8216600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555050565b6002600154141561057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102db565b600260015560ff87811660009081526003602090815260408083203384529091529020541615610608576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f436c61696d65640000000000000000000000000000000000000000000000000060448201526064016102db565b600061068a7fc5498ad62d3087db936277480f57531bfca718a8b9068c01936998008004f7e33360408051602081019390935273ffffffffffffffffffffffffffffffffffffffff91821690830152606082018a90528816608082015260a0810187905260c00160405160208183030381529060405280519060200120610ea6565b60ff891660009081526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff161580159061070c575060ff881660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff166106f482868686610f15565b73ffffffffffffffffffffffffffffffffffffffff16145b610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c6964207369676e657200000000000000000000000000000000000060448201526064016102db565b60ff881660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16610801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e76616c69642050726f76696465720000000000000000000000000000000060448201526064016102db565b60ff88166000908152600460205260409020546108509073ffffffffffffffffffffffffffffffffffffffff163360025473ffffffffffffffffffffffffffffffffffffffff1691908a610f3d565b73ffffffffffffffffffffffffffffffffffffffff8616156108a75760ff88166000908152600460205260409020546002546108a79173ffffffffffffffffffffffffffffffffffffffff91821691168888610f3d565b60ff88166000818152600360209081526040808320338085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580518b815291820189905273ffffffffffffffffffffffffffffffffffffffff8a1693917f146516bdf6ab462b773da1c53a4383c708b219267d9425e24a90f6e12f985cb3910160405180910390a4505060018055505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b73ffffffffffffffffffffffffffffffffffffffff8116610a71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102db565b610a7a81610e31565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff821660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff16610b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5468652072657761726420696420646f6573206e6f742065786974000000000060448201526064016102db565b60ff821660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff82811691161415610c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5369676e65722069732073616d6520776974682070726576696f7573206f6e6560448201526064016102db565b60ff8216600090815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff831660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1615610d87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5468652072657761726420696420616c7265616479206578697400000000000060448201526064016102db565b60ff8316600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841617905560ff8316600090815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055505050565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f0f610eb3610fd8565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b6000806000610f26878787876110d8565b91509150610f33816111f0565b5095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610fd2908590611449565b50505050565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614801561103e57507f000000000000000000000000000000000000000000000000000000000000000046145b1561106857507f000000000000000000000000000000000000000000000000000000000000000090565b6110d37f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611555565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561110f57506000905060036111e7565b8460ff16601b1415801561112757508460ff16601c14155b1561113857506000905060046111e7565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561118c573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166111e0576000600192509250506111e7565b9150600090505b94509492505050565b6000816004811115611204576112046119aa565b141561120d5750565b6001816004811115611221576112216119aa565b1415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016102db565b600281600481111561129d5761129d6119aa565b1415611305576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102db565b6003816004811115611319576113196119aa565b14156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60048160048111156113bb576113bb6119aa565b1415610a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60006114ab826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661159f9092919063ffffffff16565b805190915015610e2c57808060200190518101906114c991906117f4565b610e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102db565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b60606115ae84846000856115b6565b949350505050565b606082471015611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102db565b73ffffffffffffffffffffffffffffffffffffffff85163b6116c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102db565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516116ef9190611911565b60006040518083038185875af1925050503d806000811461172c576040519150601f19603f3d011682016040523d82523d6000602084013e611731565b606091505b509150915061174182828661174c565b979650505050505050565b6060831561175b575081611598565b82511561176b5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102db919061192d565b803573ffffffffffffffffffffffffffffffffffffffff811681146117c357600080fd5b919050565b803560ff811681146117c357600080fd5b6000602082840312156117eb57600080fd5b6115988261179f565b60006020828403121561180657600080fd5b8151801515811461159857600080fd5b60006020828403121561182857600080fd5b611598826117c8565b6000806040838503121561184457600080fd5b61184d836117c8565b915061185b6020840161179f565b90509250929050565b60008060006060848603121561187957600080fd5b611882846117c8565b92506118906020850161179f565b915061189e6040850161179f565b90509250925092565b600080600080600080600060e0888a0312156118c257600080fd5b6118cb886117c8565b9650602088013595506118e06040890161179f565b9450606088013593506118f5608089016117c8565b925060a0880135915060c0880135905092959891949750929550565b6000825161192381846020870161197e565b9190910192915050565b602081526000825180602084015261194c81604085016020870161197e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60005b83811015611999578181015183820152602001611981565b83811115610fd25750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220d62ea0a89b67efa928e83e9326b616b97d9ba42594189c25a463269760c5af2764736f6c6343000807003300000000000000000000000045dd18c5e0fa701abff449f6542aa53e258710b4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c8063deea4a1c11610081578063f2fde38b1161005b578063f2fde38b14610225578063fd20ca2c14610238578063fefaa5011461024b57600080fd5b8063deea4a1c1461019e578063e8629725146101d4578063eb1c3e64146101e757600080fd5b8063715018a6116100b2578063715018a6146101635780638da5cb5b1461016d578063d6c1e1801461018b57600080fd5b80630a84f7f8146100ce578063339a295c14610108575b600080fd5b6100f57fc5498ad62d3087db936277480f57531bfca718a8b9068c01936998008004f7e381565b6040519081526020015b60405180910390f35b61013e610116366004611816565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ff565b61016b61025e565b005b60005473ffffffffffffffffffffffffffffffffffffffff1661013e565b61016b610199366004611831565b6102f0565b61013e6101ac366004611816565b60046020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61016b6101e23660046118a7565b61050f565b6102156101f5366004611831565b600360209081526000928352604080842090915290825290205460ff1681565b60405190151581526020016100ff565b61016b6102333660046117d9565b61094d565b61016b610246366004611831565b610a7d565b61016b610259366004611864565b610c76565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6102ee6000610e31565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff821660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16610400576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5468652072657761726420696420646f6573206e6f742065786974000000000060448201526064016102db565b60ff821660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff828116911614156104bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50726f76696465722069732073616d6520776974682070726576696f7573206f60448201527f6e6500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60ff8216600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555050565b6002600154141561057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102db565b600260015560ff87811660009081526003602090815260408083203384529091529020541615610608576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f436c61696d65640000000000000000000000000000000000000000000000000060448201526064016102db565b600061068a7fc5498ad62d3087db936277480f57531bfca718a8b9068c01936998008004f7e33360408051602081019390935273ffffffffffffffffffffffffffffffffffffffff91821690830152606082018a90528816608082015260a0810187905260c00160405160208183030381529060405280519060200120610ea6565b60ff891660009081526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff161580159061070c575060ff881660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff166106f482868686610f15565b73ffffffffffffffffffffffffffffffffffffffff16145b610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c6964207369676e657200000000000000000000000000000000000060448201526064016102db565b60ff881660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16610801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e76616c69642050726f76696465720000000000000000000000000000000060448201526064016102db565b60ff88166000908152600460205260409020546108509073ffffffffffffffffffffffffffffffffffffffff163360025473ffffffffffffffffffffffffffffffffffffffff1691908a610f3d565b73ffffffffffffffffffffffffffffffffffffffff8616156108a75760ff88166000908152600460205260409020546002546108a79173ffffffffffffffffffffffffffffffffffffffff91821691168888610f3d565b60ff88166000818152600360209081526040808320338085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580518b815291820189905273ffffffffffffffffffffffffffffffffffffffff8a1693917f146516bdf6ab462b773da1c53a4383c708b219267d9425e24a90f6e12f985cb3910160405180910390a4505060018055505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b73ffffffffffffffffffffffffffffffffffffffff8116610a71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102db565b610a7a81610e31565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff821660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff16610b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5468652072657761726420696420646f6573206e6f742065786974000000000060448201526064016102db565b60ff821660009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff82811691161415610c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5369676e65722069732073616d6520776974682070726576696f7573206f6e6560448201526064016102db565b60ff8216600090815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102db565b60ff831660009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1615610d87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5468652072657761726420696420616c7265616479206578697400000000000060448201526064016102db565b60ff8316600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841617905560ff8316600090815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055505050565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f0f610eb3610fd8565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b6000806000610f26878787876110d8565b91509150610f33816111f0565b5095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610fd2908590611449565b50505050565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007d7da2a39dc4bc6bf83f7e87c0968fa26856f09b1614801561103e57507f000000000000000000000000000000000000000000000000000000000000000146145b1561106857507f35d57f24f4e0db41d75a53bbd5ba1b2b5b0f327da6b38c8e7ce67e43afe587b790565b6110d37f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f7538ad5310e003b1151ad16fed6d410d6185c50a73d209bf92854ad3118625127fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611555565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561110f57506000905060036111e7565b8460ff16601b1415801561112757508460ff16601c14155b1561113857506000905060046111e7565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561118c573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166111e0576000600192509250506111e7565b9150600090505b94509492505050565b6000816004811115611204576112046119aa565b141561120d5750565b6001816004811115611221576112216119aa565b1415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016102db565b600281600481111561129d5761129d6119aa565b1415611305576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102db565b6003816004811115611319576113196119aa565b14156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60048160048111156113bb576113bb6119aa565b1415610a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016102db565b60006114ab826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661159f9092919063ffffffff16565b805190915015610e2c57808060200190518101906114c991906117f4565b610e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102db565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b60606115ae84846000856115b6565b949350505050565b606082471015611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102db565b73ffffffffffffffffffffffffffffffffffffffff85163b6116c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102db565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516116ef9190611911565b60006040518083038185875af1925050503d806000811461172c576040519150601f19603f3d011682016040523d82523d6000602084013e611731565b606091505b509150915061174182828661174c565b979650505050505050565b6060831561175b575081611598565b82511561176b5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102db919061192d565b803573ffffffffffffffffffffffffffffffffffffffff811681146117c357600080fd5b919050565b803560ff811681146117c357600080fd5b6000602082840312156117eb57600080fd5b6115988261179f565b60006020828403121561180657600080fd5b8151801515811461159857600080fd5b60006020828403121561182857600080fd5b611598826117c8565b6000806040838503121561184457600080fd5b61184d836117c8565b915061185b6020840161179f565b90509250929050565b60008060006060848603121561187957600080fd5b611882846117c8565b92506118906020850161179f565b915061189e6040850161179f565b90509250925092565b600080600080600080600060e0888a0312156118c257600080fd5b6118cb886117c8565b9650602088013595506118e06040890161179f565b9450606088013593506118f5608089016117c8565b925060a0880135915060c0880135905092959891949750929550565b6000825161192381846020870161197e565b9190910192915050565b602081526000825180602084015261194c81604085016020870161197e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60005b83811015611999578181015183820152602001611981565b83811115610fd25750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220d62ea0a89b67efa928e83e9326b616b97d9ba42594189c25a463269760c5af2764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000045dd18c5e0fa701abff449f6542aa53e258710b4
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0x45Dd18c5E0Fa701ABff449f6542aA53e258710B4
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000045dd18c5e0fa701abff449f6542aa53e258710b4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $0.324199 | 9.75 | $3.16 |
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.