More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 386 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Migrate Front | 21787485 | 18 hrs ago | IN | 0 ETH | 0.00009665 | ||||
Migrate Front | 21765241 | 3 days ago | IN | 0 ETH | 0.00066706 | ||||
Migrate Front | 21752584 | 5 days ago | IN | 0 ETH | 0.00019549 | ||||
Migrate Front | 21606035 | 26 days ago | IN | 0 ETH | 0.00011492 | ||||
Migrate Front | 21589267 | 28 days ago | IN | 0 ETH | 0.00075833 | ||||
Migrate Front | 21574814 | 30 days ago | IN | 0 ETH | 0.0009872 | ||||
Migrate Front | 21542155 | 35 days ago | IN | 0 ETH | 0.00032157 | ||||
Migrate Front | 21526985 | 37 days ago | IN | 0 ETH | 0.00014682 | ||||
Migrate Front | 21523784 | 37 days ago | IN | 0 ETH | 0.00063713 | ||||
Migrate Front | 21522364 | 37 days ago | IN | 0 ETH | 0.0004245 | ||||
Migrate Front | 21510564 | 39 days ago | IN | 0 ETH | 0.00032573 | ||||
Migrate Front | 21500696 | 40 days ago | IN | 0 ETH | 0.00021213 | ||||
Migrate Front | 21499546 | 40 days ago | IN | 0 ETH | 0.00021607 | ||||
Migrate Front | 21443936 | 48 days ago | IN | 0 ETH | 0.0016226 | ||||
Migrate Front | 21430392 | 50 days ago | IN | 0 ETH | 0.00122908 | ||||
Migrate Front | 21406021 | 54 days ago | IN | 0 ETH | 0.00030927 | ||||
Migrate Front | 21391346 | 56 days ago | IN | 0 ETH | 0.00048101 | ||||
Migrate Front | 21391341 | 56 days ago | IN | 0 ETH | 0.00053184 | ||||
Migrate Front | 21391337 | 56 days ago | IN | 0 ETH | 0.00075023 | ||||
Migrate Front | 21385636 | 56 days ago | IN | 0 ETH | 0.00092288 | ||||
Migrate Front | 21384631 | 57 days ago | IN | 0 ETH | 0.00076864 | ||||
Migrate Front | 21383054 | 57 days ago | IN | 0 ETH | 0.00070298 | ||||
Migrate Front | 21374735 | 58 days ago | IN | 0 ETH | 0.00107585 | ||||
Migrate Front | 21356496 | 60 days ago | IN | 0 ETH | 0.00045925 | ||||
Migrate Front | 21335717 | 63 days ago | IN | 0 ETH | 0.00114141 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DeadWallet
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.24; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract DeadWallet is Ownable { using SafeERC20 for IERC20; uint256 constant MinMigrationAmount = 1e18; uint256 constant FRONT_TOKEN = 0; uint256 constant HOTCROSS_TOKEN = 1; IERC20 immutable front; IERC20 immutable hotcross; bool public isFrontOpen; bool public isHotcrossOpen; event NewMigration( address indexed ethAddress, uint256 indexed token, string destAddress, uint256 amount ); modifier whenOpen(uint256 token) { if(token == FRONT_TOKEN) { require(isFrontOpen, "Front migration closed"); } else { require(isHotcrossOpen, "Hotcross migration closed"); } _; } constructor(IERC20 _front, IERC20 _hotcross) { front = _front; hotcross = _hotcross; } function setMigrationWindowOpen(uint256 token, bool isOpen) public onlyOwner { if(token == FRONT_TOKEN) { isFrontOpen = isOpen; } else if (token == HOTCROSS_TOKEN) { isHotcrossOpen = isOpen; } } function migrateFront(string memory destAddress) whenOpen(FRONT_TOKEN) public { uint256 amount = front.balanceOf(msg.sender); require(amount >= MinMigrationAmount, "Insufficient FRONT balance"); front.safeTransferFrom(msg.sender, address(this), amount); emit NewMigration(msg.sender, FRONT_TOKEN, destAddress, amount); } function migrateHotcross(string memory destAddress) whenOpen(HOTCROSS_TOKEN) public { uint256 amount = hotcross.balanceOf(msg.sender); require(amount >= MinMigrationAmount, "Insufficient HOTCROSS balance"); hotcross.safeTransferFrom(msg.sender, address(this), amount); emit NewMigration(msg.sender, HOTCROSS_TOKEN, destAddress, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.9.4) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.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; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_front","type":"address"},{"internalType":"contract IERC20","name":"_hotcross","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"ethAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"string","name":"destAddress","type":"string"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewMigration","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"},{"inputs":[],"name":"isFrontOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isHotcrossOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"destAddress","type":"string"}],"name":"migrateFront","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"destAddress","type":"string"}],"name":"migrateHotcross","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":"uint256","name":"token","type":"uint256"},{"internalType":"bool","name":"isOpen","type":"bool"}],"name":"setMigrationWindowOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b50604051620017a4380380620017a4833981810160405281019062000037919062000211565b620000576200004b620000c760201b60201c565b620000cf60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505062000258565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001c58262000198565b9050919050565b6000620001d982620001b8565b9050919050565b620001eb81620001cc565b8114620001f757600080fd5b50565b6000815190506200020b81620001e0565b92915050565b600080604083850312156200022b576200022a62000193565b5b60006200023b85828601620001fa565b92505060206200024e85828601620001fa565b9150509250929050565b60805160a0516115186200028c6000396000818161023a015261032701526000818161049d015261058a01526115186000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063badcad861161005b578063badcad86146100ef578063d8fb5fd11461010b578063f2fde38b14610129578063fd36b3ab1461014557610088565b806313144d7d1461008d578063715018a6146100ab578063734a45d1146100b55780638da5cb5b146100d1575b600080fd5b610095610161565b6040516100a29190610b96565b60405180910390f35b6100b3610174565b005b6100cf60048036038101906100ca9190610d0b565b610188565b005b6100d96103c3565b6040516100e69190610d95565b60405180910390f35b61010960048036038101906101049190610d0b565b6103ec565b005b610113610626565b6040516101209190610b96565b60405180910390f35b610143600480360381019061013e9190610ddc565b610639565b005b61015f600480360381019061015a9190610e6b565b6106bc565b005b600060149054906101000a900460ff1681565b61017c610713565b6101866000610791565b565b6001600081036101e657600060149054906101000a900460ff166101e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d890610f08565b60405180910390fd5b610236565b600060159054906101000a900460ff16610235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022c90610f74565b60405180910390fd5b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016102919190610d95565b602060405180830381865afa1580156102ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d29190610fa9565b9050670de0b6b3a764000081101561031f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031690611022565b60405180910390fd5b61036c3330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610855909392919063ffffffff16565b60013373ffffffffffffffffffffffffffffffffffffffff167fd90b5704596b5b9632eeb81136818785f4e93b9238a71c90a743b9bd7dbf23ca85846040516103b69291906110bf565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080810361044957600060149054906101000a900460ff16610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90610f08565b60405180910390fd5b610499565b600060159054906101000a900460ff16610498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048f90610f74565b60405180910390fd5b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016104f49190610d95565b602060405180830381865afa158015610511573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105359190610fa9565b9050670de0b6b3a7640000811015610582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105799061113b565b60405180910390fd5b6105cf3330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610855909392919063ffffffff16565b60003373ffffffffffffffffffffffffffffffffffffffff167fd90b5704596b5b9632eeb81136818785f4e93b9238a71c90a743b9bd7dbf23ca85846040516106199291906110bf565b60405180910390a3505050565b600060159054906101000a900460ff1681565b610641610713565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a7906111cd565b60405180910390fd5b6106b981610791565b50565b6106c4610713565b600082036106eb5780600060146101000a81548160ff02191690831515021790555061070f565b6001820361070e5780600060156101000a81548160ff0219169083151502179055505b5b5050565b61071b6108de565b73ffffffffffffffffffffffffffffffffffffffff166107396103c3565b73ffffffffffffffffffffffffffffffffffffffff161461078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690611239565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6108d8846323b872dd60e01b85858560405160240161087693929190611259565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108e6565b50505050565b600033905090565b6000610948826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109ae9092919063ffffffff16565b905060008151148061096a57508080602001905181019061096991906112a5565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611344565b60405180910390fd5b505050565b60606109bd84846000856109c6565b90509392505050565b606082471015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906113d6565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610a34919061143d565b60006040518083038185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5091509150610a8787838387610a93565b92505050949350505050565b60608315610af5576000835103610aed57610aad85610b08565b610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906114a0565b60405180910390fd5b5b829050610b00565b610aff8383610b2b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610b3e5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7291906114c0565b60405180910390fd5b60008115159050919050565b610b9081610b7b565b82525050565b6000602082019050610bab6000830184610b87565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610c1882610bcf565b810181811067ffffffffffffffff82111715610c3757610c36610be0565b5b80604052505050565b6000610c4a610bb1565b9050610c568282610c0f565b919050565b600067ffffffffffffffff821115610c7657610c75610be0565b5b610c7f82610bcf565b9050602081019050919050565b82818337600083830152505050565b6000610cae610ca984610c5b565b610c40565b905082815260208101848484011115610cca57610cc9610bca565b5b610cd5848285610c8c565b509392505050565b600082601f830112610cf257610cf1610bc5565b5b8135610d02848260208601610c9b565b91505092915050565b600060208284031215610d2157610d20610bbb565b5b600082013567ffffffffffffffff811115610d3f57610d3e610bc0565b5b610d4b84828501610cdd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d7f82610d54565b9050919050565b610d8f81610d74565b82525050565b6000602082019050610daa6000830184610d86565b92915050565b610db981610d74565b8114610dc457600080fd5b50565b600081359050610dd681610db0565b92915050565b600060208284031215610df257610df1610bbb565b5b6000610e0084828501610dc7565b91505092915050565b6000819050919050565b610e1c81610e09565b8114610e2757600080fd5b50565b600081359050610e3981610e13565b92915050565b610e4881610b7b565b8114610e5357600080fd5b50565b600081359050610e6581610e3f565b92915050565b60008060408385031215610e8257610e81610bbb565b5b6000610e9085828601610e2a565b9250506020610ea185828601610e56565b9150509250929050565b600082825260208201905092915050565b7f46726f6e74206d6967726174696f6e20636c6f73656400000000000000000000600082015250565b6000610ef2601683610eab565b9150610efd82610ebc565b602082019050919050565b60006020820190508181036000830152610f2181610ee5565b9050919050565b7f486f7463726f7373206d6967726174696f6e20636c6f73656400000000000000600082015250565b6000610f5e601983610eab565b9150610f6982610f28565b602082019050919050565b60006020820190508181036000830152610f8d81610f51565b9050919050565b600081519050610fa381610e13565b92915050565b600060208284031215610fbf57610fbe610bbb565b5b6000610fcd84828501610f94565b91505092915050565b7f496e73756666696369656e7420484f5443524f53532062616c616e6365000000600082015250565b600061100c601d83610eab565b915061101782610fd6565b602082019050919050565b6000602082019050818103600083015261103b81610fff565b9050919050565b600081519050919050565b60005b8381101561106b578082015181840152602081019050611050565b60008484015250505050565b600061108282611042565b61108c8185610eab565b935061109c81856020860161104d565b6110a581610bcf565b840191505092915050565b6110b981610e09565b82525050565b600060408201905081810360008301526110d98185611077565b90506110e860208301846110b0565b9392505050565b7f496e73756666696369656e742046524f4e542062616c616e6365000000000000600082015250565b6000611125601a83610eab565b9150611130826110ef565b602082019050919050565b6000602082019050818103600083015261115481611118565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111b7602683610eab565b91506111c28261115b565b604082019050919050565b600060208201905081810360008301526111e6816111aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611223602083610eab565b915061122e826111ed565b602082019050919050565b6000602082019050818103600083015261125281611216565b9050919050565b600060608201905061126e6000830186610d86565b61127b6020830185610d86565b61128860408301846110b0565b949350505050565b60008151905061129f81610e3f565b92915050565b6000602082840312156112bb576112ba610bbb565b5b60006112c984828501611290565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061132e602a83610eab565b9150611339826112d2565b604082019050919050565b6000602082019050818103600083015261135d81611321565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006113c0602683610eab565b91506113cb82611364565b604082019050919050565b600060208201905081810360008301526113ef816113b3565b9050919050565b600081519050919050565b600081905092915050565b6000611417826113f6565b6114218185611401565b935061143181856020860161104d565b80840191505092915050565b6000611449828461140c565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061148a601d83610eab565b915061149582611454565b602082019050919050565b600060208201905081810360008301526114b98161147d565b9050919050565b600060208201905081810360008301526114da8184611077565b90509291505056fea2646970667358221220668ebb8ee86e1ce50f59ae9a459a2eb3220a2cb47283a05cc4f640d1638bfc8a64736f6c63430008180033000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063badcad861161005b578063badcad86146100ef578063d8fb5fd11461010b578063f2fde38b14610129578063fd36b3ab1461014557610088565b806313144d7d1461008d578063715018a6146100ab578063734a45d1146100b55780638da5cb5b146100d1575b600080fd5b610095610161565b6040516100a29190610b96565b60405180910390f35b6100b3610174565b005b6100cf60048036038101906100ca9190610d0b565b610188565b005b6100d96103c3565b6040516100e69190610d95565b60405180910390f35b61010960048036038101906101049190610d0b565b6103ec565b005b610113610626565b6040516101209190610b96565b60405180910390f35b610143600480360381019061013e9190610ddc565b610639565b005b61015f600480360381019061015a9190610e6b565b6106bc565b005b600060149054906101000a900460ff1681565b61017c610713565b6101866000610791565b565b6001600081036101e657600060149054906101000a900460ff166101e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d890610f08565b60405180910390fd5b610236565b600060159054906101000a900460ff16610235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022c90610f74565b60405180910390fd5b5b60007f0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016102919190610d95565b602060405180830381865afa1580156102ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d29190610fa9565b9050670de0b6b3a764000081101561031f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031690611022565b60405180910390fd5b61036c3330837f0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e73ffffffffffffffffffffffffffffffffffffffff16610855909392919063ffffffff16565b60013373ffffffffffffffffffffffffffffffffffffffff167fd90b5704596b5b9632eeb81136818785f4e93b9238a71c90a743b9bd7dbf23ca85846040516103b69291906110bf565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080810361044957600060149054906101000a900460ff16610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90610f08565b60405180910390fd5b610499565b600060159054906101000a900460ff16610498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048f90610f74565b60405180910390fd5b5b60007f000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016104f49190610d95565b602060405180830381865afa158015610511573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105359190610fa9565b9050670de0b6b3a7640000811015610582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105799061113b565b60405180910390fd5b6105cf3330837f000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f73ffffffffffffffffffffffffffffffffffffffff16610855909392919063ffffffff16565b60003373ffffffffffffffffffffffffffffffffffffffff167fd90b5704596b5b9632eeb81136818785f4e93b9238a71c90a743b9bd7dbf23ca85846040516106199291906110bf565b60405180910390a3505050565b600060159054906101000a900460ff1681565b610641610713565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a7906111cd565b60405180910390fd5b6106b981610791565b50565b6106c4610713565b600082036106eb5780600060146101000a81548160ff02191690831515021790555061070f565b6001820361070e5780600060156101000a81548160ff0219169083151502179055505b5b5050565b61071b6108de565b73ffffffffffffffffffffffffffffffffffffffff166107396103c3565b73ffffffffffffffffffffffffffffffffffffffff161461078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690611239565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6108d8846323b872dd60e01b85858560405160240161087693929190611259565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506108e6565b50505050565b600033905090565b6000610948826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109ae9092919063ffffffff16565b905060008151148061096a57508080602001905181019061096991906112a5565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611344565b60405180910390fd5b505050565b60606109bd84846000856109c6565b90509392505050565b606082471015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906113d6565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610a34919061143d565b60006040518083038185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5091509150610a8787838387610a93565b92505050949350505050565b60608315610af5576000835103610aed57610aad85610b08565b610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906114a0565b60405180910390fd5b5b829050610b00565b610aff8383610b2b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610b3e5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7291906114c0565b60405180910390fd5b60008115159050919050565b610b9081610b7b565b82525050565b6000602082019050610bab6000830184610b87565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610c1882610bcf565b810181811067ffffffffffffffff82111715610c3757610c36610be0565b5b80604052505050565b6000610c4a610bb1565b9050610c568282610c0f565b919050565b600067ffffffffffffffff821115610c7657610c75610be0565b5b610c7f82610bcf565b9050602081019050919050565b82818337600083830152505050565b6000610cae610ca984610c5b565b610c40565b905082815260208101848484011115610cca57610cc9610bca565b5b610cd5848285610c8c565b509392505050565b600082601f830112610cf257610cf1610bc5565b5b8135610d02848260208601610c9b565b91505092915050565b600060208284031215610d2157610d20610bbb565b5b600082013567ffffffffffffffff811115610d3f57610d3e610bc0565b5b610d4b84828501610cdd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d7f82610d54565b9050919050565b610d8f81610d74565b82525050565b6000602082019050610daa6000830184610d86565b92915050565b610db981610d74565b8114610dc457600080fd5b50565b600081359050610dd681610db0565b92915050565b600060208284031215610df257610df1610bbb565b5b6000610e0084828501610dc7565b91505092915050565b6000819050919050565b610e1c81610e09565b8114610e2757600080fd5b50565b600081359050610e3981610e13565b92915050565b610e4881610b7b565b8114610e5357600080fd5b50565b600081359050610e6581610e3f565b92915050565b60008060408385031215610e8257610e81610bbb565b5b6000610e9085828601610e2a565b9250506020610ea185828601610e56565b9150509250929050565b600082825260208201905092915050565b7f46726f6e74206d6967726174696f6e20636c6f73656400000000000000000000600082015250565b6000610ef2601683610eab565b9150610efd82610ebc565b602082019050919050565b60006020820190508181036000830152610f2181610ee5565b9050919050565b7f486f7463726f7373206d6967726174696f6e20636c6f73656400000000000000600082015250565b6000610f5e601983610eab565b9150610f6982610f28565b602082019050919050565b60006020820190508181036000830152610f8d81610f51565b9050919050565b600081519050610fa381610e13565b92915050565b600060208284031215610fbf57610fbe610bbb565b5b6000610fcd84828501610f94565b91505092915050565b7f496e73756666696369656e7420484f5443524f53532062616c616e6365000000600082015250565b600061100c601d83610eab565b915061101782610fd6565b602082019050919050565b6000602082019050818103600083015261103b81610fff565b9050919050565b600081519050919050565b60005b8381101561106b578082015181840152602081019050611050565b60008484015250505050565b600061108282611042565b61108c8185610eab565b935061109c81856020860161104d565b6110a581610bcf565b840191505092915050565b6110b981610e09565b82525050565b600060408201905081810360008301526110d98185611077565b90506110e860208301846110b0565b9392505050565b7f496e73756666696369656e742046524f4e542062616c616e6365000000000000600082015250565b6000611125601a83610eab565b9150611130826110ef565b602082019050919050565b6000602082019050818103600083015261115481611118565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111b7602683610eab565b91506111c28261115b565b604082019050919050565b600060208201905081810360008301526111e6816111aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611223602083610eab565b915061122e826111ed565b602082019050919050565b6000602082019050818103600083015261125281611216565b9050919050565b600060608201905061126e6000830186610d86565b61127b6020830185610d86565b61128860408301846110b0565b949350505050565b60008151905061129f81610e3f565b92915050565b6000602082840312156112bb576112ba610bbb565b5b60006112c984828501611290565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061132e602a83610eab565b9150611339826112d2565b604082019050919050565b6000602082019050818103600083015261135d81611321565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006113c0602683610eab565b91506113cb82611364565b604082019050919050565b600060208201905081810360008301526113ef816113b3565b9050919050565b600081519050919050565b600081905092915050565b6000611417826113f6565b6114218185611401565b935061143181856020860161104d565b80840191505092915050565b6000611449828461140c565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061148a601d83610eab565b915061149582611454565b602082019050919050565b600060208201905081810360008301526114b98161147d565b9050919050565b600060208201905081810360008301526114da8184611077565b90509291505056fea2646970667358221220668ebb8ee86e1ce50f59ae9a459a2eb3220a2cb47283a05cc4f640d1638bfc8a64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e
-----Decoded View---------------
Arg [0] : _front (address): 0xf8C3527CC04340b208C854E985240c02F7B7793f
Arg [1] : _hotcross (address): 0x4297394c20800E8a38A619A243E9BbE7681Ff24E
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f
Arg [1] : 0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.300891 | 82,158,710.9212 | $24,720,816.69 |
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.