Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
BribeFactory
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; /** * @title Bribe * @author akita * * Bribe contract for distributing voting rewards to VTOKEN holders that vote for plugins * on the Voter contract. Rewards are distributed over 7 days. Rewards are distributed * to VTOKEN holders that vote for plugins on the Voter contract. VTOKEN holders will only * earn voting rewards from plugins that they vote for. VTOKEN holders get a deposit a virtual * balance in the Bribe contract by voting for its corresponding plugin on the Voter contract. * VTOKEN holders can withdraw their bribe balance by resetting their votes to 0. * * No VTOKEN is ever stored in the Bribe contract itself, rather a virtual balance is stored * when votes are cast. The virtual balance is used to calculate the amount of rewards that * each VTOKEN holder is entitled to. * * Each plugin has a unique corresponding Bribe contract. * * Bribe balanceOf must be equal to Voter votes for that plugin for all accounts at all times. * Bribe totalSupply must be equal to Voter weights at all times. */ contract Bribe is ReentrancyGuard { using SafeERC20 for IERC20; /*---------- CONSTANTS --------------------------------------------*/ uint256 public constant DURATION = 7 days; // rewards are released over 7 days /*---------- STATE VARIABLES --------------------------------------*/ // struct to store reward data for each reward token struct Reward { uint256 periodFinish; // timestamp when reward period ends uint256 rewardRate; // reward rate per second uint256 lastUpdateTime; // timestamp when reward data was last updated uint256 rewardPerTokenStored; // reward per virtual token stored } mapping(address => Reward) public rewardData; // reward token -> reward data mapping(address => bool) public isRewardToken; // reward token -> true if reward token address[] public rewardTokens; // array of reward tokens address public immutable voter; // address of voter contract mapping(address => mapping(address => uint256)) public userRewardPerTokenPaid; // user -> reward token -> reward per virtual token paid mapping(address => mapping(address => uint256)) public rewards; // user -> reward token -> reward amount uint256 private _totalSupply; // total supply of virtual tokens mapping(address => uint256) private _balances; // user -> virtual token balance /*---------- ERRORS ------------------------------------------------*/ error Bribe__NotAuthorizedVoter(); error Bribe__RewardSmallerThanDuration(); error Bribe__NotRewardToken(); error Bribe__RewardTokenAlreadyAdded(); error Bribe__InvalidZeroInput(); /*---------- EVENTS ------------------------------------------------*/ event Bribe__RewardAdded(address indexed rewardToken); event Bribe__RewardNotified(address indexed rewardToken, uint256 reward); event Bribe__Deposited(address indexed user, uint256 amount); event Bribe__Withdrawn(address indexed user, uint256 amount); event Bribe__RewardPaid(address indexed user, address indexed rewardsToken, uint256 reward); /*---------- MODIFIERS --------------------------------------------*/ modifier updateReward(address account) { for (uint256 i; i < rewardTokens.length; i++) { address token = rewardTokens[i]; rewardData[token].rewardPerTokenStored = rewardPerToken(token); rewardData[token].lastUpdateTime = lastTimeRewardApplicable(token); if (account != address(0)) { rewards[account][token] = earned(account, token); userRewardPerTokenPaid[account][token] = rewardData[token] .rewardPerTokenStored; } } _; } modifier onlyVoter() { if (msg.sender != voter) { revert Bribe__NotAuthorizedVoter(); } _; } modifier nonZeroInput(uint256 _amount) { if (_amount == 0) revert Bribe__InvalidZeroInput(); _; } /*---------- FUNCTIONS --------------------------------------------*/ /** * @notice Constructs a new Bribe contract. * @param _voter the address of the voter contract */ constructor(address _voter) { voter = _voter; } /** * @notice Claim rewards accrued for an account. Claimed rewards are sent to the account. * @param account The address to claim rewards for. */ function getReward(address account) external nonReentrant updateReward(account) { for (uint256 i = 0; i < rewardTokens.length; i++) { address _rewardsToken = rewardTokens[i]; uint256 reward = rewards[account][_rewardsToken]; if (reward > 0) { rewards[account][_rewardsToken] = 0; emit Bribe__RewardPaid(account, _rewardsToken, reward); IERC20(_rewardsToken).safeTransfer(account, reward); } } } /** * @notice Begin reward distribution to accounts with non-zero balances. Transfers tokens from msg.sender * to this contract and begins accounting for distribution with new reward token rates. Anyone * can call this function on existing reward tokens. * @param _rewardsToken the reward token to begin distribution for * @param reward the amount of reward tokens to distribute */ function notifyRewardAmount(address _rewardsToken, uint256 reward) external nonReentrant updateReward(address(0)) { if (reward < DURATION) revert Bribe__RewardSmallerThanDuration(); if (!isRewardToken[_rewardsToken]) revert Bribe__NotRewardToken(); IERC20(_rewardsToken).safeTransferFrom(msg.sender, address(this), reward); if (block.timestamp >= rewardData[_rewardsToken].periodFinish) { rewardData[_rewardsToken].rewardRate = reward / DURATION; } else { uint256 remaining = rewardData[_rewardsToken].periodFinish - block.timestamp; uint256 leftover = remaining * rewardData[_rewardsToken].rewardRate; rewardData[_rewardsToken].rewardRate = (reward + leftover) / DURATION; } rewardData[_rewardsToken].lastUpdateTime = block.timestamp; rewardData[_rewardsToken].periodFinish = block.timestamp + DURATION; emit Bribe__RewardNotified(_rewardsToken, reward); } /*---------- RESTRICTED FUNCTIONS ---------------------------------*/ /** * @notice Deposits a virtual amount of tokens for account. No tokens are actually being deposited, * this is reward accounting for voting balances. Only voter contract can call this function. * @param amount the amount of virtual tokens to deposit * @param account the account to deposit virtual tokens for */ function _deposit(uint256 amount, address account) external onlyVoter nonZeroInput(amount) updateReward(account) { _totalSupply = _totalSupply + amount; _balances[account] = _balances[account] + amount; emit Bribe__Deposited(account, amount); } /** * @notice Withdraws a virtual amount of tokens for account. No tokens are actually being withdrawn, * this is reward accounting for voting balances. Only voter contract can call this function. * @param amount the amount of virtual tokens to withdraw * @param account the account to withdraw virtual tokens for */ function _withdraw(uint256 amount, address account) external onlyVoter nonZeroInput(amount) updateReward(account) { _totalSupply = _totalSupply - amount; _balances[account] = _balances[account] - amount; emit Bribe__Withdrawn(account, amount); } /** * @notice Adds a reward token for distribution. Only voter contract can call this function. * @param _rewardsToken the reward token to add */ function addReward(address _rewardsToken) external onlyVoter { if (isRewardToken[_rewardsToken]) revert Bribe__RewardTokenAlreadyAdded(); isRewardToken[_rewardsToken] = true; rewardTokens.push(_rewardsToken); emit Bribe__RewardAdded(_rewardsToken); } /*---------- VIEW FUNCTIONS ---------------------------------------*/ function left(address _rewardsToken) external view returns (uint256 leftover) { if (block.timestamp >= rewardData[_rewardsToken].periodFinish) return 0; uint256 remaining = rewardData[_rewardsToken].periodFinish - block.timestamp; return remaining * rewardData[_rewardsToken].rewardRate; } function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function lastTimeRewardApplicable(address _rewardsToken) public view returns (uint256) { return Math.min(block.timestamp, rewardData[_rewardsToken].periodFinish); } function rewardPerToken(address _rewardsToken) public view returns (uint256) { if (_totalSupply == 0) return rewardData[_rewardsToken].rewardPerTokenStored; return rewardData[_rewardsToken].rewardPerTokenStored + ((lastTimeRewardApplicable(_rewardsToken) - rewardData[_rewardsToken].lastUpdateTime) * rewardData[_rewardsToken].rewardRate * 1e18 / _totalSupply); } function earned(address account, address _rewardsToken) public view returns (uint256) { return (_balances[account] * (rewardPerToken(_rewardsToken) - userRewardPerTokenPaid[account][_rewardsToken]) / 1e18) + rewards[account][_rewardsToken]; } function getRewardForDuration(address _rewardsToken) external view returns (uint256) { return rewardData[_rewardsToken].rewardRate * DURATION; } function getRewardTokens() external view returns (address[] memory) { return rewardTokens; } } contract BribeFactory { address public voter; address public last_bribe; error BribeFactory__UnathorizedVoter(); error BribeFactory__InvalidZeroAddress(); event BribeFactory__VoterSet(address indexed account); event BribeFactory__BribeCreated(address indexed bribe); modifier onlyVoter() { if (msg.sender != voter) revert BribeFactory__UnathorizedVoter(); _; } constructor(address _voter) { voter = _voter; } function setVoter(address _voter) external onlyVoter { if (_voter == address(0)) revert BribeFactory__InvalidZeroAddress(); voter = _voter; emit BribeFactory__VoterSet(_voter); } function createBribe(address _voter) external onlyVoter returns (address) { Bribe lastBribe = new Bribe(_voter); last_bribe = address(lastBribe); emit BribeFactory__BribeCreated(last_bribe); return last_bribe; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/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; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ 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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
{ "optimizer": { "enabled": true, "runs": 200, "details": {} }, "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":"_voter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BribeFactory__InvalidZeroAddress","type":"error"},{"inputs":[],"name":"BribeFactory__UnathorizedVoter","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"bribe","type":"address"}],"name":"BribeFactory__BribeCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BribeFactory__VoterSet","type":"event"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"}],"name":"createBribe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"last_bribe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"}],"name":"setVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516119b43803806119b483398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b611921806100936000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806346c96aac146100515780634bc2a657146100805780636bd1a72c14610095578063b1d0fc82146100a8575b600080fd5b600054610064906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b61009361008e366004610228565b6100bb565b005b6100646100a3366004610228565b610155565b600154610064906001600160a01b031681565b6000546001600160a01b031633146100e6576040516362740e4f60e01b815260040160405180910390fd5b6001600160a01b03811661010d57604051630db86d8160e31b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038316908117825560405190917f0c6860454200ddbbe05b4e768b8d2681124d39fb71fedd7fcc8241c0f2c5c63a91a250565b600080546001600160a01b03163314610181576040516362740e4f60e01b815260040160405180910390fd5b6000826040516101909061021b565b6001600160a01b039091168152602001604051809103906000f0801580156101bc573d6000803e3d6000fd5b50600180546001600160a01b0319166001600160a01b038316908117909155604051919250907ffe94179ec342e6971165e2fc4e2de38b70cd9d5c25f6850e0f34ce0247fba10e90600090a250506001546001600160a01b0316919050565b6116938061025983390190565b60006020828403121561023a57600080fd5b81356001600160a01b038116811461025157600080fd5b939250505056fe60a060405234801561001057600080fd5b5060405161169338038061169383398101604081905261002f91610045565b60016000556001600160a01b0316608052610075565b60006020828403121561005757600080fd5b81516001600160a01b038116811461006e57600080fd5b9392505050565b6080516115ee6100a560003960008181610192015281816104260152818161061d01526108d001526115ee6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637bb7bed1116100ad578063bcd1101411610071578063bcd1101414610308578063c00007b01461031b578063c4f59f9b1461032e578063e70b9e2714610343578063f12297771461036e57600080fd5b80637bb7bed11461028957806399bcc0521461029c5780639c9b2e21146102af578063b5fd73f8146102c2578063b66503cf146102f557600080fd5b806346c96aac116100f457806346c96aac1461018d57806348e5d9f8146101cc578063638634ee146102225780637035ab981461023557806370a082311461026057600080fd5b806318160ddd146101315780631be0528914610148578063211dc32d14610152578063293311ab14610165578063463cd9701461017a575b600080fd5b6006545b6040519081526020015b60405180910390f35b61013562093a8081565b61013561016036600461137e565b610381565b6101786101733660046113b1565b61041b565b005b6101786101883660046113b1565b610612565b6101b47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161013f565b6102026101da3660046113d4565b6001602081905260009182526040909120805491810154600282015460039092015490919084565b60408051948552602085019390935291830152606082015260800161013f565b6101356102303660046113d4565b6107fb565b61013561024336600461137e565b600460209081526000928352604080842090915290825290205481565b61013561026e3660046113d4565b6001600160a01b031660009081526007602052604090205490565b6101b46102973660046113ef565b61081f565b6101356102aa3660046113d4565b610849565b6101786102bd3660046113d4565b6108c5565b6102e56102d03660046113d4565b60026020526000908152604090205460ff1681565b604051901515815260200161013f565b610178610303366004611408565b6109d4565b6101356103163660046113d4565b610cb3565b6101786103293660046113d4565b610cdd565b610336610ecf565b60405161013f9190611432565b61013561035136600461137e565b600560209081526000928352604080842090915290825290205481565b61013561037c3660046113d4565b610f31565b6001600160a01b038083166000818152600560209081526040808320948616808452948252808320549383526004825280832094835293905291822054670de0b6b3a7640000906103d185610f31565b6103db9190611495565b6001600160a01b0386166000908152600760205260409020546103fe91906114a8565b61040891906114bf565b61041291906114e1565b90505b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146104645760405163101f867360e01b815260040160405180910390fd5b818060000361048657604051632695f34d60e21b815260040160405180910390fd5b8160005b60035481101561057f576000600382815481106104a9576104a96114f4565b6000918252602090912001546001600160a01b031690506104c981610f31565b6001600160a01b0382166000908152600160205260409020600301556104ee816107fb565b6001600160a01b0380831660009081526001602052604090206002019190915583161561056c5761051f8382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b50806105778161150a565b91505061048a565b508360065461058e9190611495565b6006556001600160a01b0383166000908152600760205260409020546105b5908590611495565b6001600160a01b038416600081815260076020526040908190209290925590517f7a0397ecfe866432a17af3db4a06ba591f48042ff678cee73b604fe2fb11ef40906106049087815260200190565b60405180910390a250505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461065b5760405163101f867360e01b815260040160405180910390fd5b818060000361067d57604051632695f34d60e21b815260040160405180910390fd5b8160005b600354811015610776576000600382815481106106a0576106a06114f4565b6000918252602090912001546001600160a01b031690506106c081610f31565b6001600160a01b0382166000908152600160205260409020600301556106e5816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610763576107168382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b508061076e8161150a565b915050610681565b508360065461078591906114e1565b6006556001600160a01b0383166000908152600760205260409020546107ac9085906114e1565b6001600160a01b038416600081815260076020526040908190209290925590517f2ebcaad0aeb54db6f08c47b7d3643d4f62cd1bf924f385248954dd38a971395f906106049087815260200190565b6001600160a01b038116600090815260016020526040812054610415904290610fe3565b6003818154811061082f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b038116600090815260016020526040812054421061087057506000919050565b6001600160a01b038216600090815260016020526040812054610894904290611495565b6001600160a01b038416600090815260016020819052604090912001549091506108be90826114a8565b9392505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461090e5760405163101f867360e01b815260040160405180910390fd5b6001600160a01b03811660009081526002602052604090205460ff161561094857604051633241f4eb60e21b815260040160405180910390fd5b6001600160a01b038116600081815260026020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191684179055517ffc007a4f7212c7361eb944439fd0085d31850dcdf8e6587d8d93b2e91e7922639190a250565b6109dc610ff9565b6000805b600354811015610ad5576000600382815481106109ff576109ff6114f4565b6000918252602090912001546001600160a01b03169050610a1f81610f31565b6001600160a01b038216600090815260016020526040902060030155610a44816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610ac257610a758382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b5080610acd8161150a565b9150506109e0565b5062093a80821015610afa57604051636f65e03760e01b815260040160405180910390fd5b6001600160a01b03831660009081526002602052604090205460ff16610b3357604051633429b68b60e11b815260040160405180910390fd5b610b486001600160a01b038416333085611057565b6001600160a01b0383166000908152600160205260409020544210610b9657610b7462093a80836114bf565b6001600160a01b03841660009081526001602081905260409091200155610c1e565b6001600160a01b038316600090815260016020526040812054610bba904290611495565b6001600160a01b03851660009081526001602081905260408220015491925090610be490836114a8565b905062093a80610bf482866114e1565b610bfe91906114bf565b6001600160a01b0386166000908152600160208190526040909120015550505b6001600160a01b0383166000908152600160205260409020426002909101819055610c4d9062093a80906114e1565b6001600160a01b038416600081815260016020526040908190209290925590517ff2adff238dbae5b26d77229769dcbfcb78b94a095cc14cde8d2edc62636e207990610c9c9085815260200190565b60405180910390a250610caf6001600055565b5050565b6001600160a01b0381166000908152600160208190526040822001546104159062093a80906114a8565b610ce5610ff9565b8060005b600354811015610dde57600060038281548110610d0857610d086114f4565b6000918252602090912001546001600160a01b03169050610d2881610f31565b6001600160a01b038216600090815260016020526040902060030155610d4d816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610dcb57610d7e8382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b5080610dd68161150a565b915050610ce9565b5060005b600354811015610ec057600060038281548110610e0157610e016114f4565b60009182526020808320909101546001600160a01b038781168452600583526040808520919092168085529252909120549091508015610eab576001600160a01b0385811660008181526005602090815260408083209487168084529482528083209290925590518481527fdbf1859b6253a78673ce7b23bcf2f95b11b495ad33a786f2dc67993747c75519910160405180910390a3610eab6001600160a01b03831686836110c8565b50508080610eb89061150a565b915050610de2565b5050610ecc6001600055565b50565b60606003805480602002602001604051908101604052809291908181526020018280548015610f2757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f09575b5050505050905090565b6000600654600003610f5c57506001600160a01b031660009081526001602052604090206003015490565b6006546001600160a01b038316600090815260016020819052604090912090810154600290910154610f8d856107fb565b610f979190611495565b610fa191906114a8565b610fb390670de0b6b3a76400006114a8565b610fbd91906114bf565b6001600160a01b03831660009081526001602052604090206003015461041591906114e1565b6000818310610ff25781610412565b5090919050565b6002600054036110505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b6040516001600160a01b03808516602483015283166044820152606481018290526110c29085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526110fd565b50505050565b6040516001600160a01b0383166024820152604481018290526110f890849063a9059cbb60e01b9060640161108b565b505050565b6000611152826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111d29092919063ffffffff16565b90508051600014806111735750808060200190518101906111739190611523565b6110f85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401611047565b60606111e184846000856111e9565b949350505050565b60608247101561124a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401611047565b600080866001600160a01b031685876040516112669190611569565b60006040518083038185875af1925050503d80600081146112a3576040519150601f19603f3d011682016040523d82523d6000602084013e6112a8565b606091505b50915091506112b9878383876112c4565b979650505050505050565b6060831561133357825160000361132c576001600160a01b0385163b61132c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611047565b50816111e1565b6111e183838151156113485781518083602001fd5b8060405162461bcd60e51b81526004016110479190611585565b80356001600160a01b038116811461137957600080fd5b919050565b6000806040838503121561139157600080fd5b61139a83611362565b91506113a860208401611362565b90509250929050565b600080604083850312156113c457600080fd5b823591506113a860208401611362565b6000602082840312156113e657600080fd5b61041282611362565b60006020828403121561140157600080fd5b5035919050565b6000806040838503121561141b57600080fd5b61142483611362565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156114735783516001600160a01b03168352928401929184019160010161144e565b50909695505050505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104155761041561147f565b80820281158282048414176104155761041561147f565b6000826114dc57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104155761041561147f565b634e487b7160e01b600052603260045260246000fd5b60006001820161151c5761151c61147f565b5060010190565b60006020828403121561153557600080fd5b815180151581146108be57600080fd5b60005b83811015611560578181015183820152602001611548565b50506000910152565b6000825161157b818460208701611545565b9190910192915050565b60208152600082518060208401526115a4816040850160208701611545565b601f01601f1916919091016040019291505056fea2646970667358221220dc3ec1a7f8f9e368e6b11c9e235b2122ea4287b9d4f2861df37ce7a46ee136e464736f6c63430008130033a2646970667358221220fdb8cc231495dd81a9744f912908d2a7557f2e7c5e2c97921fd96018cc4634c664736f6c6343000813003300000000000000000000000035f3fa4b30688815667eb81af661b494129f883e
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806346c96aac146100515780634bc2a657146100805780636bd1a72c14610095578063b1d0fc82146100a8575b600080fd5b600054610064906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b61009361008e366004610228565b6100bb565b005b6100646100a3366004610228565b610155565b600154610064906001600160a01b031681565b6000546001600160a01b031633146100e6576040516362740e4f60e01b815260040160405180910390fd5b6001600160a01b03811661010d57604051630db86d8160e31b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038316908117825560405190917f0c6860454200ddbbe05b4e768b8d2681124d39fb71fedd7fcc8241c0f2c5c63a91a250565b600080546001600160a01b03163314610181576040516362740e4f60e01b815260040160405180910390fd5b6000826040516101909061021b565b6001600160a01b039091168152602001604051809103906000f0801580156101bc573d6000803e3d6000fd5b50600180546001600160a01b0319166001600160a01b038316908117909155604051919250907ffe94179ec342e6971165e2fc4e2de38b70cd9d5c25f6850e0f34ce0247fba10e90600090a250506001546001600160a01b0316919050565b6116938061025983390190565b60006020828403121561023a57600080fd5b81356001600160a01b038116811461025157600080fd5b939250505056fe60a060405234801561001057600080fd5b5060405161169338038061169383398101604081905261002f91610045565b60016000556001600160a01b0316608052610075565b60006020828403121561005757600080fd5b81516001600160a01b038116811461006e57600080fd5b9392505050565b6080516115ee6100a560003960008181610192015281816104260152818161061d01526108d001526115ee6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637bb7bed1116100ad578063bcd1101411610071578063bcd1101414610308578063c00007b01461031b578063c4f59f9b1461032e578063e70b9e2714610343578063f12297771461036e57600080fd5b80637bb7bed11461028957806399bcc0521461029c5780639c9b2e21146102af578063b5fd73f8146102c2578063b66503cf146102f557600080fd5b806346c96aac116100f457806346c96aac1461018d57806348e5d9f8146101cc578063638634ee146102225780637035ab981461023557806370a082311461026057600080fd5b806318160ddd146101315780631be0528914610148578063211dc32d14610152578063293311ab14610165578063463cd9701461017a575b600080fd5b6006545b6040519081526020015b60405180910390f35b61013562093a8081565b61013561016036600461137e565b610381565b6101786101733660046113b1565b61041b565b005b6101786101883660046113b1565b610612565b6101b47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161013f565b6102026101da3660046113d4565b6001602081905260009182526040909120805491810154600282015460039092015490919084565b60408051948552602085019390935291830152606082015260800161013f565b6101356102303660046113d4565b6107fb565b61013561024336600461137e565b600460209081526000928352604080842090915290825290205481565b61013561026e3660046113d4565b6001600160a01b031660009081526007602052604090205490565b6101b46102973660046113ef565b61081f565b6101356102aa3660046113d4565b610849565b6101786102bd3660046113d4565b6108c5565b6102e56102d03660046113d4565b60026020526000908152604090205460ff1681565b604051901515815260200161013f565b610178610303366004611408565b6109d4565b6101356103163660046113d4565b610cb3565b6101786103293660046113d4565b610cdd565b610336610ecf565b60405161013f9190611432565b61013561035136600461137e565b600560209081526000928352604080842090915290825290205481565b61013561037c3660046113d4565b610f31565b6001600160a01b038083166000818152600560209081526040808320948616808452948252808320549383526004825280832094835293905291822054670de0b6b3a7640000906103d185610f31565b6103db9190611495565b6001600160a01b0386166000908152600760205260409020546103fe91906114a8565b61040891906114bf565b61041291906114e1565b90505b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146104645760405163101f867360e01b815260040160405180910390fd5b818060000361048657604051632695f34d60e21b815260040160405180910390fd5b8160005b60035481101561057f576000600382815481106104a9576104a96114f4565b6000918252602090912001546001600160a01b031690506104c981610f31565b6001600160a01b0382166000908152600160205260409020600301556104ee816107fb565b6001600160a01b0380831660009081526001602052604090206002019190915583161561056c5761051f8382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b50806105778161150a565b91505061048a565b508360065461058e9190611495565b6006556001600160a01b0383166000908152600760205260409020546105b5908590611495565b6001600160a01b038416600081815260076020526040908190209290925590517f7a0397ecfe866432a17af3db4a06ba591f48042ff678cee73b604fe2fb11ef40906106049087815260200190565b60405180910390a250505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461065b5760405163101f867360e01b815260040160405180910390fd5b818060000361067d57604051632695f34d60e21b815260040160405180910390fd5b8160005b600354811015610776576000600382815481106106a0576106a06114f4565b6000918252602090912001546001600160a01b031690506106c081610f31565b6001600160a01b0382166000908152600160205260409020600301556106e5816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610763576107168382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b508061076e8161150a565b915050610681565b508360065461078591906114e1565b6006556001600160a01b0383166000908152600760205260409020546107ac9085906114e1565b6001600160a01b038416600081815260076020526040908190209290925590517f2ebcaad0aeb54db6f08c47b7d3643d4f62cd1bf924f385248954dd38a971395f906106049087815260200190565b6001600160a01b038116600090815260016020526040812054610415904290610fe3565b6003818154811061082f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b038116600090815260016020526040812054421061087057506000919050565b6001600160a01b038216600090815260016020526040812054610894904290611495565b6001600160a01b038416600090815260016020819052604090912001549091506108be90826114a8565b9392505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461090e5760405163101f867360e01b815260040160405180910390fd5b6001600160a01b03811660009081526002602052604090205460ff161561094857604051633241f4eb60e21b815260040160405180910390fd5b6001600160a01b038116600081815260026020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191684179055517ffc007a4f7212c7361eb944439fd0085d31850dcdf8e6587d8d93b2e91e7922639190a250565b6109dc610ff9565b6000805b600354811015610ad5576000600382815481106109ff576109ff6114f4565b6000918252602090912001546001600160a01b03169050610a1f81610f31565b6001600160a01b038216600090815260016020526040902060030155610a44816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610ac257610a758382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b5080610acd8161150a565b9150506109e0565b5062093a80821015610afa57604051636f65e03760e01b815260040160405180910390fd5b6001600160a01b03831660009081526002602052604090205460ff16610b3357604051633429b68b60e11b815260040160405180910390fd5b610b486001600160a01b038416333085611057565b6001600160a01b0383166000908152600160205260409020544210610b9657610b7462093a80836114bf565b6001600160a01b03841660009081526001602081905260409091200155610c1e565b6001600160a01b038316600090815260016020526040812054610bba904290611495565b6001600160a01b03851660009081526001602081905260408220015491925090610be490836114a8565b905062093a80610bf482866114e1565b610bfe91906114bf565b6001600160a01b0386166000908152600160208190526040909120015550505b6001600160a01b0383166000908152600160205260409020426002909101819055610c4d9062093a80906114e1565b6001600160a01b038416600081815260016020526040908190209290925590517ff2adff238dbae5b26d77229769dcbfcb78b94a095cc14cde8d2edc62636e207990610c9c9085815260200190565b60405180910390a250610caf6001600055565b5050565b6001600160a01b0381166000908152600160208190526040822001546104159062093a80906114a8565b610ce5610ff9565b8060005b600354811015610dde57600060038281548110610d0857610d086114f4565b6000918252602090912001546001600160a01b03169050610d2881610f31565b6001600160a01b038216600090815260016020526040902060030155610d4d816107fb565b6001600160a01b03808316600090815260016020526040902060020191909155831615610dcb57610d7e8382610381565b6001600160a01b0380851660008181526005602090815260408083209487168084529482528083209590955560018152848220600301549282526004815284822093825292909252919020555b5080610dd68161150a565b915050610ce9565b5060005b600354811015610ec057600060038281548110610e0157610e016114f4565b60009182526020808320909101546001600160a01b038781168452600583526040808520919092168085529252909120549091508015610eab576001600160a01b0385811660008181526005602090815260408083209487168084529482528083209290925590518481527fdbf1859b6253a78673ce7b23bcf2f95b11b495ad33a786f2dc67993747c75519910160405180910390a3610eab6001600160a01b03831686836110c8565b50508080610eb89061150a565b915050610de2565b5050610ecc6001600055565b50565b60606003805480602002602001604051908101604052809291908181526020018280548015610f2757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f09575b5050505050905090565b6000600654600003610f5c57506001600160a01b031660009081526001602052604090206003015490565b6006546001600160a01b038316600090815260016020819052604090912090810154600290910154610f8d856107fb565b610f979190611495565b610fa191906114a8565b610fb390670de0b6b3a76400006114a8565b610fbd91906114bf565b6001600160a01b03831660009081526001602052604090206003015461041591906114e1565b6000818310610ff25781610412565b5090919050565b6002600054036110505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b6040516001600160a01b03808516602483015283166044820152606481018290526110c29085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526110fd565b50505050565b6040516001600160a01b0383166024820152604481018290526110f890849063a9059cbb60e01b9060640161108b565b505050565b6000611152826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111d29092919063ffffffff16565b90508051600014806111735750808060200190518101906111739190611523565b6110f85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401611047565b60606111e184846000856111e9565b949350505050565b60608247101561124a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401611047565b600080866001600160a01b031685876040516112669190611569565b60006040518083038185875af1925050503d80600081146112a3576040519150601f19603f3d011682016040523d82523d6000602084013e6112a8565b606091505b50915091506112b9878383876112c4565b979650505050505050565b6060831561133357825160000361132c576001600160a01b0385163b61132c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611047565b50816111e1565b6111e183838151156113485781518083602001fd5b8060405162461bcd60e51b81526004016110479190611585565b80356001600160a01b038116811461137957600080fd5b919050565b6000806040838503121561139157600080fd5b61139a83611362565b91506113a860208401611362565b90509250929050565b600080604083850312156113c457600080fd5b823591506113a860208401611362565b6000602082840312156113e657600080fd5b61041282611362565b60006020828403121561140157600080fd5b5035919050565b6000806040838503121561141b57600080fd5b61142483611362565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156114735783516001600160a01b03168352928401929184019160010161144e565b50909695505050505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104155761041561147f565b80820281158282048414176104155761041561147f565b6000826114dc57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104155761041561147f565b634e487b7160e01b600052603260045260246000fd5b60006001820161151c5761151c61147f565b5060010190565b60006020828403121561153557600080fd5b815180151581146108be57600080fd5b60005b83811015611560578181015183820152602001611548565b50506000910152565b6000825161157b818460208701611545565b9190910192915050565b60208152600082518060208401526115a4816040850160208701611545565b601f01601f1916919091016040019291505056fea2646970667358221220dc3ec1a7f8f9e368e6b11c9e235b2122ea4287b9d4f2861df37ce7a46ee136e464736f6c63430008130033a2646970667358221220fdb8cc231495dd81a9744f912908d2a7557f2e7c5e2c97921fd96018cc4634c664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000035f3fa4b30688815667eb81af661b494129f883e
-----Decoded View---------------
Arg [0] : _voter (address): 0x35F3FA4B30688815667Eb81Af661b494129F883E
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000035f3fa4b30688815667eb81af661b494129f883e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 100.00% | $2,420.54 | 0.00132927 | $3.22 |
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.