Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
2265732 | 7 days ago | Contract Creation | 0 S |
Loading...
Loading
Contract Name:
CLFeesVault2
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)
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./interfaces/IPairInfo.sol"; // import "./interfaces/IBribe.sol"; import "./interfaces/IVoter.sol"; import "./interfaces/IPermissionsRegistry.sol"; // import "./libraries/Math.sol"; interface IPairFactory { function MAX_TREASURY_FEE() external view returns (uint); function stakingNFTFee() external view returns (uint); function stakingFeeHandler() external view returns (address); function dibs() external view returns (address); } contract CLFeesVault2 { using SafeERC20 for IERC20; /* ----------------------------------------------------------------------------- DATA ----------------------------------------------------------------------------- */ IVoter public voter; address public pool; address public dibs; address public swpxNftStakingConverter; address public pairFactoryClassic; IPermissionsRegistry public permissionsRegsitry; /* ----------------------------------------------------------------------------- MODIFIERS ----------------------------------------------------------------------------- */ modifier onlyGauge() { require(voter.isGauge(msg.sender), "!gauge contract"); _; } modifier onlyAdmin() { require( permissionsRegsitry.hasRole("CL_FEES_VAULT_ADMIN", msg.sender), "ERR: GAUGE_ADMIN" ); _; } /* ----------------------------------------------------------------------------- EVENTS ----------------------------------------------------------------------------- */ event Fees0(uint treasury, uint nft, address indexed token, address indexed pool, uint timestamp); event Fees1(uint treasury, uint nft, address indexed token, address indexed pool, uint timestamp); /* ----------------------------------------------------------------------------- CONSTRUCTOR AND INIT ----------------------------------------------------------------------------- */ constructor(address _pool, address _permissionRegistry, address _voter) { permissionsRegsitry = IPermissionsRegistry(_permissionRegistry); pool = _pool; voter = IVoter(_voter); pairFactoryClassic = voter.factory(); swpxNftStakingConverter = IPairFactory(pairFactoryClassic) .stakingFeeHandler(); dibs = IPairFactory(pairFactoryClassic).dibs(); } /* ----------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- LP FEES CLAIM -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ----------------------------------------------------------------------------- */ /// @dev Claim Fees from the gauge. Return the fees claimed by the gauge function claimFees() external onlyGauge returns (uint256, uint256) { // check gauge pool using voter address _pool = voter.poolForGauge(msg.sender); require(pool == _pool); // fees uint treasury; uint nft; // token0 address t0 = IPairInfo(pool).token0(); uint256 _amount0 = IERC20(t0).balanceOf(address(this)); (treasury, nft) = _getFees(_amount0); if (_amount0 > 0) { if (treasury > 0) IERC20(t0).safeTransfer(dibs, treasury); if (nft > 0) IERC20(t0).safeTransfer(swpxNftStakingConverter, nft); emit Fees0(treasury, nft, t0, pool, block.timestamp); } // token1 address t1 = IPairInfo(pool).token1(); uint256 _amount1 = IERC20(t1).balanceOf(address(this)); (treasury, nft) = _getFees(_amount1); if (_amount1 > 0) { if (treasury > 0) IERC20(t1).safeTransfer(dibs, treasury); if (nft > 0) IERC20(t1).safeTransfer(swpxNftStakingConverter, nft); emit Fees1(treasury, nft, t1, pool, block.timestamp); } return (0, 0); } function _getFees( uint amount ) internal view returns (uint treasury, uint nft) { uint256 swpxNftFee = IPairFactory(pairFactoryClassic).stakingNFTFee(); uint256 treasuryFee = IPairFactory(pairFactoryClassic) .MAX_TREASURY_FEE(); nft = (amount * swpxNftFee) / (swpxNftFee + treasuryFee); treasury = amount - nft; } /* ----------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ADMIN FUNCTIONS -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ----------------------------------------------------------------------------- */ function setDibs(address _dibs) external onlyAdmin { require(_dibs != address(0)); dibs = _dibs; } function setNftStaking(address _swpxNftStaking) external onlyAdmin { require(_swpxNftStaking != address(0)); swpxNftStakingConverter = _swpxNftStaking; } function setPairFactory(address _pf) external onlyAdmin { require(_pf != address(0)); pairFactoryClassic = _pf; } function setVoter(address vt) external onlyAdmin { require(vt != address(0)); voter = IVoter(vt); } function setPermissionRegistry(address _pr) external onlyAdmin { require(_pr != address(0)); permissionsRegsitry = IPermissionsRegistry(_pr); } function setPool(address _pool) external onlyAdmin { require(_pool != address(0)); pool = _pool; } /// @notice Recover ERC20 from the contract. function emergencyRecoverERC20( address tokenAddress, uint256 tokenAmount ) external onlyAdmin { require(tokenAmount <= IERC20(tokenAddress).balanceOf(address(this))); IERC20(tokenAddress).safeTransfer( permissionsRegsitry.swpxTeamMultisig(), tokenAmount ); } }
// 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. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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 // 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; 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 require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // 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; } }
// 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. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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 { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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; } }
// SPDX-License-Identifier: MIT pragma 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IPermissionsRegistry { function emergencyCouncil() external view returns(address); function swpxTeamMultisig() external view returns(address); function hasRole(bytes memory role, address caller) external view returns(bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IVoter { function _ve() external view returns (address); function gauges(address _pair) external view returns (address); function isGauge(address _gauge) external view returns (bool); function poolForGauge(address _gauge) external view returns (address); function factory() external view returns (address); function minter() external view returns(address); function isWhitelisted(address token) external view returns (bool); function notifyRewardAmount(uint amount) external; function distributeAll() external; function distributeFees(address[] memory _gauges) external; function internal_bribes(address _gauge) external view returns (address); function external_bribes(address _gauge) external view returns (address); function usedWeights(uint id) external view returns(uint); function lastVoted(uint id) external view returns(uint); function poolVote(uint id, uint _index) external view returns(address _pair); function votes(uint id, address _pool) external view returns(uint votes); function poolVoteLength(uint tokenId) external view returns(uint); }
{ "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
[{"inputs":[{"internalType":"address","name":"_pool","type":"address"},{"internalType":"address","name":"_permissionRegistry","type":"address"},{"internalType":"address","name":"_voter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"treasury","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nft","type":"uint256"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Fees0","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"treasury","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nft","type":"uint256"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Fees1","type":"event"},{"inputs":[],"name":"claimFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dibs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"emergencyRecoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pairFactoryClassic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permissionsRegsitry","outputs":[{"internalType":"contract IPermissionsRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dibs","type":"address"}],"name":"setDibs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swpxNftStaking","type":"address"}],"name":"setNftStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pf","type":"address"}],"name":"setPairFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pr","type":"address"}],"name":"setPermissionRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vt","type":"address"}],"name":"setVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swpxNftStakingConverter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voter","outputs":[{"internalType":"contract IVoter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200157c3803806200157c83398101604081905262000034916200021b565b600580546001600160a01b038085166001600160a01b031992831617909255600180548684169083161790556000805492841692909116821790556040805163c45a015560e01b8152905163c45a0155916004818101926020929091908290030181865afa158015620000ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d1919062000265565b600480546001600160a01b0319166001600160a01b0392909216918217815560408051636092525160e11b8152905163c124a4a2928281019260209291908290030181865afa15801562000129573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014f919062000265565b600380546001600160a01b0319166001600160a01b039283161790556004805460408051633df0b11f60e11b815290519190931692637be1623e92818101926020929091908290030181865afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d4919062000265565b600280546001600160a01b0319166001600160a01b0392909216919091179055506200028a915050565b80516001600160a01b03811681146200021657600080fd5b919050565b6000806000606084860312156200023157600080fd5b6200023c84620001fe565b92506200024c60208501620001fe565b91506200025c60408501620001fe565b90509250925092565b6000602082840312156200027857600080fd5b6200028382620001fe565b9392505050565b6112e2806200029a6000396000f3fe608060405234801561001057600080fd5b50600436106100ba5760003560e01c80630125bb32146100bf5780630c74db12146100d457806316f0115b146100e75780633995ed16146101105780634437152a1461012357806346c96aac146101365780634bc2a6571461014957806369ffcecc1461015c5780637964bac91461016f5780637be1623e14610182578063b837583c14610195578063cf1ab9c7146101a8578063d294f093146101bb578063f8d1fe6f146101d8575b600080fd5b6100d26100cd36600461106d565b6101eb565b005b6100d26100e2366004611099565b61037e565b6001546100fa906001600160a01b031681565b60405161010791906110bd565b60405180910390f35b6100d261011e366004611099565b610440565b6100d2610131366004611099565b610502565b6000546100fa906001600160a01b031681565b6100d2610157366004611099565b6105c4565b6003546100fa906001600160a01b031681565b6100d261017d366004611099565b610686565b6002546100fa906001600160a01b031681565b6005546100fa906001600160a01b031681565b6004546100fa906001600160a01b031681565b6101c3610748565b60408051928352602083019190915201610107565b6100d26101e6366004611099565b610bae565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb9061021b9033906004016110d1565b602060405180830381865afa158015610238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025c919061110f565b6102815760405162461bcd60e51b815260040161027890611131565b60405180910390fd5b6040516370a0823160e01b81526001600160a01b038316906370a08231906102ad9030906004016110bd565b602060405180830381865afa1580156102ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ee919061115b565b8111156102fa57600080fd5b60055460408051636755d7b160e01b8152905161037a926001600160a01b031691636755d7b19160048083019260209291908290030181865afa158015610345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103699190611174565b6001600160a01b0384169083610c70565b5050565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906103ae9033906004016110d1565b602060405180830381865afa1580156103cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ef919061110f565b61040b5760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661041e57600080fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906104709033906004016110d1565b602060405180830381865afa15801561048d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b1919061110f565b6104cd5760405162461bcd60e51b815260040161027890611131565b6001600160a01b0381166104e057600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906105329033906004016110d1565b602060405180830381865afa15801561054f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610573919061110f565b61058f5760405162461bcd60e51b815260040161027890611131565b6001600160a01b0381166105a257600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906105f49033906004016110d1565b602060405180830381865afa158015610611573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610635919061110f565b6106515760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661066457600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906106b69033906004016110d1565b602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f7919061110f565b6107135760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661072657600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000805460405163aa79979b60e01b815282916001600160a01b03169063aa79979b906107799033906004016110bd565b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba919061110f565b6107f85760405162461bcd60e51b815260206004820152600f60248201526e0859d85d59d94818dbdb9d1c9858dd608a1b6044820152606401610278565b6000805460405163036b50d960e11b81526001600160a01b03909116906306d6a1b2906108299033906004016110bd565b602060405180830381865afa158015610846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086a9190611174565b6001549091506001600160a01b0380831691161461088757600080fd5b6000806000600160009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109039190611174565b90506000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161093391906110bd565b602060405180830381865afa158015610950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610974919061115b565b905061097f81610cc7565b90945092508015610a195783156109aa576002546109aa906001600160a01b03848116911686610c70565b82156109ca576003546109ca906001600160a01b03848116911685610c70565b6001546040516001600160a01b03918216918416907ff9c95e9a22fdbb0b4b051a1bbdac6ab7c8cd0064af29c9c5ab644893b71f66e590610a1090889088904290611191565b60405180910390a35b6001546040805163d21220a760e01b815290516000926001600160a01b03169163d21220a79160048083019260209291908290030181865afa158015610a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a879190611174565b90506000816001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610ab791906110bd565b602060405180830381865afa158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af8919061115b565b9050610b0381610cc7565b90965094508015610b9d578515610b2e57600254610b2e906001600160a01b03848116911688610c70565b8415610b4e57600354610b4e906001600160a01b03848116911687610c70565b6001546040516001600160a01b03918216918416907ff88f69b5f4288fcb9d2aba3be904e5cbcc010941cc9a7e9dd89d627b3ca8c89490610b94908a908a904290611191565b60405180910390a35b506000988998509650505050505050565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb90610bde9033906004016110d1565b602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f919061110f565b610c3b5760405162461bcd60e51b815260040161027890611131565b6001600160a01b038116610c4e57600080fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cc2908490610df3565b505050565b6000806000600460009054906101000a90046001600160a01b03166001600160a01b031663956f94a16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d43919061115b565b90506000600460009054906101000a90046001600160a01b03166001600160a01b031663f2b3c8096040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe919061115b565b9050610dca81836111bd565b610dd483876111d5565b610dde91906111f4565b9250610dea8386611216565b93505050915091565b6000610e48826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ec59092919063ffffffff16565b805190915015610cc25780806020019051810190610e66919061110f565b610cc25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610278565b6060610ed48484600085610edc565b949350505050565b606082471015610f3d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610278565b600080866001600160a01b03168587604051610f59919061125d565b60006040518083038185875af1925050503d8060008114610f96576040519150601f19603f3d011682016040523d82523d6000602084013e610f9b565b606091505b5091509150610fac87838387610fb7565b979650505050505050565b6060831561102657825160000361101f576001600160a01b0385163b61101f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610278565b5081610ed4565b610ed4838381511561103b5781518083602001fd5b8060405162461bcd60e51b81526004016102789190611279565b6001600160a01b038116811461106a57600080fd5b50565b6000806040838503121561108057600080fd5b823561108b81611055565b946020939093013593505050565b6000602082840312156110ab57600080fd5b81356110b681611055565b9392505050565b6001600160a01b0391909116815260200190565b60408082526013908201527221a62fa322a2a9afab20aaa62a2fa0a226a4a760691b60608201526001600160a01b0391909116602082015260800190565b60006020828403121561112157600080fd5b815180151581146110b657600080fd5b60208082526010908201526f22a9291d1023a0aaa3a2afa0a226a4a760811b604082015260600190565b60006020828403121561116d57600080fd5b5051919050565b60006020828403121561118657600080fd5b81516110b681611055565b9283526020830191909152604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156111d0576111d06111a7565b500190565b60008160001904831182151516156111ef576111ef6111a7565b500290565b60008261121157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611228576112286111a7565b500390565b60005b83811015611248578181015183820152602001611230565b83811115611257576000848401525b50505050565b6000825161126f81846020870161122d565b9190910192915050565b602081526000825180602084015261129881604085016020870161122d565b601f01601f1916919091016040019291505056fea26469706673582212209865327c34c8e20848d89874cf72b281c07b5bbb9b40e5029260b209c4ae64fd64736f6c634300080d00330000000000000000000000005f62d612c69ff7be3fbd9a0cd530d57bcbc7b6420000000000000000000000008751ea0634f85474c94e8462e93751d2104ed487000000000000000000000000c1ae2779903cfb84cb9dee5c03eceac32dc407f2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ba5760003560e01c80630125bb32146100bf5780630c74db12146100d457806316f0115b146100e75780633995ed16146101105780634437152a1461012357806346c96aac146101365780634bc2a6571461014957806369ffcecc1461015c5780637964bac91461016f5780637be1623e14610182578063b837583c14610195578063cf1ab9c7146101a8578063d294f093146101bb578063f8d1fe6f146101d8575b600080fd5b6100d26100cd36600461106d565b6101eb565b005b6100d26100e2366004611099565b61037e565b6001546100fa906001600160a01b031681565b60405161010791906110bd565b60405180910390f35b6100d261011e366004611099565b610440565b6100d2610131366004611099565b610502565b6000546100fa906001600160a01b031681565b6100d2610157366004611099565b6105c4565b6003546100fa906001600160a01b031681565b6100d261017d366004611099565b610686565b6002546100fa906001600160a01b031681565b6005546100fa906001600160a01b031681565b6004546100fa906001600160a01b031681565b6101c3610748565b60408051928352602083019190915201610107565b6100d26101e6366004611099565b610bae565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb9061021b9033906004016110d1565b602060405180830381865afa158015610238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025c919061110f565b6102815760405162461bcd60e51b815260040161027890611131565b60405180910390fd5b6040516370a0823160e01b81526001600160a01b038316906370a08231906102ad9030906004016110bd565b602060405180830381865afa1580156102ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ee919061115b565b8111156102fa57600080fd5b60055460408051636755d7b160e01b8152905161037a926001600160a01b031691636755d7b19160048083019260209291908290030181865afa158015610345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103699190611174565b6001600160a01b0384169083610c70565b5050565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906103ae9033906004016110d1565b602060405180830381865afa1580156103cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ef919061110f565b61040b5760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661041e57600080fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906104709033906004016110d1565b602060405180830381865afa15801561048d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b1919061110f565b6104cd5760405162461bcd60e51b815260040161027890611131565b6001600160a01b0381166104e057600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906105329033906004016110d1565b602060405180830381865afa15801561054f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610573919061110f565b61058f5760405162461bcd60e51b815260040161027890611131565b6001600160a01b0381166105a257600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906105f49033906004016110d1565b602060405180830381865afa158015610611573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610635919061110f565b6106515760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661066457600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb906106b69033906004016110d1565b602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f7919061110f565b6107135760405162461bcd60e51b815260040161027890611131565b6001600160a01b03811661072657600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000805460405163aa79979b60e01b815282916001600160a01b03169063aa79979b906107799033906004016110bd565b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba919061110f565b6107f85760405162461bcd60e51b815260206004820152600f60248201526e0859d85d59d94818dbdb9d1c9858dd608a1b6044820152606401610278565b6000805460405163036b50d960e11b81526001600160a01b03909116906306d6a1b2906108299033906004016110bd565b602060405180830381865afa158015610846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086a9190611174565b6001549091506001600160a01b0380831691161461088757600080fd5b6000806000600160009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109039190611174565b90506000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161093391906110bd565b602060405180830381865afa158015610950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610974919061115b565b905061097f81610cc7565b90945092508015610a195783156109aa576002546109aa906001600160a01b03848116911686610c70565b82156109ca576003546109ca906001600160a01b03848116911685610c70565b6001546040516001600160a01b03918216918416907ff9c95e9a22fdbb0b4b051a1bbdac6ab7c8cd0064af29c9c5ab644893b71f66e590610a1090889088904290611191565b60405180910390a35b6001546040805163d21220a760e01b815290516000926001600160a01b03169163d21220a79160048083019260209291908290030181865afa158015610a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a879190611174565b90506000816001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610ab791906110bd565b602060405180830381865afa158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af8919061115b565b9050610b0381610cc7565b90965094508015610b9d578515610b2e57600254610b2e906001600160a01b03848116911688610c70565b8415610b4e57600354610b4e906001600160a01b03848116911687610c70565b6001546040516001600160a01b03918216918416907ff88f69b5f4288fcb9d2aba3be904e5cbcc010941cc9a7e9dd89d627b3ca8c89490610b94908a908a904290611191565b60405180910390a35b506000988998509650505050505050565b600554604051634448e1eb60e01b81526001600160a01b0390911690634448e1eb90610bde9033906004016110d1565b602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f919061110f565b610c3b5760405162461bcd60e51b815260040161027890611131565b6001600160a01b038116610c4e57600080fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cc2908490610df3565b505050565b6000806000600460009054906101000a90046001600160a01b03166001600160a01b031663956f94a16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d43919061115b565b90506000600460009054906101000a90046001600160a01b03166001600160a01b031663f2b3c8096040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe919061115b565b9050610dca81836111bd565b610dd483876111d5565b610dde91906111f4565b9250610dea8386611216565b93505050915091565b6000610e48826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ec59092919063ffffffff16565b805190915015610cc25780806020019051810190610e66919061110f565b610cc25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610278565b6060610ed48484600085610edc565b949350505050565b606082471015610f3d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610278565b600080866001600160a01b03168587604051610f59919061125d565b60006040518083038185875af1925050503d8060008114610f96576040519150601f19603f3d011682016040523d82523d6000602084013e610f9b565b606091505b5091509150610fac87838387610fb7565b979650505050505050565b6060831561102657825160000361101f576001600160a01b0385163b61101f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610278565b5081610ed4565b610ed4838381511561103b5781518083602001fd5b8060405162461bcd60e51b81526004016102789190611279565b6001600160a01b038116811461106a57600080fd5b50565b6000806040838503121561108057600080fd5b823561108b81611055565b946020939093013593505050565b6000602082840312156110ab57600080fd5b81356110b681611055565b9392505050565b6001600160a01b0391909116815260200190565b60408082526013908201527221a62fa322a2a9afab20aaa62a2fa0a226a4a760691b60608201526001600160a01b0391909116602082015260800190565b60006020828403121561112157600080fd5b815180151581146110b657600080fd5b60208082526010908201526f22a9291d1023a0aaa3a2afa0a226a4a760811b604082015260600190565b60006020828403121561116d57600080fd5b5051919050565b60006020828403121561118657600080fd5b81516110b681611055565b9283526020830191909152604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156111d0576111d06111a7565b500190565b60008160001904831182151516156111ef576111ef6111a7565b500290565b60008261121157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611228576112286111a7565b500390565b60005b83811015611248578181015183820152602001611230565b83811115611257576000848401525b50505050565b6000825161126f81846020870161122d565b9190910192915050565b602081526000825180602084015261129881604085016020870161122d565b601f01601f1916919091016040019291505056fea26469706673582212209865327c34c8e20848d89874cf72b281c07b5bbb9b40e5029260b209c4ae64fd64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005f62d612c69ff7be3fbd9a0cd530d57bcbc7b6420000000000000000000000008751ea0634f85474c94e8462e93751d2104ed487000000000000000000000000c1ae2779903cfb84cb9dee5c03eceac32dc407f2
-----Decoded View---------------
Arg [0] : _pool (address): 0x5F62d612c69fF7BE3FBd9a0cD530D57bCbC7b642
Arg [1] : _permissionRegistry (address): 0x8751ea0634f85474c94e8462e93751D2104Ed487
Arg [2] : _voter (address): 0xC1AE2779903cfB84CB9DEe5c03EcEAc32dc407F2
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f62d612c69ff7be3fbd9a0cd530d57bcbc7b642
Arg [1] : 0000000000000000000000008751ea0634f85474c94e8462e93751d2104ed487
Arg [2] : 000000000000000000000000c1ae2779903cfb84cb9dee5c03eceac32dc407f2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.