Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 2,458 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24147908 | 13 days ago | IN | 0 ETH | 0.00000724 | ||||
| Approve | 24020139 | 30 days ago | IN | 0 ETH | 0.0000038 | ||||
| Approve | 23976474 | 37 days ago | IN | 0 ETH | 0.00003516 | ||||
| Transfer | 23838955 | 56 days ago | IN | 0 ETH | 0.0000462 | ||||
| Transfer | 23838953 | 56 days ago | IN | 0 ETH | 0.00010136 | ||||
| Approve | 23724232 | 72 days ago | IN | 0 ETH | 0.00007808 | ||||
| Approve | 23724231 | 72 days ago | IN | 0 ETH | 0.00007742 | ||||
| Approve | 23611145 | 88 days ago | IN | 0 ETH | 0.00001289 | ||||
| Approve | 23453080 | 110 days ago | IN | 0 ETH | 0.00001954 | ||||
| Approve | 23407398 | 116 days ago | IN | 0 ETH | 0.00000916 | ||||
| Approve | 23403664 | 117 days ago | IN | 0 ETH | 0.00000939 | ||||
| Approve | 23386891 | 119 days ago | IN | 0 ETH | 0.0000098 | ||||
| Approve | 23313233 | 129 days ago | IN | 0 ETH | 0.00000844 | ||||
| Approve | 23062347 | 164 days ago | IN | 0 ETH | 0.00000869 | ||||
| Approve | 23062346 | 164 days ago | IN | 0 ETH | 0.00000902 | ||||
| Approve | 23060217 | 165 days ago | IN | 0 ETH | 0.00001026 | ||||
| Approve | 23060215 | 165 days ago | IN | 0 ETH | 0.0000107 | ||||
| Approve | 23042153 | 167 days ago | IN | 0 ETH | 0.00001464 | ||||
| Approve | 23037216 | 168 days ago | IN | 0 ETH | 0.00005127 | ||||
| Approve | 23033096 | 169 days ago | IN | 0 ETH | 0.0000876 | ||||
| Approve | 23013692 | 171 days ago | IN | 0 ETH | 0.00000966 | ||||
| Approve | 22972638 | 177 days ago | IN | 0 ETH | 0.0000125 | ||||
| Approve | 22919389 | 184 days ago | IN | 0 ETH | 0.00068854 | ||||
| Approve | 22919368 | 184 days ago | IN | 0 ETH | 0.00058047 | ||||
| Approve | 22897369 | 188 days ago | IN | 0 ETH | 0.00012169 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Cvg
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 250 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/**
_____
/ __ \
| / \/ ___ _ ____ _____ _ __ __ _ ___ _ __ ___ ___
| | / _ \| '_ \ \ / / _ \ '__/ _` |/ _ \ '_ \ / __/ _ \
| \__/\ (_) | | | \ V / __/ | | (_| | __/ | | | (_| __/
\____/\___/|_| |_|\_/ \___|_| \__, |\___|_| |_|\___\___|
__/ |
|___/
*/
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../interfaces/ICvgControlTower.sol";
/// @title Cvg-Finance - CVG
/// @notice Convergence ERC20 token ($CVG)
contract Cvg is ERC20 {
uint256 public constant MAX_PARTNERS = 685_000 * 10 ** 18;
uint256 public constant MAX_AIRDROP = 1_848_560 * 10 ** 18;
uint256 public constant MAX_VESTING = 39_466_440 * 10 ** 18;
uint256 public constant MAX_BOND = 48_000_000 * 10 ** 18;
uint256 public constant MAX_STAKING = 60_000_000 * 10 ** 18;
/// @dev convergence ecosystem address
ICvgControlTower public immutable cvgControlTower;
/// @dev amount of tokens minted through bond contracts
uint256 public mintedBond;
/// @dev amount of tokens minted through staking contracts
uint256 public mintedStaking;
constructor(
ICvgControlTower _cvgControlTower,
address _vestingCvg,
address _airdrop,
address _partners
) ERC20("Convergence", "CVG") {
_mint(_vestingCvg, MAX_VESTING);
_mint(_airdrop, MAX_AIRDROP);
_mint(_partners, MAX_PARTNERS);
cvgControlTower = _cvgControlTower;
}
/**
* @notice mint function for bond contracts
* @param account address receiving the tokens
* @param amount amount of tokens to mint
*/
function mintBond(address account, uint256 amount) external {
require(cvgControlTower.isBond(msg.sender), "NOT_BOND");
uint256 newMintedBond = mintedBond + amount;
require(newMintedBond <= MAX_BOND, "MAX_SUPPLY_BOND");
mintedBond = newMintedBond;
_mint(account, amount);
}
/**
* @notice mint function for staking contracts
* @param account address receiving the tokens
* @param amount amount of tokens to mint
*/
function mintStaking(address account, uint256 amount) external {
require(cvgControlTower.isStakingContract(msg.sender), "NOT_STAKING");
uint256 _mintedStaking = mintedStaking;
require(_mintedStaking < MAX_STAKING, "MAX_SUPPLY_STAKING");
/// @dev ensure every tokens will be minted from staking
uint256 newMintedStaking = _mintedStaking + amount;
if (newMintedStaking > MAX_STAKING) {
newMintedStaking = MAX_STAKING;
amount = MAX_STAKING - _mintedStaking;
}
mintedStaking = newMintedStaking;
_mint(account, amount);
}
/**
* @notice burn tokens
* @param amount amount of tokens to burn
*/
function burn(uint256 amount) external {
_burn(msg.sender, amount);
}
}// 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 (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// 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.17;
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;
}
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 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;
}
}// 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);
}// 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";
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);
}// 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;
}// 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";
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 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 getPositionRewardsForTdes(
uint256[] calldata _tdeIds,
uint256 actualCycle,
uint256 _tokenId
) external view returns (Claim[] memory);
}{
"optimizer": {
"enabled": true,
"runs": 250
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract ICvgControlTower","name":"_cvgControlTower","type":"address"},{"internalType":"address","name":"_vestingCvg","type":"address"},{"internalType":"address","name":"_airdrop","type":"address"},{"internalType":"address","name":"_partners","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PARTNERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VESTING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cvgControlTower","outputs":[{"internalType":"contract ICvgControlTower","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedBond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedStaking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b50604051620012b8380380620012b88339810160408190526200003491620001da565b6040518060400160405280600b81526020016a436f6e76657267656e636560a81b8152506040518060400160405280600381526020016243564760e81b8152508160039081620000859190620002e6565b506004620000948282620002e6565b505050620000b4836a20a557ffd98f2a7a200000620000f660201b60201c565b620000cb826a018772a36e155d3dc00000620000f6565b620000e18169910deca5fa74b2200000620000f6565b5050506001600160a01b0316608052620003da565b6001600160a01b038216620001515760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001659190620003b2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6001600160a01b0381168114620001d757600080fd5b50565b60008060008060808587031215620001f157600080fd5b8451620001fe81620001c1565b60208601519094506200021181620001c1565b60408601519093506200022481620001c1565b60608601519092506200023781620001c1565b939692955090935050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026d57607f821691505b6020821081036200028e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bc57600081815260208120601f850160051c81016020861015620002bd5750805b601f850160051c820191505b81811015620002de57828155600101620002c9565b505050505050565b81516001600160401b0381111562000302576200030262000242565b6200031a8162000313845462000258565b8462000294565b602080601f831160018114620003525760008415620003395750858301515b600019600386901b1c1916600185901b178555620002de565b600085815260208120601f198616915b82811015620003835788860151825594840194600190910190840162000362565b5085821015620003a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003d457634e487b7160e01b600052601160045260246000fd5b92915050565b608051610eb4620004046000396000818161021401528181610403015261059b0152610eb46000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806339509351116100b857806395d89b411161007c57806395d89b41146102b9578063a457c2d7146102c1578063a9059cbb146102d4578063dd62ed3e146102e7578063df93315d146102fa578063f94abb451461030c57600080fd5b8063395093511461024e57806342966c681461026157806366e3d5ac1461027457806370a082311461028757806393b47027146102b057600080fd5b806323b872dd1161010a57806323b872dd146101bd5780632984f997146101d0578063313ce567146101d9578063322e37ae146101e8578063343028e7146101fa5780633882024b1461020f57600080fd5b8063017616991461014757806306fdde031461016c578063095ea7b31461018157806318160ddd146101a457806319428191146101ac575b600080fd5b6101596a27b46536c66c8e3000000081565b6040519081526020015b60405180910390f35b61017461031e565b6040516101639190610ca8565b61019461018f366004610d12565b6103b0565b6040519015158152602001610163565b600254610159565b61015969910deca5fa74b220000081565b6101946101cb366004610d3c565b6103ca565b61015960065481565b60405160128152602001610163565b6101596a31a17e847807b1bc00000081565b61020d610208366004610d12565b6103ee565b005b6102367f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610163565b61019461025c366004610d12565b610557565b61020d61026f366004610d78565b610579565b61020d610282366004610d12565b610586565b610159610295366004610d91565b6001600160a01b031660009081526020819052604090205490565b61015960055481565b6101746106b8565b6101946102cf366004610d12565b6106c7565b6101946102e2366004610d12565b610742565b6101596102f5366004610db3565b610750565b6101596a018772a36e155d3dc0000081565b6101596a20a557ffd98f2a7a20000081565b60606003805461032d90610de6565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610de6565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be81858561077b565b60019150505b92915050565b6000336103d885828561089f565b6103e3858585610913565b506001949350505050565b6040516306df271960e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906306df271990602401602060405180830381865afa158015610452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104769190610e20565b6104b55760405162461bcd60e51b815260206004820152600b60248201526a4e4f545f5354414b494e4760a81b60448201526064015b60405180910390fd5b6006546a31a17e847807b1bc00000081106105075760405162461bcd60e51b81526020600482015260126024820152714d41585f535550504c595f5354414b494e4760701b60448201526064016104ac565b60006105138383610e58565b90506a31a17e847807b1bc00000081111561054257506a31a17e847807b1bc00000061053f8282610e6b565b92505b60068190556105518484610ab7565b50505050565b6000336103be81858561056a8383610750565b6105749190610e58565b61077b565b6105833382610b76565b50565b604051634378f15360e11b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906386f1e2a690602401602060405180830381865afa1580156105ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e9190610e20565b6106455760405162461bcd60e51b81526020600482015260086024820152671393d517d093d39160c21b60448201526064016104ac565b6000816005546106559190610e58565b90506a27b46536c66c8e300000008111156106a45760405162461bcd60e51b815260206004820152600f60248201526e13505617d4d55414131657d093d391608a1b60448201526064016104ac565b60058190556106b38383610ab7565b505050565b60606004805461032d90610de6565b600033816106d58286610750565b9050838110156107355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ac565b6103e3828686840361077b565b6000336103be818585610913565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b03821661083e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ab8484610750565b9050600019811461055157818110156109065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b610551848484840361077b565b6001600160a01b0383166109775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166109d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b6001600160a01b03831660009081526020819052604090205481811015610a515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610551565b6001600160a01b038216610b0d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b8060026000828254610b1f9190610e58565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610bd65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ac565b6001600160a01b03821660009081526020819052604090205481811015610c4a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ac565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015610cd557858101830151858201604001528201610cb9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d0d57600080fd5b919050565b60008060408385031215610d2557600080fd5b610d2e83610cf6565b946020939093013593505050565b600080600060608486031215610d5157600080fd5b610d5a84610cf6565b9250610d6860208501610cf6565b9150604084013590509250925092565b600060208284031215610d8a57600080fd5b5035919050565b600060208284031215610da357600080fd5b610dac82610cf6565b9392505050565b60008060408385031215610dc657600080fd5b610dcf83610cf6565b9150610ddd60208401610cf6565b90509250929050565b600181811c90821680610dfa57607f821691505b602082108103610e1a57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610e3257600080fd5b81518015158114610dac57600080fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156103c4576103c4610e42565b818103818111156103c4576103c4610e4256fea26469706673582212202f39bd700c55fdb7796cc3e8495fdafc83c804e3b9b12402a96a40ebca9cb4b664736f6c63430008110033000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee7000000000000000000000000c929ba60ef82fe55de3bc848dd9453b3b12a0c30000000000000000000000000cd6cfce8c8d3b6efad27390e87d6931d4078b36c0000000000000000000000006cee94bfcd5a7defdbef337bf79fe31d0982cf2a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806339509351116100b857806395d89b411161007c57806395d89b41146102b9578063a457c2d7146102c1578063a9059cbb146102d4578063dd62ed3e146102e7578063df93315d146102fa578063f94abb451461030c57600080fd5b8063395093511461024e57806342966c681461026157806366e3d5ac1461027457806370a082311461028757806393b47027146102b057600080fd5b806323b872dd1161010a57806323b872dd146101bd5780632984f997146101d0578063313ce567146101d9578063322e37ae146101e8578063343028e7146101fa5780633882024b1461020f57600080fd5b8063017616991461014757806306fdde031461016c578063095ea7b31461018157806318160ddd146101a457806319428191146101ac575b600080fd5b6101596a27b46536c66c8e3000000081565b6040519081526020015b60405180910390f35b61017461031e565b6040516101639190610ca8565b61019461018f366004610d12565b6103b0565b6040519015158152602001610163565b600254610159565b61015969910deca5fa74b220000081565b6101946101cb366004610d3c565b6103ca565b61015960065481565b60405160128152602001610163565b6101596a31a17e847807b1bc00000081565b61020d610208366004610d12565b6103ee565b005b6102367f000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee781565b6040516001600160a01b039091168152602001610163565b61019461025c366004610d12565b610557565b61020d61026f366004610d78565b610579565b61020d610282366004610d12565b610586565b610159610295366004610d91565b6001600160a01b031660009081526020819052604090205490565b61015960055481565b6101746106b8565b6101946102cf366004610d12565b6106c7565b6101946102e2366004610d12565b610742565b6101596102f5366004610db3565b610750565b6101596a018772a36e155d3dc0000081565b6101596a20a557ffd98f2a7a20000081565b60606003805461032d90610de6565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610de6565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be81858561077b565b60019150505b92915050565b6000336103d885828561089f565b6103e3858585610913565b506001949350505050565b6040516306df271960e01b81523360048201527f000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee76001600160a01b0316906306df271990602401602060405180830381865afa158015610452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104769190610e20565b6104b55760405162461bcd60e51b815260206004820152600b60248201526a4e4f545f5354414b494e4760a81b60448201526064015b60405180910390fd5b6006546a31a17e847807b1bc00000081106105075760405162461bcd60e51b81526020600482015260126024820152714d41585f535550504c595f5354414b494e4760701b60448201526064016104ac565b60006105138383610e58565b90506a31a17e847807b1bc00000081111561054257506a31a17e847807b1bc00000061053f8282610e6b565b92505b60068190556105518484610ab7565b50505050565b6000336103be81858561056a8383610750565b6105749190610e58565b61077b565b6105833382610b76565b50565b604051634378f15360e11b81523360048201527f000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee76001600160a01b0316906386f1e2a690602401602060405180830381865afa1580156105ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e9190610e20565b6106455760405162461bcd60e51b81526020600482015260086024820152671393d517d093d39160c21b60448201526064016104ac565b6000816005546106559190610e58565b90506a27b46536c66c8e300000008111156106a45760405162461bcd60e51b815260206004820152600f60248201526e13505617d4d55414131657d093d391608a1b60448201526064016104ac565b60058190556106b38383610ab7565b505050565b60606004805461032d90610de6565b600033816106d58286610750565b9050838110156107355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ac565b6103e3828686840361077b565b6000336103be818585610913565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b03821661083e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ab8484610750565b9050600019811461055157818110156109065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b610551848484840361077b565b6001600160a01b0383166109775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166109d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b6001600160a01b03831660009081526020819052604090205481811015610a515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610551565b6001600160a01b038216610b0d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b8060026000828254610b1f9190610e58565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610bd65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ac565b6001600160a01b03821660009081526020819052604090205481811015610c4a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ac565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015610cd557858101830151858201604001528201610cb9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d0d57600080fd5b919050565b60008060408385031215610d2557600080fd5b610d2e83610cf6565b946020939093013593505050565b600080600060608486031215610d5157600080fd5b610d5a84610cf6565b9250610d6860208501610cf6565b9150604084013590509250925092565b600060208284031215610d8a57600080fd5b5035919050565b600060208284031215610da357600080fd5b610dac82610cf6565b9392505050565b60008060408385031215610dc657600080fd5b610dcf83610cf6565b9150610ddd60208401610cf6565b90509250929050565b600181811c90821680610dfa57607f821691505b602082108103610e1a57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610e3257600080fd5b81518015158114610dac57600080fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156103c4576103c4610e42565b818103818111156103c4576103c4610e4256fea26469706673582212202f39bd700c55fdb7796cc3e8495fdafc83c804e3b9b12402a96a40ebca9cb4b664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee7000000000000000000000000c929ba60ef82fe55de3bc848dd9453b3b12a0c30000000000000000000000000cd6cfce8c8d3b6efad27390e87d6931d4078b36c0000000000000000000000006cee94bfcd5a7defdbef337bf79fe31d0982cf2a
-----Decoded View---------------
Arg [0] : _cvgControlTower (address): 0xB0Afc8363b8F36E0ccE5D54251e20720FfaeaeE7
Arg [1] : _vestingCvg (address): 0xC929bA60ef82fE55De3bC848dd9453B3b12a0c30
Arg [2] : _airdrop (address): 0xCD6cfCE8c8D3b6Efad27390e87D6931d4078B36c
Arg [3] : _partners (address): 0x6ceE94bFCD5a7dEFDBEF337Bf79fE31D0982CF2A
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b0afc8363b8f36e0cce5d54251e20720ffaeaee7
Arg [1] : 000000000000000000000000c929ba60ef82fe55de3bc848dd9453b3b12a0c30
Arg [2] : 000000000000000000000000cd6cfce8c8d3b6efad27390e87d6931d4078b36c
Arg [3] : 0000000000000000000000006cee94bfcd5a7defdbef337bf79fe31d0982cf2a
Loading...
Loading
Loading...
Loading
OVERVIEW
Convergence is an agnostic-like layer that will be deployed on top of various DeFi protocols.Net Worth in USD
$0.15
Net Worth in ETH
0.000046
Token Allocations
CVG
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.000065 | 2,350 | $0.1527 |
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.