More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,724 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Get Reward | 21249694 | 5 hrs ago | IN | 0 S | 0.00824526 | ||||
Get Reward | 21204123 | 10 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21189628 | 13 hrs ago | IN | 0 S | 0.00910026 | ||||
Deposit All | 21154768 | 18 hrs ago | IN | 0 S | 0.01148504 | ||||
Get Reward | 21154513 | 18 hrs ago | IN | 0 S | 0.0081148 | ||||
Get Reward | 21119078 | 24 hrs ago | IN | 0 S | 0.00910026 | ||||
Get Reward | 21089524 | 30 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21065281 | 34 hrs ago | IN | 0 S | 0.00905547 | ||||
Get Reward | 21065031 | 34 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21064755 | 34 hrs ago | IN | 0 S | 0.0081148 | ||||
Get Reward | 21061273 | 34 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21044464 | 37 hrs ago | IN | 0 S | 0.00906977 | ||||
Get Reward | 21042101 | 37 hrs ago | IN | 0 S | 0.00824526 | ||||
Get Reward | 21034068 | 38 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21026151 | 40 hrs ago | IN | 0 S | 0.01085672 | ||||
Get Reward | 21003136 | 43 hrs ago | IN | 0 S | 0.00907142 | ||||
Get Reward | 21000756 | 44 hrs ago | IN | 0 S | 0.00900026 | ||||
Get Reward | 20982577 | 47 hrs ago | IN | 0 S | 0.00824526 | ||||
Get Reward | 20942633 | 2 days ago | IN | 0 S | 0.00824526 | ||||
Deposit All | 20927654 | 2 days ago | IN | 0 S | 0.01175118 | ||||
Get Reward | 20924154 | 2 days ago | IN | 0 S | 0.00986976 | ||||
Get Reward | 20918290 | 2 days ago | IN | 0 S | 0.01085869 | ||||
Withdraw All And... | 20910732 | 2 days ago | IN | 0 S | 0.0142807 | ||||
Get Reward | 20899508 | 2 days ago | IN | 0 S | 0.00824526 | ||||
Get Reward | 20888416 | 2 days ago | IN | 0 S | 0.00907142 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xdcE26623...a8d84DdEd The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
GaugeV2_CL
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.13;import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import "./interfaces/IPairInfo.sol";import "./interfaces/IBribe.sol";import {Constants} from "./libraries/Constants.sol";interface IRewarder {function onReward(uint256 pid,address user,address recipient,uint256 amount,uint256 newLpAmount) external;}interface IFeeVault {function claimFees() external returns (uint256 claimed0, uint256 claimed1);}contract GaugeV2_CL is ReentrancyGuard, Ownable {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,* given ``owner``'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../extensions/draft-IERC20Permit.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token,address to,uint256 value) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011// SPDX-License-Identifier: MITpragma solidity 0.8.13;interface IBribe {function _deposit(uint amount, uint tokenId) external;function _withdraw(uint amount, uint tokenId) external;function getRewardForOwner(uint tokenId, address[] memory tokens) external;function getRewardForAddress(address _owner, address[] memory tokens) external;function notifyRewardAmount(address token, uint amount) external;function left(address token) external view returns (uint);}
12345678910111213// SPDX-License-Identifier: MITpragma solidity 0.8.13;interface IPairInfo {function token0() external view returns(address);function reserve0() external view returns(uint);function decimals0() external view returns(uint);function token1() external view returns(address);function reserve1() external view returns(uint);function decimals1() external view returns(uint);function isPair(address _pair) external view returns(bool);}
123456// SPDX-License-Identifier: MITpragma solidity 0.8.13;library Constants {uint256 internal constant EPOCH_LENGTH = 7 days;}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 1},"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":[{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_distribution","type":"address"},{"internalType":"address","name":"_internal_bribe","type":"address"},{"internalType":"address","name":"_external_bribe","type":"address"},{"internalType":"address","name":"_feeVault","type":"address"},{"internalType":"address","name":"_feeVault2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimed0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimed1","type":"uint256"}],"name":"ClaimFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Harvest","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DISTRIBUTION","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_WITHDRAWER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateEmergencyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFees","outputs":[{"internalType":"uint256","name":"claimed0","type":"uint256"},{"internalType":"uint256","name":"claimed1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergency","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyWithdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"external_bribe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeVault2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gaugeRewarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"internal_bribe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewarderPid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_distribution","type":"address"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeVault","type":"address"},{"internalType":"address","name":"_feeVault2","type":"address"}],"name":"setFeeVaults","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gaugeRewarder","type":"address"}],"name":"setGaugeRewarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_int","type":"address"}],"name":"setInternalBribe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"setRewarderPid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopEmergencyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllAndHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawExcess","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102505760003560e01c80628cc2621461025557806303fbf83a1461027b5780630700037d1461029b5780631407c664146102bb57806318160ddd146102c35780631be05289146102cb5780632e1a7d4d146102d45780633d18b912146102e95780633eaaf86b146102f1578063478222c2146102fa5780634c02a21c1461030d5780636946a235146103165780636e90013d1461031e5780636e9852f2146103315780636ebcf6071461033957806370a082311461035957806370b15e6d14610382578063715018a614610395578063770f85711461039d5780637b0a47ee146103b05780637c91e4eb146103b95780637f699015146103cc57806380faa57d146103df57806382bfefc8146103e757806382fe1891146103fa578063853828b614610415578063863e24421461041d5780638b876347146104305780638da5cb5b146104505780638f67b0131461045857806391f25a941461046157806393f1c44214610474578063b1534ecd1461047d578063b66503cf14610485578063b6b55f2514610498578063b8347d49146104ab578063c00007b0146104be578063c6c8f6b6146104d1578063c8f33c91146104e4578063caa6fea4146104ed578063cd3daf9d14610511578063d009601014610519578063d294f09314610521578063db2e21bc1461053e578063de5f626814610546578063df136d651461054e578063e49bc6f714610557578063ebe2b12b1461056a578063f2fde38b14610573578063f7c618c114610586578063f97d211414610599575b600080fd5b610268610263366004611d2c565b6105ac565b6040519081526020015b60405180910390f35b60075461028e906001600160a01b031681565b6040516102729190611d50565b6102686102a9366004611d2c565b60136020526000908152604090205481565b600c54610268565b601454610268565b610268600b5481565b6102e76102e2366004611d64565b610629565b005b6102e7610635565b61026860145481565b60085461028e906001600160a01b031681565b61026860115481565b610268610744565b6102e761032c366004611d7d565b61075b565b6102e76107ce565b610268610347366004611d2c565b60156020526000908152604090205481565b610268610367366004611d2c565b6001600160a01b031660009081526015602052604090205490565b6102e7610390366004611d64565b6107ef565b6102e761080a565b60065461028e906001600160a01b031681565b610268600d5481565b60045461028e906001600160a01b031681565b6102e76103da366004611d2c565b61081c565b610268610875565b60035461028e906001600160a01b031681565b61028e73adb5a1518713095c39dbca08da6656af7249dd2081565b6102e761088c565b60055461028e906001600160a01b031681565b61026861043e366004611d2c565b60126020526000908152604090205481565b61028e6108a5565b610268600a5481565b6102e761046f366004611d2c565b6108b4565b61026860105481565b6102e76108de565b6102e7610493366004611d7d565b61090b565b6102e76104a6366004611d64565b610ac6565b60095461028e906001600160a01b031681565b6102e76104cc366004611d2c565b610ad0565b6102e76104df366004611d64565b610c0e565b610268600e5481565b60015461050190600160a01b900460ff1681565b6040519015158152602001610272565b610268610d4c565b6102e7610dad565b610529610de1565b60408051928352602083019190915201610272565b6102e7610e06565b6102e7610f3f565b610268600f5481565b6102e7610565366004611da9565b610fb8565b610268600c5481565b6102e7610581366004611d2c565b61104b565b60025461028e906001600160a01b031681565b6102e76105a7366004611d2c565b6110c6565b6001600160a01b0381166000908152601360209081526040808320546012909252822054670de0b6b3a7640000906105e2610d4c565b6105ec9190611df8565b6001600160a01b03851660009081526015602052604090205461060f9190611e0f565b6106199190611e2e565b6106239190611e50565b92915050565b6106328161110b565b50565b61063d611244565b6106463361129d565b3360009081526013602052604090205480156106a95733600081815260136020526040812055600254610685916001600160a01b0390911690836112f9565b6040518181523390600080516020611fa88339815191529060200160405180910390a25b6005546001600160a01b03161561073757600554600a5433600081815260156020526040908190205490516344af0fa760e01b81526001600160a01b03909416936344af0fa793610704939092909182918891600401611e68565b600060405180830381600087803b15801561071e57600080fd5b505af1158015610732573d6000803e3d6000fd5b505050505b506107426001600055565b565b6000600b54600d546107569190611e0f565b905090565b3373adb5a1518713095c39dbca08da6656af7249dd201461077b57600080fd5b6003546001600160a01b038381169116148015906107a157506001600160a01b03821615155b80156107ad5750600081115b6107b657600080fd5b6107ca6001600160a01b03831633836112f9565b5050565b336000908152601560205260409020546107e79061110b565b610742610635565b6107f7611354565b600a54810361080557600080fd5b600a55565b610812611354565b61074260006113b3565b610824611354565b6001600160a01b0381161580159061084a57506004546001600160a01b03828116911614155b61085357600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000600c5442106108875750600c5490565b504290565b336000908152601560205260409020546107429061110b565b6001546001600160a01b031690565b6108bc611354565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6108e6611354565b600154600160a01b900460ff166108fc57600080fd5b6001805460ff60a01b19169055565b610913611244565b600154600160a01b900460ff161561092a57600080fd5b6004546001600160a01b0316331461094157600080fd5b61094b600061129d565b6002546001600160a01b0383811691161461096557600080fd5b600454600254610983916001600160a01b0391821691163084611405565b600c5442106109a157600b546109999082611e2e565b600d556109e3565b600042600c546109b19190611df8565b90506000600d54826109c39190611e0f565b600b549091506109d38285611e50565b6109dd9190611e2e565b600d5550505b6002546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610a14903090600401611d50565b602060405180830381865afa158015610a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a559190611e97565b9050600b5481610a659190611e2e565b600d541115610a7357600080fd5b42600e819055600b54610a8591611e50565b600c556040518281527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9060200160405180910390a1506107ca6001600055565b6106328133611443565b610ad8611244565b6004546001600160a01b03163314610aef57600080fd5b610af88161129d565b6001600160a01b0381166000908152601360205260409020548015610b72576001600160a01b03808316600090815260136020526040812055600254610b40911683836112f9565b816001600160a01b0316600080516020611fa883398151915282604051610b6991815260200190565b60405180910390a25b6005546001600160a01b031615610c0357600554600a546001600160a01b03848116600090815260156020526040908190205490516344af0fa760e01b815291909316926344af0fa792610bd0929091879182918891600401611e68565b600060405180830381600087803b158015610bea57600080fd5b505af1158015610bfe573d6000803e3d6000fd5b505050505b506106326001600055565b610c16611244565b600154600160a01b900460ff16610c2c57600080fd5b33600090815260156020526040902054811115610c4857600080fd5b8060146000828254610c5a9190611df8565b90915550503360009081526015602052604081208054839290610c7e908490611df8565b90915550506005546001600160a01b031615610d0857600554600a54336000818152601560205260408082205490516344af0fa760e01b81526001600160a01b03909516946344af0fa794610cdb94909390928392600401611e68565b600060405180830381600087803b158015610cf557600080fd5b505af1925050508015610d06575060015b505b600354610d1f906001600160a01b031633836112f9565b6040518181523390600080516020611fc88339815191529060200160405180910390a26106326001600055565b6000601454600003610d5f5750600f5490565b601454600d54600e54610d70610875565b610d7a9190611df8565b610d849190611e0f565b610d9690670de0b6b3a7640000611e0f565b610da09190611e2e565b600f546107569190611e50565b610db5611354565b600154600160a01b900460ff1615610dcc57600080fd5b6001805460ff60a01b1916600160a01b179055565b600080610dec611244565b610df46115b1565b91509150610e026001600055565b9091565b610e0e611244565b600154600160a01b900460ff16610e2457600080fd5b33600090815260156020526040902054610e3d57600080fd5b336000908152601560205260408120546014805491928392610e60908490611df8565b9091555050336000908152601560205260408120556005546001600160a01b031615610efa57600554600a54336000818152601560205260408082205490516344af0fa760e01b81526001600160a01b03909516946344af0fa794610ecd94909390928392600401611e68565b600060405180830381600087803b158015610ee757600080fd5b505af1925050508015610ef8575060015b505b600354610f11906001600160a01b031633836112f9565b6040518181523390600080516020611fc88339815191529060200160405180910390a2506107426001600055565b6003546040516370a0823160e01b8152610742916001600160a01b0316906370a0823190610f71903390600401611d50565b602060405180830381865afa158015610f8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb29190611e97565b33611443565b610fc0611354565b6001600160a01b03821615801590610fe057506001600160a01b03811615155b8015610ffa57506008546001600160a01b03838116911614155b801561101457506009546001600160a01b03828116911614155b61101d57600080fd5b600880546001600160a01b039384166001600160a01b03199182161790915560098054929093169116179055565b611053611354565b6001600160a01b0381166110bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610632816113b3565b6110ce611354565b6005546001600160a01b03908116908216036110e957600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b611113611244565b600154600160a01b900460ff161561112a57600080fd5b6111333361129d565b60008111801561114557508060145410155b801561115f57503360009081526015602052604090205415155b61116857600080fd5b806014600082825461117a9190611df8565b9091555050336000908152601560205260408120805483929061119e908490611df8565b90915550506005546001600160a01b031615610d0857600554600a54336000818152601560205260408082205490516344af0fa760e01b81526001600160a01b03909516946344af0fa7946111fb94909390928392600401611e68565b600060405180830381600087803b15801561121557600080fd5b505af1158015611229573d6000803e3d6000fd5b50505050600354610d1f906001600160a01b031633836112f9565b6002600054036112965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016110b4565b6002600055565b6112a5610d4c565b600f556112b0610875565b600e556001600160a01b03811615610632576112cb816105ac565b6001600160a01b038216600090815260136020908152604080832093909355600f5460129091529190205550565b61134f8363a9059cbb60e01b8484604051602401611318929190611eb0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ab5565b505050565b3361135d6108a5565b6001600160a01b0316146107425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110b4565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b038085166024830152831660448201526064810182905261143d9085906323b872dd60e01b90608401611318565b50505050565b61144b611244565b600154600160a01b900460ff161561146257600080fd5b61146b8161129d565b6000821161147857600080fd5b6001600160a01b038116600090815260156020526040812080548492906114a0908490611e50565b9250508190555081601460008282546114b99190611e50565b90915550506005546001600160a01b03161561154c57600554600a546001600160a01b038381166000908152601560205260408082205490516344af0fa760e01b815292909416936344af0fa79361151993909287928392600401611e68565b600060405180830381600087803b15801561153357600080fd5b505af1158015611547573d6000803e3d6000fd5b505050505b600354611564906001600160a01b0316823085611405565b806001600160a01b03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c8360405161159f91815260200190565b60405180910390a26107ca6001600055565b6003546008546040805163d294f09360e01b8152815160009485946001600160a01b039182169491169263d294f0939260048083019392829003018188875af1158015611602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116269190611ec9565b6009546040805163d294f09360e01b815281519497509295506001600160a01b039091169263d294f09392600480820193929182900301816000875af1158015611674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116989190611ec9565b505060008311806116a95750600082115b15611ab0576000836010546116be9190611e50565b90506000836011546116d09190611e50565b90506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015611712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117369190611eed565b90506000846001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611778573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179c9190611eed565b90508315611901576000601081905560065460405163095ea7b360e01b81526001600160a01b038086169363095ea7b3936117dc93921691600401611eb0565b6020604051808303816000875af11580156117fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181f9190611f0a565b5060065460405163095ea7b360e01b81526001600160a01b038481169263095ea7b39261185492909116908890600401611eb0565b6020604051808303816000875af1158015611873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118979190611f0a565b5060065460405163b66503cf60e01b81526001600160a01b039091169063b66503cf906118ca9085908890600401611eb0565b600060405180830381600087803b1580156118e457600080fd5b505af11580156118f8573d6000803e3d6000fd5b50505050611907565b60108490555b8215611a6a576000601181905560065460405163095ea7b360e01b81526001600160a01b038085169363095ea7b39361194593921691600401611eb0565b6020604051808303816000875af1158015611964573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119889190611f0a565b5060065460405163095ea7b360e01b81526001600160a01b038381169263095ea7b3926119bd92909116908790600401611eb0565b6020604051808303816000875af11580156119dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a009190611f0a565b5060065460405163b66503cf60e01b81526001600160a01b039091169063b66503cf90611a339084908790600401611eb0565b600060405180830381600087803b158015611a4d57600080fd5b505af1158015611a61573d6000803e3d6000fd5b50505050611a70565b60118390555b604080518881526020810188905233917fbc567d6cbad26368064baa0ab5a757be46aae4d70f707f9203d9d9b6c8ccbfa3910160405180910390a2505050505b509091565b6000611b0a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b879092919063ffffffff16565b80519091501561134f5780806020019051810190611b289190611f0a565b61134f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016110b4565b6060611b968484600085611b9e565b949350505050565b606082471015611bff5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016110b4565b600080866001600160a01b03168587604051611c1b9190611f58565b60006040518083038185875af1925050503d8060008114611c58576040519150601f19603f3d011682016040523d82523d6000602084013e611c5d565b606091505b5091509150611c6e87838387611c79565b979650505050505050565b60608315611ce8578251600003611ce1576001600160a01b0385163b611ce15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016110b4565b5081611b96565b611b968383815115611cfd5781518083602001fd5b8060405162461bcd60e51b81526004016110b49190611f74565b6001600160a01b038116811461063257600080fd5b600060208284031215611d3e57600080fd5b8135611d4981611d17565b9392505050565b6001600160a01b0391909116815260200190565b600060208284031215611d7657600080fd5b5035919050565b60008060408385031215611d9057600080fd5b8235611d9b81611d17565b946020939093013593505050565b60008060408385031215611dbc57600080fd5b8235611dc781611d17565b91506020830135611dd781611d17565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e0a57611e0a611de2565b500390565b6000816000190483118215151615611e2957611e29611de2565b500290565b600082611e4b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611e6357611e63611de2565b500190565b9485526001600160a01b0393841660208601529190921660408401526060830191909152608082015260a00190565b600060208284031215611ea957600080fd5b5051919050565b6001600160a01b03929092168252602082015260400190565b60008060408385031215611edc57600080fd5b505080516020909101519092909150565b600060208284031215611eff57600080fd5b8151611d4981611d17565b600060208284031215611f1c57600080fd5b81518015158114611d4957600080fd5b60005b83811015611f47578181015183820152602001611f2f565b8381111561143d5750506000910152565b60008251611f6a818460208701611f2c565b9190910192915050565b6020815260008251806020840152611f93816040850160208701611f2c565b601f01601f1916919091016040019291505056fec9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364a264697066735822122008057850e0e208054a76daf4f99c58ceddce5d359c1a007d01ac290aa8fed95464736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
SONIC | 100.00% | $0.157957 | 37,395.8037 | $5,906.93 |
Loading...
Loading
Loading...
Loading
[ 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.