Source Code
Latest 25 from a total of 41 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Notify All | 19036214 | 787 days ago | IN | 0 ETH | 0.03929489 | ||||
| Notify All | 18686826 | 836 days ago | IN | 0 ETH | 0.15476125 | ||||
| Notify All | 18086788 | 920 days ago | IN | 0 ETH | 0.00312942 | ||||
| Notify All | 17736299 | 969 days ago | IN | 0 ETH | 0.00365301 | ||||
| Notify All | 17686486 | 976 days ago | IN | 0 ETH | 0.05854425 | ||||
| Set Governance | 17541954 | 996 days ago | IN | 0 ETH | 0.00047639 | ||||
| Notify All | 17437290 | 1011 days ago | IN | 0 ETH | 0.08145147 | ||||
| Notify All | 17338653 | 1025 days ago | IN | 0 ETH | 0.02255527 | ||||
| Notify All | 17288239 | 1032 days ago | IN | 0 ETH | 0.06125874 | ||||
| Notify All | 16941682 | 1081 days ago | IN | 0 ETH | 0.04598427 | ||||
| Notify All | 16891783 | 1088 days ago | IN | 0 ETH | 0.06006742 | ||||
| Notify All | 16841941 | 1095 days ago | IN | 0 ETH | 0.2674316 | ||||
| Notify All | 16792223 | 1102 days ago | IN | 0 ETH | 0.03533356 | ||||
| Notify All | 16742429 | 1109 days ago | IN | 0 ETH | 0.05230821 | ||||
| Notify All | 16692649 | 1116 days ago | IN | 0 ETH | 0.04667915 | ||||
| Notify All | 16642785 | 1123 days ago | IN | 0 ETH | 0.19333048 | ||||
| Notify All | 16592676 | 1130 days ago | IN | 0 ETH | 0.04521849 | ||||
| Notify All | 16542584 | 1137 days ago | IN | 0 ETH | 0.06314721 | ||||
| Notify All | 16492448 | 1144 days ago | IN | 0 ETH | 0.1081643 | ||||
| Notify All | 16342008 | 1165 days ago | IN | 0 ETH | 0.01836172 | ||||
| Notify All | 16241638 | 1179 days ago | IN | 0 ETH | 0.02232551 | ||||
| Notify All | 16191480 | 1186 days ago | IN | 0 ETH | 0.03563599 | ||||
| Notify All | 16141357 | 1193 days ago | IN | 0 ETH | 0.03816796 | ||||
| Notify All | 16091309 | 1200 days ago | IN | 0 ETH | 0.02840364 | ||||
| Notify All | 16041203 | 1207 days ago | IN | 0 ETH | 0.00271835 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CurveAccumulator
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./BaseAccumulator.sol";
import "../strategy/CurveStrategy.sol";
/// @title A contract that accumulates 3crv rewards and notifies them to the LGV4
/// @author StakeDAO
contract CurveAccumulator is BaseAccumulator {
address public constant CRV3 = 0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490;
address public constant CRV = 0xD533a949740bb3306d119CC777fa900bA034cd52;
address public strategy = 0x20F1d4Fed24073a9b9d388AfA2735Ac91f079ED6;
/* ========== CONSTRUCTOR ========== */
constructor(address _tokenReward, address _gauge) BaseAccumulator(_tokenReward, _gauge) {}
/* ========== MUTATIVE FUNCTIONS ========== */
/// @notice Notify a 3crv amount to the LGV4
/// @param _amount amount to notify after the claim
function notify(uint256 _amount) external {
CurveStrategy(strategy).claim3Crv(false);
_notifyReward(tokenReward, _amount);
_distributeSDT();
}
/// @notice Notify all 3crv accumulator balance to the LGV4
function notifyAll() external {
CurveStrategy(strategy).claim3Crv(false);
uint256 crv3Amount = IERC20(CRV3).balanceOf(address(this));
uint256 crvAmount = IERC20(CRV).balanceOf(address(this));
_notifyReward(tokenReward, crv3Amount);
_notifyReward(CRV, crvAmount);
_distributeSDT();
}
function changeStrategy(address _newStrategy) external {
require(msg.sender == governance, "!gov");
strategy = _newStrategy;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @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 ReentrancyGuardUpgradeable is Initializable {
// 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;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_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() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// 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.7.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// 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 v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// 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.7.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.7.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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../interfaces/ILocker.sol";
import "../interfaces/ILiquidityGauge.sol";
import { ISDTDistributor } from "../interfaces/ISDTDistributor.sol";
/// @title BaseAccumulator
/// @notice A contract that defines the functions shared by all accumulators
/// @author StakeDAO
contract BaseAccumulator {
using SafeERC20 for IERC20;
/* ========== STATE VARIABLES ========== */
address public governance;
address public locker;
address public tokenReward;
address public gauge;
address public sdtDistributor;
uint256 public claimerFee;
/* ========== EVENTS ========== */
event SdtDistributorUpdated(address oldDistributor, address newDistributor);
event GaugeSet(address oldGauge, address newGauge);
event RewardNotified(address gauge, address tokenReward, uint256 amountNotified, uint256 claimerFee);
event LockerSet(address oldLocker, address newLocker);
event GovernanceSet(address oldGov, address newGov);
event TokenRewardSet(address oldTr, address newTr);
event TokenDeposited(address token, uint256 amount);
event ERC20Rescued(address token, uint256 amount);
/* ========== CONSTRUCTOR ========== */
constructor(address _tokenReward, address _gauge) {
tokenReward = _tokenReward;
gauge = _gauge;
governance = msg.sender;
}
/* ========== MUTATIVE FUNCTIONS ========== */
/// @notice Notify the reward using an extra token
/// @param _tokenReward token address to notify
/// @param _amount amount to notify
function notifyExtraReward(address _tokenReward, uint256 _amount) external {
require(msg.sender == governance, "!gov");
_notifyReward(_tokenReward, _amount);
_distributeSDT();
}
/// @notice Notify the reward using all balance of extra token
/// @param _tokenReward token address to notify
function notifyAllExtraReward(address _tokenReward) external {
require(msg.sender == governance, "!gov");
uint256 amount = IERC20(_tokenReward).balanceOf(address(this));
_notifyReward(_tokenReward, amount);
_distributeSDT();
}
function notifyExtraReward(address[] calldata _tokens, uint256[] calldata amounts) external {
require(msg.sender == governance, "!gov");
_notifyExtraReward(_tokens, amounts);
_distributeSDT();
}
function _notifyExtraReward(address[] memory _tokens, uint256[] memory amounts) internal {
uint256 length = _tokens.length;
for (uint256 i; i < length; ++i) {
_notifyReward(_tokens[i], amounts[i]);
}
}
function notifyAllExtraReward(address[] calldata _tokens) external {
require(msg.sender == governance, "!gov");
_notifyAllExtraReward(_tokens);
_distributeSDT();
}
function _notifyAllExtraReward(address[] memory _tokens) internal {
uint256 amount;
uint256 length = _tokens.length;
for (uint256 i; i < length; ++i) {
amount = IERC20(_tokens[i]).balanceOf(address(this));
_notifyReward(_tokens[i], amount);
}
}
function _distributeSDT() internal {
if (sdtDistributor != address(0)) {
ISDTDistributor(sdtDistributor).distribute(gauge);
}
}
/// @notice Notify the new reward to the LGV4
/// @param _tokenReward token to notify
/// @param _amount amount to notify
function _notifyReward(address _tokenReward, uint256 _amount) internal {
require(gauge != address(0), "gauge not set");
if (_amount == 0) {
return;
}
uint256 balanceBefore = IERC20(_tokenReward).balanceOf(address(this));
require(balanceBefore >= _amount, "amount not enough");
if (ILiquidityGauge(gauge).reward_data(_tokenReward).distributor == address(this)) {
uint256 claimerReward = (_amount * claimerFee) / 10000;
IERC20(_tokenReward).transfer(msg.sender, claimerReward);
_amount -= claimerReward;
IERC20(_tokenReward).approve(gauge, _amount);
ILiquidityGauge(gauge).deposit_reward_token(_tokenReward, _amount);
uint256 balanceAfter = IERC20(_tokenReward).balanceOf(address(this));
require(balanceBefore - balanceAfter == _amount + claimerReward, "wrong amount notified");
emit RewardNotified(gauge, _tokenReward, _amount, claimerReward);
}
}
/// @notice Deposit token into the accumulator
/// @param _token token to deposit
/// @param _amount amount to deposit
function depositToken(address _token, uint256 _amount) external {
require(_amount > 0, "set an amount > 0");
IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount);
emit TokenDeposited(_token, _amount);
}
/// @notice Sets gauge for the accumulator which will receive and distribute the rewards
/// @dev Can be called only by the governance
/// @param _gauge gauge address
function setGauge(address _gauge) external {
require(msg.sender == governance, "!gov");
require(_gauge != address(0), "can't be zero address");
emit GaugeSet(gauge, _gauge);
gauge = _gauge;
}
/// @notice Sets SdtDistributor to distribute from the Accumulator SDT Rewards to Gauge.
/// @dev Can be called only by the governance
/// @param _sdtDistributor gauge address
function setSdtDistributor(address _sdtDistributor) external {
require(msg.sender == governance, "!gov");
require(_sdtDistributor != address(0), "can't be zero address");
emit SdtDistributorUpdated(sdtDistributor, _sdtDistributor);
sdtDistributor = _sdtDistributor;
}
/// @notice Allows the governance to set the new governance
/// @dev Can be called only by the governance
/// @param _governance governance address
function setGovernance(address _governance) external {
require(msg.sender == governance, "!gov");
require(_governance != address(0), "can't be zero address");
emit GovernanceSet(governance, _governance);
governance = _governance;
}
/// @notice Allows the governance to set the locker
/// @dev Can be called only by the governance
/// @param _locker locker address
function setLocker(address _locker) external {
require(msg.sender == governance, "!gov");
require(_locker != address(0), "can't be zero address");
emit LockerSet(locker, _locker);
locker = _locker;
}
/// @notice Allows the governance to set the token reward
/// @dev Can be called only by the governance
/// @param _tokenReward token reward address
function setTokenReward(address _tokenReward) external {
require(msg.sender == governance, "!gov");
require(_tokenReward != address(0), "can't be zero address");
emit TokenRewardSet(tokenReward, _tokenReward);
tokenReward = _tokenReward;
}
function setClaimerFee(uint256 _claimerFee) external {
require(msg.sender == governance, "!gov");
claimerFee = _claimerFee;
}
/// @notice A function that rescue any ERC20 token
/// @param _token token address
/// @param _amount amount to rescue
/// @param _recipient address to send token rescued
function rescueERC20(
address _token,
uint256 _amount,
address _recipient
) external {
require(msg.sender == governance, "!gov");
require(_amount > 0, "set an amount > 0");
require(_recipient != address(0), "can't be zero address");
IERC20(_token).safeTransfer(_recipient, _amount);
emit ERC20Rescued(_token, _amount);
}
}// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "../interfaces/IAccessControl.sol";
/**
* @dev This contract is fully forked from OpenZeppelin `AccessControlUpgradeable`.
* The only difference is the removal of the ERC165 implementation as it's not
* needed in Angle.
*
* Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControlUpgradeable is Initializable, IAccessControl {
function __AccessControl_init() internal initializer {
__AccessControl_init_unchained();
}
function __AccessControl_init_unchained() internal initializer {}
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, msg.sender);
_;
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
StringsUpgradeable.toHexString(uint160(account), 20),
" is missing role ",
StringsUpgradeable.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external override {
require(account == msg.sender, "71");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal {
emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) internal {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, msg.sender);
}
}
function _revokeRole(bytes32 role, address account) internal {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, msg.sender);
}
}
uint256[49] private __gap;
}// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.7;
/// @title IAccessControl
/// @author Forked from OpenZeppelin
/// @notice Interface for `AccessControl` contracts
interface IAccessControl {
function hasRole(bytes32 role, address account) external view returns (bool);
function getRoleAdmin(bytes32 role) external view returns (bytes32);
function grantRole(bytes32 role, address account) external;
function revokeRole(bytes32 role, address account) external;
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.7;
interface IGaugeController {
//solhint-disable-next-line
function gauge_types(address addr) external view returns (int128);
//solhint-disable-next-line
function gauge_relative_weight_write(address addr, uint256 timestamp) external returns (uint256);
//solhint-disable-next-line
function gauge_relative_weight(address addr) external view returns (uint256);
//solhint-disable-next-line
function gauge_relative_weight(address addr, uint256 timestamp) external view returns (uint256);
//solhint-disable-next-line
function get_total_weight() external view returns (uint256);
//solhint-disable-next-line
function get_gauge_weight(address addr) external view returns (uint256);
function vote_for_gauge_weights(address, uint256) external;
}// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.7;
interface ILiquidityGauge {
struct Reward {
address token;
address distributor;
uint256 period_finish;
uint256 rate;
uint256 last_update;
uint256 integral;
}
// solhint-disable-next-line
function deposit_reward_token(address _rewardToken, uint256 _amount) external;
// solhint-disable-next-line
function claim_rewards_for(address _user, address _recipient) external;
// // solhint-disable-next-line
// function claim_rewards_for(address _user) external;
// solhint-disable-next-line
function deposit(uint256 _value, address _addr) external;
// solhint-disable-next-line
function reward_tokens(uint256 _i) external view returns (address);
// solhint-disable-next-line
function reward_data(address _tokenReward) external view returns (Reward memory);
function balanceOf(address) external returns (uint256);
function claimable_reward(address _user, address _reward_token) external view returns (uint256);
function claimable_tokens(address _user) external returns (uint256);
function user_checkpoint(address _user) external returns (bool);
function commit_transfer_ownership(address) external;
function claim_rewards(address) external;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface ILocker {
function createLock(uint256, uint256) external;
function claimAllRewards(address[] calldata _tokens, address _recipient) external;
function increaseAmount(uint256) external;
function increaseUnlockTime(uint256) external;
function release() external;
function claimRewards(address,address) external;
function claimFXSRewards(address) external;
function execute(
address,
uint256,
bytes calldata
) external returns (bool, bytes memory);
function setGovernance(address) external;
function voteGaugeWeight(address, uint256) external;
function setAngleDepositor(address) external;
function setFxsDepositor(address) external;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface IMasterchef {
function deposit(uint256, uint256) external;
function withdraw(uint256, uint256) external;
function userInfo(uint256, address) external view returns (uint256, uint256);
function poolInfo(uint256)
external
returns (
address,
uint256,
uint256,
uint256
);
function totalAllocPoint() external view returns (uint256);
function sdtPerBlock() external view returns (uint256);
function pendingSdt(uint256, address) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface IMultiRewards {
function balanceOf(address) external returns (uint256);
function stakeFor(address, uint256) external;
function withdrawFor(address, uint256) external;
function notifyRewardAmount(address, uint256) external;
function mintFor(address recipient, uint256 amount) external;
function burnFrom(address _from, uint256 _amount) external;
function stakeOf(address account) external view returns (uint256);
}// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
interface ISDTDistributor {
function distribute(address gaugeAddr) external;
}// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
interface ISdtMiddlemanGauge {
function notifyReward(address gauge, uint256 amount) external;
}// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/// @title IStakingRewardsFunctions
/// @author StakeDAO Core Team
/// @notice Interface for the staking rewards contract that interact with the `RewardsDistributor` contract
interface IStakingRewardsFunctions {
function notifyRewardAmount(uint256 reward) external;
function recoverERC20(
address tokenAddress,
address to,
uint256 tokenAmount
) external;
function setNewRewardsDistribution(address newRewardsDistribution) external;
}
/// @title IStakingRewards
/// @author StakeDAO Core Team
/// @notice Previous interface with additionnal getters for public variables
interface IStakingRewards is IStakingRewardsFunctions {
function rewardToken() external view returns (IERC20);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract MasterchefMasterToken is ERC20, Ownable {
constructor() ERC20("Masterchef Master Token", "MMT") {
_mint(msg.sender, 1e18);
}
}// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "../interfaces/IGaugeController.sol";
import "../interfaces/ILiquidityGauge.sol";
import "../interfaces/ISdtMiddlemanGauge.sol";
import "../interfaces/IStakingRewards.sol";
import "../interfaces/IMasterchef.sol";
import "./MasterchefMasterToken.sol";
import "../external/AccessControlUpgradeable.sol";
/// @title SdtDistributorEvents
/// @author StakeDAO Core Team
/// @notice All the events used in `SdtDistributor` contract
abstract contract SdtDistributorEvents {
event DelegateGaugeUpdated(address indexed _gaugeAddr, address indexed _delegateGauge);
event DistributionsToggled(bool _distributionsOn);
event GaugeControllerUpdated(address indexed _controller);
event GaugeToggled(address indexed gaugeAddr, bool newStatus);
event InterfaceKnownToggled(address indexed _delegateGauge, bool _isInterfaceKnown);
event RateUpdated(uint256 _newRate);
event Recovered(address indexed tokenAddress, address indexed to, uint256 amount);
event RewardDistributed(address indexed gaugeAddr, uint256 sdtDistributed, uint256 lastMasterchefPull);
event UpdateMiningParameters(uint256 time, uint256 rate, uint256 supply);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./SdtDistributorEvents.sol";
/// @title SdtDistributorV2
/// @notice Earn from Masterchef SDT and distribute it to gauges
contract SdtDistributorV2 is ReentrancyGuardUpgradeable, AccessControlUpgradeable, SdtDistributorEvents {
using SafeERC20 for IERC20;
////////////////////////////////////////////////////////////////
/// --- CONSTANTS
///////////////////////////////////////////////////////////////
/// @notice Accounting
uint256 public constant BASE_UNIT = 10_000;
/// @notice Address of the SDT token given as a reward.
IERC20 public constant rewardToken = IERC20(0x73968b9a57c6E53d41345FD57a6E6ae27d6CDB2F);
/// @notice Address of the masterchef.
IMasterchef public constant masterchef = IMasterchef(0xfEA5E213bbD81A8a94D0E1eDB09dBD7CEab61e1c);
/// @notice Role for governors only.
bytes32 public constant GOVERNOR_ROLE = keccak256("GOVERNOR_ROLE");
/// @notice Role for the guardian
bytes32 public constant GUARDIAN_ROLE = keccak256("GUARDIAN_ROLE");
////////////////////////////////////////////////////////////////
/// --- STORAGE SLOTS
///////////////////////////////////////////////////////////////
/// @notice Time between SDT Harvest.
uint256 public timePeriod;
/// @notice Address of the token that will be deposited in masterchef.
IERC20 public masterchefToken;
/// @notice Address of the `GaugeController` contract.
IGaugeController public controller;
/// @notice Address responsible for pulling rewards of type >= 2 gauges and distributing it to the
/// associated contracts if there is not already an address delegated for this specific contract.
address public delegateGauge;
/// @notice Whether SDT distribution through this contract is on or no.
bool public distributionsOn;
/// @notice Maps the address of a type >= 2 gauge to a delegate address responsible
/// for giving rewards to the actual gauge.
mapping(address => address) public delegateGauges;
/// @notice Maps the address of a gauge to whether it was killed or not
/// A gauge killed in this contract cannot receive any rewards.
mapping(address => bool) public killedGauges;
/// @notice Maps the address of a gauge delegate to whether this delegate supports the `notifyReward` interface
/// and is therefore built for automation.
mapping(address => bool) public isInterfaceKnown;
/// @notice Masterchef PID
uint256 public masterchefPID;
/// @notice Timestamp of the last pull from masterchef.
uint256 public lastMasterchefPull;
/// @notice Maps the timestamp of pull action to the amount of SDT that pulled.
mapping(uint256 => uint256) public pulls; // day => SDT amount
/// @notice Maps the timestamp of last pull to the gauge addresses then keeps the data if particular gauge paid in the last pull.
mapping(uint256 => mapping(address => bool)) public isGaugePaid;
/// @notice Incentive for caller.
uint256 public claimerFee;
/// @notice Number of days to go through for past distributing.
uint256 public lookPastDays;
////////////////////////////////////////////////////////////////
/// --- INITIALIZATION LOGIC
///////////////////////////////////////////////////////////////
/// @notice Initialize function
/// @param _controller gauge controller to manage votes
/// @param _governor governor address
/// @param _guardian guardian address
/// @param _delegateGauge delegate gauge address
function initialize(
address _controller,
address _governor,
address _guardian,
address _delegateGauge
) external initializer {
require(_controller != address(0) && _guardian != address(0) && _governor != address(0), "0");
controller = IGaugeController(_controller);
delegateGauge = _delegateGauge;
masterchefToken = IERC20(address(new MasterchefMasterToken()));
distributionsOn = false;
timePeriod = 3600 * 24; // One day in seconds
lookPastDays = 45; // for past 45 days check
_setRoleAdmin(GOVERNOR_ROLE, GOVERNOR_ROLE);
_setRoleAdmin(GUARDIAN_ROLE, GOVERNOR_ROLE);
_setupRole(GUARDIAN_ROLE, _guardian);
_setupRole(GOVERNOR_ROLE, _governor);
_setupRole(GUARDIAN_ROLE, _governor);
}
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() initializer {}
/// @notice Initialize the masterchef depositing the master token
/// @param _pid pool id to deposit the token
function initializeMasterchef(uint256 _pid) external onlyRole(GOVERNOR_ROLE) {
masterchefPID = _pid;
masterchefToken.approve(address(masterchef), 1e18);
masterchef.deposit(_pid, 1e18);
}
////////////////////////////////////////////////////////////////
/// --- DISTRIBUTION LOGIC
///////////////////////////////////////////////////////////////
/// @notice Distribute SDT to Gauges
/// @param gaugeAddr Address of the gauge to distribute.
function distribute(address gaugeAddr) external nonReentrant {
_distribute(gaugeAddr);
}
/// @notice Distribute SDT to Multiple Gauges
/// @param gaugeAddr Array of addresses of the gauge to distribute.
function distributeMulti(address[] calldata gaugeAddr) public nonReentrant {
uint256 length = gaugeAddr.length;
for (uint256 i; i < length; i++) {
_distribute(gaugeAddr[i]);
}
}
/// @notice Internal implementation of distribute logic.
/// @param gaugeAddr Address of the gauge to distribute rewards to
function _distribute(address gaugeAddr) internal {
require(distributionsOn, "not allowed");
(bool success, bytes memory result) = address(controller).call(
abi.encodeWithSignature("gauge_types(address)", gaugeAddr)
);
if (!success || killedGauges[gaugeAddr]) {
return;
}
int128 gaugeType = abi.decode(result, (int128));
// Rounded to beginning of the day -> 00:00 UTC
uint256 roundedTimestamp = (block.timestamp / 1 days) * 1 days;
uint256 totalDistribute;
if (block.timestamp > lastMasterchefPull + timePeriod) {
uint256 sdtBefore = rewardToken.balanceOf(address(this));
_pullSDT();
pulls[roundedTimestamp] = rewardToken.balanceOf(address(this)) - sdtBefore;
lastMasterchefPull = roundedTimestamp;
}
// check past n days
for (uint256 i; i < lookPastDays; i++) {
uint256 currentTimestamp = roundedTimestamp - (i * 86_400);
if (pulls[currentTimestamp] > 0) {
bool isPaid = isGaugePaid[currentTimestamp][gaugeAddr];
if (isPaid) {
break;
}
// Retrieve the amount pulled from Masterchef at the given timestamp.
uint256 sdtBalance = pulls[currentTimestamp];
uint256 gaugeRelativeWeight;
if (i == 0) {
// Makes sure the weight is checkpointed. Also returns the weight.
gaugeRelativeWeight = controller.gauge_relative_weight_write(gaugeAddr, currentTimestamp);
} else {
gaugeRelativeWeight = controller.gauge_relative_weight(gaugeAddr, currentTimestamp);
}
uint256 sdtDistributed = (sdtBalance * gaugeRelativeWeight) / 1e18;
totalDistribute += sdtDistributed;
isGaugePaid[currentTimestamp][gaugeAddr] = true;
}
}
if (totalDistribute > 0) {
if (gaugeType == 1) {
rewardToken.safeTransfer(gaugeAddr, totalDistribute);
IStakingRewards(gaugeAddr).notifyRewardAmount(totalDistribute);
} else if (gaugeType >= 2) {
// If it is defined, we use the specific delegate attached to the gauge
address delegate = delegateGauges[gaugeAddr];
if (delegate == address(0)) {
// If not, we check if a delegate common to all gauges with type >= 2 can be used
delegate = delegateGauge;
}
if (delegate != address(0)) {
// In the case where the gauge has a delegate (specific or not), then rewards are transferred to this gauge
rewardToken.safeTransfer(delegate, totalDistribute);
// If this delegate supports a specific interface, then rewards sent are notified through this
// interface
if (isInterfaceKnown[delegate]) {
ISdtMiddlemanGauge(delegate).notifyReward(gaugeAddr, totalDistribute);
}
} else {
rewardToken.safeTransfer(gaugeAddr, totalDistribute);
}
} else {
ILiquidityGauge(gaugeAddr).deposit_reward_token(address(rewardToken), totalDistribute);
}
emit RewardDistributed(gaugeAddr, totalDistribute, lastMasterchefPull);
}
}
/// @notice Internal function to pull SDT from the MasterChef
function _pullSDT() internal {
masterchef.withdraw(masterchefPID, 0);
}
////////////////////////////////////////////////////////////////
/// --- RESTRICTIVE FUNCTIONS
///////////////////////////////////////////////////////////////
/// @notice Sets the distribution state (on/off)
/// @param _state new distribution state
function setDistribution(bool _state) external onlyRole(GOVERNOR_ROLE) {
distributionsOn = _state;
}
/// @notice Sets a new gauge controller
/// @param _controller Address of the new gauge controller
function setGaugeController(address _controller) external onlyRole(GOVERNOR_ROLE) {
require(_controller != address(0), "0");
controller = IGaugeController(_controller);
emit GaugeControllerUpdated(_controller);
}
/// @notice Sets a new delegate gauge for pulling rewards of a type >= 2 gauges or of all type >= 2 gauges
/// @param gaugeAddr Gauge to change the delegate of
/// @param _delegateGauge Address of the new gauge delegate related to `gaugeAddr`
/// @param toggleInterface Whether we should toggle the fact that the `_delegateGauge` is built for automation or not
/// @dev This function can be used to remove delegating or introduce the pulling of rewards to a given address
/// @dev If `gaugeAddr` is the zero address, this function updates the delegate gauge common to all gauges with type >= 2
/// @dev The `toggleInterface` parameter has been added for convenience to save one transaction when adding a gauge delegate
/// which supports the `notifyReward` interface
function setDelegateGauge(
address gaugeAddr,
address _delegateGauge,
bool toggleInterface
) external onlyRole(GOVERNOR_ROLE) {
if (gaugeAddr != address(0)) {
delegateGauges[gaugeAddr] = _delegateGauge;
} else {
delegateGauge = _delegateGauge;
}
emit DelegateGaugeUpdated(gaugeAddr, _delegateGauge);
if (toggleInterface) {
_toggleInterfaceKnown(_delegateGauge);
}
}
/// @notice Toggles the status of a gauge to either killed or unkilled
/// @param gaugeAddr Gauge to toggle the status of
/// @dev It is impossible to kill a gauge in the `GaugeController` contract, for this reason killing of gauges
/// takes place in the `SdtDistributor` contract
/// @dev This means that people could vote for a gauge in the gauge controller contract but that rewards are not going
/// to be distributed to it in the end: people would need to remove their weights on the gauge killed to end the diminution
/// in rewards
/// @dev In the case of a gauge being killed, this function resets the timestamps at which this gauge has been approved and
/// disapproves the gauge to spend the token
/// @dev It should be cautiously called by governance as it could result in less SDT overall rewards than initially planned
/// if people do not remove their voting weights to the killed gauge
function toggleGauge(address gaugeAddr) external onlyRole(GOVERNOR_ROLE) {
bool gaugeKilledMem = killedGauges[gaugeAddr];
if (!gaugeKilledMem) {
rewardToken.safeApprove(gaugeAddr, 0);
}
killedGauges[gaugeAddr] = !gaugeKilledMem;
emit GaugeToggled(gaugeAddr, !gaugeKilledMem);
}
/// @notice Notifies that the interface of a gauge delegate is known or has changed
/// @param _delegateGauge Address of the gauge to change
/// @dev Gauge delegates that are built for automation should be toggled
function toggleInterfaceKnown(address _delegateGauge) external onlyRole(GUARDIAN_ROLE) {
_toggleInterfaceKnown(_delegateGauge);
}
/// @notice Toggles the fact that a gauge delegate can be used for automation or not and therefore supports
/// the `notifyReward` interface
/// @param _delegateGauge Address of the gauge to change
function _toggleInterfaceKnown(address _delegateGauge) internal {
bool isInterfaceKnownMem = isInterfaceKnown[_delegateGauge];
isInterfaceKnown[_delegateGauge] = !isInterfaceKnownMem;
emit InterfaceKnownToggled(_delegateGauge, !isInterfaceKnownMem);
}
/// @notice Gives max approvement to the gauge
/// @param gaugeAddr Address of the gauge
function approveGauge(address gaugeAddr) external onlyRole(GOVERNOR_ROLE) {
rewardToken.safeApprove(gaugeAddr, type(uint256).max);
}
/// @notice Set the time period to pull SDT from Masterchef
/// @param _timePeriod new timePeriod value in seconds
function setTimePeriod(uint256 _timePeriod) external onlyRole(GOVERNOR_ROLE) {
require(_timePeriod >= 1 days, "TOO_LOW");
timePeriod = _timePeriod;
}
function setClaimerFee(uint256 _newFee) external onlyRole(GOVERNOR_ROLE) {
require(_newFee <= BASE_UNIT, "TOO_HIGH");
claimerFee = _newFee;
}
/// @notice Set the how many days we should look back for reward distribution
/// @param _newLookPastDays new value for how many days we should look back
function setLookPastDays(uint256 _newLookPastDays) external onlyRole(GOVERNOR_ROLE) {
lookPastDays = _newLookPastDays;
}
/// @notice Withdraws ERC20 tokens that could accrue on this contract
/// @param tokenAddress Address of the ERC20 token to withdraw
/// @param to Address to transfer to
/// @param amount Amount to transfer
/// @dev Added to support recovering LP Rewards and other mistaken tokens
/// from other systems to be distributed to holders
/// @dev This function could also be used to recover SDT tokens in case the rate got smaller
function recoverERC20(
address tokenAddress,
address to,
uint256 amount
) external onlyRole(GOVERNOR_ROLE) {
IERC20(tokenAddress).safeTransfer(to, amount);
emit Recovered(tokenAddress, to, amount);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "../interfaces/ILocker.sol";
contract BaseStrategy {
/* ========== STATE VARIABLES ========== */
ILocker public locker;
address public governance;
address public rewardsReceiver;
address public veSDTFeeProxy;
address public vaultGaugeFactory;
uint256 public constant BASE_FEE = 10_000;
mapping(address => address) public gauges;
mapping(address => bool) public vaults;
mapping(address => uint256) public perfFee;
mapping(address => address) public multiGauges;
mapping(address => uint256) public accumulatorFee; // gauge -> fee
mapping(address => uint256) public claimerRewardFee; // gauge -> fee
mapping(address => uint256) public veSDTFee; // gauge -> fee
/* ========== EVENTS ========== */
event Deposited(address _gauge, address _token, uint256 _amount);
event Withdrawn(address _gauge, address _token, uint256 _amount);
event Claimed(address _gauge, address _token, uint256 _amount);
event RewardReceiverSet(address _gauge, address _receiver);
event VaultToggled(address _vault, bool _newState);
event GaugeSet(address _gauge, address _token);
/* ========== MODIFIERS ========== */
modifier onlyGovernance() {
require(msg.sender == governance, "!governance");
_;
}
modifier onlyApprovedVault() {
require(vaults[msg.sender], "!approved vault");
_;
}
modifier onlyGovernanceOrFactory() {
require(msg.sender == governance || msg.sender == vaultGaugeFactory, "!governance && !factory");
_;
}
/* ========== CONSTRUCTOR ========== */
constructor(
ILocker _locker,
address _governance,
address _receiver
) {
locker = _locker;
governance = _governance;
rewardsReceiver = _receiver;
}
/* ========== MUTATIVE FUNCTIONS ========== */
function deposit(address _token, uint256 _amount) external virtual onlyApprovedVault {}
function withdraw(address _token, uint256 _amount) external virtual onlyApprovedVault {}
function claim(address _gauge) external virtual {}
function toggleVault(address _vault) external virtual onlyGovernanceOrFactory {}
function setGauge(address _token, address _gauge) external virtual onlyGovernanceOrFactory {}
function setMultiGauge(address _gauge, address _multiGauge) external virtual onlyGovernanceOrFactory {}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./BaseStrategy.sol";
import "../accumulator/CurveAccumulator.sol";
import "../interfaces/ILiquidityGauge.sol";
import "../interfaces/IMultiRewards.sol";
import "../staking/SdtDistributorV2.sol";
contract CurveStrategy is BaseStrategy {
using SafeERC20 for IERC20;
CurveAccumulator public accumulator;
address public sdtDistributor;
address public constant CRV_FEE_D = 0xA464e6DCda8AC41e03616F95f4BC98a13b8922Dc;
address public constant CRV3 = 0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490;
address public constant CRV_MINTER = 0xd061D61a4d941c39E5453435B6345Dc261C2fcE0;
address public constant CRV = 0xD533a949740bb3306d119CC777fa900bA034cd52;
mapping (address => uint256) public lGaugeType;
struct ClaimerReward {
address rewardToken;
uint256 amount;
}
enum MANAGEFEE {
PERFFEE,
VESDTFEE,
ACCUMULATORFEE,
CLAIMERREWARD
}
event Crv3Claimed(uint256 amount, bool notified);
/* ========== CONSTRUCTOR ========== */
constructor(
ILocker _locker,
address _governance,
address _receiver,
CurveAccumulator _accumulator,
address _veSDTFeeProxy,
address _sdtDistributor
) BaseStrategy(_locker, _governance, _receiver) {
accumulator = _accumulator;
veSDTFeeProxy = _veSDTFeeProxy;
sdtDistributor = _sdtDistributor;
}
/* ========== MUTATIVE FUNCTIONS ========== */
/// @notice function to deposit into a gauge
/// @param _token token address
/// @param _amount amount to deposit
function deposit(address _token, uint256 _amount) external override onlyApprovedVault {
IERC20(_token).transferFrom(msg.sender, address(locker), _amount);
address gauge = gauges[_token];
require(gauge != address(0), "!gauge");
locker.execute(_token, 0, abi.encodeWithSignature("approve(address,uint256)", gauge, 0));
locker.execute(_token, 0, abi.encodeWithSignature("approve(address,uint256)", gauge, _amount));
(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("deposit(uint256)", _amount));
require(success, "Deposit failed!");
emit Deposited(gauge, _token, _amount);
}
/// @notice function to withdraw from a gauge
/// @param _token token address
/// @param _amount amount to withdraw
function withdraw(address _token, uint256 _amount) external override onlyApprovedVault {
uint256 _before = IERC20(_token).balanceOf(address(locker));
address gauge = gauges[_token];
require(gauge != address(0), "!gauge");
(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("withdraw(uint256)", _amount));
require(success, "Transfer failed!");
uint256 _after = IERC20(_token).balanceOf(address(locker));
uint256 _net = _after - _before;
(success, ) = locker.execute(_token, 0, abi.encodeWithSignature("transfer(address,uint256)", msg.sender, _net));
require(success, "Transfer failed!");
emit Withdrawn(gauge, _token, _amount);
}
/// @notice function to send funds into the related accumulator
/// @param _token token address
/// @param _amount amount to send
function sendToAccumulator(address _token, uint256 _amount) external onlyGovernance {
IERC20(_token).approve(address(accumulator), _amount);
accumulator.depositToken(_token, _amount);
}
/// @notice function to claim the reward
/// @param _token token address
function claim(address _token) external override {
address gauge = gauges[_token];
require(gauge != address(0), "!gauge");
uint256 crvBeforeClaim = IERC20(CRV).balanceOf(address(locker));
// Claim CRV
// within the mint() it calls the user checkpoint
(bool success, ) = locker.execute(
CRV_MINTER,
0,
abi.encodeWithSignature("mint(address)", gauge)
);
require(success, "CRV mint failed!");
uint256 crvMinted = IERC20(CRV).balanceOf(address(locker)) - crvBeforeClaim;
// Send CRV here
(success, ) = locker.execute(
CRV,
0,
abi.encodeWithSignature("transfer(address,uint256)", address(this), crvMinted)
);
require(success, "CRV transfer failed!");
// Distribute CRV
uint256 crvNetRewards = sendFee(gauge, CRV, crvMinted);
IERC20(CRV).approve(multiGauges[gauge], crvNetRewards);
ILiquidityGauge(multiGauges[gauge]).deposit_reward_token(CRV, crvNetRewards);
emit Claimed(gauge, CRV, crvMinted);
// Distribute SDT to the related gauge
SdtDistributorV2(sdtDistributor).distribute(multiGauges[gauge]);
// Claim rewards only for lg type 0 and if there is at least one reward token added
if(lGaugeType[gauge] == 0 && ILiquidityGauge(gauge).reward_tokens(0) != address(0)) {
(success, ) = locker.execute(
gauge, 0, abi.encodeWithSignature("claim_rewards(address,address)", address(locker), address(this))
);
if (!success) {
// Claim on behalf of locker
ILiquidityGauge(gauge).claim_rewards(address(locker));
}
address rewardToken;
uint256 rewardsBalance;
for (uint8 i = 0; i < 8; i++) {
rewardToken = ILiquidityGauge(gauge).reward_tokens(i);
if (rewardToken == address(0)) {
break;
}
if (success) {
rewardsBalance = IERC20(rewardToken).balanceOf(address(this));
} else {
rewardsBalance = IERC20(rewardToken).balanceOf(address(locker));
(success, ) = locker.execute(
rewardToken, 0, abi.encodeWithSignature("transfer(address,uint256)", address(this), rewardsBalance)
);
require(success, "Transfer failed");
}
IERC20(rewardToken).approve(multiGauges[gauge], rewardsBalance);
ILiquidityGauge(multiGauges[gauge]).deposit_reward_token(rewardToken, rewardsBalance);
emit Claimed(gauge, rewardToken, rewardsBalance);
}
}
}
function sendFee(address _gauge, address _rewardToken, uint256 _rewardsBalance) internal returns(uint256) {
// calculate the amount for each fee recipient
uint256 multisigFee = (_rewardsBalance * perfFee[_gauge]) / BASE_FEE;
uint256 accumulatorPart = (_rewardsBalance * accumulatorFee[_gauge]) / BASE_FEE;
uint256 veSDTPart = (_rewardsBalance * veSDTFee[_gauge]) / BASE_FEE;
uint256 claimerPart = (_rewardsBalance * claimerRewardFee[_gauge]) / BASE_FEE;
// send
IERC20(_rewardToken).approve(address(accumulator), accumulatorPart);
accumulator.depositToken(_rewardToken, accumulatorPart);
IERC20(_rewardToken).transfer(rewardsReceiver, multisigFee);
IERC20(_rewardToken).transfer(veSDTFeeProxy, veSDTPart);
IERC20(_rewardToken).transfer(msg.sender, claimerPart);
return _rewardsBalance - multisigFee - accumulatorPart - veSDTPart - claimerPart;
}
/// @notice function to claim 3crv every week from the curve Fee Distributor
/// @param _notify choose if claim or claim and notify the amount to the related gauge
function claim3Crv(bool _notify) external {
// Claim 3crv from the curve fee Distributor
// It will send 3crv to the crv locker
bool success;
(success, ) = locker.execute(CRV_FEE_D, 0, abi.encodeWithSignature("claim()"));
require(success, "3crv claim failed");
// Send 3crv from the locker to the accumulator
uint256 amountToSend = IERC20(CRV3).balanceOf(address(locker));
require(amountToSend > 0, "nothing claimed");
(success, ) = locker.execute(
CRV3,
0,
abi.encodeWithSignature("transfer(address,uint256)", address(accumulator), amountToSend)
);
require(success, "3crv transfer failed");
if (_notify) {
accumulator.notifyAll();
}
emit Crv3Claimed(amountToSend, _notify);
}
/// @notice function to toggle a vault
/// @param _vault vault address
function toggleVault(address _vault) external override onlyGovernanceOrFactory {
require(_vault != address(0), "zero address");
vaults[_vault] = !vaults[_vault];
emit VaultToggled(_vault, vaults[_vault]);
}
/// @notice function to set a gauge type
/// @param _gauge gauge address
/// @param _gaugeType type of gauge
function setLGtype(address _gauge, uint256 _gaugeType) external onlyGovernanceOrFactory {
lGaugeType[_gauge] = _gaugeType;
}
/// @notice function to set a new gauge
/// It permits to set it as address(0), for disabling it
/// in case of migration
/// @param _token token address
/// @param _gauge gauge address
function setGauge(address _token, address _gauge) external override onlyGovernanceOrFactory {
require(_token != address(0), "zero address");
// Set new gauge
gauges[_token] = _gauge;
emit GaugeSet(_gauge, _token);
}
/// @notice function to migrate any LP to another strategy contract (hard migration)
/// @param _token token address
function migrateLP(address _token) external onlyApprovedVault {
require(gauges[_token] != address(0), "not existent gauge");
migrate(_token);
}
/// @notice function to migrate any LP, it sends them to the vault
/// @param _token token address
function migrate(address _token) internal {
address gauge = gauges[_token];
uint256 amount = IERC20(gauge).balanceOf(address(locker));
// Withdraw LPs from the old gauge
(bool success, ) = locker.execute(gauge, 0, abi.encodeWithSignature("withdraw(uint256)", amount));
require(success, "Withdraw failed!");
// Transfer LPs to the approved vault
(success, ) = locker.execute(_token, 0, abi.encodeWithSignature("transfer(address,uint256)", msg.sender, amount));
require(success, "Transfer failed!");
}
/// @notice function to set a multi gauge
/// @param _gauge gauge address
/// @param _multiGauge multi gauge address
function setMultiGauge(address _gauge, address _multiGauge) external override onlyGovernanceOrFactory {
require(_gauge != address(0), "zero address");
require(_multiGauge != address(0), "zero address");
multiGauges[_gauge] = _multiGauge;
}
/// @notice function to set a new veSDTProxy
/// @param _newVeSDTProxy veSdtProxy address
function setVeSDTProxy(address _newVeSDTProxy) external onlyGovernance {
require(_newVeSDTProxy != address(0), "zero address");
veSDTFeeProxy = _newVeSDTProxy;
}
/// @notice function to set a new accumulator
/// @param _newAccumulator accumulator address
function setAccumulator(address _newAccumulator) external onlyGovernance {
require(_newAccumulator != address(0), "zero address");
accumulator = CurveAccumulator(_newAccumulator);
}
/// @notice function to set a new reward receiver
/// @param _newRewardsReceiver reward receiver address
function setRewardsReceiver(address _newRewardsReceiver) external onlyGovernance {
require(_newRewardsReceiver != address(0), "zero address");
rewardsReceiver = _newRewardsReceiver;
}
/// @notice function to set a new governance address
/// @param _newGovernance governance address
function setGovernance(address _newGovernance) external onlyGovernance {
require(_newGovernance != address(0), "zero address");
governance = _newGovernance;
}
function setVaultGaugeFactory(address _newVaultGaugeFactory) external onlyGovernance {
require(_newVaultGaugeFactory != address(0), "zero address");
vaultGaugeFactory = _newVaultGaugeFactory;
}
/// @notice function to set new fees
/// @param _manageFee manageFee
/// @param _gauge gauge address
/// @param _newFee new fee to set
function manageFee(
MANAGEFEE _manageFee,
address _gauge,
uint256 _newFee
) external onlyGovernanceOrFactory {
require(_gauge != address(0), "zero address");
if (_manageFee == MANAGEFEE.PERFFEE) {
// 0
perfFee[_gauge] = _newFee;
} else if (_manageFee == MANAGEFEE.VESDTFEE) {
// 1
veSDTFee[_gauge] = _newFee;
} else if (_manageFee == MANAGEFEE.ACCUMULATORFEE) {
//2
accumulatorFee[_gauge] = _newFee;
} else if (_manageFee == MANAGEFEE.CLAIMERREWARD) {
// 3
claimerRewardFee[_gauge] = _newFee;
}
require(
perfFee[_gauge] +
veSDTFee[_gauge] +
accumulatorFee[_gauge] +
claimerRewardFee[_gauge]
<= BASE_FEE, "fee to high"
);
}
/// @notice execute a function
/// @param _to Address to sent the value to
/// @param _value Value to be sent
/// @param _data Call function data
function execute(
address _to,
uint256 _value,
bytes calldata _data
) external onlyGovernance returns (bool, bytes memory) {
(bool success, bytes memory result) = _to.call{ value: _value }(_data);
return (success, result);
}
}{
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenReward","type":"address"},{"internalType":"address","name":"_gauge","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Rescued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGauge","type":"address"},{"indexed":false,"internalType":"address","name":"newGauge","type":"address"}],"name":"GaugeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"GovernanceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldLocker","type":"address"},{"indexed":false,"internalType":"address","name":"newLocker","type":"address"}],"name":"LockerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"address","name":"tokenReward","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountNotified","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimerFee","type":"uint256"}],"name":"RewardNotified","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldDistributor","type":"address"},{"indexed":false,"internalType":"address","name":"newDistributor","type":"address"}],"name":"SdtDistributorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTr","type":"address"},{"indexed":false,"internalType":"address","name":"newTr","type":"address"}],"name":"TokenRewardSet","type":"event"},{"inputs":[],"name":"CRV","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CRV3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newStrategy","type":"address"}],"name":"changeStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gauge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"notify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"notifyAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenReward","type":"address"}],"name":"notifyAllExtraReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"}],"name":"notifyAllExtraReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"notifyExtraReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenReward","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"notifyExtraReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sdtDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimerFee","type":"uint256"}],"name":"setClaimerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gauge","type":"address"}],"name":"setGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_locker","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sdtDistributor","type":"address"}],"name":"setSdtDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenReward","type":"address"}],"name":"setTokenReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenReward","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052600680546001600160a01b0319167320f1d4fed24073a9b9d388afa2735ac91f079ed61790553480156200003757600080fd5b5060405162001b6538038062001b658339810160408190526200005a91620000b8565b600280546001600160a01b039384166001600160a01b03199182161790915560038054939092169281169290921790556000805490911633179055620000f0565b80516001600160a01b0381168114620000b357600080fd5b919050565b60008060408385031215620000cc57600080fd5b620000d7836200009b565b9150620000e7602084016200009b565b90509250929050565b611a6580620001006000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063895552f3116100c3578063d2da847f1161007c578063d2da847f146102e2578063d7b96d4e146102f5578063e02dd6ec14610308578063e5605e311461031b578063fc0f372e14610323578063fd161f901461033a57600080fd5b8063895552f314610268578063945c91421461027b57806398d078b414610296578063a6f19c84146102a9578063a8c62e76146102bc578063ab033ea9146102cf57600080fd5b806355a68ed31161011557806355a68ed3146101f65780635aa6e675146102095780636615b4391461021c5780636e66f6e91461022f57806377662ffc146102425780637a9024bd1461025557600080fd5b806315f5c3001461015d578063171060ec1461018d5780632e1dc4b8146101a25780632f084a4c146101b5578063338b5dea146101c8578063510b78d0146101db575b600080fd5b600454610170906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101a061019b36600461167a565b61034d565b005b6101a06101b036600461167a565b61040f565b6101a06101c336600461167a565b6104c8565b6101a06101d6366004611697565b610581565b610170736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b6101a061020436600461167a565b610620565b600054610170906001600160a01b031681565b6101a061022a366004611747565b6106d9565b600254610170906001600160a01b031681565b6101a06102503660046116c3565b61077e565b6101a061026336600461167a565b61086d565b6101a061027636600461167a565b6108b9565b61017073d533a949740bb3306d119cc777fa900ba034cd5281565b6101a06102a4366004611869565b610975565b600354610170906001600160a01b031681565b600654610170906001600160a01b031681565b6101a06102dd36600461167a565b6109f5565b6101a06102f0366004611705565b610aae565b600154610170906001600160a01b031681565b6101a0610316366004611869565b610b14565b6101a0610b43565b61032c60055481565b604051908152602001610184565b6101a0610348366004611697565b610ce5565b6000546001600160a01b031633146103805760405162461bcd60e51b8152600401610377906118ea565b60405180910390fd5b6001600160a01b0381166103a65760405162461bcd60e51b815260040161037790611908565b600154604080516001600160a01b03928316815291831660208301527f22883a651a534542e91bf9982ee9ea7cab58c8ec358f711a6d26fb9b1fc66404910160405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104395760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b03811661045f5760405162461bcd60e51b815260040161037790611908565b600254604080516001600160a01b03928316815291831660208301527f9dbebdcff3a9daf4cacfb2cac05d9ac155f3f9721123aa2e67f5fa445001593b910160405180910390a1600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104f25760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b0381166105185760405162461bcd60e51b815260040161037790611908565b600454604080516001600160a01b03928316815291831660208301527f7207dc6268916e6e994a80827760eba6fdaffdd27717dde24cffac6b25a7b051910160405180910390a1600480546001600160a01b0319166001600160a01b0392909216919091179055565b600081116105c55760405162461bcd60e51b8152602060048201526011602482015270073657420616e20616d6f756e74203e203607c1b6044820152606401610377565b6105da6001600160a01b038316333084610d19565b604080516001600160a01b0384168152602081018390527fbc7c8a4d8049a3f99a02f2a20640c206a2e4d3f2fa54fd20da9f01fda3620cda910160405180910390a15050565b6000546001600160a01b0316331461064a5760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b0381166106705760405162461bcd60e51b815260040161037790611908565b600354604080516001600160a01b03928316815291831660208301527f815454f47dc7631dca873f265966d1554a22d7bfb87c63ef99d9a5cdb42af530910160405180910390a1600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107035760405162461bcd60e51b8152600401610377906118ea565b61077084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808802828101820190935287825290935087925086918291850190849080828437600092019190915250610d8492505050565b610778610ddd565b50505050565b6000546001600160a01b031633146107a85760405162461bcd60e51b8152600401610377906118ea565b600082116107ec5760405162461bcd60e51b8152602060048201526011602482015270073657420616e20616d6f756e74203e203607c1b6044820152606401610377565b6001600160a01b0381166108125760405162461bcd60e51b815260040161037790611908565b6108266001600160a01b0384168284610e4f565b604080516001600160a01b0385168152602081018490527f517b987a19eede59a32f4e7dd466dee9bdf6446b24a501bdab5b60c5ef6747bf910160405180910390a1505050565b6000546001600160a01b031633146108975760405162461bcd60e51b8152600401610377906118ea565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108e35760405162461bcd60e51b8152600401610377906118ea565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561092557600080fd5b505afa158015610939573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095d9190611882565b90506109698282610e84565b610971610ddd565b5050565b600654604051630b18b68560e31b8152600060048201526001600160a01b03909116906358c5b42890602401600060405180830381600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b50506002546109ea92506001600160a01b0316905082610e84565b6109f2610ddd565b50565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b038116610a455760405162461bcd60e51b815260040161037790611908565b600054604080516001600160a01b03928316815291831660208301527f1f0197ebb487f4765d78b41dfb879aa28ddc72d049449d1fd6cd6272a880b86d910160405180910390a1600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ad85760405162461bcd60e51b8152600401610377906118ea565b6109698282808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506112f092505050565b6000546001600160a01b03163314610b3e5760405162461bcd60e51b8152600401610377906118ea565b600555565b600654604051630b18b68560e31b8152600060048201526001600160a01b03909116906358c5b42890602401600060405180830381600087803b158015610b8957600080fd5b505af1158015610b9d573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015260009250736c3f90f043a72fa612cbac8115ee7e52bde6e49091506370a082319060240160206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c269190611882565b6040516370a0823160e01b815230600482015290915060009073d533a949740bb3306d119cc777fa900ba034cd52906370a082319060240160206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cae9190611882565b600254909150610cc7906001600160a01b031683610e84565b61096973d533a949740bb3306d119cc777fa900ba034cd5282610e84565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b8152600401610377906118ea565b6109698282610e84565b6040516001600160a01b03808516602483015283166044820152606481018290526107789085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526113c9565b815160005b8181101561077857610dcd848281518110610da657610da6611a04565b6020026020010151848381518110610dc057610dc0611a04565b6020026020010151610e84565b610dd6816119d3565b9050610d89565b6004546001600160a01b031615610e4d57600480546003546040516363453ae160e01b81526001600160a01b039182169381019390935216906363453ae190602401600060405180830381600087803b158015610e3957600080fd5b505af1158015610778573d6000803e3d6000fd5b565b6040516001600160a01b038316602482015260448101829052610e7f90849063a9059cbb60e01b90606401610d4d565b505050565b6003546001600160a01b0316610ecc5760405162461bcd60e51b815260206004820152600d60248201526c19d85d59d9481b9bdd081cd95d609a1b6044820152606401610377565b80610ed5575050565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1757600080fd5b505afa158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f9190611882565b905081811015610f955760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840dcdee840cadcdeeaced607b1b6044820152606401610377565b600354604051632474e32f60e11b81526001600160a01b038581166004830152309216906348e9c65e9060240160c06040518083038186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101291906117d5565b602001516001600160a01b03161415610e7f576000612710600554846110389190611971565b611042919061194f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0385169063a9059cbb90604401602060405180830381600087803b15801561108d57600080fd5b505af11580156110a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c591906117b3565b506110d08184611990565b60035460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291945085169063095ea7b390604401602060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115891906117b3565b506003546040516393f7aa6760e01b81526001600160a01b03868116600483015260248201869052909116906393f7aa6790604401600060405180830381600087803b1580156111a757600080fd5b505af11580156111bb573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092506001600160a01b03871691506370a082319060240160206040518083038186803b15801561120157600080fd5b505afa158015611215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112399190611882565b90506112458285611937565b61124f8285611990565b146112945760405162461bcd60e51b81526020600482015260156024820152741ddc9bdb99c8185b5bdd5b9d081b9bdd1a599a5959605a1b6044820152606401610377565b600354604080516001600160a01b03928316815291871660208301528101859052606081018390527fe45a746d5e5fd63b769b1702e2932033d4f740729d525e0eef09db02d659bc2e9060800160405180910390a15050505050565b8051600090815b818110156107785783818151811061131157611311611a04565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561135c57600080fd5b505afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190611882565b92506113b98482815181106113ab576113ab611a04565b602002602001015184610e84565b6113c2816119d3565b90506112f7565b600061141e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661149b9092919063ffffffff16565b805190915015610e7f578080602001905181019061143c91906117b3565b610e7f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610377565b60606114aa84846000856114b4565b90505b9392505050565b6060824710156115155760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610377565b6001600160a01b0385163b61156c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610377565b600080866001600160a01b03168587604051611588919061189b565b60006040518083038185875af1925050503d80600081146115c5576040519150601f19603f3d011682016040523d82523d6000602084013e6115ca565b606091505b50915091506115da8282866115e5565b979650505050505050565b606083156115f45750816114ad565b8251156116045782518084602001fd5b8160405162461bcd60e51b815260040161037791906118b7565b805161162981611a1a565b919050565b60008083601f84011261164057600080fd5b50813567ffffffffffffffff81111561165857600080fd5b6020830191508360208260051b850101111561167357600080fd5b9250929050565b60006020828403121561168c57600080fd5b81356114ad81611a1a565b600080604083850312156116aa57600080fd5b82356116b581611a1a565b946020939093013593505050565b6000806000606084860312156116d857600080fd5b83356116e381611a1a565b92506020840135915060408401356116fa81611a1a565b809150509250925092565b6000806020838503121561171857600080fd5b823567ffffffffffffffff81111561172f57600080fd5b61173b8582860161162e565b90969095509350505050565b6000806000806040858703121561175d57600080fd5b843567ffffffffffffffff8082111561177557600080fd5b6117818883890161162e565b9096509450602087013591508082111561179a57600080fd5b506117a78782880161162e565b95989497509550505050565b6000602082840312156117c557600080fd5b815180151581146114ad57600080fd5b600060c082840312156117e757600080fd5b60405160c0810181811067ffffffffffffffff8211171561181857634e487b7160e01b600052604160045260246000fd5b6040526118248361161e565b81526118326020840161161e565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201528091505092915050565b60006020828403121561187b57600080fd5b5035919050565b60006020828403121561189457600080fd5b5051919050565b600082516118ad8184602087016119a7565b9190910192915050565b60208152600082518060208401526118d68160408501602087016119a7565b601f01601f19169190910160400192915050565b60208082526004908201526310b3b7bb60e11b604082015260600190565b60208082526015908201527463616e2774206265207a65726f206164647265737360581b604082015260600190565b6000821982111561194a5761194a6119ee565b500190565b60008261196c57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561198b5761198b6119ee565b500290565b6000828210156119a2576119a26119ee565b500390565b60005b838110156119c25781810151838201526020016119aa565b838111156107785750506000910152565b60006000198214156119e7576119e76119ee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146109f257600080fdfea2646970667358221220987801ba27038d28230c9c54d5dd2deed1c5dddfdb6a507195226229d386897564736f6c634300080700330000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e4900000000000000000000000007f50786a0b15723d741727882ee99a0bf34e3466
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063895552f3116100c3578063d2da847f1161007c578063d2da847f146102e2578063d7b96d4e146102f5578063e02dd6ec14610308578063e5605e311461031b578063fc0f372e14610323578063fd161f901461033a57600080fd5b8063895552f314610268578063945c91421461027b57806398d078b414610296578063a6f19c84146102a9578063a8c62e76146102bc578063ab033ea9146102cf57600080fd5b806355a68ed31161011557806355a68ed3146101f65780635aa6e675146102095780636615b4391461021c5780636e66f6e91461022f57806377662ffc146102425780637a9024bd1461025557600080fd5b806315f5c3001461015d578063171060ec1461018d5780632e1dc4b8146101a25780632f084a4c146101b5578063338b5dea146101c8578063510b78d0146101db575b600080fd5b600454610170906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101a061019b36600461167a565b61034d565b005b6101a06101b036600461167a565b61040f565b6101a06101c336600461167a565b6104c8565b6101a06101d6366004611697565b610581565b610170736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b6101a061020436600461167a565b610620565b600054610170906001600160a01b031681565b6101a061022a366004611747565b6106d9565b600254610170906001600160a01b031681565b6101a06102503660046116c3565b61077e565b6101a061026336600461167a565b61086d565b6101a061027636600461167a565b6108b9565b61017073d533a949740bb3306d119cc777fa900ba034cd5281565b6101a06102a4366004611869565b610975565b600354610170906001600160a01b031681565b600654610170906001600160a01b031681565b6101a06102dd36600461167a565b6109f5565b6101a06102f0366004611705565b610aae565b600154610170906001600160a01b031681565b6101a0610316366004611869565b610b14565b6101a0610b43565b61032c60055481565b604051908152602001610184565b6101a0610348366004611697565b610ce5565b6000546001600160a01b031633146103805760405162461bcd60e51b8152600401610377906118ea565b60405180910390fd5b6001600160a01b0381166103a65760405162461bcd60e51b815260040161037790611908565b600154604080516001600160a01b03928316815291831660208301527f22883a651a534542e91bf9982ee9ea7cab58c8ec358f711a6d26fb9b1fc66404910160405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104395760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b03811661045f5760405162461bcd60e51b815260040161037790611908565b600254604080516001600160a01b03928316815291831660208301527f9dbebdcff3a9daf4cacfb2cac05d9ac155f3f9721123aa2e67f5fa445001593b910160405180910390a1600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104f25760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b0381166105185760405162461bcd60e51b815260040161037790611908565b600454604080516001600160a01b03928316815291831660208301527f7207dc6268916e6e994a80827760eba6fdaffdd27717dde24cffac6b25a7b051910160405180910390a1600480546001600160a01b0319166001600160a01b0392909216919091179055565b600081116105c55760405162461bcd60e51b8152602060048201526011602482015270073657420616e20616d6f756e74203e203607c1b6044820152606401610377565b6105da6001600160a01b038316333084610d19565b604080516001600160a01b0384168152602081018390527fbc7c8a4d8049a3f99a02f2a20640c206a2e4d3f2fa54fd20da9f01fda3620cda910160405180910390a15050565b6000546001600160a01b0316331461064a5760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b0381166106705760405162461bcd60e51b815260040161037790611908565b600354604080516001600160a01b03928316815291831660208301527f815454f47dc7631dca873f265966d1554a22d7bfb87c63ef99d9a5cdb42af530910160405180910390a1600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107035760405162461bcd60e51b8152600401610377906118ea565b61077084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808802828101820190935287825290935087925086918291850190849080828437600092019190915250610d8492505050565b610778610ddd565b50505050565b6000546001600160a01b031633146107a85760405162461bcd60e51b8152600401610377906118ea565b600082116107ec5760405162461bcd60e51b8152602060048201526011602482015270073657420616e20616d6f756e74203e203607c1b6044820152606401610377565b6001600160a01b0381166108125760405162461bcd60e51b815260040161037790611908565b6108266001600160a01b0384168284610e4f565b604080516001600160a01b0385168152602081018490527f517b987a19eede59a32f4e7dd466dee9bdf6446b24a501bdab5b60c5ef6747bf910160405180910390a1505050565b6000546001600160a01b031633146108975760405162461bcd60e51b8152600401610377906118ea565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108e35760405162461bcd60e51b8152600401610377906118ea565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561092557600080fd5b505afa158015610939573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095d9190611882565b90506109698282610e84565b610971610ddd565b5050565b600654604051630b18b68560e31b8152600060048201526001600160a01b03909116906358c5b42890602401600060405180830381600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b50506002546109ea92506001600160a01b0316905082610e84565b6109f2610ddd565b50565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610377906118ea565b6001600160a01b038116610a455760405162461bcd60e51b815260040161037790611908565b600054604080516001600160a01b03928316815291831660208301527f1f0197ebb487f4765d78b41dfb879aa28ddc72d049449d1fd6cd6272a880b86d910160405180910390a1600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ad85760405162461bcd60e51b8152600401610377906118ea565b6109698282808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506112f092505050565b6000546001600160a01b03163314610b3e5760405162461bcd60e51b8152600401610377906118ea565b600555565b600654604051630b18b68560e31b8152600060048201526001600160a01b03909116906358c5b42890602401600060405180830381600087803b158015610b8957600080fd5b505af1158015610b9d573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015260009250736c3f90f043a72fa612cbac8115ee7e52bde6e49091506370a082319060240160206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c269190611882565b6040516370a0823160e01b815230600482015290915060009073d533a949740bb3306d119cc777fa900ba034cd52906370a082319060240160206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cae9190611882565b600254909150610cc7906001600160a01b031683610e84565b61096973d533a949740bb3306d119cc777fa900ba034cd5282610e84565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b8152600401610377906118ea565b6109698282610e84565b6040516001600160a01b03808516602483015283166044820152606481018290526107789085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526113c9565b815160005b8181101561077857610dcd848281518110610da657610da6611a04565b6020026020010151848381518110610dc057610dc0611a04565b6020026020010151610e84565b610dd6816119d3565b9050610d89565b6004546001600160a01b031615610e4d57600480546003546040516363453ae160e01b81526001600160a01b039182169381019390935216906363453ae190602401600060405180830381600087803b158015610e3957600080fd5b505af1158015610778573d6000803e3d6000fd5b565b6040516001600160a01b038316602482015260448101829052610e7f90849063a9059cbb60e01b90606401610d4d565b505050565b6003546001600160a01b0316610ecc5760405162461bcd60e51b815260206004820152600d60248201526c19d85d59d9481b9bdd081cd95d609a1b6044820152606401610377565b80610ed5575050565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1757600080fd5b505afa158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f9190611882565b905081811015610f955760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840dcdee840cadcdeeaced607b1b6044820152606401610377565b600354604051632474e32f60e11b81526001600160a01b038581166004830152309216906348e9c65e9060240160c06040518083038186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101291906117d5565b602001516001600160a01b03161415610e7f576000612710600554846110389190611971565b611042919061194f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0385169063a9059cbb90604401602060405180830381600087803b15801561108d57600080fd5b505af11580156110a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c591906117b3565b506110d08184611990565b60035460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291945085169063095ea7b390604401602060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115891906117b3565b506003546040516393f7aa6760e01b81526001600160a01b03868116600483015260248201869052909116906393f7aa6790604401600060405180830381600087803b1580156111a757600080fd5b505af11580156111bb573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092506001600160a01b03871691506370a082319060240160206040518083038186803b15801561120157600080fd5b505afa158015611215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112399190611882565b90506112458285611937565b61124f8285611990565b146112945760405162461bcd60e51b81526020600482015260156024820152741ddc9bdb99c8185b5bdd5b9d081b9bdd1a599a5959605a1b6044820152606401610377565b600354604080516001600160a01b03928316815291871660208301528101859052606081018390527fe45a746d5e5fd63b769b1702e2932033d4f740729d525e0eef09db02d659bc2e9060800160405180910390a15050505050565b8051600090815b818110156107785783818151811061131157611311611a04565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561135c57600080fd5b505afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190611882565b92506113b98482815181106113ab576113ab611a04565b602002602001015184610e84565b6113c2816119d3565b90506112f7565b600061141e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661149b9092919063ffffffff16565b805190915015610e7f578080602001905181019061143c91906117b3565b610e7f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610377565b60606114aa84846000856114b4565b90505b9392505050565b6060824710156115155760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610377565b6001600160a01b0385163b61156c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610377565b600080866001600160a01b03168587604051611588919061189b565b60006040518083038185875af1925050503d80600081146115c5576040519150601f19603f3d011682016040523d82523d6000602084013e6115ca565b606091505b50915091506115da8282866115e5565b979650505050505050565b606083156115f45750816114ad565b8251156116045782518084602001fd5b8160405162461bcd60e51b815260040161037791906118b7565b805161162981611a1a565b919050565b60008083601f84011261164057600080fd5b50813567ffffffffffffffff81111561165857600080fd5b6020830191508360208260051b850101111561167357600080fd5b9250929050565b60006020828403121561168c57600080fd5b81356114ad81611a1a565b600080604083850312156116aa57600080fd5b82356116b581611a1a565b946020939093013593505050565b6000806000606084860312156116d857600080fd5b83356116e381611a1a565b92506020840135915060408401356116fa81611a1a565b809150509250925092565b6000806020838503121561171857600080fd5b823567ffffffffffffffff81111561172f57600080fd5b61173b8582860161162e565b90969095509350505050565b6000806000806040858703121561175d57600080fd5b843567ffffffffffffffff8082111561177557600080fd5b6117818883890161162e565b9096509450602087013591508082111561179a57600080fd5b506117a78782880161162e565b95989497509550505050565b6000602082840312156117c557600080fd5b815180151581146114ad57600080fd5b600060c082840312156117e757600080fd5b60405160c0810181811067ffffffffffffffff8211171561181857634e487b7160e01b600052604160045260246000fd5b6040526118248361161e565b81526118326020840161161e565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201528091505092915050565b60006020828403121561187b57600080fd5b5035919050565b60006020828403121561189457600080fd5b5051919050565b600082516118ad8184602087016119a7565b9190910192915050565b60208152600082518060208401526118d68160408501602087016119a7565b601f01601f19169190910160400192915050565b60208082526004908201526310b3b7bb60e11b604082015260600190565b60208082526015908201527463616e2774206265207a65726f206164647265737360581b604082015260600190565b6000821982111561194a5761194a6119ee565b500190565b60008261196c57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561198b5761198b6119ee565b500290565b6000828210156119a2576119a26119ee565b500390565b60005b838110156119c25781810151838201526020016119aa565b838111156107785750506000910152565b60006000198214156119e7576119e76119ee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146109f257600080fdfea2646970667358221220987801ba27038d28230c9c54d5dd2deed1c5dddfdb6a507195226229d386897564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e4900000000000000000000000007f50786a0b15723d741727882ee99a0bf34e3466
-----Decoded View---------------
Arg [0] : _tokenReward (address): 0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490
Arg [1] : _gauge (address): 0x7f50786A0b15723D741727882ee99a0BF34e3466
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e490
Arg [1] : 0000000000000000000000007f50786a0b15723d741727882ee99a0bf34e3466
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.