Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 1,231 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Migrate | 22236207 | 5 hrs ago | IN | 0 ETH | 0.00005485 | ||||
Migrate | 22230766 | 23 hrs ago | IN | 0 ETH | 0.00010252 | ||||
Migrate | 22109447 | 17 days ago | IN | 0 ETH | 0.00002752 | ||||
Migrate | 22109402 | 17 days ago | IN | 0 ETH | 0.00007175 | ||||
Migrate | 22086284 | 21 days ago | IN | 0 ETH | 0.000057 | ||||
Migrate | 22076056 | 22 days ago | IN | 0 ETH | 0.00003017 | ||||
Migrate | 22075957 | 22 days ago | IN | 0 ETH | 0.00005471 | ||||
Migrate | 22075821 | 22 days ago | IN | 0 ETH | 0.00007823 | ||||
Migrate | 21960906 | 38 days ago | IN | 0 ETH | 0.00235973 | ||||
Migrate | 21906630 | 46 days ago | IN | 0 ETH | 0.0000758 | ||||
Migrate | 21836709 | 56 days ago | IN | 0 ETH | 0.00008964 | ||||
Migrate | 21780126 | 63 days ago | IN | 0 ETH | 0.00024578 | ||||
Migrate | 21775936 | 64 days ago | IN | 0 ETH | 0.00087581 | ||||
Migrate | 21753228 | 67 days ago | IN | 0 ETH | 0.00019713 | ||||
Migrate | 21752790 | 67 days ago | IN | 0 ETH | 0.00035797 | ||||
Migrate | 21751254 | 67 days ago | IN | 0 ETH | 0.00033271 | ||||
Migrate | 21688070 | 76 days ago | IN | 0 ETH | 0.00367846 | ||||
Migrate | 21687931 | 76 days ago | IN | 0 ETH | 0.00322444 | ||||
Migrate | 21687827 | 76 days ago | IN | 0 ETH | 0.00389025 | ||||
Migrate | 21675549 | 78 days ago | IN | 0 ETH | 0.00238723 | ||||
Migrate | 21639652 | 83 days ago | IN | 0 ETH | 0.00136904 | ||||
Migrate | 21628700 | 85 days ago | IN | 0 ETH | 0.00051784 | ||||
Migrate | 21628675 | 85 days ago | IN | 0 ETH | 0.00035521 | ||||
Migrate | 21620714 | 86 days ago | IN | 0 ETH | 0.00034596 | ||||
Migrate | 21611404 | 87 days ago | IN | 0 ETH | 0.00057282 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Migration
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; interface IVEC { function burn(uint256 _amount) external; } interface IStaking { function unstake(address _to, uint256 _amount, bool _rebase) external; } interface IKERN { function mint(address to_, uint256 amount_) external; } contract Migration is Ownable2Step { /// STATE VARIABLES /// /// @notice Address of VEC address public constant VEC = 0x1BB9b64927e0C5e207C9DB4093b3738Eef5D8447; /// @notice Address of sVEC address public constant sVEC = 0x66d5c66E7C83E0682d947176534242c9f19b3365; /// @notice Address of staking address public constant staking = 0xFdC28cd1BFEBF3033870C0344B4E0beE639be9b1; /// @notice Address of KERN address public KERN; /// @notice Max amount that can be migrated uint256 public constant MAX_CAN_MIGRATE = 3_849_354 * 1e18; /// @notice Amount of KERN migrated uint256 public amountMigrated; /// @notice Bool if migration is open bool public migrationOpen; /// CONSTRUCTOR /// constructor() Ownable2Step() { IERC20(sVEC).approve(staking, type(uint256).max); } /// INITIALIZE /// /// @notice Set KERN address function setKERN(address _kern) external onlyOwner { require(KERN == address(0), "Address already set"); KERN = _kern; } /// @notice Open migartion function openMigration() external onlyOwner { require(!migrationOpen, "Migration had already been opened"); migrationOpen = true; } /// MIGRATE /// /// @notice Migrate `_amount` of VEC to KERN /// @param _amount Amount of VEC to migrate /// @param _staked Bool if sVEC function migrate(uint256 _amount, bool _staked) external { if (msg.sender != owner()) { require(migrationOpen, "Migration not open yet"); } if (!_staked) { IERC20(VEC).transferFrom(msg.sender, address(this), _amount); } else { IERC20(sVEC).transferFrom(msg.sender, address(this), _amount); IStaking(staking).unstake(address(this), _amount, false); } IVEC(VEC).burn(_amount); amountMigrated += _amount * 1e9; require(MAX_CAN_MIGRATE >= amountMigrated, "Migrating more than max"); IKERN(KERN).mint(msg.sender, _amount * 1e9); } }
// 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.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// 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.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; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"KERN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CAN_MIGRATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VEC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountMigrated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_staked","type":"bool"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrationOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sVEC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_kern","type":"address"}],"name":"setKERN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a336100b1565b60405163095ea7b360e01b815273fdc28cd1bfebf3033870c0344b4e0bee639be9b1600482015260001960248201527366d5c66e7c83e0682d947176534242c9f19b33659063095ea7b3906044016020604051808303816000875af1158015610087573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ab919061011d565b50610146565b600180546001600160a01b03191690556100ca816100cd565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561012f57600080fd5b8151801515811461013f57600080fd5b9392505050565b610a0e806101556000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806398c8bece11610097578063e30c397811610066578063e30c3978146101ee578063e37e581b146101ff578063e60c5f911461021a578063f2fde38b1461022357600080fd5b806398c8bece1461019b5780639b3007da146101b8578063b0ca2e62146101c0578063bbf3df0c146101db57600080fd5b806379ba5097116100d357806379ba50971461014f5780637cc9a373146101575780637d72e6891461016a5780638da5cb5b1461018a57600080fd5b80631b5d1a6c146100fa5780634cf088d91461010f578063715018a614610147575b600080fd5b61010d6101083660046108ee565b610236565b005b61012a73fdc28cd1bfebf3033870c0344b4e0bee639be9b181565b6040516001600160a01b0390911681526020015b60405180910390f35b61010d6102cb565b61010d6102df565b60025461012a906001600160a01b031681565b61017c6a032f21e602586dabe8000081565b60405190815260200161013e565b6000546001600160a01b031661012a565b6004546101a89060ff1681565b604051901515815260200161013e565b61010d61036d565b61012a731bb9b64927e0c5e207c9db4093b3738eef5d844781565b61010d6101e936600461092c565b6103fd565b6001546001600160a01b031661012a565b61012a7366d5c66e7c83e0682d947176534242c9f19b336581565b61017c60035481565b61010d6102313660046108ee565b610798565b61023e610816565b6002546001600160a01b03161561029c5760405162461bcd60e51b815260206004820152601360248201527f4164647265737320616c7265616479207365740000000000000000000000000060448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102d3610816565b6102dd6000610870565b565b60015433906001600160a01b031681146103615760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610293565b61036a81610870565b50565b610375610816565b60045460ff16156103ee5760405162461bcd60e51b815260206004820152602160248201527f4d6967726174696f6e2068616420616c7265616479206265656e206f70656e6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610293565b6004805460ff19166001179055565b6000546001600160a01b031633146104615760045460ff166104615760405162461bcd60e51b815260206004820152601660248201527f4d6967726174696f6e206e6f74206f70656e20796574000000000000000000006044820152606401610293565b806104ee576040516323b872dd60e01b815233600482015230602482015260448101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906323b872dd906064016020604051808303816000875af11580156104c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e8919061095c565b506105fd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527366d5c66e7c83e0682d947176534242c9f19b3365906323b872dd906064016020604051808303816000875af115801561054c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610570919061095c565b506040517f21d0af34000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482015273fdc28cd1bfebf3033870c0344b4e0bee639be9b1906321d0af3490606401600060405180830381600087803b1580156105e457600080fd5b505af11580156105f8573d6000803e3d6000fd5b505050505b6040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906342966c6890602401600060405180830381600087803b15801561066357600080fd5b505af1158015610677573d6000803e3d6000fd5b5050505081633b9aca0061068b91906109a8565b6003600082825461069c91906109c5565b90915550506003546a032f21e602586dabe8000010156106fe5760405162461bcd60e51b815260206004820152601760248201527f4d6967726174696e67206d6f7265207468616e206d61780000000000000000006044820152606401610293565b6002546001600160a01b03166340c10f193361071e85633b9aca006109a8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561077c57600080fd5b505af1158015610790573d6000803e3d6000fd5b505050505050565b6107a0610816565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556107de6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000546001600160a01b031633146102dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610293565b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561036a81600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561090057600080fd5b81356001600160a01b038116811461091757600080fd5b9392505050565b801515811461036a57600080fd5b6000806040838503121561093f57600080fd5b8235915060208301356109518161091e565b809150509250929050565b60006020828403121561096e57600080fd5b81516109178161091e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176109bf576109bf610979565b92915050565b808201808211156109bf576109bf61097956fea2646970667358221220f9769678a1d7acd003ccabbc2cd990c520ed1e6d15263e5528dfa7aa973612b964736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806398c8bece11610097578063e30c397811610066578063e30c3978146101ee578063e37e581b146101ff578063e60c5f911461021a578063f2fde38b1461022357600080fd5b806398c8bece1461019b5780639b3007da146101b8578063b0ca2e62146101c0578063bbf3df0c146101db57600080fd5b806379ba5097116100d357806379ba50971461014f5780637cc9a373146101575780637d72e6891461016a5780638da5cb5b1461018a57600080fd5b80631b5d1a6c146100fa5780634cf088d91461010f578063715018a614610147575b600080fd5b61010d6101083660046108ee565b610236565b005b61012a73fdc28cd1bfebf3033870c0344b4e0bee639be9b181565b6040516001600160a01b0390911681526020015b60405180910390f35b61010d6102cb565b61010d6102df565b60025461012a906001600160a01b031681565b61017c6a032f21e602586dabe8000081565b60405190815260200161013e565b6000546001600160a01b031661012a565b6004546101a89060ff1681565b604051901515815260200161013e565b61010d61036d565b61012a731bb9b64927e0c5e207c9db4093b3738eef5d844781565b61010d6101e936600461092c565b6103fd565b6001546001600160a01b031661012a565b61012a7366d5c66e7c83e0682d947176534242c9f19b336581565b61017c60035481565b61010d6102313660046108ee565b610798565b61023e610816565b6002546001600160a01b03161561029c5760405162461bcd60e51b815260206004820152601360248201527f4164647265737320616c7265616479207365740000000000000000000000000060448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102d3610816565b6102dd6000610870565b565b60015433906001600160a01b031681146103615760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610293565b61036a81610870565b50565b610375610816565b60045460ff16156103ee5760405162461bcd60e51b815260206004820152602160248201527f4d6967726174696f6e2068616420616c7265616479206265656e206f70656e6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610293565b6004805460ff19166001179055565b6000546001600160a01b031633146104615760045460ff166104615760405162461bcd60e51b815260206004820152601660248201527f4d6967726174696f6e206e6f74206f70656e20796574000000000000000000006044820152606401610293565b806104ee576040516323b872dd60e01b815233600482015230602482015260448101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906323b872dd906064016020604051808303816000875af11580156104c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e8919061095c565b506105fd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527366d5c66e7c83e0682d947176534242c9f19b3365906323b872dd906064016020604051808303816000875af115801561054c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610570919061095c565b506040517f21d0af34000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482015273fdc28cd1bfebf3033870c0344b4e0bee639be9b1906321d0af3490606401600060405180830381600087803b1580156105e457600080fd5b505af11580156105f8573d6000803e3d6000fd5b505050505b6040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906342966c6890602401600060405180830381600087803b15801561066357600080fd5b505af1158015610677573d6000803e3d6000fd5b5050505081633b9aca0061068b91906109a8565b6003600082825461069c91906109c5565b90915550506003546a032f21e602586dabe8000010156106fe5760405162461bcd60e51b815260206004820152601760248201527f4d6967726174696e67206d6f7265207468616e206d61780000000000000000006044820152606401610293565b6002546001600160a01b03166340c10f193361071e85633b9aca006109a8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561077c57600080fd5b505af1158015610790573d6000803e3d6000fd5b505050505050565b6107a0610816565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556107de6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000546001600160a01b031633146102dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610293565b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561036a81600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561090057600080fd5b81356001600160a01b038116811461091757600080fd5b9392505050565b801515811461036a57600080fd5b6000806040838503121561093f57600080fd5b8235915060208301356109518161091e565b809150509250929050565b60006020828403121561096e57600080fd5b81516109178161091e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176109bf576109bf610979565b92915050565b808201808211156109bf576109bf61097956fea2646970667358221220f9769678a1d7acd003ccabbc2cd990c520ed1e6d15263e5528dfa7aa973612b964736f6c63430008130033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.