Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GenesisHelper
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 333 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IMedievalGenesis { function deposit(uint256 _genesisPid, uint256 _amount) external; function withdraw(uint256 _genesisPid, uint256 _amount) external; function userInfo(address _user) external view returns (uint256, uint256); } contract GenesisHelper is Initializable { /// @dev STATE address public constant OPERATOR = 0x6B9bdCd8A0230e25b2125AC573a124341D0Ee738; address public constant MEDIEVAL_GENESIS = 0x49f5BCDBC8B2f3401d1Fc3B5Df75F91eF389657A; address public constant ODOS_ROUTER = 0xaC041Df48dF9791B0654f1Dbbf2CC8450C5f2e9D; address public constant SHIELD = 0x6706Adb93117C0a7235dCBe639E12ed13fa5752f; modifier onlyOperator() { require(msg.sender == OPERATOR, "nigga"); _; } constructor() { _disableInitializers(); } function initialize() public initializer { } function depositToGenesis(address _token, uint256 _amount, uint256 _genesisPid) external onlyOperator { IERC20(_token).transferFrom(msg.sender, address(this), _amount); IERC20(_token).approve(MEDIEVAL_GENESIS, _amount); IMedievalGenesis(MEDIEVAL_GENESIS).deposit(_genesisPid, _amount); } function _claimGenesisReward(uint256[] calldata _genesisPids) internal returns (uint256 totalShieldClaimed){ for (uint256 i; i < _genesisPids.length; i++) { IMedievalGenesis(MEDIEVAL_GENESIS).withdraw(_genesisPids[i], 0); } return IERC20(SHIELD).balanceOf(address(this)); } function withdrawFromGenesis() external onlyOperator { (uint256 amount, ) = IMedievalGenesis(MEDIEVAL_GENESIS).userInfo(address(this)); IMedievalGenesis(MEDIEVAL_GENESIS).withdraw(5, amount); } /// meant to be static called function simulateClaimedAmounts(uint256[] calldata _genesisPids) external returns (uint256 totalShieldClaimed){ return _claimGenesisReward(_genesisPids); } function _advisorClaim() internal { uint256[] memory pids = new uint256[](2); pids[0] = 4; pids[1] = 6; bytes memory callData = abi.encodeWithSignature("swapRewards(uint256[])", pids); (bool success, ) = 0xD36a4758e5F623191D07F8D43fc8Ee35a8ffC812.call(callData); require(success, "hezbollah"); } function jeet(uint256[] calldata _claimFromPids, bytes calldata _odosCalldata) external onlyOperator { _advisorClaim(); _claimGenesisReward(_claimFromPids); (bool success, bytes memory returnData) = ODOS_ROUTER.call(_odosCalldata); require(success, "uttar pradesh"); } function initOdosApproval() external onlyOperator { IERC20(SHIELD).approve(ODOS_ROUTER, type(uint256).max); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 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); }
{ "remappings": [ "@layerzerolabs/=node_modules/@layerzerolabs/", "@layerzerolabs/lz-evm-protocol-v2/=node_modules/@layerzerolabs/lz-evm-protocol-v2/", "@openzeppelin-contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@openzeppelin/contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@openzeppelin-contracts/contracts/=dependencies/@openzeppelin-contracts-5.1.0/", "@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.1.0/", "erc4626-tests/=dependencies/erc4626-property-tests-1.0/", "forge-std/=dependencies/forge-std-1.9.4/src/", "permit2/=lib/permit2/", "@openzeppelin-3.4.2/=node_modules/@openzeppelin-3.4.2/", "@openzeppelin-contracts-5.1.0/=dependencies/@openzeppelin-contracts-5.1.0/", "@openzeppelin-contracts-upgradeable-5.1.0/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@uniswap/=node_modules/@uniswap/", "base64-sol/=node_modules/base64-sol/", "ds-test/=node_modules/ds-test/", "erc4626-property-tests-1.0/=dependencies/erc4626-property-tests-1.0/", "eth-gas-reporter/=node_modules/eth-gas-reporter/", "forge-std-1.9.4/=dependencies/forge-std-1.9.4/src/", "hardhat/=node_modules/hardhat/", "solidity-bytes-utils/=node_modules/solidity-bytes-utils/", "solmate/=node_modules/solmate/" ], "optimizer": { "enabled": true, "runs": 333 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "cancun", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[],"name":"MEDIEVAL_GENESIS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ODOS_ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHIELD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_genesisPid","type":"uint256"}],"name":"depositToGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initOdosApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_claimFromPids","type":"uint256[]"},{"internalType":"bytes","name":"_odosCalldata","type":"bytes"}],"name":"jeet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_genesisPids","type":"uint256[]"}],"name":"simulateClaimedAmounts","outputs":[{"internalType":"uint256","name":"totalShieldClaimed","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFromGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b610c22806100d65f395ff3fe608060405234801561000f575f5ffd5b506004361061009b575f3560e01c80638b3db92a116100635780638b3db92a1461012a578063983d27371461013d578063aa60beea14610158578063b63897a914610160578063f63c0a0e14610168575f5ffd5b8063018ed0f41461009f57806358722a0a146100d75780635b2725ed146100f25780635e4f74c91461010d5780638129fc1c14610122575b5f5ffd5b6100ba7349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a81565b6040516001600160a01b0390911681526020015b60405180910390f35b6100ba73ac041df48df9791b0654f1dbbf2cc8450c5f2e9d81565b6100ba736706adb93117c0a7235dcbe639e12ed13fa5752f81565b61012061011b366004610a04565b610189565b005b6101206102a4565b610120610138366004610a9d565b6103a8565b6100ba736b9bdcd8a0230e25b2125ac573a124341d0ee73881565b610120610557565b61012061067b565b61017b610176366004610ada565b610756565b6040519081526020016100ce565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146101d95760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064015b60405180910390fd5b6101e1610768565b6101eb84846108ac565b505f5f73ac041df48df9791b0654f1dbbf2cc8450c5f2e9d6001600160a01b0316848460405161021c929190610b19565b5f604051808303815f865af19150503d805f8114610255576040519150601f19603f3d011682016040523d82523d5f602084013e61025a565b606091505b50915091508161029c5760405162461bcd60e51b815260206004820152600d60248201526c0eae8e8c2e440e0e4c2c8cae6d609b1b60448201526064016101d0565b505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f811580156102e95750825b90505f8267ffffffffffffffff1660011480156103055750303b155b905081158015610313575080155b156103315760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561035b57845460ff60401b1916600160401b1785555b83156103a157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146103f35760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038416906323b872dd906064016020604051808303815f875af1158015610443573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104679190610b28565b5060405163095ea7b360e01b81527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a6004820152602481018390526001600160a01b0384169063095ea7b3906044016020604051808303815f875af11580156104c6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104ea9190610b28565b50604051631c57762b60e31b815260048101829052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063e2bbb158906044015f604051808303815f87803b15801561053c575f5ffd5b505af115801561054e573d5f5f3e3d5ffd5b50505050505050565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146105a25760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b604051630cacd00160e11b81523060048201525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631959a002906024016040805180830381865afa1580156105f0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106149190610b47565b50604051630441a3e760e41b815260056004820152602481018290529091507349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063441a3e70906044015f604051808303815f87803b158015610669575f5ffd5b505af11580156103a1573d5f5f3e3d5ffd5b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146106c65760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b60405163095ea7b360e01b815273ac041df48df9791b0654f1dbbf2cc8450c5f2e9d60048201525f196024820152736706adb93117c0a7235dcbe639e12ed13fa5752f9063095ea7b3906044016020604051808303815f875af115801561072f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107539190610b28565b50565b5f61076183836108ac565b9392505050565b6040805160028082526060820183525f926020830190803683370190505090506004815f8151811061079c5761079c610b69565b6020026020010181815250506006816001815181106107bd576107bd610b69565b6020026020010181815250505f816040516024016107db9190610b7d565b60408051601f198184030181529181526020820180516001600160e01b031663354097f960e11b179052519091505f9073d36a4758e5f623191d07f8d43fc8ee35a8ffc8129061082c908490610bbf565b5f604051808303815f865af19150503d805f8114610865576040519150601f19603f3d011682016040523d82523d5f602084013e61086a565b606091505b50509050806108a75760405162461bcd60e51b81526020600482015260096024820152680d0caf4c4ded8d8c2d60bb1b60448201526064016101d0565b505050565b5f5f5b8281101561094a577349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a63441a3e708585848181106108e3576108e3610b69565b905060200201355f6040518363ffffffff1660e01b8152600401610911929190918252602082015260400190565b5f604051808303815f87803b158015610928575f5ffd5b505af115801561093a573d5f5f3e3d5ffd5b5050600190920191506108af9050565b506040516370a0823160e01b8152306004820152736706adb93117c0a7235dcbe639e12ed13fa5752f906370a0823190602401602060405180830381865afa158015610998573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107619190610bd5565b5f5f83601f8401126109cc575f5ffd5b50813567ffffffffffffffff8111156109e3575f5ffd5b6020830191508360208260051b85010111156109fd575f5ffd5b9250929050565b5f5f5f5f60408587031215610a17575f5ffd5b843567ffffffffffffffff811115610a2d575f5ffd5b610a39878288016109bc565b909550935050602085013567ffffffffffffffff811115610a58575f5ffd5b8501601f81018713610a68575f5ffd5b803567ffffffffffffffff811115610a7e575f5ffd5b876020828401011115610a8f575f5ffd5b949793965060200194505050565b5f5f5f60608486031215610aaf575f5ffd5b83356001600160a01b0381168114610ac5575f5ffd5b95602085013595506040909401359392505050565b5f5f60208385031215610aeb575f5ffd5b823567ffffffffffffffff811115610b01575f5ffd5b610b0d858286016109bc565b90969095509350505050565b818382375f9101908152919050565b5f60208284031215610b38575f5ffd5b81518015158114610761575f5ffd5b5f5f60408385031215610b58575f5ffd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b602080825282518282018190525f918401906040840190835b81811015610bb4578351835260209384019390920191600101610b96565b509095945050505050565b5f82518060208501845e5f920191825250919050565b5f60208284031215610be5575f5ffd5b505191905056fea26469706673582212200a9e161795d6cef792e0981c180f2fb7e9543a3725698ef2510615045eafac8464736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061009b575f3560e01c80638b3db92a116100635780638b3db92a1461012a578063983d27371461013d578063aa60beea14610158578063b63897a914610160578063f63c0a0e14610168575f5ffd5b8063018ed0f41461009f57806358722a0a146100d75780635b2725ed146100f25780635e4f74c91461010d5780638129fc1c14610122575b5f5ffd5b6100ba7349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a81565b6040516001600160a01b0390911681526020015b60405180910390f35b6100ba73ac041df48df9791b0654f1dbbf2cc8450c5f2e9d81565b6100ba736706adb93117c0a7235dcbe639e12ed13fa5752f81565b61012061011b366004610a04565b610189565b005b6101206102a4565b610120610138366004610a9d565b6103a8565b6100ba736b9bdcd8a0230e25b2125ac573a124341d0ee73881565b610120610557565b61012061067b565b61017b610176366004610ada565b610756565b6040519081526020016100ce565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146101d95760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064015b60405180910390fd5b6101e1610768565b6101eb84846108ac565b505f5f73ac041df48df9791b0654f1dbbf2cc8450c5f2e9d6001600160a01b0316848460405161021c929190610b19565b5f604051808303815f865af19150503d805f8114610255576040519150601f19603f3d011682016040523d82523d5f602084013e61025a565b606091505b50915091508161029c5760405162461bcd60e51b815260206004820152600d60248201526c0eae8e8c2e440e0e4c2c8cae6d609b1b60448201526064016101d0565b505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f811580156102e95750825b90505f8267ffffffffffffffff1660011480156103055750303b155b905081158015610313575080155b156103315760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561035b57845460ff60401b1916600160401b1785555b83156103a157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146103f35760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038416906323b872dd906064016020604051808303815f875af1158015610443573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104679190610b28565b5060405163095ea7b360e01b81527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a6004820152602481018390526001600160a01b0384169063095ea7b3906044016020604051808303815f875af11580156104c6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104ea9190610b28565b50604051631c57762b60e31b815260048101829052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063e2bbb158906044015f604051808303815f87803b15801561053c575f5ffd5b505af115801561054e573d5f5f3e3d5ffd5b50505050505050565b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146105a25760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b604051630cacd00160e11b81523060048201525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631959a002906024016040805180830381865afa1580156105f0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106149190610b47565b50604051630441a3e760e41b815260056004820152602481018290529091507349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063441a3e70906044015f604051808303815f87803b158015610669575f5ffd5b505af11580156103a1573d5f5f3e3d5ffd5b33736b9bdcd8a0230e25b2125ac573a124341d0ee738146106c65760405162461bcd60e51b81526020600482015260056024820152646e6967676160d81b60448201526064016101d0565b60405163095ea7b360e01b815273ac041df48df9791b0654f1dbbf2cc8450c5f2e9d60048201525f196024820152736706adb93117c0a7235dcbe639e12ed13fa5752f9063095ea7b3906044016020604051808303815f875af115801561072f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107539190610b28565b50565b5f61076183836108ac565b9392505050565b6040805160028082526060820183525f926020830190803683370190505090506004815f8151811061079c5761079c610b69565b6020026020010181815250506006816001815181106107bd576107bd610b69565b6020026020010181815250505f816040516024016107db9190610b7d565b60408051601f198184030181529181526020820180516001600160e01b031663354097f960e11b179052519091505f9073d36a4758e5f623191d07f8d43fc8ee35a8ffc8129061082c908490610bbf565b5f604051808303815f865af19150503d805f8114610865576040519150601f19603f3d011682016040523d82523d5f602084013e61086a565b606091505b50509050806108a75760405162461bcd60e51b81526020600482015260096024820152680d0caf4c4ded8d8c2d60bb1b60448201526064016101d0565b505050565b5f5f5b8281101561094a577349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a63441a3e708585848181106108e3576108e3610b69565b905060200201355f6040518363ffffffff1660e01b8152600401610911929190918252602082015260400190565b5f604051808303815f87803b158015610928575f5ffd5b505af115801561093a573d5f5f3e3d5ffd5b5050600190920191506108af9050565b506040516370a0823160e01b8152306004820152736706adb93117c0a7235dcbe639e12ed13fa5752f906370a0823190602401602060405180830381865afa158015610998573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107619190610bd5565b5f5f83601f8401126109cc575f5ffd5b50813567ffffffffffffffff8111156109e3575f5ffd5b6020830191508360208260051b85010111156109fd575f5ffd5b9250929050565b5f5f5f5f60408587031215610a17575f5ffd5b843567ffffffffffffffff811115610a2d575f5ffd5b610a39878288016109bc565b909550935050602085013567ffffffffffffffff811115610a58575f5ffd5b8501601f81018713610a68575f5ffd5b803567ffffffffffffffff811115610a7e575f5ffd5b876020828401011115610a8f575f5ffd5b949793965060200194505050565b5f5f5f60608486031215610aaf575f5ffd5b83356001600160a01b0381168114610ac5575f5ffd5b95602085013595506040909401359392505050565b5f5f60208385031215610aeb575f5ffd5b823567ffffffffffffffff811115610b01575f5ffd5b610b0d858286016109bc565b90969095509350505050565b818382375f9101908152919050565b5f60208284031215610b38575f5ffd5b81518015158114610761575f5ffd5b5f5f60408385031215610b58575f5ffd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b602080825282518282018190525f918401906040840190835b81811015610bb4578351835260209384019390920191600101610b96565b509095945050505050565b5f82518060208501845e5f920191825250919050565b5f60208284031215610be5575f5ffd5b505191905056fea26469706673582212200a9e161795d6cef792e0981c180f2fb7e9543a3725698ef2510615045eafac8464736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.