Source Code
Latest 25 from a total of 101 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Rewards | 24144165 | 35 days ago | IN | 0 ETH | 0.0000041 | ||||
| Claim Rewards | 23583818 | 114 days ago | IN | 0 ETH | 0.00021228 | ||||
| Claim Rewards | 23583816 | 114 days ago | IN | 0 ETH | 0.00023573 | ||||
| Claim Rewards | 23568434 | 116 days ago | IN | 0 ETH | 0.00019322 | ||||
| Claim Rewards | 23426033 | 136 days ago | IN | 0 ETH | 0.00022043 | ||||
| Claim Rewards | 23400273 | 139 days ago | IN | 0 ETH | 0.00013527 | ||||
| Claim Rewards | 22989868 | 197 days ago | IN | 0 ETH | 0.0004041 | ||||
| Claim Rewards | 22989866 | 197 days ago | IN | 0 ETH | 0.00037436 | ||||
| Claim Rewards | 22989863 | 197 days ago | IN | 0 ETH | 0.000487 | ||||
| Claim Rewards | 22223246 | 304 days ago | IN | 0 ETH | 0.0000513 | ||||
| Claim Rewards | 22223246 | 304 days ago | IN | 0 ETH | 0.0000513 | ||||
| Claim Rewards | 21932505 | 344 days ago | IN | 0 ETH | 0.00085236 | ||||
| Claim Rewards | 21852712 | 356 days ago | IN | 0 ETH | 0.00004744 | ||||
| Claim Rewards | 21852712 | 356 days ago | IN | 0 ETH | 0.00014287 | ||||
| Claim Rewards | 21410852 | 417 days ago | IN | 0 ETH | 0.00144661 | ||||
| Claim Rewards | 20820305 | 500 days ago | IN | 0 ETH | 0.00201424 | ||||
| Claim Rewards | 20332979 | 568 days ago | IN | 0 ETH | 0.00137825 | ||||
| Claim Rewards | 20326294 | 569 days ago | IN | 0 ETH | 0.00066083 | ||||
| Claim Rewards | 20227809 | 582 days ago | IN | 0 ETH | 0.00081627 | ||||
| Claim Rewards | 20227808 | 582 days ago | IN | 0 ETH | 0.00080685 | ||||
| Claim Rewards | 20227807 | 582 days ago | IN | 0 ETH | 0.00082184 | ||||
| Claim Rewards | 20227806 | 582 days ago | IN | 0 ETH | 0.00083083 | ||||
| Claim Rewards | 20169706 | 591 days ago | IN | 0 ETH | 0.00089461 | ||||
| Claim Rewards | 20157580 | 592 days ago | IN | 0 ETH | 0.00021904 | ||||
| Claim Rewards | 20106652 | 599 days ago | IN | 0 ETH | 0.00033626 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
YsCrvDistributor
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 250 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/**
_____
/ __ \
| / \/ ___ _ ____ _____ _ __ __ _ ___ _ __ ___ ___
| | / _ \| '_ \ \ / / _ \ '__/ _` |/ _ \ '_ \ / __/ _ \
| \__/\ (_) | | | \ V / __/ | | (_| | __/ | | | (_| __/
\____/\___/|_| |_|\_/ \___|_| \__, |\___|_| |_|\___\___|
__/ |
|___/
*/
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../interfaces/ICvgControlTower.sol";
/**
* @title Cvg-Finance - YsCrvDistributor
* @notice This contract is used to distribute rewards to locking positions (with YsCvg values).
*/
contract YsCrvDistributor {
event DepositedCrv(uint256 amount);
event CrvClaim(uint256 tokenId, uint256 amount);
/// @dev Curve token
IERC20 public constant CRV = IERC20(0xD533a949740bb3306d119CC777fa900bA034cd52);
/// @dev Duration for one TDE => 12 Cycles.
uint256 public constant TDE_DURATION = 12;
/// @dev Cvg control tower.
ICvgControlTower public constant cvgControlTower = ICvgControlTower(0xB0Afc8363b8F36E0ccE5D54251e20720FfaeaeE7);
ILockingPositionService public constant lockingPositionService =
ILockingPositionService(0xc8a6480ed7C7B1C401061f8d96bE7De6f94D3E60);
ILockingPositionManager public constant lockingPositionManager =
ILockingPositionManager(0x0EDB88Aa3aa665782121fA2509b382f414A0C0cE);
uint256 public crvDeposited;
mapping(uint256 => bool) public crvClaimedForToken; //tokenId => isClaimed
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
MODIFIERS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
modifier onlyTreasuryPdd() {
require(msg.sender == cvgControlTower.treasuryPdd(), "NOT_TREASURY_PDD");
_;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
EXTERNALS ONLY TREASURY PDD
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
/**
* @notice Deposit CRV in the contract for the locker of the first TDE.
* @dev Function only callable by TreasuryPdd
* @param _amount of CRV to deposit
*/
function depositCrv(uint256 _amount) external onlyTreasuryPdd {
crvDeposited += _amount;
CRV.transferFrom(msg.sender, address(this), _amount);
emit DepositedCrv(_amount);
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
EXTERNALS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
/**
* @notice Claim the CRV rewards to the locking position NFT.
* @dev YsTotalSupply ( at TDE 1) | Ys reward is computed by CvgRewards contract
* | Bond Treasury Yield is computed and sent.
* @param tokenId is the token ID to claim rewards of
* @param receiver is the address that will receive the rewards
*/
function claimRewards(uint256 tokenId, address receiver) external {
lockingPositionManager.checkYsClaim(tokenId, msg.sender);
/// @dev Cannot claim TDE1 twice for a tokenId.
require(!crvClaimedForToken[tokenId], "TOKEN_ALREADY_CLAIMED");
/// @dev Get the totalSupply and the balance of position in ysCVG
(uint256 totalSupply, uint256 balance) = lockingPositionService.getTotalSupplyHistoryAndBalanceOfYs(
tokenId,
TDE_DURATION
);
/// @dev Cannot claim a Ys rewards if Locking position has no ys value at TDE1.
require(balance != 0, "NO_YS_BALANCE_ON_THIS_TDE");
/// @dev Mark the tokenId as claimed on the Storage.
crvClaimedForToken[tokenId] = true;
uint256 _amountUser = ((crvDeposited * balance) / totalSupply);
CRV.transfer(receiver, _amountUser);
emit CrvClaim(tokenId, _amountUser);
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
PUBLIC
/ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
/**
* @notice Obtains all CRV reward tokens for a tokenId
* @param _tokenId of the locking position
*/
function getPositionCrvRewards(uint256 _tokenId) external view returns (uint256) {
ILockingPositionService _lockingPositionService = lockingPositionService;
(uint256 totalSupply, uint256 balance) = _lockingPositionService.getTotalSupplyAtAndBalanceOfYs(
_tokenId,
TDE_DURATION
);
if (
_lockingPositionService.lockingPositions(_tokenId).ysPercentage == 0 ||
balance == 0 ||
crvClaimedForToken[_tokenId] ||
crvDeposited == 0
) {
return 0;
}
return ((crvDeposited * balance) / totalSupply);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
function getRoundData(
uint80 _roundId
) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
function latestRoundData()
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../token/ERC20/extensions/IERC20Metadata.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IBondStruct.sol";
interface IBondCalculator {
function computeRoi(
uint256 durationFromStart,
uint256 totalDuration,
IBondStruct.BondFunction composedFunction,
uint256 totalTokenOut,
uint256 amountTokenSold,
uint256 gamma,
uint256 scale,
uint256 minRoi,
uint256 maxRoi
) external pure returns (uint256 bondRoi);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ICvgControlTower.sol";
import "./IBondStruct.sol";
import "./ICvgOracle.sol";
interface IBondDepository {
// Deposit Principle token in Treasury through Bond contract
function deposit(uint256 tokenId, uint256 amount, address receiver) external;
function depositToLock(uint256 amount, address receiver) external returns (uint256 cvgToMint);
function positionInfos(uint256 tokenId) external view returns (IBondStruct.BondPending memory);
function getTokenVestingInfo(uint256 tokenId) external view returns (IBondStruct.TokenVestingInfo memory);
function bondParams() external view returns (IBondStruct.BondParams memory);
function pendingPayoutFor(uint256 tokenId) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IBondLogo {
struct LogoInfos {
uint256 tokenId;
uint256 termTimestamp;
uint256 pending;
uint256 cvgClaimable;
uint256 unlockingTimestamp;
}
struct LogoInfosFull {
uint256 tokenId;
uint256 termTimestamp;
uint256 pending;
uint256 cvgClaimable;
uint256 unlockingTimestamp;
uint256 year;
uint256 month;
uint256 day;
bool isLocked;
uint256 hoursLock;
uint256 cvgPrice;
}
function _tokenURI(LogoInfos memory logoInfos) external pure returns (string memory output);
function getLogoInfo(uint256 tokenId) external view returns (IBondLogo.LogoInfosFull memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IBondStruct.sol";
import "./IBondLogo.sol";
import "./IBondDepository.sol";
interface IBondPositionManager {
function bondDepository() external view returns (IBondDepository);
function getTokenIdsForWallet(address _wallet) external view returns (uint256[] memory);
function bondPerTokenId(uint256 tokenId) external view returns (uint256);
// Deposit Principle token in Treasury through Bond contract
function mintOrCheck(uint256 bondId, uint256 tokenId, address receiver) external returns (uint256);
function burn(uint256 tokenId) external;
function unlockingTimestampPerToken(uint256 tokenId) external view returns (uint256);
function logoInfo(uint256 tokenId) external view returns (IBondLogo.LogoInfos memory);
function checkTokenRedeem(uint256[] calldata tokenIds, address receiver) external view;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IBondStruct {
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
STORED STRUCTS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
struct BondParams {
/**
* @dev Type of function used to compute the actual ROI of a bond.
* - 0 is SquareRoot
* - 1 is Ln
* - 2 is Square
* - 3 is Linear
*/
BondFunction composedFunction;
/// @dev Address of the underlaying token of the bond.
address token;
/**
* @dev Gamma is used in the BondCalculator.It's the value dividing the ratio between the amount already sold and the theorical amount sold.
* 250_000 correspond to 0.25 (25%).
*/
uint40 gamma;
/// @dev Total duration of the bond, uint40 is enough for a timestamp.
uint40 bondDuration;
/// @dev Determine if a Bond is paused. Can't deposit on a bond paused.
bool isPaused;
/**
* @dev Scale is used in the BondCalculator. When a scale is A, the ROI vary by incremental of A.
* If scale is 5_000 correspond to 0.5%, the ROI will vary from the maxROI to minROI by increment of 0.5%.
*/
uint32 scale;
/**
* @dev Minimum ROI of the bond. Discount cannot be less than the minROI.
* If minRoi is 100_000, it represents 10%.
*/
uint24 minRoi;
/**
* @dev Maximum ROI of the bond. Discount cannot be more than the maxROI.
* If maxRoi is 150_000, it represents 15%.
*/
uint24 maxRoi;
/**
* @dev Percentage maximum of the cvgToSell that an user can buy in one deposit
* If percentageOneTx is 200, it represents 20% of cvgToSell.
*/
uint24 percentageOneTx;
/// @dev Duration of the vesting in second.
uint32 vestingTerm;
/**
* @dev Maximum amount that can be bought through this bond.
* uint80 represents 1.2M tokens in ethers. It means that we are never going to open a bond with more than 1.2M tokens.
*/
uint80 cvgToSell; // Limit of Max CVG to sell => 1.2M CVG max approx
/// @dev Timestamp in second of the beginning of the bond. Has to be in the future.
uint40 startBondTimestamp;
}
struct BondPending {
/// @dev Timestamp in second of the last interaction with this position.
uint64 lastTimestamp;
/// @dev Time in seconds lefting before the position is fully unvested
uint64 vestingTimeLeft;
/**
* @dev Total amount of CVG still vested in the position.
* uint128 is way enough because it's an amount in CVG that have a max supply of 150M tokens.
*/
uint128 leftClaimable;
}
struct BondCreateStruct {
/// @dev Timestamp in second of the last interaction with this position.
BondParams bondParams;
/// @dev Time in seconds lefting before the position is fully unvested
bool isLockMandatory;
}
enum BondFunction {
SQRT,
LN,
POWER_2,
LINEAR
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
VIEW STRUCTS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
struct BondTokenView {
uint128 lastTimestamp;
uint128 vestingEnd;
uint256 claimableCvg;
uint256 leftClaimable;
}
struct BondView {
uint256 actualRoi;
uint256 cvgAlreadySold;
uint256 usdExecutionPrice;
uint256 usdLimitPrice;
uint256 assetBondPrice;
uint256 usdBondPrice;
bool isOracleValid;
BondParams bondParameters;
ERC20View token;
}
struct BondViewV2 {
uint256 actualRoi;
uint256 cvgAlreadySold;
uint256 usdExecutionPrice;
uint256 usdLimitPrice;
uint256 assetBondPrice;
uint256 usdBondPrice;
bool isOracleValid;
BondParams bondParameters;
ERC20View token;
bool isLockingMandatory;
}
struct ERC20View {
string token;
address tokenAddress;
uint256 decimals;
}
struct TokenVestingInfo {
uint256 term;
uint256 claimable;
uint256 pending;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface ICommonStruct {
struct TokenAmount {
IERC20 token;
uint256 amount;
}
struct ApproveStruct {
IERC20 token;
address spender;
uint256 amount;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol";
interface ICvg is IERC20Metadata {
function MAX_AIRDROP() external view returns (uint256);
function MAX_BOND() external view returns (uint256);
function MAX_STAKING() external view returns (uint256);
function MAX_VESTING() external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
function burn(uint256 amount) external;
function cvgControlTower() external view returns (address);
function decimals() external view returns (uint8);
function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function mintBond(address account, uint256 amount) external;
function mintStaking(address account, uint256 amount) external;
function mintedBond() external view returns (uint256);
function mintedStaking() external view returns (uint256);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function totalSupply() external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "./IERC20Mintable.sol";
import "./ICvg.sol";
import "./IBondDepository.sol";
import "./IBondCalculator.sol";
import "./IBondStruct.sol";
import "./ICvgOracle.sol";
import "./IVotingPowerEscrow.sol";
import "./ICvgRewards.sol";
import "./ILockingPositionManager.sol";
import "./ILockingPositionDelegate.sol";
import "./IGaugeController.sol";
import "./IYsDistributor.sol";
import "./IBondPositionManager.sol";
import "./ISdtStakingPositionManager.sol";
import "./IBondLogo.sol";
import "./ILockingLogo.sol";
import "./ILockingPositionService.sol";
import "./IVestingCvg.sol";
import "./ISdtBuffer.sol";
import "./ISdtBlackHole.sol";
import "./ISdtStakingPositionService.sol";
import "./ISdtFeeCollector.sol";
import "./ISdtBuffer.sol";
import "./ISdtRewardDistributor.sol";
interface ICvgControlTower {
function cvgToken() external view returns (ICvg);
function cvgOracle() external view returns (ICvgOracle);
function bondCalculator() external view returns (IBondCalculator);
function gaugeController() external view returns (IGaugeController);
function cvgCycle() external view returns (uint128);
function votingPowerEscrow() external view returns (IVotingPowerEscrow);
function treasuryDao() external view returns (address);
function treasuryPod() external view returns (address);
function treasuryPdd() external view returns (address);
function treasuryAirdrop() external view returns (address);
function treasuryTeam() external view returns (address);
function cvgRewards() external view returns (ICvgRewards);
function lockingPositionManager() external view returns (ILockingPositionManager);
function lockingPositionService() external view returns (ILockingPositionService);
function lockingPositionDelegate() external view returns (ILockingPositionDelegate);
function isStakingContract(address contractAddress) external view returns (bool);
function ysDistributor() external view returns (IYsDistributor);
function isBond(address account) external view returns (bool);
function bondPositionManager() external view returns (IBondPositionManager);
function sdtStakingPositionManager() external view returns (ISdtStakingPositionManager);
function sdtStakingLogo() external view returns (ISdtStakingLogo);
function bondLogo() external view returns (IBondLogo);
function lockingLogo() external view returns (ILockingLogo);
function isSdtStaking(address contractAddress) external view returns (bool);
function vestingCvg() external view returns (IVestingCvg);
function sdt() external view returns (IERC20);
function cvgSDT() external view returns (IERC20Mintable);
function cvgSdtStaking() external view returns (ISdtStakingPositionService);
function cvgSdtBuffer() external view returns (ISdtBuffer);
function veSdtMultisig() external view returns (address);
function cloneFactory() external view returns (address);
function sdtUtilities() external view returns (address);
function insertNewSdtStaking(address _sdtStakingClone) external;
function allBaseSdAssetStaking(uint256 _index) external view returns (address);
function allBaseSdAssetBuffer(uint256 _index) external view returns (address);
function sdtFeeCollector() external view returns (ISdtFeeCollector);
function updateCvgCycle() external;
function sdtBlackHole() external view returns (ISdtBlackHole);
function sdtRewardDistributor() external view returns (address);
function poolCvgSdt() external view returns (address);
function bondDepository() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "./IOracleStruct.sol";
interface ICvgOracle {
function getPriceVerified(address erc20) external view returns (uint256);
function getPriceUnverified(address erc20) external view returns (uint256);
function getAndVerifyTwoPrices(address tokenIn, address tokenOut) external view returns (uint256, uint256);
function getTwoPricesAndIsValid(
address tokenIn,
address tokenOut
) external view returns (uint256, uint256, bool, uint256, uint256, bool);
function getPriceAndValidationData(
address erc20Address
) external view returns (uint256, uint256, bool, bool, bool, bool);
function getPoolAddressByToken(address erc20) external view returns (address);
function poolTypePerErc20(address) external view returns (IOracleStruct.PoolType);
//OWNER
function setPoolTypeForToken(address _erc20Address, IOracleStruct.PoolType _poolType) external;
function setStableParams(address _erc20Address, IOracleStruct.StableParams calldata _stableParams) external;
function setCurveDuoParams(address _erc20Address, IOracleStruct.CurveDuoParams calldata _curveDuoParams) external;
function setCurveTriParams(address _erc20Address, IOracleStruct.CurveTriParams calldata _curveTriParams) external;
function setUniV3Params(address _erc20Address, IOracleStruct.UniV3Params calldata _uniV3Params) external;
function setUniV2Params(address _erc20Address, IOracleStruct.UniV2Params calldata _uniV2Params) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface ICvgRewards {
function cvgCycleRewards() external view returns (uint256);
function addGauge(address gaugeAddress) external;
function removeGauge(address gaugeAddress) external;
function getCycleLocking(uint256 timestamp) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol";
/**
* @dev Interface for the optional mint function from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Mintable is IERC20Metadata {
/**
* @dev Mint `amount` of token to `account`
*/
function mint(address account, uint256 amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IGaugeController {
struct WeightType {
uint256 weight;
uint256 type_weight;
int128 gauge_type;
}
function add_type(string memory typeName, uint256 weight) external;
function add_gauge(address addr, int128 gaugeType, uint256 weight) external;
function get_gauge_weight(address gaugeAddress) external view returns (uint256);
function get_gauge_weights(address[] memory gaugeAddresses) external view returns (uint256[] memory, uint256);
function get_gauge_weights_and_types(address[] memory gaugeAddresses) external view returns (WeightType[] memory);
function get_total_weight() external view returns (uint256);
function n_gauges() external view returns (uint128);
function gauges(uint256 index) external view returns (address);
function gauge_types(address gaugeAddress) external view returns (int128);
function get_type_weight(int128 typeId) external view returns (uint256);
function gauge_relative_weight(address addr, uint256 time) external view returns (uint256);
function set_lock(bool isLock) external;
function gauge_relative_weight_write(address gaugeAddress) external;
function gauge_relative_weight_writes(uint256 from, uint256 length) external;
function simple_vote(uint256 tokenId, address gaugeAddress, uint256 tokenWeight) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface ILockingLogo {
struct LogoInfos {
uint256 tokenId;
uint256 cvgLocked;
uint256 lockEnd;
uint256 ysPercentage;
uint256 mgCvg;
uint256 unlockingTimestamp;
}
struct GaugePosition {
uint256 ysWidth; // width of the YS gauge part
uint256 veWidth; // width of the VE gauge part
}
struct LogoInfosFull {
uint256 tokenId;
uint256 cvgLocked;
uint256 lockEnd;
uint256 ysPercentage;
uint256 mgCvg;
uint256 unlockingTimestamp;
uint256 cvgLockedInUsd;
uint256 ysCvgActual;
uint256 ysCvgNext;
uint256 veCvg;
GaugePosition gaugePosition;
uint256 claimableInUsd;
bool isLocked;
uint256 hoursLock;
}
function _tokenURI(LogoInfos memory logoInfos) external pure returns (string memory output);
function getLogoInfo(uint256 tokenId) external view returns (ILockingLogo.LogoInfosFull memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface ILockingPositionDelegate {
struct OwnedAndDelegated {
uint256[] owneds;
uint256[] mgDelegateds;
uint256[] veDelegateds;
}
function delegatedYsCvg(uint256 tokenId) external view returns (address);
function getMgDelegateeInfoPerTokenAndAddress(
uint256 _tokenId,
address _to
) external view returns (uint256, uint256, uint256);
function getIndexForVeDelegatee(address _delegatee, uint256 _tokenId) external view returns (uint256);
function getIndexForMgCvgDelegatee(address _delegatee, uint256 _tokenId) external view returns (uint256);
function delegateVeCvg(uint256 _tokenId, address _to) external;
function delegateYsCvg(uint256 _tokenId, address _to, bool _status) external;
function delegateMgCvg(uint256 _tokenId, address _to, uint256 _percentage) external;
function delegatedVeCvg(uint256 tokenId) external view returns (address);
function getVeCvgDelegatees(address account) external view returns (uint256[] memory);
function getMgCvgDelegatees(address account) external view returns (uint256[] memory);
function getTokenOwnedAndDelegated(address _addr) external view returns (OwnedAndDelegated[] memory);
function getTokenMgOwnedAndDelegated(address _addr) external view returns (uint256[] memory, uint256[] memory);
function getTokenVeOwnedAndDelegated(address _addr) external view returns (uint256[] memory, uint256[] memory);
function addTokenAtMint(uint256 _tokenId, address minter) external;
function cleanDelegateesOnTransfer(uint256 _tokenId) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ILockingLogo.sol";
interface ILockingPositionManager {
function ownerOf(uint256 tokenId) external view returns (address);
function mint(address account) external returns (uint256);
function burn(uint256 tokenId, address caller) external;
function logoInfo(uint256 tokenId) external view returns (ILockingLogo.LogoInfos memory);
function checkYsClaim(uint256 tokenId, address caller) external view;
function checkOwnership(uint256 _tokenId, address operator) external view;
function checkOwnerships(uint256[] memory _tokenIds, address operator) external view;
function checkFullCompliance(uint256 tokenId, address operator) external view;
function getTokenIdsForWallet(address _wallet) external view returns (uint256[] memory);
function unlockingTimestampPerToken(uint256 tokenId) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface ILockingPositionService {
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
STORED STRUCTS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
struct LockingPosition {
/// @dev Starting cycle of a LockingPosition. Maximum value of uint24 is 16M, so 16M weeks is way enough.
uint24 startCycle;
/// @dev End cycle of a LockingPosition. Maximum value of uint24 is 16M, so 16M weeks is way enough.
uint24 lastEndCycle;
/** @dev Percentage of the token allocated to ysCvg. Amount dedicated to vote is so equal to 100 - ysPercentage.
* A position with ysPercentage as 60 will allocate 60% of his locking to YsCvg and 40% to veCvg and mgCvg.
*/
uint8 ysPercentage;
/** @dev Total Cvg amount locked in the position.
* Max supply of CVG is 150M, it so fits into an uint104 (20 000 billions approx).
*/
uint104 totalCvgLocked;
/** @dev MgCvgAmount held by the position.
* Max supply of mgCVG is 150M, it so fits into an uint96 (20 billions approx).
*/
uint96 mgCvgAmount;
}
struct TrackingBalance {
/** @dev Amount of ysCvg to add to the total supply when the corresponding cvgCycle is triggered.
* Max supply of ysCVG is 150M, it so fits into an uint128.
*/
uint128 ysToAdd;
/** @dev Amount of ysCvg to remove from the total supply when the corresponding cvgCycle is triggered.
* Max supply of ysCVG is 150M, it so fits into an uint128.
*/
uint128 ysToSub;
}
struct Checkpoints {
uint24 cycleId;
uint232 ysBalance;
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
VIEW STRUCTS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
struct TokenView {
uint256 tokenId;
uint128 startCycle;
uint128 endCycle;
uint256 cvgLocked;
uint256 ysActual;
uint256 ysTotal;
uint256 veCvgActual;
uint256 mgCvg;
uint256 ysPercentage;
}
struct LockingInfo {
uint256 tokenId;
uint256 cvgLocked;
uint256 lockEnd;
uint256 ysPercentage;
uint256 mgCvg;
}
function TDE_DURATION() external view returns (uint256);
function MAX_LOCK() external view returns (uint24);
function updateYsTotalSupply() external;
function ysTotalSupplyHistory(uint256) external view returns (uint256);
function ysShareOnTokenAtTde(uint256, uint256) external view returns (uint256);
function veCvgVotingPowerPerAddress(address _user) external view returns (uint256);
function mintPosition(
uint24 lockDuration,
uint128 amount,
uint8 ysPercentage,
address receiver,
bool isAddToManagedTokens
) external;
function increaseLockAmount(uint256 tokenId, uint128 amount, address operator) external;
function increaseLockTime(uint256 tokenId, uint256 durationAdd) external;
function increaseLockTimeAndAmount(uint256 tokenId, uint24 durationAdd, uint128 amount, address operator) external;
function totalSupplyYsCvgHistories(uint256 cycleClaimed) external view returns (uint256);
function balanceOfYsCvgAt(uint256 tokenId, uint256 cycle) external view returns (uint256);
function lockingPositions(uint256 tokenId) external view returns (LockingPosition memory);
function unlockingTimestampPerToken(uint256 tokenId) external view returns (uint256);
function lockingInfo(uint256 tokenId) external view returns (LockingInfo memory);
function isContractLocker(address contractAddress) external view returns (bool);
function getTotalSupplyAtAndBalanceOfYs(uint256 tokenId, uint256 cycleId) external view returns (uint256, uint256);
function getTotalSupplyHistoryAndBalanceOfYs(
uint256 tokenId,
uint256 cycleId
) external view returns (uint256, uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
interface IOracleStruct {
enum PoolType {
NOT_INIT,
STABLE,
CURVE_DUO,
CURVE_TRI,
UNI_V3,
UNI_V2
}
struct StableParams {
AggregatorV3Interface aggregatorOracle;
uint40 deltaLimitOracle; // 5 % => 500 & 100 % => 10 000
uint56 maxLastUpdate; // Buffer time before a not updated price is considered as stale
uint128 minPrice;
uint128 maxPrice;
}
struct CurveDuoParams {
bool isReversed;
bool isEthPriceRelated;
address poolAddress;
uint40 deltaLimitOracle; // 5 % => 500 & 100 % => 10 000
uint40 maxLastUpdate; // Buffer time before a not updated price is considered as stale
uint128 minPrice;
uint128 maxPrice;
address[] stablesToCheck;
}
struct CurveTriParams {
bool isReversed;
bool isEthPriceRelated;
address poolAddress;
uint40 deltaLimitOracle;
uint40 maxLastUpdate;
uint8 k;
uint120 minPrice;
uint128 maxPrice;
address[] stablesToCheck;
}
struct UniV2Params {
bool isReversed;
bool isEthPriceRelated;
address poolAddress;
uint80 deltaLimitOracle;
uint96 maxLastUpdate;
AggregatorV3Interface aggregatorOracle;
uint128 minPrice;
uint128 maxPrice;
address[] stablesToCheck;
}
struct UniV3Params {
bool isReversed;
bool isEthPriceRelated;
address poolAddress;
uint80 deltaLimitOracle;
uint80 maxLastUpdate;
uint16 twap;
AggregatorV3Interface aggregatorOracle;
uint128 minPrice;
uint128 maxPrice;
address[] stablesToCheck;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
interface IPresaleCvgSeed is IERC721Enumerable {
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
ENUMS & STRUCTS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
enum SaleState {
NOT_ACTIVE,
PRESEED,
SEED,
OVER
}
struct PresaleInfo {
uint256 vestingType; // Define the presaler type
uint256 cvgAmount; // Total CVG amount claimable for the nft owner
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
SETTERS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
function setSaleState(SaleState _saleState) external;
function grantPreseed(address _wallet, uint256 _amount) external;
function grantSeed(address _wallet, uint256 _amount) external;
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
EXTERNALS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
function investMint(bool _isDai) external;
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
GETTERS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
function presaleInfoTokenId(uint256 _tokenId) external view returns (PresaleInfo memory);
function saleState() external view returns (SaleState);
function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256);
function getTokenIdAndType(
address _wallet,
uint256 _index
) external view returns (uint256 tokenId, uint256 typeVesting);
function getTokenIdsForWallet(address _wallet) external view returns (uint256[] memory);
function getTotalCvg() external view returns (uint256);
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
WITHDRAW OWNER
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= */
function withdrawFunds() external;
function withdrawToken(address _token) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "./ICvgControlTower.sol";
import "./ISdtBuffer.sol";
struct SdGaugeReward {
address token;
address distributor;
uint256 period_finish;
uint256 rate;
uint256 last_update;
uint256 integral;
}
interface IOperator {
function token() external view returns (IERC20Metadata);
function deposit(uint256 amount, bool isLock, bool isStake, address receiver) external;
}
interface ISdAsset is IERC20Metadata {
function sdAssetGauge() external view returns (IERC20);
function initialize(
ICvgControlTower _cvgControlTower,
IERC20 _sdAssetGauge,
string memory setName,
string memory setSymbol
) external;
function setSdAssetBuffer(address _sdAssetBuffer) external;
function mint(address to, uint256 amount) external;
function operator() external view returns (IOperator);
}
interface ISdAssetGauge is IERC20Metadata {
function deposit(uint256 value, address addr) external;
function deposit(uint256 value, address addr, bool claimRewards) external;
function staking_token() external view returns (IERC20);
function reward_count() external view returns (uint256);
function reward_tokens(uint256 i) external view returns (IERC20);
function claim_rewards(address account) external;
function set_rewards_receiver(address account) external;
function claimable_reward(address account, address token) external view returns (uint256);
function set_reward_distributor(address rewardToken, address distributor) external;
function deposit_reward_token(address rewardToken, uint256 amount) external;
function admin() external view returns (address);
function working_balances(address) external view returns (uint256);
function working_supply() external view returns (uint256);
function reward_data(address rewardToken) external view returns (SdGaugeReward memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./ICommonStruct.sol";
interface ISdtBlackHole {
function withdraw(uint256 amount, address receiver) external;
function setGaugeReceiver(address gaugeAddress, address bufferReceiver) external;
function getBribeTokensForBuffer(address buffer) external view returns (IERC20[] memory);
function pullSdStakingBribes(
address _processor,
uint256 _processorRewardsPercentage
) external returns (ICommonStruct.TokenAmount[] memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ICvgControlTower.sol";
import "./ISdAssets.sol";
import "./ICommonStruct.sol";
interface ISdtBuffer {
function initialize(
ICvgControlTower _cvgControlTower,
address _sdAssetStaking,
ISdAssetGauge _sdGaugeAsset,
IERC20 _sdt
) external;
function pullRewards(address _processor) external returns (ICommonStruct.TokenAmount[] memory);
function processorRewardsPercentage() external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface ISdtFeeCollector {
function rootFees() external returns (uint256);
function withdrawToken(IERC20[] calldata _tokens) external;
function withdrawSdt() external;
function feesRepartition(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./ICommonStruct.sol";
interface ISdtRewardDistributor {
function claimCvgSdtSimple(
address receiver,
uint256 cvgAmount,
ICommonStruct.TokenAmount[] memory sdtRewards,
uint256 minCvgSdtAmountOut,
bool isConvert
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ICommonStruct.sol";
interface ISdtStakingLogo {
struct LogoInfos {
uint256 tokenId;
string symbol;
uint256 pending;
uint256 totalStaked;
uint256 cvgClaimable;
ICommonStruct.TokenAmount[] sdtClaimable;
uint256 unlockingTimestamp;
}
struct LogoInfosFull {
uint256 tokenId;
string symbol;
uint256 pending;
uint256 totalStaked;
uint256 cvgClaimable;
ICommonStruct.TokenAmount[] sdtClaimable;
uint256 unlockingTimestamp;
uint256 claimableInUsd;
bool erroneousAmount;
bool isLocked;
uint256 hoursLock;
}
function _tokenURI(LogoInfos memory logoInfos) external pure returns (string memory output);
function getLogoInfo(uint256 tokenId) external view returns (ISdtStakingLogo.LogoInfosFull memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ISdtStakingLogo.sol";
import "./ISdtStakingPositionService.sol";
interface ISdtStakingPositionManager {
struct ClaimSdtStakingContract {
ISdtStakingPositionService stakingContract;
uint256[] tokenIds;
}
function mint(address account) external;
function burn(uint256 tokenId) external;
function nextId() external view returns (uint256);
function ownerOf(uint256 tokenId) external view returns (address);
function checkMultipleClaimCompliance(ClaimSdtStakingContract[] calldata, address account) external view;
function checkTokenFullCompliance(uint256 tokenId, address account) external view;
function checkIncreaseDepositCompliance(uint256 tokenId, address account) external view;
function stakingPerTokenId(uint256 tokenId) external view returns (address);
function unlockingTimestampPerToken(uint256 tokenId) external view returns (uint256);
function logoInfo(uint256 tokenId) external view returns (ISdtStakingLogo.LogoInfos memory);
function getTokenIdsForWallet(address _wallet) external view returns (uint256[] memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "./ICommonStruct.sol";
import "./ISdtBuffer.sol";
import "./ISdAssets.sol";
interface ISdtStakingPositionService {
struct CycleInfo {
uint256 cvgRewardsAmount;
uint256 totalStaked;
bool isSdtProcessed;
}
struct TokenInfo {
uint256 amountStaked;
uint256 pendingStaked;
}
struct CycleInfoMultiple {
uint256 totalStaked;
ICommonStruct.TokenAmount[] sdtClaimable;
}
struct StakingInfo {
uint256 tokenId;
string symbol;
uint256 pending;
uint256 totalStaked;
uint256 cvgClaimable;
ICommonStruct.TokenAmount[] sdtClaimable;
}
function setBuffer(address _buffer) external;
function symbol() external view returns (string memory);
function stakingCycle() external view returns (uint256);
function cycleInfo(uint256 cycleId) external view returns (CycleInfo memory);
function stakingAsset() external view returns (ISdAssetGauge);
function buffer() external view returns (ISdtBuffer);
function tokenTotalStaked(uint256 _tokenId) external view returns (uint256 amount);
function stakedAmountEligibleAtCycle(
uint256 cvgCycle,
uint256 tokenId,
uint256 actualCycle
) external view returns (uint256);
function tokenInfoByCycle(uint256 cycleId, uint256 tokenId) external view returns (TokenInfo memory);
function stakingInfo(uint256 tokenId) external view returns (StakingInfo memory);
function getProcessedSdtRewards(uint256 _cycleId) external view returns (ICommonStruct.TokenAmount[] memory);
function deposit(uint256 tokenId, uint256 amount, address operator) external;
function claimCvgSdtMultiple(
uint256 _tokenId,
address operator
) external returns (uint256, ICommonStruct.TokenAmount[] memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IPresaleCvgSeed.sol";
interface IVestingCvg {
/// @dev Struct Info about VestingSchedules
struct VestingSchedule {
uint16 daysBeforeCliff;
uint16 daysAfterCliff;
uint24 dropCliff;
uint256 totalAmount;
uint256 totalReleased;
}
struct InfoVestingTokenId {
uint256 amountReleasable;
uint256 totalCvg;
uint256 amountRedeemed;
}
enum VestingType {
SEED,
WL,
IBO,
TEAM,
DAO
}
function vestingSchedules(VestingType vestingType) external view returns (VestingSchedule memory);
function getInfoVestingTokenId(
uint256 _tokenId,
VestingType vestingType
) external view returns (InfoVestingTokenId memory);
function whitelistedTeam() external view returns (address);
function presaleSeed() external view returns (IPresaleCvgSeed);
function MAX_SUPPLY_TEAM() external view returns (uint256);
function startTimestamp() external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IVotingPowerEscrow {
function create_lock(uint256 tokenId, uint256 value, uint256 unlockTime) external;
function increase_amount(uint256 tokenId, uint256 value) external;
function increase_unlock_time(uint256 tokenId, uint256 unlockTime) external;
function increase_unlock_time_and_amount(uint256 tokenId, uint256 unlockTime, uint256 amount) external;
function withdraw(uint256 tokenId) external;
function total_supply() external returns (uint256);
function balanceOf(uint256 tokenId) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ICommonStruct.sol";
interface IYsDistributor {
struct TokenAmount {
IERC20 token;
uint96 amount;
}
struct Claim {
uint256 tdeCycle;
bool isClaimed;
TokenAmount[] tokenAmounts;
}
function getRewardsForPosition(uint256 _tokenId) external view returns (ICommonStruct.TokenAmount[] memory);
function getPositionRewardsForTdes(
uint256[] calldata _tdeIds,
uint256 actualCycle,
uint256 _tokenId
) external view returns (Claim[] memory);
function getAllRewardsForTde() external view returns (ICommonStruct.TokenAmount[] memory);
}{
"optimizer": {
"enabled": true,
"runs": 250
},
"evmVersion": "cancun",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CrvClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositedCrv","type":"event"},{"inputs":[],"name":"CRV","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TDE_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"crvClaimedForToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crvDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvgControlTower","outputs":[{"internalType":"contract ICvgControlTower","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositCrv","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getPositionCrvRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockingPositionManager","outputs":[{"internalType":"contract ILockingPositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockingPositionService","outputs":[{"internalType":"contract ILockingPositionService","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b506109628061001d5f395ff3fe608060405234801561000f575f80fd5b506004361061009b575f3560e01c806372ecb7e81161006357806372ecb7e81461014f5780638d66ec8714610157578063945c91421461016a578063d76df29d14610185578063da3ac3bc14610198575f80fd5b8063098192cb1461009f5780632abe3ea8146100d65780633882024b146100ec5780636978f8211461011f5780636c7b69cb1461013a575b5f80fd5b6100c16100ad36600461071d565b60016020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6100de5f5481565b6040519081526020016100cd565b61010773b0afc8363b8f36e0cce5d54251e20720ffaeaee781565b6040516001600160a01b0390911681526020016100cd565b610107730edb88aa3aa665782121fa2509b382f414a0c0ce81565b61014d61014836600461074b565b6101b3565b005b6100de600c81565b61014d61016536600461071d565b61043c565b61010773d533a949740bb3306d119cc777fa900ba034cd5281565b6100de61019336600461071d565b6105ce565b61010773c8a6480ed7c7b1c401061f8d96be7de6f94d3e6081565b604051636fe1836560e11b815260048101839052336024820152730edb88aa3aa665782121fa2509b382f414a0c0ce9063dfc306ca906044015f6040518083038186803b158015610202575f80fd5b505afa158015610214573d5f803e3d5ffd5b5050505f8381526001602052604090205460ff161590506102745760405162461bcd60e51b81526020600482015260156024820152741513d2d15397d053149150511657d0d31052535151605a1b60448201526064015b60405180910390fd5b604051630d50181b60e31b815260048101839052600c60248201525f90819073c8a6480ed7c7b1c401061f8d96be7de6f94d3e6090636a80c0d8906044016040805180830381865afa1580156102cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f09190610779565b91509150805f036103435760405162461bcd60e51b815260206004820152601960248201527f4e4f5f59535f42414c414e43455f4f4e5f544849535f54444500000000000000604482015260640161026b565b5f8481526001602081905260408220805460ff191690911790558054839061036c9084906107af565b61037691906107cc565b60405163a9059cbb60e01b81526001600160a01b03861660048201526024810182905290915073d533a949740bb3306d119cc777fa900ba034cd529063a9059cbb906044016020604051808303815f875af11580156103d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103fb91906107eb565b5060408051868152602081018390527f5d048dbab169027a25173427ca21f5f5479fc5b8191bc6daae6709ed45836371910160405180910390a15050505050565b73b0afc8363b8f36e0cce5d54251e20720ffaeaee76001600160a01b03166318229ede6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561048c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b09190610811565b6001600160a01b0316336001600160a01b0316146105035760405162461bcd60e51b815260206004820152601060248201526f1393d517d514915054d5549657d4111160821b604482015260640161026b565b805f80828254610513919061082c565b90915550506040516323b872dd60e01b81523360048201523060248201526044810182905273d533a949740bb3306d119cc777fa900ba034cd52906323b872dd906064016020604051808303815f875af1158015610573573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061059791906107eb565b506040518181527f9da7f32fd3f4541d5b4f50aa40d27d5dbf0a5cd2bd89c3c72fc7bf59acc4d0369060200160405180910390a150565b604051630d795b1960e21b815260048101829052600c60248201525f9073c8a6480ed7c7b1c401061f8d96be7de6f94d3e60908290819083906335e56c64906044016040805180830381865afa15801561062a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061064e9190610779565b604051633f23e5d560e21b81526004810188905291935091506001600160a01b0384169063fc8f97549060240160a060405180830381865afa158015610696573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ba919061088d565b6040015160ff1615806106cb575080155b806106e357505f8581526001602052604090205460ff165b806106ed57505f54155b156106fc57505f949350505050565b81815f5461070a91906107af565b61071491906107cc565b95945050505050565b5f6020828403121561072d575f80fd5b5035919050565b6001600160a01b0381168114610748575f80fd5b50565b5f806040838503121561075c575f80fd5b82359150602083013561076e81610734565b809150509250929050565b5f806040838503121561078a575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107c6576107c661079b565b92915050565b5f826107e657634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156107fb575f80fd5b8151801515811461080a575f80fd5b9392505050565b5f60208284031215610821575f80fd5b815161080a81610734565b808201808211156107c6576107c661079b565b805162ffffff81168114610851575f80fd5b919050565b80516cffffffffffffffffffffffffff81168114610851575f80fd5b80516bffffffffffffffffffffffff81168114610851575f80fd5b5f60a0828403121561089d575f80fd5b60405160a0810181811067ffffffffffffffff821117156108cc57634e487b7160e01b5f52604160045260245ffd5b6040526108d88361083f565b81526108e66020840161083f565b6020820152604083015160ff811681146108fe575f80fd5b604082015261090f60608401610856565b606082015261092060808401610872565b6080820152939250505056fea26469706673582212209693c1abcb61dd9987923c614a0b2b6d6761b3bdf32d5f4201ca6317e7852cc264736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061009b575f3560e01c806372ecb7e81161006357806372ecb7e81461014f5780638d66ec8714610157578063945c91421461016a578063d76df29d14610185578063da3ac3bc14610198575f80fd5b8063098192cb1461009f5780632abe3ea8146100d65780633882024b146100ec5780636978f8211461011f5780636c7b69cb1461013a575b5f80fd5b6100c16100ad36600461071d565b60016020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6100de5f5481565b6040519081526020016100cd565b61010773b0afc8363b8f36e0cce5d54251e20720ffaeaee781565b6040516001600160a01b0390911681526020016100cd565b610107730edb88aa3aa665782121fa2509b382f414a0c0ce81565b61014d61014836600461074b565b6101b3565b005b6100de600c81565b61014d61016536600461071d565b61043c565b61010773d533a949740bb3306d119cc777fa900ba034cd5281565b6100de61019336600461071d565b6105ce565b61010773c8a6480ed7c7b1c401061f8d96be7de6f94d3e6081565b604051636fe1836560e11b815260048101839052336024820152730edb88aa3aa665782121fa2509b382f414a0c0ce9063dfc306ca906044015f6040518083038186803b158015610202575f80fd5b505afa158015610214573d5f803e3d5ffd5b5050505f8381526001602052604090205460ff161590506102745760405162461bcd60e51b81526020600482015260156024820152741513d2d15397d053149150511657d0d31052535151605a1b60448201526064015b60405180910390fd5b604051630d50181b60e31b815260048101839052600c60248201525f90819073c8a6480ed7c7b1c401061f8d96be7de6f94d3e6090636a80c0d8906044016040805180830381865afa1580156102cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f09190610779565b91509150805f036103435760405162461bcd60e51b815260206004820152601960248201527f4e4f5f59535f42414c414e43455f4f4e5f544849535f54444500000000000000604482015260640161026b565b5f8481526001602081905260408220805460ff191690911790558054839061036c9084906107af565b61037691906107cc565b60405163a9059cbb60e01b81526001600160a01b03861660048201526024810182905290915073d533a949740bb3306d119cc777fa900ba034cd529063a9059cbb906044016020604051808303815f875af11580156103d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103fb91906107eb565b5060408051868152602081018390527f5d048dbab169027a25173427ca21f5f5479fc5b8191bc6daae6709ed45836371910160405180910390a15050505050565b73b0afc8363b8f36e0cce5d54251e20720ffaeaee76001600160a01b03166318229ede6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561048c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b09190610811565b6001600160a01b0316336001600160a01b0316146105035760405162461bcd60e51b815260206004820152601060248201526f1393d517d514915054d5549657d4111160821b604482015260640161026b565b805f80828254610513919061082c565b90915550506040516323b872dd60e01b81523360048201523060248201526044810182905273d533a949740bb3306d119cc777fa900ba034cd52906323b872dd906064016020604051808303815f875af1158015610573573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061059791906107eb565b506040518181527f9da7f32fd3f4541d5b4f50aa40d27d5dbf0a5cd2bd89c3c72fc7bf59acc4d0369060200160405180910390a150565b604051630d795b1960e21b815260048101829052600c60248201525f9073c8a6480ed7c7b1c401061f8d96be7de6f94d3e60908290819083906335e56c64906044016040805180830381865afa15801561062a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061064e9190610779565b604051633f23e5d560e21b81526004810188905291935091506001600160a01b0384169063fc8f97549060240160a060405180830381865afa158015610696573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ba919061088d565b6040015160ff1615806106cb575080155b806106e357505f8581526001602052604090205460ff165b806106ed57505f54155b156106fc57505f949350505050565b81815f5461070a91906107af565b61071491906107cc565b95945050505050565b5f6020828403121561072d575f80fd5b5035919050565b6001600160a01b0381168114610748575f80fd5b50565b5f806040838503121561075c575f80fd5b82359150602083013561076e81610734565b809150509250929050565b5f806040838503121561078a575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107c6576107c661079b565b92915050565b5f826107e657634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156107fb575f80fd5b8151801515811461080a575f80fd5b9392505050565b5f60208284031215610821575f80fd5b815161080a81610734565b808201808211156107c6576107c661079b565b805162ffffff81168114610851575f80fd5b919050565b80516cffffffffffffffffffffffffff81168114610851575f80fd5b80516bffffffffffffffffffffffff81168114610851575f80fd5b5f60a0828403121561089d575f80fd5b60405160a0810181811067ffffffffffffffff821117156108cc57634e487b7160e01b5f52604160045260245ffd5b6040526108d88361083f565b81526108e66020840161083f565b6020820152604083015160ff811681146108fe575f80fd5b604082015261090f60608401610856565b606082015261092060808401610872565b6080820152939250505056fea26469706673582212209693c1abcb61dd9987923c614a0b2b6d6761b3bdf32d5f4201ca6317e7852cc264736f6c63430008180033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1,704.13
Net Worth in ETH
0.823004
Token Allocations
CRV
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.262473 | 6,492.6055 | $1,704.13 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.