Source Code
Overview
S Balance
Token Holdings
More Info
ContractCreator
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 22928710 | 16 days ago | IN | 0 S | 0.00030097 | ||||
Deposit | 22928344 | 16 days ago | IN | 0 S | 0.00030097 | ||||
Deposit | 22928265 | 16 days ago | IN | 0 S | 0.00030097 | ||||
Deposit | 22564800 | 17 days ago | IN | 0 S | 0.00029541 | ||||
Claim All | 22564699 | 17 days ago | IN | 0 S | 0.00016995 | ||||
Deposit | 22564504 | 17 days ago | IN | 0 S | 0.00025124 | ||||
Withdraw | 22564346 | 17 days ago | IN | 0 S | 0.00009761 | ||||
Deposit | 22564006 | 17 days ago | IN | 0 S | 0.00026778 | ||||
Deposit | 22563953 | 17 days ago | IN | 0 S | 0.00025194 | ||||
Start | 22562776 | 17 days ago | IN | 0 S | 0.00008264 | ||||
Send Premint | 22562774 | 17 days ago | IN | 0 S | 0.00011339 | ||||
Create Pool | 22562744 | 17 days ago | IN | 0 S | 0.00011884 | ||||
Create Pool | 22562744 | 17 days ago | IN | 0 S | 0.00011885 | ||||
Create Pool | 22562742 | 17 days ago | IN | 0 S | 0.00009695 | ||||
Set All | 22560835 | 17 days ago | IN | 0 S | 0.00011807 |
Latest 18 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
22564800 | 17 days ago | 0 S | ||||
22564800 | 17 days ago | 0 S | ||||
22564800 | 17 days ago | 0 S | ||||
22564699 | 17 days ago | 0 S | ||||
22564504 | 17 days ago | 0 S | ||||
22564346 | 17 days ago | 0 S | ||||
22564006 | 17 days ago | 0 S | ||||
22563953 | 17 days ago | 0 S | ||||
22562776 | 17 days ago | 0 S | ||||
22562774 | 17 days ago | 0 S | ||||
22562774 | 17 days ago | 0 S | ||||
22562744 | 17 days ago | 0 S | ||||
22562744 | 17 days ago | 0 S | ||||
22562742 | 17 days ago | 0 S | ||||
22560835 | 17 days ago | 0 S | ||||
22560835 | 17 days ago | 0 S | ||||
22560835 | 17 days ago | 0 S | ||||
22560835 | 17 days ago | 0 S |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Genesis
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 1000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "./interfaces/IToken.sol"; import "./interfaces/ILPManager.sol"; import "./interfaces/IManager.sol"; contract Genesis is ReentrancyGuard { IManager private Manager; IToken private Token; ILPManager private LPManager; address private Treasury; uint256 public rewardsLeft; uint256 public startAt; uint256 public endAt; uint256 private _duration = 1 days; uint256 public rewardsPerSec = 1 * 1e18; uint256 private _forTreasury = 40; uint256 private _forLP = 60; uint256 public lastId = 1; uint256 constant PRECISION = 1e18; struct Pool { address token; uint256 poolShares; uint256 amountDeposited; uint256 depositFee; uint256 accRewardsPerShare; uint256 lastRewardTime; } struct User { uint256 deposited; uint256 rewardDebt; uint256 pendingReward; } mapping(uint256 => Pool) public pools; mapping(address => mapping(uint256 => User)) public userDetailsByPId; constructor(address _manager) { Manager = IManager(_manager); } modifier onlyOwner() { require(msg.sender == Manager.owner(), "Not Authorized"); _; } function setManager(address _manager) external onlyOwner { Manager = IManager(_manager); } function createPool( address token, uint256 shares, uint256 fee ) external onlyOwner { pools[lastId] = Pool(token, shares, 0, fee, 0, 0); lastId++; } function modifyPool( uint256 id, uint256 shares, uint256 fee ) external onlyOwner { Pool storage pool = pools[id]; pool.poolShares = shares; pool.depositFee = fee; } function setProportions(uint256 _tresury, uint256 _lp) external onlyOwner { _forTreasury = _tresury; _forLP = _lp; } function setRewardsPerSec(uint256 _rewardsPerSec) external onlyOwner { rewardsPerSec = _rewardsPerSec; } function setAll() external onlyOwner { Token = IToken(_getContract("Token")); LPManager = ILPManager(_getContract("LPManager")); Treasury = _getContract("Treasury"); } function sendPremint(uint256 amount) external onlyOwner { Token.transferFrom(msg.sender, address(this), amount); rewardsLeft += amount; } function start() external onlyOwner { startAt = block.timestamp; endAt = startAt + _duration; } function deposit(uint256 id, uint256 amount) external nonReentrant { require(startAt != 0 && block.timestamp < endAt, "genesis is closed"); _updatePool(id); User storage user = userDetailsByPId[msg.sender][id]; uint256 _pending = pendingReward(msg.sender, id); if (_pending > 0) { user.pendingReward += _pending; } Pool storage pool = pools[id]; uint256 fee = (amount * pool.depositFee) / 100; uint256 amountAfterFee = amount - fee; pool.amountDeposited += amountAfterFee; user.deposited += amountAfterFee; user.rewardDebt = (user.deposited * pool.accRewardsPerShare) / PRECISION; IToken(pool.token).transferFrom(msg.sender, address(this), amount); if (fee > 0) { uint256 feeTreasury = (fee * _forTreasury) / 100; uint256 feeLP = (fee * _forLP) / 100; IToken(pool.token).transfer(Treasury, feeTreasury); IToken(pool.token).transfer(address(LPManager), feeLP); // LPManager.addLiquidity(pool.token); } } function withdraw(uint256 id, uint256 amount) external nonReentrant { _updatePool(id); User storage user = userDetailsByPId[msg.sender][id]; require(user.deposited >= amount, "Not enough deposited"); uint256 _pending = pendingReward(msg.sender, id); if (_pending > 0) { user.pendingReward += _pending; } Pool storage pool = pools[id]; unchecked { pool.amountDeposited -= amount; user.deposited -= amount; } user.rewardDebt = (user.deposited * pool.accRewardsPerShare) / PRECISION; IToken(pool.token).transfer(msg.sender, amount); } function claim(uint256 id) external nonReentrant { _updatePool(id); User storage user = userDetailsByPId[msg.sender][id]; uint256 rewards = pendingReward(msg.sender, id) + user.pendingReward; user.pendingReward = 0; require(rewards > 0, "Nothing to claim"); rewards = rewardsLeft > rewards ? rewards : rewardsLeft; user.rewardDebt = (user.deposited * pools[id].accRewardsPerShare) / PRECISION; if (rewardsLeft < rewards) { rewardsLeft = 0; } else { rewardsLeft -= rewards; } Token.transfer(msg.sender, rewards); } function claimAll() external nonReentrant { uint256 sum = 0; for (uint256 i = 1; i < lastId; i++) { _updatePool(i); User storage user = userDetailsByPId[msg.sender][i]; uint256 add = pendingReward(msg.sender, i) + user.pendingReward; if (add > 0) { user.pendingReward = 0; sum += add; user.rewardDebt = (user.deposited * pools[i].accRewardsPerShare) / PRECISION; } } if (rewardsLeft < sum) { sum = rewardsLeft; rewardsLeft = 0; } else { rewardsLeft -= sum; } Token.transfer(msg.sender, sum); } function _updatePool(uint256 id) private { Pool storage pool = pools[id]; if (block.timestamp < startAt) { return; } if (pool.lastRewardTime == 0) { pool.lastRewardTime = startAt; } if (block.timestamp <= pool.lastRewardTime) { return; } if (pool.amountDeposited == 0) { pool.lastRewardTime = block.timestamp > endAt ? endAt : block.timestamp; return; } uint256 timePassed = block.timestamp - pool.lastRewardTime; if (endAt != 0 && block.timestamp > endAt) { if (pool.lastRewardTime >= endAt) { timePassed = 0; } else { timePassed = endAt - pool.lastRewardTime; } } if (timePassed > 0) { uint256 poolReward = (timePassed * rewardsPerSec * pool.poolShares) / 100; pool.accRewardsPerShare = pool.accRewardsPerShare + ((poolReward * PRECISION) / pool.amountDeposited); pool.lastRewardTime = block.timestamp > endAt ? endAt : block.timestamp; } } function pendingReward( address userAddr, uint256 id ) public view returns (uint256) { Pool storage pool = pools[id]; User storage user = userDetailsByPId[userAddr][id]; uint256 accRewardsPerShare = pool.accRewardsPerShare; uint256 lastTime = pool.lastRewardTime; if (block.timestamp < startAt) { return 0; } if (lastTime == 0) { lastTime = startAt; } if (block.timestamp > lastTime && pool.amountDeposited != 0) { uint256 timePassed = block.timestamp - lastTime; if (endAt != 0 && block.timestamp > endAt) { if (lastTime >= endAt) { timePassed = 0; } else { timePassed = endAt - lastTime; } } uint256 poolReward = (timePassed * rewardsPerSec * pool.poolShares) / 100; accRewardsPerShare = accRewardsPerShare + ((poolReward * PRECISION) / pool.amountDeposited); } uint256 accumulated = (user.deposited * accRewardsPerShare) / PRECISION; if (accumulated < user.rewardDebt) { return 0; } return accumulated - user.rewardDebt; } function _getContract( string memory contractName ) internal view returns (address) { return Manager.getContract(contractName); } function getTotalRewards(address user) external view returns (uint256) { uint256 sum = 0; for (uint256 i = 1; i < lastId; i++) { sum += pendingReward(user, i) + userDetailsByPId[user][i].pendingReward; } return sum; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; interface ILPManager { function addLiquidity(address token) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; interface IManager { function getContract(string memory name) external view returns (address); function owner() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IToken { /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); function mint(address to, uint256 value) external; function burnFrom(address from, uint256 value) external; }
{ "optimizer": { "enabled": true, "runs": 1000 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"createPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getTotalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"modifyPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddr","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pools","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"poolShares","type":"uint256"},{"internalType":"uint256","name":"amountDeposited","type":"uint256"},{"internalType":"uint256","name":"depositFee","type":"uint256"},{"internalType":"uint256","name":"accRewardsPerShare","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsPerSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendPremint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tresury","type":"uint256"},{"internalType":"uint256","name":"_lp","type":"uint256"}],"name":"setProportions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsPerSec","type":"uint256"}],"name":"setRewardsPerSec","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userDetailsByPId","outputs":[{"internalType":"uint256","name":"deposited","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"pendingReward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405262015180600855670de0b6b3a76400006009556028600a55603c600b556001600c55348015603157600080fd5b50604051611afc380380611afc833981016040819052604e916077565b6001600081905580546001600160a01b0319166001600160a01b039290921691909117905560a5565b600060208284031215608857600080fd5b81516001600160a01b0381168114609e57600080fd5b9392505050565b611a48806100b46000396000f3fe608060405234801561001057600080fd5b50600436106101765760003560e01c8063ac4afa38116100d8578063c74465651161008c578063d1058e5911610066578063d1058e5914610351578063e2bbb15814610359578063f430cf0d1461036c57600080fd5b8063c7446565146102e0578063ce0b6fd6146102e9578063d0ebdbe71461033e57600080fd5b8063bd2c0074116100bd578063bd2c0074146102bc578063be9a6555146102cf578063c1292cc3146102d757600080fd5b8063ac4afa3814610225578063b039ddf6146102a957600080fd5b8063441a3e701161012f57806367a249f71161011457806367a249f7146102005780637cc3ae8c14610213578063a8bc58f21461021c57600080fd5b8063441a3e70146101da578063497af9d0146101ed57600080fd5b80632bcf161c116101605780632bcf161c146101ac578063379607f5146101bf5780633e7d15c0146101d257600080fd5b80628934521461017b5780630407539914610197575b600080fd5b61018460095481565b6040519081526020015b60405180910390f35b6101aa6101a53660046117f6565b61037f565b005b6101846101ba366004611824565b610451565b6101aa6101cd3660046117f6565b6104b7565b6101aa610651565b6101aa6101e8366004611848565b610833565b6101aa6101fb366004611848565b6109ac565b6101aa61020e3660046117f6565b610a7f565b61018460075481565b61018460055481565b6102726102333660046117f6565b600d602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909186565b604080516001600160a01b0390971687526020870195909552938501929092526060840152608083015260a082015260c00161018e565b6101aa6102b736600461186a565b610bdd565b6101aa6102ca36600461189f565b610d42565b6101aa610e27565b610184600c5481565b61018460065481565b6103236102f73660046118cb565b600e60209081526000928352604080842090915290825290208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161018e565b6101aa61034c366004611824565b610f06565b6101aa610ff0565b6101aa610367366004611848565b611158565b61018461037a3660046118cb565b61146b565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f691906118f7565b6001600160a01b0316336001600160a01b03161461044c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600955565b60008060015b600c548110156104b0576001600160a01b0384166000908152600e60209081526040808320848452909152902060020154610492858361146b565b61049c919061192a565b6104a6908361192a565b9150600101610457565b5092915050565b6104bf6115e1565b6104c881611624565b336000818152600e602090815260408083208584529091528120600281015490926104f3908561146b565b6104fd919061192a565b600060028401559050806105535760405162461bcd60e51b815260206004820152601060248201527f4e6f7468696e6720746f20636c61696d000000000000000000000000000000006044820152606401610443565b806005541161056457600554610566565b805b6000848152600d60205260409020600401548354919250670de0b6b3a764000091610591919061193d565b61059b9190611954565b60018301556005548111156105b45760006005556105cc565b80600560008282546105c69190611976565b90915550505b60025460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af115801561061d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106419190611989565b50505061064e6001600055565b50565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c891906118f7565b6001600160a01b0316336001600160a01b0316146107195760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6107576040518060400160405280600581526020017f546f6b656e00000000000000000000000000000000000000000000000000000081525061176b565b600280546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600981527f4c504d616e61676572000000000000000000000000000000000000000000000060208201526107b49061176b565b600380546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600881527f547265617375727900000000000000000000000000000000000000000000000060208201526108119061176b565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b61083b6115e1565b61084482611624565b336000908152600e60209081526040808320858452909152902080548211156108af5760405162461bcd60e51b815260206004820152601460248201527f4e6f7420656e6f756768206465706f73697465640000000000000000000000006044820152606401610443565b60006108bb338561146b565b905080156108dd57808260020160008282546108d7919061192a565b90915550505b6000848152600d60205260409020600281018054859003905582548490038084556004820154670de0b6b3a764000091610917919061193d565b6109219190611954565b6001840155805460405163a9059cbb60e01b8152336004820152602481018690526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099a9190611989565b505050506109a86001600055565b5050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2391906118f7565b6001600160a01b0316336001600160a01b031614610a745760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b600a91909155600b55565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af691906118f7565b6001600160a01b0316336001600160a01b031614610b475760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6002546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190611989565b508060056000828254610bd5919061192a565b909155505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5491906118f7565b6001600160a01b0316336001600160a01b031614610ca55760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6040805160c0810182526001600160a01b03858116825260208083018681526000848601818152606086018881526080870183815260a08801848152600c80548652600d909752988420975188546001600160a01b0319169716969096178755925160018701555160028601559051600385015591516004840155925160059092019190915581549190610d38836119ab565b9190505550505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db991906118f7565b6001600160a01b0316336001600160a01b031614610e0a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6000928352600d6020526040909220600181019190915560030155565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9e91906118f7565b6001600160a01b0316336001600160a01b031614610eef5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b426006819055600854610f019161192a565b600755565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7d91906118f7565b6001600160a01b0316336001600160a01b031614610fce5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610ff86115e1565b600060015b600c548110156110a35761101081611624565b336000818152600e6020908152604080832085845290915281206002810154909261103b908561146b565b611045919061192a565b90508015611099576000600283015561105e818561192a565b6000848152600d60205260409020600401548354919550670de0b6b3a764000091611089919061193d565b6110939190611954565b60018301555b5050600101610ffd565b508060055410156110bd57506005805460009091556110d5565b80600560008282546110cf9190611976565b90915550505b60025460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a9190611989565b50506111566001600055565b565b6111606115e1565b60065415801590611172575060075442105b6111be5760405162461bcd60e51b815260206004820152601160248201527f67656e6573697320697320636c6f7365640000000000000000000000000000006044820152606401610443565b6111c782611624565b336000818152600e602090815260408083208684529091528120916111ec908561146b565b9050801561120e5780826002016000828254611208919061192a565b90915550505b6000848152600d602052604081206003810154909190606490611231908761193d565b61123b9190611954565b905060006112498287611976565b90508083600201600082825461125f919061192a565b909155505084548190869060009061127890849061192a565b909155505060048301548554670de0b6b3a7640000916112979161193d565b6112a19190611954565b600186015582546040516323b872dd60e01b8152336004820152306024820152604481018890526001600160a01b03909116906323b872dd906064016020604051808303816000875af11580156112fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113209190611989565b50811561145c5760006064600a5484611339919061193d565b6113439190611954565b905060006064600b5485611357919061193d565b6113619190611954565b85546004805460405163a9059cbb60e01b81526001600160a01b03918216928101929092526024820186905292935091169063a9059cbb906044016020604051808303816000875af11580156113bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113df9190611989565b50845460035460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015611434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114589190611989565b5050505b50505050506109a86001600055565b6000818152600d602090815260408083206001600160a01b0386168452600e83528184208585529092528220600482015460058301546006544210156114b85760009450505050506115db565b806000036114c557506006545b80421180156114d75750600284015415155b156115835760006114e88242611976565b90506007546000141580156114fe575060075442115b1561152557600754821061151457506000611525565b816007546115229190611976565b90505b6000606486600101546009548461153c919061193d565b611546919061193d565b6115509190611954565b600287015490915061156a670de0b6b3a76400008361193d565b6115749190611954565b61157e908561192a565b935050505b6000670de0b6b3a764000083856000015461159e919061193d565b6115a89190611954565b905083600101548110156115c4576000955050505050506115db565b60018401546115d39082611976565b955050505050505b92915050565b60026000540361161d576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600055565b6000818152600d60205260409020600654421015611640575050565b80600501546000036116555760065460058201555b80600501544211611664575050565b806002015460000361168c57600754421161167f5742611683565b6007545b60059091015550565b600081600501544261169e9190611976565b90506007546000141580156116b4575060075442115b156116e3576007548260050154106116ce575060006116e3565b81600501546007546116e09190611976565b90505b80156117665760006064836001015460095484611700919061193d565b61170a919061193d565b6117149190611954565b600284015490915061172e670de0b6b3a76400008361193d565b6117389190611954565b8360040154611747919061192a565b6004840155600754421161175b574261175f565b6007545b6005840155505b505050565b6001546040517f358177730000000000000000000000000000000000000000000000000000000081526000916001600160a01b0316906335817773906117b59085906004016119c4565b602060405180830381865afa1580156117d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115db91906118f7565b60006020828403121561180857600080fd5b5035919050565b6001600160a01b038116811461064e57600080fd5b60006020828403121561183657600080fd5b81356118418161180f565b9392505050565b6000806040838503121561185b57600080fd5b50508035926020909101359150565b60008060006060848603121561187f57600080fd5b833561188a8161180f565b95602085013595506040909401359392505050565b6000806000606084860312156118b457600080fd5b505081359360208301359350604090920135919050565b600080604083850312156118de57600080fd5b82356118e98161180f565b946020939093013593505050565b60006020828403121561190957600080fd5b81516118418161180f565b634e487b7160e01b600052601160045260246000fd5b808201808211156115db576115db611914565b80820281158282048414176115db576115db611914565b60008261197157634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156115db576115db611914565b60006020828403121561199b57600080fd5b8151801515811461184157600080fd5b6000600182016119bd576119bd611914565b5060010190565b602081526000825180602084015260005b818110156119f257602081860181015160408684010152016119d5565b506000604082850101526040601f19601f8301168401019150509291505056fea2646970667358221220b7fcf4ae78bd6e0c31b3f677a33844e51d6947916bd0d4d93a048f54b687a2b264736f6c634300081a00330000000000000000000000003c5a6a5a714b3946a0e49682221f9a142bfbe1ca
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101765760003560e01c8063ac4afa38116100d8578063c74465651161008c578063d1058e5911610066578063d1058e5914610351578063e2bbb15814610359578063f430cf0d1461036c57600080fd5b8063c7446565146102e0578063ce0b6fd6146102e9578063d0ebdbe71461033e57600080fd5b8063bd2c0074116100bd578063bd2c0074146102bc578063be9a6555146102cf578063c1292cc3146102d757600080fd5b8063ac4afa3814610225578063b039ddf6146102a957600080fd5b8063441a3e701161012f57806367a249f71161011457806367a249f7146102005780637cc3ae8c14610213578063a8bc58f21461021c57600080fd5b8063441a3e70146101da578063497af9d0146101ed57600080fd5b80632bcf161c116101605780632bcf161c146101ac578063379607f5146101bf5780633e7d15c0146101d257600080fd5b80628934521461017b5780630407539914610197575b600080fd5b61018460095481565b6040519081526020015b60405180910390f35b6101aa6101a53660046117f6565b61037f565b005b6101846101ba366004611824565b610451565b6101aa6101cd3660046117f6565b6104b7565b6101aa610651565b6101aa6101e8366004611848565b610833565b6101aa6101fb366004611848565b6109ac565b6101aa61020e3660046117f6565b610a7f565b61018460075481565b61018460055481565b6102726102333660046117f6565b600d602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909186565b604080516001600160a01b0390971687526020870195909552938501929092526060840152608083015260a082015260c00161018e565b6101aa6102b736600461186a565b610bdd565b6101aa6102ca36600461189f565b610d42565b6101aa610e27565b610184600c5481565b61018460065481565b6103236102f73660046118cb565b600e60209081526000928352604080842090915290825290208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161018e565b6101aa61034c366004611824565b610f06565b6101aa610ff0565b6101aa610367366004611848565b611158565b61018461037a3660046118cb565b61146b565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f691906118f7565b6001600160a01b0316336001600160a01b03161461044c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600955565b60008060015b600c548110156104b0576001600160a01b0384166000908152600e60209081526040808320848452909152902060020154610492858361146b565b61049c919061192a565b6104a6908361192a565b9150600101610457565b5092915050565b6104bf6115e1565b6104c881611624565b336000818152600e602090815260408083208584529091528120600281015490926104f3908561146b565b6104fd919061192a565b600060028401559050806105535760405162461bcd60e51b815260206004820152601060248201527f4e6f7468696e6720746f20636c61696d000000000000000000000000000000006044820152606401610443565b806005541161056457600554610566565b805b6000848152600d60205260409020600401548354919250670de0b6b3a764000091610591919061193d565b61059b9190611954565b60018301556005548111156105b45760006005556105cc565b80600560008282546105c69190611976565b90915550505b60025460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af115801561061d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106419190611989565b50505061064e6001600055565b50565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c891906118f7565b6001600160a01b0316336001600160a01b0316146107195760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6107576040518060400160405280600581526020017f546f6b656e00000000000000000000000000000000000000000000000000000081525061176b565b600280546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600981527f4c504d616e61676572000000000000000000000000000000000000000000000060208201526107b49061176b565b600380546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600881527f547265617375727900000000000000000000000000000000000000000000000060208201526108119061176b565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b61083b6115e1565b61084482611624565b336000908152600e60209081526040808320858452909152902080548211156108af5760405162461bcd60e51b815260206004820152601460248201527f4e6f7420656e6f756768206465706f73697465640000000000000000000000006044820152606401610443565b60006108bb338561146b565b905080156108dd57808260020160008282546108d7919061192a565b90915550505b6000848152600d60205260409020600281018054859003905582548490038084556004820154670de0b6b3a764000091610917919061193d565b6109219190611954565b6001840155805460405163a9059cbb60e01b8152336004820152602481018690526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099a9190611989565b505050506109a86001600055565b5050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2391906118f7565b6001600160a01b0316336001600160a01b031614610a745760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b600a91909155600b55565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af691906118f7565b6001600160a01b0316336001600160a01b031614610b475760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6002546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc29190611989565b508060056000828254610bd5919061192a565b909155505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5491906118f7565b6001600160a01b0316336001600160a01b031614610ca55760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6040805160c0810182526001600160a01b03858116825260208083018681526000848601818152606086018881526080870183815260a08801848152600c80548652600d909752988420975188546001600160a01b0319169716969096178755925160018701555160028601559051600385015591516004840155925160059092019190915581549190610d38836119ab565b9190505550505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db991906118f7565b6001600160a01b0316336001600160a01b031614610e0a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b6000928352600d6020526040909220600181019190915560030155565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9e91906118f7565b6001600160a01b0316336001600160a01b031614610eef5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b426006819055600854610f019161192a565b600755565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7d91906118f7565b6001600160a01b0316336001600160a01b031614610fce5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401610443565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610ff86115e1565b600060015b600c548110156110a35761101081611624565b336000818152600e6020908152604080832085845290915281206002810154909261103b908561146b565b611045919061192a565b90508015611099576000600283015561105e818561192a565b6000848152600d60205260409020600401548354919550670de0b6b3a764000091611089919061193d565b6110939190611954565b60018301555b5050600101610ffd565b508060055410156110bd57506005805460009091556110d5565b80600560008282546110cf9190611976565b90915550505b60025460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a9190611989565b50506111566001600055565b565b6111606115e1565b60065415801590611172575060075442105b6111be5760405162461bcd60e51b815260206004820152601160248201527f67656e6573697320697320636c6f7365640000000000000000000000000000006044820152606401610443565b6111c782611624565b336000818152600e602090815260408083208684529091528120916111ec908561146b565b9050801561120e5780826002016000828254611208919061192a565b90915550505b6000848152600d602052604081206003810154909190606490611231908761193d565b61123b9190611954565b905060006112498287611976565b90508083600201600082825461125f919061192a565b909155505084548190869060009061127890849061192a565b909155505060048301548554670de0b6b3a7640000916112979161193d565b6112a19190611954565b600186015582546040516323b872dd60e01b8152336004820152306024820152604481018890526001600160a01b03909116906323b872dd906064016020604051808303816000875af11580156112fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113209190611989565b50811561145c5760006064600a5484611339919061193d565b6113439190611954565b905060006064600b5485611357919061193d565b6113619190611954565b85546004805460405163a9059cbb60e01b81526001600160a01b03918216928101929092526024820186905292935091169063a9059cbb906044016020604051808303816000875af11580156113bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113df9190611989565b50845460035460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015611434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114589190611989565b5050505b50505050506109a86001600055565b6000818152600d602090815260408083206001600160a01b0386168452600e83528184208585529092528220600482015460058301546006544210156114b85760009450505050506115db565b806000036114c557506006545b80421180156114d75750600284015415155b156115835760006114e88242611976565b90506007546000141580156114fe575060075442115b1561152557600754821061151457506000611525565b816007546115229190611976565b90505b6000606486600101546009548461153c919061193d565b611546919061193d565b6115509190611954565b600287015490915061156a670de0b6b3a76400008361193d565b6115749190611954565b61157e908561192a565b935050505b6000670de0b6b3a764000083856000015461159e919061193d565b6115a89190611954565b905083600101548110156115c4576000955050505050506115db565b60018401546115d39082611976565b955050505050505b92915050565b60026000540361161d576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600055565b6000818152600d60205260409020600654421015611640575050565b80600501546000036116555760065460058201555b80600501544211611664575050565b806002015460000361168c57600754421161167f5742611683565b6007545b60059091015550565b600081600501544261169e9190611976565b90506007546000141580156116b4575060075442115b156116e3576007548260050154106116ce575060006116e3565b81600501546007546116e09190611976565b90505b80156117665760006064836001015460095484611700919061193d565b61170a919061193d565b6117149190611954565b600284015490915061172e670de0b6b3a76400008361193d565b6117389190611954565b8360040154611747919061192a565b6004840155600754421161175b574261175f565b6007545b6005840155505b505050565b6001546040517f358177730000000000000000000000000000000000000000000000000000000081526000916001600160a01b0316906335817773906117b59085906004016119c4565b602060405180830381865afa1580156117d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115db91906118f7565b60006020828403121561180857600080fd5b5035919050565b6001600160a01b038116811461064e57600080fd5b60006020828403121561183657600080fd5b81356118418161180f565b9392505050565b6000806040838503121561185b57600080fd5b50508035926020909101359150565b60008060006060848603121561187f57600080fd5b833561188a8161180f565b95602085013595506040909401359392505050565b6000806000606084860312156118b457600080fd5b505081359360208301359350604090920135919050565b600080604083850312156118de57600080fd5b82356118e98161180f565b946020939093013593505050565b60006020828403121561190957600080fd5b81516118418161180f565b634e487b7160e01b600052601160045260246000fd5b808201808211156115db576115db611914565b80820281158282048414176115db576115db611914565b60008261197157634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156115db576115db611914565b60006020828403121561199b57600080fd5b8151801515811461184157600080fd5b6000600182016119bd576119bd611914565b5060010190565b602081526000825180602084015260005b818110156119f257602081860181015160408684010152016119d5565b506000604082850101526040601f19601f8301168401019150509291505056fea2646970667358221220b7fcf4ae78bd6e0c31b3f677a33844e51d6947916bd0d4d93a048f54b687a2b264736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003c5a6a5a714b3946a0e49682221f9a142bfbe1ca
-----Decoded View---------------
Arg [0] : _manager (address): 0x3c5a6A5A714B3946A0e49682221F9A142BfBe1cA
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c5a6a5a714b3946a0e49682221f9a142bfbe1ca
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.