diff --git a/contracts/test/TestSlot.sol b/contracts/test/TestSlot.sol new file mode 100644 index 0000000..c8ae2f5 --- /dev/null +++ b/contracts/test/TestSlot.sol @@ -0,0 +1,39 @@ +// SPDX-License-Identifier: Apache 2.0 +pragma solidity 0.8.19; +contract TestSlot { + // 0 + uint public count = 123; + // 1.1 + address public owner = msg.sender; + // 1.2 + bool public isTrue = true; + // 1.3 + uint16 public u16 = 31; + // 2 + bytes32 private password; + uint public constant someConst = 123; + // 3, 4, 5 + bytes32[3] public data; + struct User { + uint id; + bytes32 password; + } + // 6: length of users + User[] private users; + // 7: empty, + mapping(uint => User) private idToUser; + constructor(bytes32 _password) { + password = _password; + } + function addUser(bytes32 _password) public { + User memory user = User({id: users.length, password: _password}); + users.push(user); + idToUser[user.id] = user; + } + function getArrayLocation(uint slot, uint index, uint elementSize) public pure returns (uint) { + return uint(keccak256(abi.encodePacked(slot))) + (index * elementSize); + } + function getMapLocation(uint slot, uint key) public pure returns (uint) { + return uint(keccak256(abi.encodePacked(key, slot))); + } +} diff --git a/deploy/0_deploy_test.ts b/deploy/0_deploy_test.ts new file mode 100644 index 0000000..506418f --- /dev/null +++ b/deploy/0_deploy_test.ts @@ -0,0 +1,20 @@ +import { HardhatRuntimeEnvironment } from "hardhat/types"; +import { DeployFunction } from "hardhat-deploy/types"; +import { updateArray } from "../scripts/utils" + +const deployNFTForGame: DeployFunction = + async function (hre: HardhatRuntimeEnvironment) { + const provider = hre.ethers.provider; + const from = await (await provider.getSigner()).getAddress(); + const ret = await hre.deployments.deploy("TestSlot", { + from, + args: ['0xd948549711a1f1198851e8eb8b4857a6159c6388bbab253fbc5b0160b0f9cd5d'], + log: true, + }); + console.log("==TestSlot addr=", ret.address); + + }; + + deployNFTForGame.tags = ["TestSlot"]; + +export default deployNFTForGame; diff --git a/deployments/bsc_test/RewardRouter.json b/deployments/bsc_test/RewardRouter.json deleted file mode 100644 index 50c900d..0000000 --- a/deployments/bsc_test/RewardRouter.json +++ /dev/null @@ -1,307 +0,0 @@ -{ - "address": "0x3455e5D4962de708050278FA2761A613028bdf08", - "abi": [ - { - "inputs": [ - { - "internalType": "address", - "name": "_cec", - "type": "address" - }, - { - "internalType": "address", - "name": "_stakedCecTracker", - "type": "address" - }, - { - "internalType": "address", - "name": "_cecVester", - "type": "address" - } - ], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "account", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "token", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "StakeCec", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "account", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "token", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "UnstakeCec", - "type": "event" - }, - { - "inputs": [ - { - "internalType": "address[]", - "name": "_accounts", - "type": "address[]" - }, - { - "internalType": "uint256[]", - "name": "_amounts", - "type": "uint256[]" - } - ], - "name": "batchStakeCecForAccount", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "cec", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "cecVester", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "claim", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "gov", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_gov", - "type": "address" - } - ], - "name": "setGov", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "stakeCec", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "stakedCecTracker", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "unstakeCec", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_token", - "type": "address" - }, - { - "internalType": "address", - "name": "_account", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "withdrawToken", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - } - ], - "transactionHash": "0xa2592f659da58bd269d5dbe140d619e339ff053a89877b7381f9632d516e26d1", - "receipt": { - "to": null, - "from": "0x50A8e60041A206AcaA5F844a1104896224be6F39", - "contractAddress": "0x3455e5D4962de708050278FA2761A613028bdf08", - "transactionIndex": 0, - "gasUsed": "806753", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "blockHash": "0x5c7e0af896928ea534d6e9863f61939744912a2d69ca7849aa2e96a915cc772b", - "transactionHash": "0xa2592f659da58bd269d5dbe140d619e339ff053a89877b7381f9632d516e26d1", - "logs": [], - "blockNumber": 43808466, - "cumulativeGasUsed": "806753", - "status": 1, - "byzantium": true - }, - "args": [ - "0x1FbA3F84e62163069050f1156b73C008722136A3", - "0x1ebeE9a0B5E8deF2c75aBbc6209d7f2b4d5c7bd0", - "0x0000000000000000000000000000000000000000" - ], - "numDeployments": 1, - "solcInputHash": "26f8bdf66fed22c4d27d199a3a3111c7", - "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_cec\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_stakedCecTracker\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_cecVester\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeCec\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"UnstakeCec\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"_accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"_amounts\",\"type\":\"uint256[]\"}],\"name\":\"batchStakeCecForAccount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cec\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cecVester\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claim\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gov\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gov\",\"type\":\"address\"}],\"name\":\"setGov\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"stakeCec\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"stakedCecTracker\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"unstakeCec\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/staking/RewardRouter.sol\":\"RewardRouter\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n // Booleans are more expensive than uint256 or any type that takes up a full\\n // word because each write operation emits an extra SLOAD to first read the\\n // slot's contents, replace the bits taken up by the boolean, and then write\\n // back. This is the compiler's defense against contract upgrades and\\n // pointer aliasing, and it cannot be disabled.\\n\\n // The values being non-zero value makes deployment a bit more expensive,\\n // but in exchange the refund on every call to nonReentrant will be lower in\\n // amount. Since refunds are capped to a percentage of the total\\n // transaction's gas, it is best to keep them low in cases like this one, to\\n // increase the likelihood of the full refund coming into effect.\\n uint256 private constant _NOT_ENTERED = 1;\\n uint256 private constant _ENTERED = 2;\\n\\n uint256 private _status;\\n\\n constructor() {\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Prevents a contract from calling itself, directly or indirectly.\\n * Calling a `nonReentrant` function from another `nonReentrant`\\n * function is not supported. It is possible to prevent this from happening\\n * by making the `nonReentrant` function external, and making it call a\\n * `private` function that does the actual work.\\n */\\n modifier nonReentrant() {\\n _nonReentrantBefore();\\n _;\\n _nonReentrantAfter();\\n }\\n\\n function _nonReentrantBefore() private {\\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\\n require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n // Any calls to nonReentrant after this point will fail\\n _status = _ENTERED;\\n }\\n\\n function _nonReentrantAfter() private {\\n // By storing the original value once again, a refund is triggered (see\\n // https://eips.ethereum.org/EIPS/eip-2200)\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Returns true if the reentrancy guard is currently set to \\\"entered\\\", which indicates there is a\\n * `nonReentrant` function in the call stack.\\n */\\n function _reentrancyGuardEntered() internal view returns (bool) {\\n return _status == _ENTERED;\\n }\\n}\\n\",\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * ==== Security Considerations\\n *\\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\\n * generally recommended is:\\n *\\n * ```solidity\\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\\n * doThing(..., value);\\n * }\\n *\\n * function doThing(..., uint256 value) public {\\n * token.safeTransferFrom(msg.sender, address(this), value);\\n * ...\\n * }\\n * ```\\n *\\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\\n * {SafeERC20-safeTransferFrom}).\\n *\\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\\n * contracts should have entry points that don't rely on permit.\\n */\\ninterface IERC20Permit {\\n /**\\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n * given ``owner``'s signed approval.\\n *\\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n * ordering also apply here.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `deadline` must be a timestamp in the future.\\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n * over the EIP712-formatted function arguments.\\n * - the signature must use ``owner``'s current nonce (see {nonces}).\\n *\\n * For more information on the signature format, see the\\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n * section].\\n *\\n * CAUTION: See Security Considerations above.\\n */\\n function permit(\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) external;\\n\\n /**\\n * @dev Returns the current nonce for `owner`. This value must be\\n * included whenever a signature is generated for {permit}.\\n *\\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n * prevents a signature from being used multiple times.\\n */\\n function nonces(address owner) external view returns (uint256);\\n\\n /**\\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n */\\n // solhint-disable-next-line func-name-mixedcase\\n function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../extensions/IERC20Permit.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n using Address for address;\\n\\n /**\\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n }\\n\\n /**\\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\\n */\\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n }\\n\\n /**\\n * @dev Deprecated. This function has issues similar to the ones found in\\n * {IERC20-approve}, and its usage is discouraged.\\n *\\n * Whenever possible, use {safeIncreaseAllowance} and\\n * {safeDecreaseAllowance} instead.\\n */\\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\\n // safeApprove should only be called when setting an initial allowance,\\n // or when resetting it to zero. To increase and decrease it, use\\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n require(\\n (value == 0) || (token.allowance(address(this), spender) == 0),\\n \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n );\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n }\\n\\n /**\\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\\n }\\n\\n /**\\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n unchecked {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\\n }\\n }\\n\\n /**\\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\\n * to be set to zero before setting it to a non-zero value, such as USDT.\\n */\\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\\n\\n if (!_callOptionalReturnBool(token, approvalCall)) {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\\n _callOptionalReturn(token, approvalCall);\\n }\\n }\\n\\n /**\\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\\n * Revert on invalid signature.\\n */\\n function safePermit(\\n IERC20Permit token,\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) internal {\\n uint256 nonceBefore = token.nonces(owner);\\n token.permit(owner, spender, value, deadline, v, r, s);\\n uint256 nonceAfter = token.nonces(owner);\\n require(nonceAfter == nonceBefore + 1, \\\"SafeERC20: permit did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n */\\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\\n // the target address contains contract code and also asserts for success in the low-level call.\\n\\n bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n *\\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\\n */\\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\\n // and not revert is the subcall reverts.\\n\\n (bool success, bytes memory returndata) = address(token).call(data);\\n return\\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\\n }\\n}\\n\",\"keccak256\":\"0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\"},\"contracts/core/Governable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ncontract Governable {\\n address public gov;\\n\\n constructor() {\\n gov = msg.sender;\\n }\\n\\n modifier onlyGov() {\\n require(msg.sender == gov, \\\"Governable: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external virtual onlyGov {\\n gov = _gov;\\n }\\n}\\n\",\"keccak256\":\"0x41066d736cf570d77335785327703ad95a6634823ebec5543086aecdce7038fb\",\"license\":\"MIT\"},\"contracts/staking/RewardRouter.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport {ReentrancyGuard} from \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport {IRewardTracker} from \\\"./interfaces/IRewardTracker.sol\\\";\\nimport {IVester} from \\\"./interfaces/IVester.sol\\\";\\nimport {Governable} from \\\"../core/Governable.sol\\\";\\n\\ncontract RewardRouter is ReentrancyGuard, Governable {\\n using SafeERC20 for IERC20;\\n\\n address public cec;\\n\\n address public stakedCecTracker;\\n address public cecVester;\\n\\n event StakeCec(address indexed account, address indexed token, uint256 amount);\\n event UnstakeCec(address indexed account, address indexed token, uint256 amount);\\n\\n constructor(address _cec, address _stakedCecTracker, address _cecVester) {\\n cec = _cec;\\n stakedCecTracker = _stakedCecTracker;\\n cecVester = _cecVester;\\n }\\n\\n // to help users who accidentally send their tokens to this contract\\n function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {\\n IERC20(_token).safeTransfer(_account, _amount);\\n }\\n\\n function batchStakeCecForAccount(\\n address[] memory _accounts,\\n uint256[] memory _amounts\\n ) external nonReentrant onlyGov {\\n for (uint256 i = 0; i < _accounts.length; i++) {\\n _stakeCec(msg.sender, _accounts[i], cec, _amounts[i]);\\n }\\n }\\n\\n function stakeCec(uint256 _amount) external nonReentrant {\\n _stakeCec(msg.sender, msg.sender, cec, _amount);\\n }\\n\\n function unstakeCec(uint256 _amount) external nonReentrant {\\n // check if the user has staked CEC in the vester\\n if (cecVester != address(0) && IVester(cecVester).needCheckStake()) {\\n IVester(cecVester).updateVesting(msg.sender);\\n require(IERC20(cecVester).balanceOf(msg.sender) + _amount <= IRewardTracker(stakedCecTracker).stakedAmounts(msg.sender), \\\"RewardRouter: insufficient CEC balance\\\");\\n }\\n _unstakeCec(msg.sender, cec, _amount);\\n }\\n\\n function claim() external nonReentrant {\\n address account = msg.sender;\\n IRewardTracker(stakedCecTracker).claimForAccount(account, account);\\n }\\n\\n function _stakeCec(address _fundingAccount, address _account, address _token, uint256 _amount) private {\\n require(_amount > 0, \\\"invalid _amount\\\");\\n\\n IRewardTracker(stakedCecTracker).stakeForAccount(_fundingAccount, _account, _token, _amount);\\n\\n emit StakeCec(_account, _token, _amount);\\n }\\n\\n function _unstakeCec(address _account, address _token, uint256 _amount) private {\\n require(_amount > 0, \\\"invalid _amount\\\");\\n // uint256 balance = IRewardTracker(stakedCecTracker).stakedAmounts(_account);\\n IRewardTracker(stakedCecTracker).unstakeForAccount(_account, _token, _amount, _account);\\n\\n emit UnstakeCec(_account, _token, _amount);\\n }\\n}\\n\",\"keccak256\":\"0x7a1760ebd076331408c29180f6f8b9131f78d6578818a28d9f01a8b0a9bba818\",\"license\":\"MIT\"},\"contracts/staking/interfaces/IRewardTracker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ninterface IRewardTracker {\\n function stakedAmounts(address _account) external view returns (uint256);\\n function updateRewards(address _account) external;\\n function stake(address _depositToken, uint256 _amount) external;\\n function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;\\n function unstake(address _depositToken, uint256 _amount) external;\\n function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;\\n function claim(address _receiver) external returns (uint256);\\n function claimForAccount(address _account, address _receiver) external returns (uint256);\\n function claimable(address _account) external view returns (uint256);\\n // function averageStakedAmounts(address _account) external view returns (uint256);\\n function cumulativeRewards(address _account) external view returns (uint256);\\n}\\n\",\"keccak256\":\"0x974d493e72889660ec41c4c0c05491052df6bb592e8c18f4f2349030ca428bab\",\"license\":\"MIT\"},\"contracts/staking/interfaces/IVester.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ninterface IVester {\\n function needCheckStake() external view returns (bool);\\n function updateVesting(address _account) external;\\n\\n function rewardTrackerCEC() external view returns (address);\\n function rewardTrackerEsCEC() external view returns (address);\\n\\n function claimForAccount(address _account, address _receiver) external returns (uint256);\\n\\n function claimable(address _account) external view returns (uint256);\\n function cumulativeClaimAmounts(address _account) external view returns (uint256);\\n function claimedAmounts(address _account) external view returns (uint256);\\n function getVestedAmount(address _account) external view returns (uint256);\\n function cumulativeRewardDeductions(address _account) external view returns (uint256);\\n function bonusRewards(address _account) external view returns (uint256);\\n\\n function setCumulativeRewardDeductions(address _account, uint256 _amount) external;\\n function setBonusRewards(address _account, uint256 _amount) external;\\n\\n function getMaxVestableAmount(address _account) external view returns (uint256);\\n}\\n\",\"keccak256\":\"0x160b192c8f7b33f881428474c5e5cef4704be624b73e2d20e60134d155a00924\",\"license\":\"MIT\"}},\"version\":1}", - "bytecode": "0x6080346100b057601f610cc638819003918201601f19168301916001600160401b038311848410176100b5578084926060946040528339810103126100b057610047816100cb565b906100606040610059602084016100cb565b92016100cb565b600160005560018060a01b0319923384600154161760015560018060a01b0392838092168560025416176002551683600354161760035516906004541617600455604051610be690816100e08239f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036100b05756fe60406080815260048036101561001457600080fd5b60009182803560e01c92836301e33667146106d057836305a174c1146106a857836312d43a511461067f578363232efcb3146104ed578363319489e614610215578363362a4bb9146101db5783634e71d92d14610139575050816371dfbd9214610110578163b65b4973146100e3575063cfad57a21461009357600080fd5b346100e05760203660031901126100e0576100ac610897565b600154906001600160a01b03906100c63383851614610911565b16906bffffffffffffffffffffffff60a01b161760015580f35b80fd5b90503461010c578160031936011261010c5760035490516001600160a01b039091168152602090f35b5080fd5b90503461010c578160031936011261010c5760025490516001600160a01b039091168152602090f35b909250346101d757826003193601126101d757602090610157610a6b565b60035483516309f4173d60e11b81523392810183905260248101929092529093849160449183916001600160a01b03165af19081156101ce575061019e575b506001815580f35b602090813d81116101c7575b6101b481836108d7565b810103126101c25738610196565b600080fd5b503d6101aa565b513d84823e3d90fd5b5050fd5b3461010c57602036600319011261010c5761020e906101f8610a6b565b6002549035906001600160a01b03163380610aff565b6001815580f35b823461030057602090816003193601126104e957823591610234610a6b565b83546001600160a01b039490869086168015158061048a575b610304575b5090856002541695610265861515610ac1565b6003541690813b15610300578291608483928751948593849263098bf59d60e01b845233908401528b60248401528a60448401523360648401525af180156102f6576102de575b50507f50c634fcff06a5b70f80b0a33a6f53cac80744ae146a235b402296908535bf5891519283523392a36001815580f35b6102e7906108ad565b6102f25784866102ac565b8480fd5b84513d84823e3d90fd5b8280fd5b803b1561010c578190602486518094819363e421447160e01b835233888401525af1801561046d57610477575b50602482868354168551928380926370a0823160e01b825233878301525afa90811561046d578791610440575b5084810180911161042d576024908387600354168651938480926310c1c10360e01b825233888301525afa9182156104235788926103f4575b50116103a4578587610252565b915162461bcd60e51b815291820152602660248201527f526577617264526f757465723a20696e73756666696369656e74204345432062604482015265616c616e636560d01b6064820152608490fd5b9091508381813d831161041c575b61040c81836108d7565b810103126101c257519088610397565b503d610402565b85513d8a823e3d90fd5b634e487b7160e01b875260118252602487fd5b90508281813d8311610466575b61045781836108d7565b810103126101c257518761035e565b503d61044d565b84513d89823e3d90fd5b610483909691966108ad565b9486610331565b508451632b04434560e21b815284818581855afa9081156104df5783916104b2575b5061024d565b6104d29150853d87116104d8575b6104ca81836108d7565b810190610955565b896104ac565b503d6104c0565b86513d85823e3d90fd5b8380fd5b829034610300578160031936011261030057803567ffffffffffffffff918282116102f257366023830112156102f257818101359161052b836108f9565b93610538865195866108d7565b8385526020918286016024809660051b8301019136831161067b578601905b8282106106585750505083359081116106545736602382011215610654578083013561058e610585826108f9565b975197886108d7565b808752848388019160051b83010191368311610650579697968501905b82821061064157505050506105be610a6b565b60018060a01b0360019586946105d8838754163314610911565b86975b6105e7575b8686815580f35b805188101561063c57610617836105fe8a84610a41565b5116846002541661060f8b86610a41565b519133610aff565b600019881461062a5796850196856105db565b634e487b7160e01b8752601184528487fd5b6105e0565b813581529083019083016105ab565b8880fd5b8680fd5b81356001600160a01b0381168103610677578152908401908401610557565b8a80fd5b8980fd5b50903461010c578160031936011261010c5760015490516001600160a01b039091168152602090f35b8290346103005782600319360112610300575490516001600160a01b03909116815260209150f35b8234610300576060366003190112610300576106ea610897565b6024916001600160a01b03833581811693908490036106545761071282600154163314610911565b169181516020938482019263a9059cbb60e01b845286830152604435604483015260448252608082019267ffffffffffffffff92808510848611176108855760c08101858110858211176108735786528685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a082015251899182919082855af1903d15610864573d92831161085257906107ce9392918551926107c188601f19601f84011601856108d7565b83523d8a8885013e61096d565b80519083821592831561083a575b505050156107e8578480f35b5162461bcd60e51b815292830152602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b61084a9350820181019101610955565b8683816107dc565b634e487b7160e01b8952604188528689fd5b906107ce93925060609161096d565b634e487b7160e01b8b5260418a52888bfd5b634e487b7160e01b8a5260418952878afd5b600435906001600160a01b03821682036101c257565b67ffffffffffffffff81116108c157604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176108c157604052565b67ffffffffffffffff81116108c15760051b60200190565b1561091857565b60405162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b6044820152606490fd5b908160209103126101c2575180151581036101c25790565b919290156109cf5750815115610981575090565b3b1561098a5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156109e25750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510610a28575050604492506000838284010152601f80199101168101030190fd5b8481018201518686016044015293810193859350610a05565b8051821015610a555760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b600260005414610a7c576002600055565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b15610ac857565b60405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a590817d85b5bdd5b9d608a1b6044820152606490fd5b92610b0b811515610ac1565b6003546001600160a01b039081169490853b156101c25760846000928383806040519889968795631e42d69b60e21b8752166004860152169889602485015216988960448401528660648401525af1908115610ba4577f47d4c7c194999b93d76f7d16393f56c8c189d502fea3ff400ec5badfab608c2692602092610b95575b50604051908152a3565b610b9e906108ad565b38610b8b565b6040513d6000823e3d90fdfea26469706673582212202885cd9ad4ed75489b5ef244d64b4a8e6f57de48b17b9bed23077c8c386ec5d264736f6c63430008130033", - "deployedBytecode": "0x60406080815260048036101561001457600080fd5b60009182803560e01c92836301e33667146106d057836305a174c1146106a857836312d43a511461067f578363232efcb3146104ed578363319489e614610215578363362a4bb9146101db5783634e71d92d14610139575050816371dfbd9214610110578163b65b4973146100e3575063cfad57a21461009357600080fd5b346100e05760203660031901126100e0576100ac610897565b600154906001600160a01b03906100c63383851614610911565b16906bffffffffffffffffffffffff60a01b161760015580f35b80fd5b90503461010c578160031936011261010c5760035490516001600160a01b039091168152602090f35b5080fd5b90503461010c578160031936011261010c5760025490516001600160a01b039091168152602090f35b909250346101d757826003193601126101d757602090610157610a6b565b60035483516309f4173d60e11b81523392810183905260248101929092529093849160449183916001600160a01b03165af19081156101ce575061019e575b506001815580f35b602090813d81116101c7575b6101b481836108d7565b810103126101c25738610196565b600080fd5b503d6101aa565b513d84823e3d90fd5b5050fd5b3461010c57602036600319011261010c5761020e906101f8610a6b565b6002549035906001600160a01b03163380610aff565b6001815580f35b823461030057602090816003193601126104e957823591610234610a6b565b83546001600160a01b039490869086168015158061048a575b610304575b5090856002541695610265861515610ac1565b6003541690813b15610300578291608483928751948593849263098bf59d60e01b845233908401528b60248401528a60448401523360648401525af180156102f6576102de575b50507f50c634fcff06a5b70f80b0a33a6f53cac80744ae146a235b402296908535bf5891519283523392a36001815580f35b6102e7906108ad565b6102f25784866102ac565b8480fd5b84513d84823e3d90fd5b8280fd5b803b1561010c578190602486518094819363e421447160e01b835233888401525af1801561046d57610477575b50602482868354168551928380926370a0823160e01b825233878301525afa90811561046d578791610440575b5084810180911161042d576024908387600354168651938480926310c1c10360e01b825233888301525afa9182156104235788926103f4575b50116103a4578587610252565b915162461bcd60e51b815291820152602660248201527f526577617264526f757465723a20696e73756666696369656e74204345432062604482015265616c616e636560d01b6064820152608490fd5b9091508381813d831161041c575b61040c81836108d7565b810103126101c257519088610397565b503d610402565b85513d8a823e3d90fd5b634e487b7160e01b875260118252602487fd5b90508281813d8311610466575b61045781836108d7565b810103126101c257518761035e565b503d61044d565b84513d89823e3d90fd5b610483909691966108ad565b9486610331565b508451632b04434560e21b815284818581855afa9081156104df5783916104b2575b5061024d565b6104d29150853d87116104d8575b6104ca81836108d7565b810190610955565b896104ac565b503d6104c0565b86513d85823e3d90fd5b8380fd5b829034610300578160031936011261030057803567ffffffffffffffff918282116102f257366023830112156102f257818101359161052b836108f9565b93610538865195866108d7565b8385526020918286016024809660051b8301019136831161067b578601905b8282106106585750505083359081116106545736602382011215610654578083013561058e610585826108f9565b975197886108d7565b808752848388019160051b83010191368311610650579697968501905b82821061064157505050506105be610a6b565b60018060a01b0360019586946105d8838754163314610911565b86975b6105e7575b8686815580f35b805188101561063c57610617836105fe8a84610a41565b5116846002541661060f8b86610a41565b519133610aff565b600019881461062a5796850196856105db565b634e487b7160e01b8752601184528487fd5b6105e0565b813581529083019083016105ab565b8880fd5b8680fd5b81356001600160a01b0381168103610677578152908401908401610557565b8a80fd5b8980fd5b50903461010c578160031936011261010c5760015490516001600160a01b039091168152602090f35b8290346103005782600319360112610300575490516001600160a01b03909116815260209150f35b8234610300576060366003190112610300576106ea610897565b6024916001600160a01b03833581811693908490036106545761071282600154163314610911565b169181516020938482019263a9059cbb60e01b845286830152604435604483015260448252608082019267ffffffffffffffff92808510848611176108855760c08101858110858211176108735786528685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a082015251899182919082855af1903d15610864573d92831161085257906107ce9392918551926107c188601f19601f84011601856108d7565b83523d8a8885013e61096d565b80519083821592831561083a575b505050156107e8578480f35b5162461bcd60e51b815292830152602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b61084a9350820181019101610955565b8683816107dc565b634e487b7160e01b8952604188528689fd5b906107ce93925060609161096d565b634e487b7160e01b8b5260418a52888bfd5b634e487b7160e01b8a5260418952878afd5b600435906001600160a01b03821682036101c257565b67ffffffffffffffff81116108c157604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176108c157604052565b67ffffffffffffffff81116108c15760051b60200190565b1561091857565b60405162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b6044820152606490fd5b908160209103126101c2575180151581036101c25790565b919290156109cf5750815115610981575090565b3b1561098a5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156109e25750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510610a28575050604492506000838284010152601f80199101168101030190fd5b8481018201518686016044015293810193859350610a05565b8051821015610a555760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b600260005414610a7c576002600055565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b15610ac857565b60405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a590817d85b5bdd5b9d608a1b6044820152606490fd5b92610b0b811515610ac1565b6003546001600160a01b039081169490853b156101c25760846000928383806040519889968795631e42d69b60e21b8752166004860152169889602485015216988960448401528660648401525af1908115610ba4577f47d4c7c194999b93d76f7d16393f56c8c189d502fea3ff400ec5badfab608c2692602092610b95575b50604051908152a3565b610b9e906108ad565b38610b8b565b6040513d6000823e3d90fdfea26469706673582212202885cd9ad4ed75489b5ef244d64b4a8e6f57de48b17b9bed23077c8c386ec5d264736f6c63430008130033", - "devdoc": { - "kind": "dev", - "methods": {}, - "version": 1 - }, - "userdoc": { - "kind": "user", - "methods": {}, - "version": 1 - }, - "storageLayout": { - "storage": [ - { - "astId": 10, - "contract": "contracts/staking/RewardRouter.sol:RewardRouter", - "label": "_status", - "offset": 0, - "slot": "0", - "type": "t_uint256" - }, - { - "astId": 888, - "contract": "contracts/staking/RewardRouter.sol:RewardRouter", - "label": "gov", - "offset": 0, - "slot": "1", - "type": "t_address" - }, - { - "astId": 977, - "contract": "contracts/staking/RewardRouter.sol:RewardRouter", - "label": "cec", - "offset": 0, - "slot": "2", - "type": "t_address" - }, - { - "astId": 979, - "contract": "contracts/staking/RewardRouter.sol:RewardRouter", - "label": "stakedCecTracker", - "offset": 0, - "slot": "3", - "type": "t_address" - }, - { - "astId": 981, - "contract": "contracts/staking/RewardRouter.sol:RewardRouter", - "label": "cecVester", - "offset": 0, - "slot": "4", - "type": "t_address" - } - ], - "types": { - "t_address": { - "encoding": "inplace", - "label": "address", - "numberOfBytes": "20" - }, - "t_uint256": { - "encoding": "inplace", - "label": "uint256", - "numberOfBytes": "32" - } - } - } -} \ No newline at end of file diff --git a/deployments/bsc_test/RewardTracker.json b/deployments/bsc_test/RewardTracker.json deleted file mode 100644 index 607f4ca..0000000 --- a/deployments/bsc_test/RewardTracker.json +++ /dev/null @@ -1,741 +0,0 @@ -{ - "address": "0x1ebeE9a0B5E8deF2c75aBbc6209d7f2b4d5c7bd0", - "abi": [ - { - "inputs": [ - { - "internalType": "address", - "name": "_rewardToken", - "type": "address" - }, - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_tokensPerInterval", - "type": "uint256" - }, - { - "internalType": "uint8", - "name": "_decimals", - "type": "uint8" - } - ], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "receiver", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "Claim", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "TokensPerIntervalChange", - "type": "event" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_receiver", - "type": "address" - } - ], - "name": "claim", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_account", - "type": "address" - }, - { - "internalType": "address", - "name": "_receiver", - "type": "address" - } - ], - "name": "claimForAccount", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_account", - "type": "address" - } - ], - "name": "claimable", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "claimableReward", - "outputs": [ - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "cumulativeRewards", - "outputs": [ - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "decimals", - "outputs": [ - { - "internalType": "uint8", - "name": "", - "type": "uint8" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "gov", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "inPrivateClaimingMode", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "inPrivateStakingMode", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "token", - "type": "address" - } - ], - "name": "isDepositToken", - "outputs": [ - { - "internalType": "bool", - "name": "status", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "handler", - "type": "address" - } - ], - "name": "isHandler", - "outputs": [ - { - "internalType": "bool", - "name": "status", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "lastUpdateTimes", - "outputs": [ - { - "internalType": "uint256", - "name": "time", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "rewardToken", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "bool", - "name": "_isDepositToken", - "type": "bool" - } - ], - "name": "setDepositToken", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_gov", - "type": "address" - } - ], - "name": "setGov", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_handler", - "type": "address" - }, - { - "internalType": "bool", - "name": "_isActive", - "type": "bool" - } - ], - "name": "setHandler", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "bool", - "name": "_inPrivateClaimingMode", - "type": "bool" - } - ], - "name": "setInPrivateClaimingMode", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "bool", - "name": "_inPrivateStakingMode", - "type": "bool" - } - ], - "name": "setInPrivateStakingMode", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "setTokensPerInterval", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "stake", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_fundingAccount", - "type": "address" - }, - { - "internalType": "address", - "name": "_account", - "type": "address" - }, - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "stakeForAccount", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "stakedAmounts", - "outputs": [ - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "tokensPerInterval", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "token", - "type": "address" - } - ], - "name": "totalDepositSupply", - "outputs": [ - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "unstake", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_account", - "type": "address" - }, - { - "internalType": "address", - "name": "_depositToken", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - }, - { - "internalType": "address", - "name": "_receiver", - "type": "address" - } - ], - "name": "unstakeForAccount", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_account", - "type": "address" - } - ], - "name": "updateRewards", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_token", - "type": "address" - }, - { - "internalType": "address", - "name": "_account", - "type": "address" - }, - { - "internalType": "uint256", - "name": "_amount", - "type": "uint256" - } - ], - "name": "withdrawToken", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - } - ], - "transactionHash": "0x1e13d8d3c0d133475f7f6fe2803a96650cfbc28fda0e033587fbd925673d2229", - "receipt": { - "to": null, - "from": "0x50A8e60041A206AcaA5F844a1104896224be6F39", - "contractAddress": "0x1ebeE9a0B5E8deF2c75aBbc6209d7f2b4d5c7bd0", - "transactionIndex": 0, - "gasUsed": "1132672", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "blockHash": "0xcd1ca5a3467f4ef418640a0026ce9571639b427754c6d4deb5932812a20e3db1", - "transactionHash": "0x1e13d8d3c0d133475f7f6fe2803a96650cfbc28fda0e033587fbd925673d2229", - "logs": [], - "blockNumber": 43808459, - "cumulativeGasUsed": "1132672", - "status": 1, - "byzantium": true - }, - "args": [ - "0x1FbA3F84e62163069050f1156b73C008722136A3", - "0x1FbA3F84e62163069050f1156b73C008722136A3", - "17361111111111", - 18 - ], - "numDeployments": 1, - "solcInputHash": "78b4e81d7708c749b91256813b9801a7", - "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_rewardToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_tokensPerInterval\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Claim\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TokensPerIntervalChange\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_receiver\",\"type\":\"address\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_receiver\",\"type\":\"address\"}],\"name\":\"claimForAccount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"}],\"name\":\"claimable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"claimableReward\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"cumulativeRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gov\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inPrivateClaimingMode\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inPrivateStakingMode\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"isDepositToken\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"status\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"handler\",\"type\":\"address\"}],\"name\":\"isHandler\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"status\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"lastUpdateTimes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"time\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rewardToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_isDepositToken\",\"type\":\"bool\"}],\"name\":\"setDepositToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gov\",\"type\":\"address\"}],\"name\":\"setGov\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_handler\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_isActive\",\"type\":\"bool\"}],\"name\":\"setHandler\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"_inPrivateClaimingMode\",\"type\":\"bool\"}],\"name\":\"setInPrivateClaimingMode\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"_inPrivateStakingMode\",\"type\":\"bool\"}],\"name\":\"setInPrivateStakingMode\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"setTokensPerInterval\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_fundingAccount\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"stakeForAccount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"stakedAmounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tokensPerInterval\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"totalDepositSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"unstake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_depositToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_receiver\",\"type\":\"address\"}],\"name\":\"unstakeForAccount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"}],\"name\":\"updateRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/staking/RewardTracker.sol\":\"RewardTracker\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n // Booleans are more expensive than uint256 or any type that takes up a full\\n // word because each write operation emits an extra SLOAD to first read the\\n // slot's contents, replace the bits taken up by the boolean, and then write\\n // back. This is the compiler's defense against contract upgrades and\\n // pointer aliasing, and it cannot be disabled.\\n\\n // The values being non-zero value makes deployment a bit more expensive,\\n // but in exchange the refund on every call to nonReentrant will be lower in\\n // amount. Since refunds are capped to a percentage of the total\\n // transaction's gas, it is best to keep them low in cases like this one, to\\n // increase the likelihood of the full refund coming into effect.\\n uint256 private constant _NOT_ENTERED = 1;\\n uint256 private constant _ENTERED = 2;\\n\\n uint256 private _status;\\n\\n constructor() {\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Prevents a contract from calling itself, directly or indirectly.\\n * Calling a `nonReentrant` function from another `nonReentrant`\\n * function is not supported. It is possible to prevent this from happening\\n * by making the `nonReentrant` function external, and making it call a\\n * `private` function that does the actual work.\\n */\\n modifier nonReentrant() {\\n _nonReentrantBefore();\\n _;\\n _nonReentrantAfter();\\n }\\n\\n function _nonReentrantBefore() private {\\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\\n require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n // Any calls to nonReentrant after this point will fail\\n _status = _ENTERED;\\n }\\n\\n function _nonReentrantAfter() private {\\n // By storing the original value once again, a refund is triggered (see\\n // https://eips.ethereum.org/EIPS/eip-2200)\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Returns true if the reentrancy guard is currently set to \\\"entered\\\", which indicates there is a\\n * `nonReentrant` function in the call stack.\\n */\\n function _reentrancyGuardEntered() internal view returns (bool) {\\n return _status == _ENTERED;\\n }\\n}\\n\",\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * ==== Security Considerations\\n *\\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\\n * generally recommended is:\\n *\\n * ```solidity\\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\\n * doThing(..., value);\\n * }\\n *\\n * function doThing(..., uint256 value) public {\\n * token.safeTransferFrom(msg.sender, address(this), value);\\n * ...\\n * }\\n * ```\\n *\\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\\n * {SafeERC20-safeTransferFrom}).\\n *\\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\\n * contracts should have entry points that don't rely on permit.\\n */\\ninterface IERC20Permit {\\n /**\\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n * given ``owner``'s signed approval.\\n *\\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n * ordering also apply here.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `deadline` must be a timestamp in the future.\\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n * over the EIP712-formatted function arguments.\\n * - the signature must use ``owner``'s current nonce (see {nonces}).\\n *\\n * For more information on the signature format, see the\\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n * section].\\n *\\n * CAUTION: See Security Considerations above.\\n */\\n function permit(\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) external;\\n\\n /**\\n * @dev Returns the current nonce for `owner`. This value must be\\n * included whenever a signature is generated for {permit}.\\n *\\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n * prevents a signature from being used multiple times.\\n */\\n function nonces(address owner) external view returns (uint256);\\n\\n /**\\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n */\\n // solhint-disable-next-line func-name-mixedcase\\n function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../extensions/IERC20Permit.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n using Address for address;\\n\\n /**\\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n }\\n\\n /**\\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\\n */\\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n }\\n\\n /**\\n * @dev Deprecated. This function has issues similar to the ones found in\\n * {IERC20-approve}, and its usage is discouraged.\\n *\\n * Whenever possible, use {safeIncreaseAllowance} and\\n * {safeDecreaseAllowance} instead.\\n */\\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\\n // safeApprove should only be called when setting an initial allowance,\\n // or when resetting it to zero. To increase and decrease it, use\\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n require(\\n (value == 0) || (token.allowance(address(this), spender) == 0),\\n \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n );\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n }\\n\\n /**\\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\\n }\\n\\n /**\\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n unchecked {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\\n }\\n }\\n\\n /**\\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\\n * to be set to zero before setting it to a non-zero value, such as USDT.\\n */\\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\\n\\n if (!_callOptionalReturnBool(token, approvalCall)) {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\\n _callOptionalReturn(token, approvalCall);\\n }\\n }\\n\\n /**\\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\\n * Revert on invalid signature.\\n */\\n function safePermit(\\n IERC20Permit token,\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) internal {\\n uint256 nonceBefore = token.nonces(owner);\\n token.permit(owner, spender, value, deadline, v, r, s);\\n uint256 nonceAfter = token.nonces(owner);\\n require(nonceAfter == nonceBefore + 1, \\\"SafeERC20: permit did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n */\\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\\n // the target address contains contract code and also asserts for success in the low-level call.\\n\\n bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n *\\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\\n */\\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\\n // and not revert is the subcall reverts.\\n\\n (bool success, bytes memory returndata) = address(token).call(data);\\n return\\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\\n }\\n}\\n\",\"keccak256\":\"0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\"},\"contracts/core/Governable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ncontract Governable {\\n address public gov;\\n\\n constructor() {\\n gov = msg.sender;\\n }\\n\\n modifier onlyGov() {\\n require(msg.sender == gov, \\\"Governable: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external virtual onlyGov {\\n gov = _gov;\\n }\\n}\\n\",\"keccak256\":\"0x41066d736cf570d77335785327703ad95a6634823ebec5543086aecdce7038fb\",\"license\":\"MIT\"},\"contracts/staking/RewardTracker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport {ReentrancyGuard} from \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport {IRewardTracker} from \\\"./interfaces/IRewardTracker.sol\\\";\\nimport {Governable} from \\\"../core/Governable.sol\\\";\\n\\ncontract RewardTracker is ReentrancyGuard, IRewardTracker, Governable {\\n using SafeERC20 for IERC20;\\n\\n mapping(address token => bool status) public isDepositToken;\\n mapping(address token => uint256 amount) public totalDepositSupply;\\n\\n mapping(address account => uint256 amount) public override stakedAmounts;\\n mapping(address account => uint256 amount) public claimableReward;\\n mapping(address account => uint256 amount) public override cumulativeRewards;\\n\\n mapping(address account => uint256 time) public lastUpdateTimes;\\n\\n uint256 public tokensPerInterval;\\n address public rewardToken;\\n uint8 public decimals = 18;\\n\\n bool public inPrivateStakingMode;\\n bool public inPrivateClaimingMode;\\n mapping(address handler => bool status) public isHandler;\\n\\n event Claim(address receiver, uint256 amount);\\n event TokensPerIntervalChange(uint256 amount);\\n\\n constructor(address _rewardToken, address _depositToken, uint256 _tokensPerInterval, uint8 _decimals) {\\n rewardToken = _rewardToken;\\n isDepositToken[_depositToken] = true;\\n tokensPerInterval = _tokensPerInterval;\\n decimals = _decimals;\\n }\\n\\n function setDepositToken(address _depositToken, bool _isDepositToken) external onlyGov {\\n isDepositToken[_depositToken] = _isDepositToken;\\n }\\n //TODO:: \\u662f\\u5426\\u66f4\\u65b0\\u7528\\u6237\\u672a\\u9886\\u53d6\\u7684\\u5956\\u52b1\\n function setTokensPerInterval(uint256 _amount) external onlyGov {\\n tokensPerInterval = _amount;\\n emit TokensPerIntervalChange(_amount);\\n }\\n\\n function setInPrivateStakingMode(bool _inPrivateStakingMode) external onlyGov {\\n inPrivateStakingMode = _inPrivateStakingMode;\\n }\\n\\n function setInPrivateClaimingMode(bool _inPrivateClaimingMode) external onlyGov {\\n inPrivateClaimingMode = _inPrivateClaimingMode;\\n }\\n\\n function setHandler(address _handler, bool _isActive) external onlyGov {\\n isHandler[_handler] = _isActive;\\n }\\n\\n // to help users who accidentally send their tokens to this contract\\n function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {\\n IERC20(_token).safeTransfer(_account, _amount);\\n }\\n\\n function stake(address _depositToken, uint256 _amount) external override nonReentrant {\\n if (inPrivateStakingMode) {\\n revert(\\\"RewardTracker: action not enabled\\\");\\n }\\n _stake(msg.sender, msg.sender, _depositToken, _amount);\\n }\\n\\n function stakeForAccount(\\n address _fundingAccount,\\n address _account,\\n address _depositToken,\\n uint256 _amount\\n ) external override nonReentrant {\\n _validateHandler();\\n _stake(_fundingAccount, _account, _depositToken, _amount);\\n }\\n\\n function unstake(address _depositToken, uint256 _amount) external override nonReentrant {\\n if (inPrivateStakingMode) {\\n revert(\\\"RewardTracker: action not enabled\\\");\\n }\\n _unstake(msg.sender, _depositToken, _amount, msg.sender);\\n }\\n\\n function unstakeForAccount(\\n address _account,\\n address _depositToken,\\n uint256 _amount,\\n address _receiver\\n ) external override nonReentrant {\\n _validateHandler();\\n _unstake(_account, _depositToken, _amount, _receiver);\\n }\\n\\n function claim(address _receiver) external override nonReentrant returns (uint256) {\\n if (inPrivateClaimingMode) {\\n revert(\\\"RewardTracker: action not enabled\\\");\\n }\\n return _claim(msg.sender, _receiver);\\n }\\n\\n function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) {\\n _validateHandler();\\n return _claim(_account, _receiver);\\n }\\n\\n function claimable(address _account) public view override returns (uint256) {\\n uint256 stakedAmount = stakedAmounts[_account];\\n if (stakedAmount == 0) {\\n return claimableReward[_account];\\n }\\n uint256 pendingRewards = _getNextClaimableAmount(_account);\\n return claimableReward[_account] + pendingRewards;\\n }\\n\\n function _claim(address _account, address _receiver) private returns (uint256) {\\n _updateRewards(_account);\\n uint256 tokenAmount = claimableReward[_account];\\n claimableReward[_account] = 0;\\n if (tokenAmount > 0) {\\n IERC20(rewardToken).safeTransfer(_receiver, tokenAmount);\\n emit Claim(_account, tokenAmount);\\n }\\n return tokenAmount;\\n }\\n\\n function _validateHandler() private view {\\n require(isHandler[msg.sender], \\\"RewardTracker: forbidden\\\");\\n }\\n\\n function _stake(address _fundingAccount, address _account, address _depositToken, uint256 _amount) private {\\n require(_amount > 0, \\\"RewardTracker: invalid _amount\\\");\\n require(isDepositToken[_depositToken], \\\"RewardTracker: invalid _depositToken\\\");\\n IERC20(_depositToken).safeTransferFrom(_fundingAccount, address(this), _amount);\\n _updateRewards(_account);\\n stakedAmounts[_account] = stakedAmounts[_account] + _amount;\\n totalDepositSupply[_depositToken] = totalDepositSupply[_depositToken] + _amount;\\n }\\n\\n function _unstake(address _account, address _depositToken, uint256 _amount, address _receiver) private {\\n require(_amount > 0, \\\"RewardTracker: invalid _amount\\\");\\n require(isDepositToken[_depositToken], \\\"RewardTracker: invalid _depositToken\\\");\\n _updateRewards(_account);\\n uint256 stakedAmount = stakedAmounts[_account];\\n require(stakedAmount >= _amount, \\\"RewardTracker: _amount exceeds stakedAmount\\\");\\n stakedAmounts[_account] = stakedAmount - _amount;\\n totalDepositSupply[_depositToken] = totalDepositSupply[_depositToken] - _amount;\\n IERC20(_depositToken).safeTransfer(_receiver, _amount);\\n }\\n\\n function updateRewards(address _account) public {\\n _updateRewards(_account);\\n }\\n\\n function _updateRewards(address _account) private {\\n uint256 accountReward = _getNextClaimableAmount(_account);\\n lastUpdateTimes[_account] = block.timestamp;\\n uint256 _claimableReward = claimableReward[_account] + accountReward;\\n claimableReward[_account] = _claimableReward;\\n if (_claimableReward > 0 && stakedAmounts[_account] > 0) {\\n uint256 nextCumulativeReward = cumulativeRewards[_account] + accountReward;\\n cumulativeRewards[_account] = nextCumulativeReward;\\n }\\n }\\n\\n function _getNextClaimableAmount(address _account) private view returns (uint256) {\\n uint256 timeDiff = block.timestamp - lastUpdateTimes[_account];\\n uint256 stakedAmount = stakedAmounts[_account];\\n if (stakedAmount == 0) {\\n return 0;\\n }\\n uint256 accountReward = (stakedAmount / (10 ** decimals)) * tokensPerInterval * timeDiff;\\n return accountReward;\\n }\\n}\\n\",\"keccak256\":\"0x77aad08868a34e64199a9c6e2f0a29c38b3aef434b48f801c512c1d52fc82650\",\"license\":\"MIT\"},\"contracts/staking/interfaces/IRewardTracker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ninterface IRewardTracker {\\n function stakedAmounts(address _account) external view returns (uint256);\\n function updateRewards(address _account) external;\\n function stake(address _depositToken, uint256 _amount) external;\\n function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;\\n function unstake(address _depositToken, uint256 _amount) external;\\n function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;\\n function claim(address _receiver) external returns (uint256);\\n function claimForAccount(address _account, address _receiver) external returns (uint256);\\n function claimable(address _account) external view returns (uint256);\\n // function averageStakedAmounts(address _account) external view returns (uint256);\\n function cumulativeRewards(address _account) external view returns (uint256);\\n}\\n\",\"keccak256\":\"0x974d493e72889660ec41c4c0c05491052df6bb592e8c18f4f2349030ca428bab\",\"license\":\"MIT\"}},\"version\":1}", - "bytecode": "0x6080346100ed57601f61128338819003918201601f19168301916001600160401b038311848410176100f2578084926080946040528339810103126100ed5761004781610108565b9061005460208201610108565b91606060408301519201519260ff841684036100ed576001600081815581546001600160a01b03191633178255600980546001600160a81b0319166001600160a01b0395861617600960a11b1781559290931683526002602052604092839020805460ff19169091179055600892909255815460ff60a01b191660a09390931b60ff60a01b1692909217905551611166908161011d8239f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036100ed5756fe6040608081526004908136101561001557600080fd5b600091823560e01c90816301e3366714610814578163098bf59d146107c057816310c1c1031461078a57816312d43a511461076157816313e82e7a1461072057816318e20a03146106c55781631d30d5bc146106765781631e83409a14610615578163313ce567146105f0578163355bb78c146105b85781633792def3146105805781633cd7f70014610531578163402914f51461050457816346ea87af146104c6578163552ce1dc1461048e5781635fd619651461046c578163790b5a6c146104155781639cb7de4b146103b8578163a8d9362714610399578163adc9772e1461035a578163b89e45b31461031c578163c2a672e0146102b557508063c5fa27301461028f578063cfad57a21461023e578063e44b7558146101df578063e9503425146101a8578063f76033d3146101825763f7c618c11461015757600080fd5b3461017e578160031936011261017e5760095490516001600160a01b039091168152602090f35b5080fd5b503461017e578160031936011261017e5760209060ff60095460b01c1690519015158152f35b503461017e57602036600319011261017e5760209181906001600160a01b036101cf61085c565b1681526005845220549051908152f35b503461017e578060031936011261017e5761023b906101fc61085c565b9061020561089c565b60015490926001600160a01b039161022090831633146108ab565b168452600260205283209060ff801983541691151516179055565b80f35b823461028c57602036600319011261028c5761025861085c565b600154906001600160a01b039061027233838516146108ab565b16906bffffffffffffffffffffffff60a01b161760015580f35b80fd5b503461017e578160031936011261017e5760209060ff60095460a81c1690519015158152f35b9050346103185781600319360112610318576102cf61085c565b916102d8610bd0565b60ff60095460a81c166102fb57836102f4336024358682610f12565b6001815580f35b5162461bcd60e51b815291508190610314908201610b8e565b0390fd5b8280fd5b50503461017e57602036600319011261017e5760209160ff9082906001600160a01b0361034761085c565b1681526002855220541690519015158152f35b90503461031857816003193601126103185761037461085c565b9161037d610bd0565b60ff60095460a81c166102fb57836102f4602435853380610e27565b50503461017e578160031936011261017e576020906008549051908152f35b50503461017e578060031936011261017e5761023b906103d661085c565b906103df61089c565b60015490926001600160a01b03916103fa90831633146108ab565b168452600a60205283209060ff801983541691151516179055565b833461028c57608036600319011261028c5761042f61085c565b610437610877565b906044356001600160a01b0381168103610468576102f492610457610bd0565b61045f610d25565b60643592610e27565b8380fd5b833461028c57602036600319011261028c5761023b61048961085c565b610ffb565b50503461017e57602036600319011261017e5760209181906001600160a01b036104b661085c565b1681526003845220549051908152f35b50503461017e57602036600319011261017e5760209160ff9082906001600160a01b036104f161085c565b168152600a855220541690519015158152f35b50503461017e57602036600319011261017e5760209061052a61052561085c565b610c49565b9051908152f35b833461028c57602036600319011261028c5761054b61088d565b61056060018060a01b036001541633146108ab565b6009805460ff60b01b191691151560b01b60ff60b01b1691909117905580f35b50503461017e57602036600319011261017e5760209181906001600160a01b036105a861085c565b1681526006845220549051908152f35b50503461017e57602036600319011261017e5760209181906001600160a01b036105e061085c565b1681526007845220549051908152f35b50503461017e578160031936011261017e5760209060ff60095460a01c169051908152f35b83833461017e57602036600319011261017e5761063061085c565b92610639610bd0565b60ff60095460b01c1661065d5750600161065560209433610c9a565b925551908152f35b905162461bcd60e51b8152908190610314908201610b8e565b833461028c57602036600319011261028c5761069061088d565b6106a560018060a01b036001541633146108ab565b6009805460ff60a81b191691151560a81b60ff60a81b1691909117905580f35b905034610318576020366003190112610318577f98dc76c39aa5a5dcb749f8750a65db3dfa1e14bcc1591a9c16a7420e5da748f891602091359061071460018060a01b036001541633146108ab565b8160085551908152a180f35b50503461017e578060031936011261017e5790602091600161065561074361085c565b61074b610877565b90610754610bd0565b61075c610d25565b610c9a565b50503461017e578160031936011261017e5760015490516001600160a01b039091168152602090f35b9050346103185760203660031901126103185760209282916001600160a01b036107b261085c565b168252845220549051908152f35b833461028c57608036600319011261028c576107da61085c565b6107e2610877565b90606435906001600160a01b0382168203610468576102f492610803610bd0565b61080b610d25565b60443591610f12565b833461028c57606036600319011261028c5761023b61083161085c565b610839610877565b6001546001600160a01b039061085290821633146108ab565b6044359216610927565b600435906001600160a01b038216820361087257565b600080fd5b602435906001600160a01b038216820361087257565b60043590811515820361087257565b60243590811515820361087257565b156108b257565b60405162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b6044820152606490fd5b90601f8019910116810190811067ffffffffffffffff82111761091157604052565b634e487b7160e01b600052604160045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b03929092166024830152604480830193909352918152610968916109636064836108ef565b61096a565b565b60018060a01b0316906040516040810167ffffffffffffffff9082811082821117610911576040526020938483527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564858401526000808587829751910182855af1903d15610aaf573d928311610a9b5790610a05939291604051926109f888601f19601f84011601856108ef565b83523d868885013e610aba565b805191821591848315610a77575b505050905015610a205750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b91938180945001031261017e5782015190811515820361028c575080388084610a13565b634e487b7160e01b85526041600452602485fd5b90610a059392506060915b91929015610b1c5750815115610ace575090565b3b15610ad75790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015610b2f5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510610b75575050604492506000838284010152601f80199101168101030190fd5b8481018201518686016044015293810193859350610b52565b60809060208152602160208201527f526577617264547261636b65723a20616374696f6e206e6f7420656e61626c656040820152601960fa1b60608201520190565b600260005414610be1576002600055565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b91908201809211610c3357565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811660008181526004602052604090205415610c8a57610c73610c8792611098565b906000526005602052604060002054610c26565b90565b5050600560205260406000205490565b600091610ca682610ffb565b6001600160a01b038281168452600560205260408420805494905591839182610cd1575b5050505090565b82610d01917f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49560095416610927565b604080516001600160a01b039290921682526020820192909252a138818180610cca565b33600052600a60205260ff6040600020541615610d3e57565b60405162461bcd60e51b815260206004820152601860248201527f526577617264547261636b65723a20666f7262696464656e00000000000000006044820152606490fd5b15610d8a57565b60405162461bcd60e51b815260206004820152601e60248201527f526577617264547261636b65723a20696e76616c6964205f616d6f756e7400006044820152606490fd5b15610dd657565b60405162461bcd60e51b8152602060048201526024808201527f526577617264547261636b65723a20696e76616c6964205f6465706f7369745460448201526337b5b2b760e11b6064820152608490fd5b9190610e34841515610d83565b60018060a01b038092169360009285845260209260028452604095610e5e60ff8888205416610dcf565b86516323b872dd60e01b8682015290831660248201523060448201526064808201859052815260a0810167ffffffffffffffff811182821017610ef15791610eb1610ee9949260039796948a528a61096a565b610eba81610ffb565b1680865260048452610ecf8288882054610c26565b908652600484528686205586855283835285852054610c26565b948352522055565b634e487b7160e01b87526041600452602487fd5b91908203918211610c3357565b939290610f20831515610d83565b60018060a01b038091169060009582875260209160028352604091610f4a60ff848b205416610dcf565b610f5381610ffb565b1696878152600483528181205497868910610fa357610f7687610968999a610f05565b9082526004845282822055838152600383526003610f978784842054610f05565b93858352522055610927565b825162461bcd60e51b815260048101859052602b60248201527f526577617264547261636b65723a205f616d6f756e742065786365656473207360448201526a1d185ad959105b5bdd5b9d60aa1b6064820152608490fd5b61100481611098565b9060018060a01b0316906000828152602091600783526040924284842055600581526110338285852054610c26565b858452600582528085852055151580611075575b611053575b5050505050565b61106560069283835285852054610c26565b948352522055388080808061104c565b5060048152838320541515611047565b81810292918115918404141715610c3357565b6001600160a01b03166000818152600760205260408120546110ba9042610f05565b9181526004602052604081205490811561112a5760ff60095460a01c16604d811161111657600a0a9081156111025750610c8792916110fd916008549104611085565b611085565b634e487b7160e01b81526012600452602490fd5b634e487b7160e01b82526011600452602482fd5b9150509056fea2646970667358221220a944e87ea0504c91c44e51910205c0608bccbb4dbb21e73973dcfc15205e872164736f6c63430008130033", - "deployedBytecode": "0x6040608081526004908136101561001557600080fd5b600091823560e01c90816301e3366714610814578163098bf59d146107c057816310c1c1031461078a57816312d43a511461076157816313e82e7a1461072057816318e20a03146106c55781631d30d5bc146106765781631e83409a14610615578163313ce567146105f0578163355bb78c146105b85781633792def3146105805781633cd7f70014610531578163402914f51461050457816346ea87af146104c6578163552ce1dc1461048e5781635fd619651461046c578163790b5a6c146104155781639cb7de4b146103b8578163a8d9362714610399578163adc9772e1461035a578163b89e45b31461031c578163c2a672e0146102b557508063c5fa27301461028f578063cfad57a21461023e578063e44b7558146101df578063e9503425146101a8578063f76033d3146101825763f7c618c11461015757600080fd5b3461017e578160031936011261017e5760095490516001600160a01b039091168152602090f35b5080fd5b503461017e578160031936011261017e5760209060ff60095460b01c1690519015158152f35b503461017e57602036600319011261017e5760209181906001600160a01b036101cf61085c565b1681526005845220549051908152f35b503461017e578060031936011261017e5761023b906101fc61085c565b9061020561089c565b60015490926001600160a01b039161022090831633146108ab565b168452600260205283209060ff801983541691151516179055565b80f35b823461028c57602036600319011261028c5761025861085c565b600154906001600160a01b039061027233838516146108ab565b16906bffffffffffffffffffffffff60a01b161760015580f35b80fd5b503461017e578160031936011261017e5760209060ff60095460a81c1690519015158152f35b9050346103185781600319360112610318576102cf61085c565b916102d8610bd0565b60ff60095460a81c166102fb57836102f4336024358682610f12565b6001815580f35b5162461bcd60e51b815291508190610314908201610b8e565b0390fd5b8280fd5b50503461017e57602036600319011261017e5760209160ff9082906001600160a01b0361034761085c565b1681526002855220541690519015158152f35b90503461031857816003193601126103185761037461085c565b9161037d610bd0565b60ff60095460a81c166102fb57836102f4602435853380610e27565b50503461017e578160031936011261017e576020906008549051908152f35b50503461017e578060031936011261017e5761023b906103d661085c565b906103df61089c565b60015490926001600160a01b03916103fa90831633146108ab565b168452600a60205283209060ff801983541691151516179055565b833461028c57608036600319011261028c5761042f61085c565b610437610877565b906044356001600160a01b0381168103610468576102f492610457610bd0565b61045f610d25565b60643592610e27565b8380fd5b833461028c57602036600319011261028c5761023b61048961085c565b610ffb565b50503461017e57602036600319011261017e5760209181906001600160a01b036104b661085c565b1681526003845220549051908152f35b50503461017e57602036600319011261017e5760209160ff9082906001600160a01b036104f161085c565b168152600a855220541690519015158152f35b50503461017e57602036600319011261017e5760209061052a61052561085c565b610c49565b9051908152f35b833461028c57602036600319011261028c5761054b61088d565b61056060018060a01b036001541633146108ab565b6009805460ff60b01b191691151560b01b60ff60b01b1691909117905580f35b50503461017e57602036600319011261017e5760209181906001600160a01b036105a861085c565b1681526006845220549051908152f35b50503461017e57602036600319011261017e5760209181906001600160a01b036105e061085c565b1681526007845220549051908152f35b50503461017e578160031936011261017e5760209060ff60095460a01c169051908152f35b83833461017e57602036600319011261017e5761063061085c565b92610639610bd0565b60ff60095460b01c1661065d5750600161065560209433610c9a565b925551908152f35b905162461bcd60e51b8152908190610314908201610b8e565b833461028c57602036600319011261028c5761069061088d565b6106a560018060a01b036001541633146108ab565b6009805460ff60a81b191691151560a81b60ff60a81b1691909117905580f35b905034610318576020366003190112610318577f98dc76c39aa5a5dcb749f8750a65db3dfa1e14bcc1591a9c16a7420e5da748f891602091359061071460018060a01b036001541633146108ab565b8160085551908152a180f35b50503461017e578060031936011261017e5790602091600161065561074361085c565b61074b610877565b90610754610bd0565b61075c610d25565b610c9a565b50503461017e578160031936011261017e5760015490516001600160a01b039091168152602090f35b9050346103185760203660031901126103185760209282916001600160a01b036107b261085c565b168252845220549051908152f35b833461028c57608036600319011261028c576107da61085c565b6107e2610877565b90606435906001600160a01b0382168203610468576102f492610803610bd0565b61080b610d25565b60443591610f12565b833461028c57606036600319011261028c5761023b61083161085c565b610839610877565b6001546001600160a01b039061085290821633146108ab565b6044359216610927565b600435906001600160a01b038216820361087257565b600080fd5b602435906001600160a01b038216820361087257565b60043590811515820361087257565b60243590811515820361087257565b156108b257565b60405162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b6044820152606490fd5b90601f8019910116810190811067ffffffffffffffff82111761091157604052565b634e487b7160e01b600052604160045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b03929092166024830152604480830193909352918152610968916109636064836108ef565b61096a565b565b60018060a01b0316906040516040810167ffffffffffffffff9082811082821117610911576040526020938483527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564858401526000808587829751910182855af1903d15610aaf573d928311610a9b5790610a05939291604051926109f888601f19601f84011601856108ef565b83523d868885013e610aba565b805191821591848315610a77575b505050905015610a205750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b91938180945001031261017e5782015190811515820361028c575080388084610a13565b634e487b7160e01b85526041600452602485fd5b90610a059392506060915b91929015610b1c5750815115610ace575090565b3b15610ad75790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015610b2f5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510610b75575050604492506000838284010152601f80199101168101030190fd5b8481018201518686016044015293810193859350610b52565b60809060208152602160208201527f526577617264547261636b65723a20616374696f6e206e6f7420656e61626c656040820152601960fa1b60608201520190565b600260005414610be1576002600055565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b91908201809211610c3357565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811660008181526004602052604090205415610c8a57610c73610c8792611098565b906000526005602052604060002054610c26565b90565b5050600560205260406000205490565b600091610ca682610ffb565b6001600160a01b038281168452600560205260408420805494905591839182610cd1575b5050505090565b82610d01917f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49560095416610927565b604080516001600160a01b039290921682526020820192909252a138818180610cca565b33600052600a60205260ff6040600020541615610d3e57565b60405162461bcd60e51b815260206004820152601860248201527f526577617264547261636b65723a20666f7262696464656e00000000000000006044820152606490fd5b15610d8a57565b60405162461bcd60e51b815260206004820152601e60248201527f526577617264547261636b65723a20696e76616c6964205f616d6f756e7400006044820152606490fd5b15610dd657565b60405162461bcd60e51b8152602060048201526024808201527f526577617264547261636b65723a20696e76616c6964205f6465706f7369745460448201526337b5b2b760e11b6064820152608490fd5b9190610e34841515610d83565b60018060a01b038092169360009285845260209260028452604095610e5e60ff8888205416610dcf565b86516323b872dd60e01b8682015290831660248201523060448201526064808201859052815260a0810167ffffffffffffffff811182821017610ef15791610eb1610ee9949260039796948a528a61096a565b610eba81610ffb565b1680865260048452610ecf8288882054610c26565b908652600484528686205586855283835285852054610c26565b948352522055565b634e487b7160e01b87526041600452602487fd5b91908203918211610c3357565b939290610f20831515610d83565b60018060a01b038091169060009582875260209160028352604091610f4a60ff848b205416610dcf565b610f5381610ffb565b1696878152600483528181205497868910610fa357610f7687610968999a610f05565b9082526004845282822055838152600383526003610f978784842054610f05565b93858352522055610927565b825162461bcd60e51b815260048101859052602b60248201527f526577617264547261636b65723a205f616d6f756e742065786365656473207360448201526a1d185ad959105b5bdd5b9d60aa1b6064820152608490fd5b61100481611098565b9060018060a01b0316906000828152602091600783526040924284842055600581526110338285852054610c26565b858452600582528085852055151580611075575b611053575b5050505050565b61106560069283835285852054610c26565b948352522055388080808061104c565b5060048152838320541515611047565b81810292918115918404141715610c3357565b6001600160a01b03166000818152600760205260408120546110ba9042610f05565b9181526004602052604081205490811561112a5760ff60095460a01c16604d811161111657600a0a9081156111025750610c8792916110fd916008549104611085565b611085565b634e487b7160e01b81526012600452602490fd5b634e487b7160e01b82526011600452602482fd5b9150509056fea2646970667358221220a944e87ea0504c91c44e51910205c0608bccbb4dbb21e73973dcfc15205e872164736f6c63430008130033", - "devdoc": { - "kind": "dev", - "methods": {}, - "version": 1 - }, - "userdoc": { - "kind": "user", - "methods": {}, - "version": 1 - }, - "storageLayout": { - "storage": [ - { - "astId": 10, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "_status", - "offset": 0, - "slot": "0", - "type": "t_uint256" - }, - { - "astId": 888, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "gov", - "offset": 0, - "slot": "1", - "type": "t_address" - }, - { - "astId": 948, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "isDepositToken", - "offset": 0, - "slot": "2", - "type": "t_mapping(t_address,t_bool)" - }, - { - "astId": 952, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "totalDepositSupply", - "offset": 0, - "slot": "3", - "type": "t_mapping(t_address,t_uint256)" - }, - { - "astId": 957, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "stakedAmounts", - "offset": 0, - "slot": "4", - "type": "t_mapping(t_address,t_uint256)" - }, - { - "astId": 961, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "claimableReward", - "offset": 0, - "slot": "5", - "type": "t_mapping(t_address,t_uint256)" - }, - { - "astId": 966, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "cumulativeRewards", - "offset": 0, - "slot": "6", - "type": "t_mapping(t_address,t_uint256)" - }, - { - "astId": 970, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "lastUpdateTimes", - "offset": 0, - "slot": "7", - "type": "t_mapping(t_address,t_uint256)" - }, - { - "astId": 972, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "tokensPerInterval", - "offset": 0, - "slot": "8", - "type": "t_uint256" - }, - { - "astId": 974, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "rewardToken", - "offset": 0, - "slot": "9", - "type": "t_address" - }, - { - "astId": 977, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "decimals", - "offset": 20, - "slot": "9", - "type": "t_uint8" - }, - { - "astId": 979, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "inPrivateStakingMode", - "offset": 21, - "slot": "9", - "type": "t_bool" - }, - { - "astId": 981, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "inPrivateClaimingMode", - "offset": 22, - "slot": "9", - "type": "t_bool" - }, - { - "astId": 985, - "contract": "contracts/staking/RewardTracker.sol:RewardTracker", - "label": "isHandler", - "offset": 0, - "slot": "10", - "type": "t_mapping(t_address,t_bool)" - } - ], - "types": { - "t_address": { - "encoding": "inplace", - "label": "address", - "numberOfBytes": "20" - }, - "t_bool": { - "encoding": "inplace", - "label": "bool", - "numberOfBytes": "1" - }, - "t_mapping(t_address,t_bool)": { - "encoding": "mapping", - "key": "t_address", - "label": "mapping(address => bool)", - "numberOfBytes": "32", - "value": "t_bool" - }, - "t_mapping(t_address,t_uint256)": { - "encoding": "mapping", - "key": "t_address", - "label": "mapping(address => uint256)", - "numberOfBytes": "32", - "value": "t_uint256" - }, - "t_uint256": { - "encoding": "inplace", - "label": "uint256", - "numberOfBytes": "32" - }, - "t_uint8": { - "encoding": "inplace", - "label": "uint8", - "numberOfBytes": "1" - } - } - } -} \ No newline at end of file diff --git a/deployments/bsc_test/TestSlot.json b/deployments/bsc_test/TestSlot.json new file mode 100644 index 0000000..b3b5efc --- /dev/null +++ b/deployments/bsc_test/TestSlot.json @@ -0,0 +1,337 @@ +{ + "address": "0xEc2D43E9E7F54E279B08d2d76BDfAE61400651C7", + "abi": [ + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_password", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_password", + "type": "bytes32" + } + ], + "name": "addUser", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "count", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "data", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "slot", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "elementSize", + "type": "uint256" + } + ], + "name": "getArrayLocation", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "slot", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "key", + "type": "uint256" + } + ], + "name": "getMapLocation", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "isTrue", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "someConst", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "u16", + "outputs": [ + { + "internalType": "uint16", + "name": "", + "type": "uint16" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "transactionHash": "0x9d1defa3d5e3228bb2c062420e24b2a288409bf28ec6dd625c4ae576113c9f09", + "receipt": { + "to": null, + "from": "0x50A8e60041A206AcaA5F844a1104896224be6F39", + "contractAddress": "0xEc2D43E9E7F54E279B08d2d76BDfAE61400651C7", + "transactionIndex": 0, + "gasUsed": "321301", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "blockHash": "0x507c7a3a4444697cd5b094c3e7f7aa7bd1f2da5ae235cde3ec6eeef900268497", + "transactionHash": "0x9d1defa3d5e3228bb2c062420e24b2a288409bf28ec6dd625c4ae576113c9f09", + "logs": [], + "blockNumber": 44580826, + "cumulativeGasUsed": "321301", + "status": 1, + "byzantium": true + }, + "args": [ + "0xd948549711a1f1198851e8eb8b4857a6159c6388bbab253fbc5b0160b0f9cd5d" + ], + "numDeployments": 1, + "solcInputHash": "0f8deec237bf5f05ad838036ecf818f6", + "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_password\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_password\",\"type\":\"bytes32\"}],\"name\":\"addUser\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"count\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"data\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"elementSize\",\"type\":\"uint256\"}],\"name\":\"getArrayLocation\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"getMapLocation\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isTrue\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"someConst\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"u16\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/TestSlot.sol\":\"TestSlot\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"contracts/test/TestSlot.sol\":{\"content\":\"// SPDX-License-Identifier: Apache 2.0\\npragma solidity 0.8.19;\\ncontract TestSlot {\\n uint public count = 123;\\n address public owner = msg.sender;\\n bool public isTrue = true;\\n uint16 public u16 = 31;\\n bytes32 private password;\\n uint public constant someConst = 123;\\n bytes32[3] public data;\\n struct User {\\n uint id;\\n bytes32 password;\\n }\\n User[] private users;\\n mapping(uint => User) private idToUser;\\n constructor(bytes32 _password) {\\n password = _password;\\n }\\n function addUser(bytes32 _password) public {\\n User memory user = User({id: users.length, password: _password});\\n users.push(user);\\n idToUser[user.id] = user;\\n }\\n function getArrayLocation(uint slot, uint index, uint elementSize) public pure returns (uint) {\\n return uint(keccak256(abi.encodePacked(slot))) + (index * elementSize);\\n }\\n function getMapLocation(uint slot, uint key) public pure returns (uint) {\\n return uint(keccak256(abi.encodePacked(key, slot)));\\n }\\n}\\n\",\"keccak256\":\"0x7125359c59989b80246568b655b9577da8dae4704882855a6874010ba9829073\",\"license\":\"Apache 2.0\"}},\"version\":1}", + "bytecode": "0x60803461008357601f61043738819003918201601f19168301916001600160401b03831184841017610088578084926020946040528339810103126100835751607b600055600180546001600160a81b0319163360ff60a01b191617600160a01b1761ffff60a81b1916601f60a81b179055600255604051610398908161009f8239f35b600080fd5b634e487b7160e01b600052604160045260246000fdfe6080604081815260048036101561001557600080fd5b600092833560e01c90816274530a1461033e5750806306661abd146103215780630a6b4e06146102fb57806359d168b6146102df578063881374d71461027d5780638da5cb5b146102545780638faf850d14610157578063992ddc6f146100b35763f0ba84401461008557600080fd5b346100af5760203660031901126100af573560038110156100af5760209250600301549051908152f35b8280fd5b50913461015457606036600319011261015457602435906044358351602081019086358252602081528581019581871067ffffffffffffffff881117610141578690525190209281810291818304149015171561012e57820180921161011b57602083838152f35b634e487b7160e01b815260118452602490fd5b634e487b7160e01b825260118552602482fd5b634e487b7160e01b855260418852602485fd5b80fd5b50919034610250576020366003190112610250576006549080519181830183811067ffffffffffffffff82111761023d578252808352843560208401526801000000000000000081101561022a57600181018060065581101561021757906101f88361021494936006875260011b7ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01906020600191805184550151910155565b8151845260076020528320906020600191805184550151910155565b80f35b634e487b7160e01b845260328552602484fd5b634e487b7160e01b845260418552602484fd5b634e487b7160e01b855260418652602485fd5b5080fd5b50503461025057816003193601126102505760015490516001600160a01b039091168152602090f35b50919034610250578060031936011261025057805160208101916024358352843581830152808252606082019382851067ffffffffffffffff8611176102cc5750602094508390525190208152f35b634e487b7160e01b815260418652602490fd5b50503461025057816003193601126102505760209051607b8152f35b50503461025057816003193601126102505760209061ffff60015460a81c169051908152f35b505034610250578160031936011261025057602091549051908152f35b84903461025057816003193601126102505760209060ff60015460a01c1615158152f3fea2646970667358221220e73d55bd9adeeb30fe2d7ef10777b0cb3d9c6b85ee29dd94bbcfd58ad70abd4864736f6c63430008130033", + "deployedBytecode": "0x6080604081815260048036101561001557600080fd5b600092833560e01c90816274530a1461033e5750806306661abd146103215780630a6b4e06146102fb57806359d168b6146102df578063881374d71461027d5780638da5cb5b146102545780638faf850d14610157578063992ddc6f146100b35763f0ba84401461008557600080fd5b346100af5760203660031901126100af573560038110156100af5760209250600301549051908152f35b8280fd5b50913461015457606036600319011261015457602435906044358351602081019086358252602081528581019581871067ffffffffffffffff881117610141578690525190209281810291818304149015171561012e57820180921161011b57602083838152f35b634e487b7160e01b815260118452602490fd5b634e487b7160e01b825260118552602482fd5b634e487b7160e01b855260418852602485fd5b80fd5b50919034610250576020366003190112610250576006549080519181830183811067ffffffffffffffff82111761023d578252808352843560208401526801000000000000000081101561022a57600181018060065581101561021757906101f88361021494936006875260011b7ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01906020600191805184550151910155565b8151845260076020528320906020600191805184550151910155565b80f35b634e487b7160e01b845260328552602484fd5b634e487b7160e01b845260418552602484fd5b634e487b7160e01b855260418652602485fd5b5080fd5b50503461025057816003193601126102505760015490516001600160a01b039091168152602090f35b50919034610250578060031936011261025057805160208101916024358352843581830152808252606082019382851067ffffffffffffffff8611176102cc5750602094508390525190208152f35b634e487b7160e01b815260418652602490fd5b50503461025057816003193601126102505760209051607b8152f35b50503461025057816003193601126102505760209061ffff60015460a81c169051908152f35b505034610250578160031936011261025057602091549051908152f35b84903461025057816003193601126102505760209060ff60015460a01c1615158152f3fea2646970667358221220e73d55bd9adeeb30fe2d7ef10777b0cb3d9c6b85ee29dd94bbcfd58ad70abd4864736f6c63430008130033", + "devdoc": { + "kind": "dev", + "methods": {}, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + }, + "storageLayout": { + "storage": [ + { + "astId": 4, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "count", + "offset": 0, + "slot": "0", + "type": "t_uint256" + }, + { + "astId": 8, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "owner", + "offset": 0, + "slot": "1", + "type": "t_address" + }, + { + "astId": 11, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "isTrue", + "offset": 20, + "slot": "1", + "type": "t_bool" + }, + { + "astId": 14, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "u16", + "offset": 21, + "slot": "1", + "type": "t_uint16" + }, + { + "astId": 16, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "password", + "offset": 0, + "slot": "2", + "type": "t_bytes32" + }, + { + "astId": 23, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "data", + "offset": 0, + "slot": "3", + "type": "t_array(t_bytes32)3_storage" + }, + { + "astId": 32, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "users", + "offset": 0, + "slot": "6", + "type": "t_array(t_struct(User)28_storage)dyn_storage" + }, + { + "astId": 37, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "idToUser", + "offset": 0, + "slot": "7", + "type": "t_mapping(t_uint256,t_struct(User)28_storage)" + } + ], + "types": { + "t_address": { + "encoding": "inplace", + "label": "address", + "numberOfBytes": "20" + }, + "t_array(t_bytes32)3_storage": { + "base": "t_bytes32", + "encoding": "inplace", + "label": "bytes32[3]", + "numberOfBytes": "96" + }, + "t_array(t_struct(User)28_storage)dyn_storage": { + "base": "t_struct(User)28_storage", + "encoding": "dynamic_array", + "label": "struct TestSlot.User[]", + "numberOfBytes": "32" + }, + "t_bool": { + "encoding": "inplace", + "label": "bool", + "numberOfBytes": "1" + }, + "t_bytes32": { + "encoding": "inplace", + "label": "bytes32", + "numberOfBytes": "32" + }, + "t_mapping(t_uint256,t_struct(User)28_storage)": { + "encoding": "mapping", + "key": "t_uint256", + "label": "mapping(uint256 => struct TestSlot.User)", + "numberOfBytes": "32", + "value": "t_struct(User)28_storage" + }, + "t_struct(User)28_storage": { + "encoding": "inplace", + "label": "struct TestSlot.User", + "members": [ + { + "astId": 25, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "id", + "offset": 0, + "slot": "0", + "type": "t_uint256" + }, + { + "astId": 27, + "contract": "contracts/test/TestSlot.sol:TestSlot", + "label": "password", + "offset": 0, + "slot": "1", + "type": "t_bytes32" + } + ], + "numberOfBytes": "64" + }, + "t_uint16": { + "encoding": "inplace", + "label": "uint16", + "numberOfBytes": "2" + }, + "t_uint256": { + "encoding": "inplace", + "label": "uint256", + "numberOfBytes": "32" + } + } + } +} \ No newline at end of file diff --git a/deployments/bsc_test/solcInputs/0f8deec237bf5f05ad838036ecf818f6.json b/deployments/bsc_test/solcInputs/0f8deec237bf5f05ad838036ecf818f6.json new file mode 100644 index 0000000..17cc6bc --- /dev/null +++ b/deployments/bsc_test/solcInputs/0f8deec237bf5f05ad838036ecf818f6.json @@ -0,0 +1,36 @@ +{ + "language": "Solidity", + "sources": { + "contracts/test/TestSlot.sol": { + "content": "// SPDX-License-Identifier: Apache 2.0\npragma solidity 0.8.19;\ncontract TestSlot {\n uint public count = 123;\n address public owner = msg.sender;\n bool public isTrue = true;\n uint16 public u16 = 31;\n bytes32 private password;\n uint public constant someConst = 123;\n bytes32[3] public data;\n struct User {\n uint id;\n bytes32 password;\n }\n User[] private users;\n mapping(uint => User) private idToUser;\n constructor(bytes32 _password) {\n password = _password;\n }\n function addUser(bytes32 _password) public {\n User memory user = User({id: users.length, password: _password});\n users.push(user);\n idToUser[user.id] = user;\n }\n function getArrayLocation(uint slot, uint index, uint elementSize) public pure returns (uint) {\n return uint(keccak256(abi.encodePacked(slot))) + (index * elementSize);\n }\n function getMapLocation(uint slot, uint key) public pure returns (uint) {\n return uint(keccak256(abi.encodePacked(key, slot)));\n }\n}\n" + } + }, + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata", + "devdoc", + "userdoc", + "storageLayout", + "evm.gasEstimates" + ], + "": [ + "ast" + ] + } + }, + "metadata": { + "useLiteralContent": true + } + } +} \ No newline at end of file diff --git a/deployments/bsc_test/solcInputs/26f8bdf66fed22c4d27d199a3a3111c7.json b/deployments/bsc_test/solcInputs/26f8bdf66fed22c4d27d199a3a3111c7.json deleted file mode 100644 index 601aa7e..0000000 --- a/deployments/bsc_test/solcInputs/26f8bdf66fed22c4d27d199a3a3111c7.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "language": "Solidity", - "sources": { - "@openzeppelin/contracts/security/ReentrancyGuard.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/IERC20.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../extensions/IERC20Permit.sol\";\nimport \"../../../utils/Address.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n using Address for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20Permit token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\n }\n}\n" - }, - "@openzeppelin/contracts/utils/Address.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" - }, - "contracts/core/Governable.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ncontract Governable {\n address public gov;\n\n constructor() {\n gov = msg.sender;\n }\n\n modifier onlyGov() {\n require(msg.sender == gov, \"Governable: forbidden\");\n _;\n }\n\n function setGov(address _gov) external virtual onlyGov {\n gov = _gov;\n }\n}\n" - }, - "contracts/interfaces/IMintable.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ninterface IMintable {\n function isMinter(address _account) external returns (bool);\n function setMinter(address _minter, bool _isActive) external;\n function mint(address _account, uint256 _amount) external;\n function burn(address _account, uint256 _amount) external;\n}" - }, - "contracts/staking/interfaces/IRewardTracker.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ninterface IRewardTracker {\n function stakedAmounts(address _account) external view returns (uint256);\n function updateRewards(address _account) external;\n function stake(address _depositToken, uint256 _amount) external;\n function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;\n function unstake(address _depositToken, uint256 _amount) external;\n function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;\n function claim(address _receiver) external returns (uint256);\n function claimForAccount(address _account, address _receiver) external returns (uint256);\n function claimable(address _account) external view returns (uint256);\n // function averageStakedAmounts(address _account) external view returns (uint256);\n function cumulativeRewards(address _account) external view returns (uint256);\n}\n" - }, - "contracts/staking/interfaces/IVester.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ninterface IVester {\n function needCheckStake() external view returns (bool);\n function updateVesting(address _account) external;\n\n function rewardTrackerCEC() external view returns (address);\n function rewardTrackerEsCEC() external view returns (address);\n\n function claimForAccount(address _account, address _receiver) external returns (uint256);\n\n function claimable(address _account) external view returns (uint256);\n function cumulativeClaimAmounts(address _account) external view returns (uint256);\n function claimedAmounts(address _account) external view returns (uint256);\n function getVestedAmount(address _account) external view returns (uint256);\n function cumulativeRewardDeductions(address _account) external view returns (uint256);\n function bonusRewards(address _account) external view returns (uint256);\n\n function setCumulativeRewardDeductions(address _account, uint256 _amount) external;\n function setBonusRewards(address _account, uint256 _amount) external;\n\n function getMaxVestableAmount(address _account) external view returns (uint256);\n}\n" - }, - "contracts/staking/RewardRouter.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport {IRewardTracker} from \"./interfaces/IRewardTracker.sol\";\nimport {IVester} from \"./interfaces/IVester.sol\";\nimport {Governable} from \"../core/Governable.sol\";\n\ncontract RewardRouter is ReentrancyGuard, Governable {\n using SafeERC20 for IERC20;\n\n address public cec;\n\n address public stakedCecTracker;\n address public cecVester;\n\n event StakeCec(address indexed account, address indexed token, uint256 amount);\n event UnstakeCec(address indexed account, address indexed token, uint256 amount);\n\n constructor(address _cec, address _stakedCecTracker, address _cecVester) {\n cec = _cec;\n stakedCecTracker = _stakedCecTracker;\n cecVester = _cecVester;\n }\n\n // to help users who accidentally send their tokens to this contract\n function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {\n IERC20(_token).safeTransfer(_account, _amount);\n }\n\n function batchStakeCecForAccount(\n address[] memory _accounts,\n uint256[] memory _amounts\n ) external nonReentrant onlyGov {\n for (uint256 i = 0; i < _accounts.length; i++) {\n _stakeCec(msg.sender, _accounts[i], cec, _amounts[i]);\n }\n }\n\n function stakeCec(uint256 _amount) external nonReentrant {\n _stakeCec(msg.sender, msg.sender, cec, _amount);\n }\n\n function unstakeCec(uint256 _amount) external nonReentrant {\n // check if the user has staked CEC in the vester\n if (cecVester != address(0) && IVester(cecVester).needCheckStake()) {\n IVester(cecVester).updateVesting(msg.sender);\n require(IERC20(cecVester).balanceOf(msg.sender) + _amount <= IRewardTracker(stakedCecTracker).stakedAmounts(msg.sender), \"RewardRouter: insufficient CEC balance\");\n }\n _unstakeCec(msg.sender, cec, _amount);\n }\n\n function claim() external nonReentrant {\n address account = msg.sender;\n IRewardTracker(stakedCecTracker).claimForAccount(account, account);\n }\n\n function _stakeCec(address _fundingAccount, address _account, address _token, uint256 _amount) private {\n require(_amount > 0, \"invalid _amount\");\n\n IRewardTracker(stakedCecTracker).stakeForAccount(_fundingAccount, _account, _token, _amount);\n\n emit StakeCec(_account, _token, _amount);\n }\n\n function _unstakeCec(address _account, address _token, uint256 _amount) private {\n require(_amount > 0, \"invalid _amount\");\n // uint256 balance = IRewardTracker(stakedCecTracker).stakedAmounts(_account);\n IRewardTracker(stakedCecTracker).unstakeForAccount(_account, _token, _amount, _account);\n\n emit UnstakeCec(_account, _token, _amount);\n }\n}\n" - }, - "contracts/staking/Vester.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IVester} from \"./interfaces/IVester.sol\";\nimport {IRewardTracker} from \"./interfaces/IRewardTracker.sol\";\nimport {Governable} from \"../core/Governable.sol\";\nimport {IMintable} from \"../interfaces/IMintable.sol\";\n\ncontract Vester is IVester, IERC20, ReentrancyGuard, Governable {\n using SafeERC20 for IERC20;\n\n string public name;\n string public symbol;\n uint8 public decimals = 18;\n uint256 public vestingDuration;\n address public esToken;\n address public claimableToken;\n\n address public override rewardTrackerCEC;\n address public override rewardTrackerEsCEC;\n\n uint256 public override totalSupply;\n uint256 public pairSupply;\n bool public needCheckStake;\n\n mapping(address account => uint256 amount) public balances;\n mapping(address account => uint256 amount) public override cumulativeClaimAmounts;\n mapping(address account => uint256 amount) public override claimedAmounts;\n mapping(address account => uint256 time) public lastVestingTimes;\n\n mapping(address account => uint256 amount) public override cumulativeRewardDeductions;\n mapping(address account => uint256 amount) public override bonusRewards;\n\n mapping(address handler => bool status) public isHandler;\n\n event Claim(address indexed receiver, uint256 amount);\n event Deposit(address indexed account, uint256 amount);\n event Withdraw(address indexed account, uint256 claimedAmount, uint256 balance);\n event DurationUpdated(uint256 duration);\n\n constructor(\n string memory _name,\n string memory _symbol,\n uint256 _vestingDuration,\n address _esToken,\n address _claimableToken,\n address _rewardTrackerCEC,\n address _rewardTrackerEsCEC,\n bool _needCheckStake\n ) {\n name = _name;\n symbol = _symbol;\n vestingDuration = _vestingDuration;\n esToken = _esToken;\n claimableToken = _claimableToken;\n rewardTrackerCEC = _rewardTrackerCEC;\n rewardTrackerEsCEC = _rewardTrackerEsCEC;\n needCheckStake = _needCheckStake;\n }\n\n function setHandler(address _handler, bool _isActive) external onlyGov {\n isHandler[_handler] = _isActive;\n }\n\n function deposit(uint256 _amount) external nonReentrant {\n _deposit(msg.sender, _amount);\n }\n\n function depositForAccount(address _account, uint256 _amount) external nonReentrant {\n _validateHandler();\n _deposit(_account, _amount);\n }\n\n function claim() external nonReentrant returns (uint256) {\n return _claim(msg.sender, msg.sender);\n }\n\n function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) {\n _validateHandler();\n return _claim(_account, _receiver);\n }\n\n // to help users who accidentally send their tokens to this contract\n function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {\n IERC20(_token).safeTransfer(_account, _amount);\n }\n\n function withdraw() external nonReentrant {\n address account = msg.sender;\n address _receiver = account;\n _claim(account, _receiver);\n\n uint256 claimedAmount = cumulativeClaimAmounts[account];\n uint256 balance = balances[account];\n uint256 totalVested = balance + claimedAmount;\n require(totalVested > 0, \"Vester: vested amount is zero\");\n\n IERC20(esToken).safeTransfer(_receiver, balance);\n _burn(account, balance);\n\n delete cumulativeClaimAmounts[account];\n delete claimedAmounts[account];\n delete lastVestingTimes[account];\n\n emit Withdraw(account, claimedAmount, balance);\n }\n\n function setRewardTrackerCEC(address _rewardTracker) external onlyGov {\n rewardTrackerCEC = _rewardTracker;\n }\n\n function setRewardTrackerEsCEC(address _rewardTracker) external onlyGov {\n rewardTrackerEsCEC = _rewardTracker;\n }\n\n function updateDuration(uint256 _vestingDuration) external onlyGov {\n vestingDuration = _vestingDuration;\n emit DurationUpdated(_vestingDuration);\n }\n\n function setCumulativeRewardDeductions(address _account, uint256 _amount) external override nonReentrant {\n _validateHandler();\n cumulativeRewardDeductions[_account] = _amount;\n }\n\n function setBonusRewards(address _account, uint256 _amount) external override nonReentrant {\n _validateHandler();\n bonusRewards[_account] = _amount;\n }\n\n function getMaxVestableAmount(address _account) public view override returns (uint256) {\n uint256 maxVestableAmount = bonusRewards[_account];\n\n if (hasRewardTrackerCEC()) {\n uint256 cumulativeRewardCEC = IRewardTracker(rewardTrackerCEC).cumulativeRewards(_account);\n maxVestableAmount = maxVestableAmount + cumulativeRewardCEC ;\n }\n\n if (hasRewardTrackerEsCEC()) {\n uint256 cumulativeRewardEsCEC = IRewardTracker(rewardTrackerEsCEC).cumulativeRewards(_account);\n maxVestableAmount = maxVestableAmount + cumulativeRewardEsCEC;\n }\n\n uint256 cumulativeRewardDeduction = cumulativeRewardDeductions[_account];\n\n if (maxVestableAmount < cumulativeRewardDeduction) {\n return 0;\n }\n\n return maxVestableAmount - cumulativeRewardDeduction;\n }\n\n function hasRewardTrackerCEC() public view returns (bool) {\n return rewardTrackerCEC != address(0);\n }\n\n function hasRewardTrackerEsCEC() public view returns (bool) {\n return rewardTrackerEsCEC != address(0);\n }\n\n function getTotalVested(address _account) public view returns (uint256) {\n return balances[_account] + cumulativeClaimAmounts[_account];\n }\n\n function balanceOf(address _account) public view override returns (uint256) {\n return balances[_account];\n }\n\n // empty implementation, tokens are non-transferrable\n function transfer(address /* recipient */, uint256 /* amount */) public virtual override returns (bool) {\n revert(\"Vester: non-transferrable\");\n }\n\n // empty implementation, tokens are non-transferrable\n function allowance(address /* owner */, address /* spender */) public view virtual override returns (uint256) {\n return 0;\n }\n\n // empty implementation, tokens are non-transferrable\n function approve(address /* spender */, uint256 /* amount */) public virtual override returns (bool) {\n revert(\"Vester: non-transferrable\");\n }\n\n // empty implementation, tokens are non-transferrable\n function transferFrom(\n address /* sender */,\n address /* recipient */,\n uint256 /* amount */\n ) public virtual override returns (bool) {\n revert(\"Vester: non-transferrable\");\n }\n\n function getVestedAmount(address _account) public view override returns (uint256) {\n uint256 balance = balances[_account];\n uint256 cumulativeClaimAmount = cumulativeClaimAmounts[_account];\n return balance + cumulativeClaimAmount;\n }\n\n function _mint(address _account, uint256 _amount) private {\n require(_account != address(0), \"Vester: mint to the zero address\");\n\n totalSupply = totalSupply + _amount;\n balances[_account] = balances[_account] + _amount;\n\n emit Transfer(address(0), _account, _amount);\n }\n\n function _burn(address _account, uint256 _amount) private {\n require(_account != address(0), \"Vester: burn from the zero address\");\n require(balances[_account] >= _amount, \"Vester: balance is not enough\");\n balances[_account] = balances[_account] - _amount;\n totalSupply = totalSupply - _amount;\n\n emit Transfer(_account, address(0), _amount);\n }\n\n /**\n * @dev Deposit ES tokens to the contract\n */\n function _deposit(address _account, uint256 _amount) private {\n require(_amount > 0, \"Vester: invalid _amount\");\n _updateVesting(_account);\n\n IERC20(esToken).safeTransferFrom(_account, address(this), _amount);\n\n _mint(_account, _amount);\n\n if (needCheckStake && hasRewardTrackerCEC()) {\n // if u want to transfer 100 esCec to cec, u need to have 100 cec in stake\n uint256 cecAmount = IRewardTracker(rewardTrackerCEC).stakedAmounts(_account);\n require(balances[_account] <= cecAmount, \"Vester: insufficient cec balance\");\n }\n uint256 maxAmount = getMaxVestableAmount(_account);\n require(getTotalVested(_account) <= maxAmount, \"Vester: max vestable amount exceeded\");\n\n emit Deposit(_account, _amount);\n }\n\n function updateVesting(address _account) public {\n _updateVesting(_account);\n }\n\n function _updateVesting(address _account) public {\n uint256 amount = _getNextClaimableAmount(_account);\n lastVestingTimes[_account] = block.timestamp;\n if (amount == 0) {\n return;\n }\n // transfer claimableAmount from balances to cumulativeClaimAmounts\n _burn(_account, amount);\n cumulativeClaimAmounts[_account] = cumulativeClaimAmounts[_account] + amount;\n\n IMintable(esToken).burn(address(this), amount);\n }\n\n function _getNextClaimableAmount(address _account) private view returns (uint256) {\n uint256 timeDiff = block.timestamp - lastVestingTimes[_account];\n\n uint256 balance = balances[_account];\n if (balance == 0) {\n return 0;\n }\n uint256 vestedAmount = getVestedAmount(_account);\n uint256 claimableAmount = (vestedAmount * timeDiff) / vestingDuration;\n if (claimableAmount < balance) {\n return claimableAmount;\n }\n\n return balance;\n }\n\n function claimable(address _account) public view override returns (uint256) {\n uint256 amount = cumulativeClaimAmounts[_account] - claimedAmounts[_account];\n uint256 nextClaimable = _getNextClaimableAmount(_account);\n return amount + nextClaimable;\n }\n\n function _claim(address _account, address _receiver) private returns (uint256) {\n _updateVesting(_account);\n uint256 amount = claimable(_account);\n claimedAmounts[_account] = claimedAmounts[_account] + amount;\n IERC20(claimableToken).safeTransfer(_receiver, amount);\n emit Claim(_account, amount);\n return amount;\n }\n\n function _validateHandler() private view {\n require(isHandler[msg.sender], \"Vester: forbidden\");\n }\n}\n" - } - }, - "settings": { - "optimizer": { - "enabled": true, - "runs": 200 - }, - "viaIR": true, - "outputSelection": { - "*": { - "*": [ - "abi", - "evm.bytecode", - "evm.deployedBytecode", - "evm.methodIdentifiers", - "metadata", - "devdoc", - "userdoc", - "storageLayout", - "evm.gasEstimates" - ], - "": [ - "ast" - ] - } - }, - "metadata": { - "useLiteralContent": true - } - } -} \ No newline at end of file diff --git a/deployments/bsc_test/solcInputs/78b4e81d7708c749b91256813b9801a7.json b/deployments/bsc_test/solcInputs/78b4e81d7708c749b91256813b9801a7.json deleted file mode 100644 index 3273f69..0000000 --- a/deployments/bsc_test/solcInputs/78b4e81d7708c749b91256813b9801a7.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "language": "Solidity", - "sources": { - "@openzeppelin/contracts/security/ReentrancyGuard.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/IERC20.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" - }, - "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../extensions/IERC20Permit.sol\";\nimport \"../../../utils/Address.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n using Address for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20Permit token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\n }\n}\n" - }, - "@openzeppelin/contracts/utils/Address.sol": { - "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" - }, - "contracts/core/Governable.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ncontract Governable {\n address public gov;\n\n constructor() {\n gov = msg.sender;\n }\n\n modifier onlyGov() {\n require(msg.sender == gov, \"Governable: forbidden\");\n _;\n }\n\n function setGov(address _gov) external virtual onlyGov {\n gov = _gov;\n }\n}\n" - }, - "contracts/staking/interfaces/IRewardTracker.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ninterface IRewardTracker {\n function stakedAmounts(address _account) external view returns (uint256);\n function updateRewards(address _account) external;\n function stake(address _depositToken, uint256 _amount) external;\n function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;\n function unstake(address _depositToken, uint256 _amount) external;\n function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;\n function claim(address _receiver) external returns (uint256);\n function claimForAccount(address _account, address _receiver) external returns (uint256);\n function claimable(address _account) external view returns (uint256);\n // function averageStakedAmounts(address _account) external view returns (uint256);\n function cumulativeRewards(address _account) external view returns (uint256);\n}\n" - }, - "contracts/staking/RewardTracker.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport {IRewardTracker} from \"./interfaces/IRewardTracker.sol\";\nimport {Governable} from \"../core/Governable.sol\";\n\ncontract RewardTracker is ReentrancyGuard, IRewardTracker, Governable {\n using SafeERC20 for IERC20;\n\n mapping(address token => bool status) public isDepositToken;\n mapping(address token => uint256 amount) public totalDepositSupply;\n\n mapping(address account => uint256 amount) public override stakedAmounts;\n mapping(address account => uint256 amount) public claimableReward;\n mapping(address account => uint256 amount) public override cumulativeRewards;\n\n mapping(address account => uint256 time) public lastUpdateTimes;\n\n uint256 public tokensPerInterval;\n address public rewardToken;\n uint8 public decimals = 18;\n\n bool public inPrivateStakingMode;\n bool public inPrivateClaimingMode;\n mapping(address handler => bool status) public isHandler;\n\n event Claim(address receiver, uint256 amount);\n event TokensPerIntervalChange(uint256 amount);\n\n constructor(address _rewardToken, address _depositToken, uint256 _tokensPerInterval, uint8 _decimals) {\n rewardToken = _rewardToken;\n isDepositToken[_depositToken] = true;\n tokensPerInterval = _tokensPerInterval;\n decimals = _decimals;\n }\n\n function setDepositToken(address _depositToken, bool _isDepositToken) external onlyGov {\n isDepositToken[_depositToken] = _isDepositToken;\n }\n //TODO:: 是否更新用户未领取的奖励\n function setTokensPerInterval(uint256 _amount) external onlyGov {\n tokensPerInterval = _amount;\n emit TokensPerIntervalChange(_amount);\n }\n\n function setInPrivateStakingMode(bool _inPrivateStakingMode) external onlyGov {\n inPrivateStakingMode = _inPrivateStakingMode;\n }\n\n function setInPrivateClaimingMode(bool _inPrivateClaimingMode) external onlyGov {\n inPrivateClaimingMode = _inPrivateClaimingMode;\n }\n\n function setHandler(address _handler, bool _isActive) external onlyGov {\n isHandler[_handler] = _isActive;\n }\n\n // to help users who accidentally send their tokens to this contract\n function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {\n IERC20(_token).safeTransfer(_account, _amount);\n }\n\n function stake(address _depositToken, uint256 _amount) external override nonReentrant {\n if (inPrivateStakingMode) {\n revert(\"RewardTracker: action not enabled\");\n }\n _stake(msg.sender, msg.sender, _depositToken, _amount);\n }\n\n function stakeForAccount(\n address _fundingAccount,\n address _account,\n address _depositToken,\n uint256 _amount\n ) external override nonReentrant {\n _validateHandler();\n _stake(_fundingAccount, _account, _depositToken, _amount);\n }\n\n function unstake(address _depositToken, uint256 _amount) external override nonReentrant {\n if (inPrivateStakingMode) {\n revert(\"RewardTracker: action not enabled\");\n }\n _unstake(msg.sender, _depositToken, _amount, msg.sender);\n }\n\n function unstakeForAccount(\n address _account,\n address _depositToken,\n uint256 _amount,\n address _receiver\n ) external override nonReentrant {\n _validateHandler();\n _unstake(_account, _depositToken, _amount, _receiver);\n }\n\n function claim(address _receiver) external override nonReentrant returns (uint256) {\n if (inPrivateClaimingMode) {\n revert(\"RewardTracker: action not enabled\");\n }\n return _claim(msg.sender, _receiver);\n }\n\n function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) {\n _validateHandler();\n return _claim(_account, _receiver);\n }\n\n function claimable(address _account) public view override returns (uint256) {\n uint256 stakedAmount = stakedAmounts[_account];\n if (stakedAmount == 0) {\n return claimableReward[_account];\n }\n uint256 pendingRewards = _getNextClaimableAmount(_account);\n return claimableReward[_account] + pendingRewards;\n }\n\n function _claim(address _account, address _receiver) private returns (uint256) {\n _updateRewards(_account);\n uint256 tokenAmount = claimableReward[_account];\n claimableReward[_account] = 0;\n if (tokenAmount > 0) {\n IERC20(rewardToken).safeTransfer(_receiver, tokenAmount);\n emit Claim(_account, tokenAmount);\n }\n return tokenAmount;\n }\n\n function _validateHandler() private view {\n require(isHandler[msg.sender], \"RewardTracker: forbidden\");\n }\n\n function _stake(address _fundingAccount, address _account, address _depositToken, uint256 _amount) private {\n require(_amount > 0, \"RewardTracker: invalid _amount\");\n require(isDepositToken[_depositToken], \"RewardTracker: invalid _depositToken\");\n IERC20(_depositToken).safeTransferFrom(_fundingAccount, address(this), _amount);\n _updateRewards(_account);\n stakedAmounts[_account] = stakedAmounts[_account] + _amount;\n totalDepositSupply[_depositToken] = totalDepositSupply[_depositToken] + _amount;\n }\n\n function _unstake(address _account, address _depositToken, uint256 _amount, address _receiver) private {\n require(_amount > 0, \"RewardTracker: invalid _amount\");\n require(isDepositToken[_depositToken], \"RewardTracker: invalid _depositToken\");\n _updateRewards(_account);\n uint256 stakedAmount = stakedAmounts[_account];\n require(stakedAmount >= _amount, \"RewardTracker: _amount exceeds stakedAmount\");\n stakedAmounts[_account] = stakedAmount - _amount;\n totalDepositSupply[_depositToken] = totalDepositSupply[_depositToken] - _amount;\n IERC20(_depositToken).safeTransfer(_receiver, _amount);\n }\n\n function updateRewards(address _account) public {\n _updateRewards(_account);\n }\n\n function _updateRewards(address _account) private {\n uint256 accountReward = _getNextClaimableAmount(_account);\n lastUpdateTimes[_account] = block.timestamp;\n uint256 _claimableReward = claimableReward[_account] + accountReward;\n claimableReward[_account] = _claimableReward;\n if (_claimableReward > 0 && stakedAmounts[_account] > 0) {\n uint256 nextCumulativeReward = cumulativeRewards[_account] + accountReward;\n cumulativeRewards[_account] = nextCumulativeReward;\n }\n }\n\n function _getNextClaimableAmount(address _account) private view returns (uint256) {\n uint256 timeDiff = block.timestamp - lastUpdateTimes[_account];\n uint256 stakedAmount = stakedAmounts[_account];\n if (stakedAmount == 0) {\n return 0;\n }\n uint256 accountReward = (stakedAmount / (10 ** decimals)) * tokensPerInterval * timeDiff;\n return accountReward;\n }\n}\n" - } - }, - "settings": { - "optimizer": { - "enabled": true, - "runs": 200 - }, - "viaIR": true, - "outputSelection": { - "*": { - "*": [ - "abi", - "evm.bytecode", - "evm.deployedBytecode", - "evm.methodIdentifiers", - "metadata", - "devdoc", - "userdoc", - "storageLayout", - "evm.gasEstimates" - ], - "": [ - "ast" - ] - } - }, - "metadata": { - "useLiteralContent": true - } - } -} \ No newline at end of file diff --git a/package.json b/package.json index 77e38d8..648f672 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,8 @@ "solhint": "solhint --config ./.solhint.json", "show_verify_list": "npx hardhat verify --list-networks", "convert-abi": "npx hardhat run scripts/convert-abi.js", - "verify_sample": "npx hardhat verify --network bsc_test --constructor-args ./verify/tokenclaim.js 0xee0044BF2ACEf7C3D7f6781d8f5DC4d2Dd1CE64c" + "verify_sample": "npx hardhat verify --network bsc_test --constructor-args ./verify/tokenclaim.js 0xee0044BF2ACEf7C3D7f6781d8f5DC4d2Dd1CE64c", + "callgraph": "slither contracts/staking/Vester.sol --print call-graph --solc-remaps @=node_modules/@" }, "author": "", "license": "ISC", diff --git a/simple_abi/TokenClaim.json b/simple_abi/TokenClaim.json new file mode 100644 index 0000000..3bb8991 --- /dev/null +++ b/simple_abi/TokenClaim.json @@ -0,0 +1 @@ +["constructor(address,address,address,uint256)","event DurationUpdated(uint256 indexed)","event EventERC20Wallet(address,address)","event EventTokenClaimed(address indexed,address indexed,address,uint256,uint256)","event EventVerifierUpdated(address indexed)","event OwnershipTransferred(address indexed,address indexed)","event Paused(address)","event Unpaused(address)","function _CACHED_CHAIN_ID() view returns (uint256)","function _CACHED_THIS() view returns (address)","function checkSigner(address,bytes32,bytes) pure","function claim(address,address,uint256[4],bytes)","function claimedBitMap(address,address) view returns (uint256)","function duration() view returns (uint256)","function erc20Wallets(address) view returns (address)","function getMessageHash(address,address,address,address,uint256,uint256[4]) pure returns (bytes32)","function minDuration() view returns (uint256)","function owner() view returns (address)","function pause()","function paused() view returns (bool)","function renounceOwnership()","function transferOwnership(address)","function unpause()","function updateDuation(uint256)","function updateERC20Wallet(address,address)","function updateVerifier(address)","function verifier() view returns (address)","function withdrawToken(address,address,uint256)"] \ No newline at end of file