My Name Tag:
Not Available, login to update
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x9c4564fa51a1e4c27bc0783b9258aaf0c41e7b39135a5033619c7bb9cf139f86 | Transfer Ownersh... | 29079221 | 373 days 8 hrs ago | Furucombo: Deployer | IN | Furucombo: rCurve Stable | 0 MATIC | 0.001430349999 | |
0x468df77ed971cf41db6f0a56916a27afbd162a24f8ec9a5e2c924f6139d85032 | Set Pool Info | 29079216 | 373 days 8 hrs ago | Furucombo: Deployer | IN | Furucombo: rCurve Stable | 0 MATIC | 0.005238950001 | |
0xc55e6750e65813aee23a611a3bfb555399899acb9582525e1496ab47704da365 | Set Pool Info | 29079212 | 373 days 8 hrs ago | Furucombo: Deployer | IN | Furucombo: rCurve Stable | 0 MATIC | 0.003868164999 | |
0x6e724dd522176089c4bf41020497381e235dc0c51e4ffc33e4ff80fbcb61e1ec | 0x60806040 | 29079208 | 373 days 8 hrs ago | Furucombo: Deployer | IN | Create: RCurveStable | 0 MATIC | 0.030133970997 |
[ Download CSV Export ]
Contract Name:
RCurveStable
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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/math/SafeCast.sol) pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import {IAssetRouter} from "./interfaces/IAssetRouter.sol"; import {IAssetOracle} from "./interfaces/IAssetOracle.sol"; /// @title Asset resolver base contract abstract contract AssetResolverBase { using SafeCast for uint256; /// @dev Cast asset value is positive. /// @return The calculated amount. function _castAssetValue(uint256 amount_) internal pure returns (int256) { return amount_.toInt256(); } /// @notice Get the asset oracle. /// @return The asset oracle address. function _getAssetOracle() internal view returns (IAssetOracle) { return IAssetRouter(msg.sender).oracle(); } /// @notice Calculate asset value. /// @param asset_ The asset address. /// @param amount_ The amount of asset. /// @param quote_ The address of the quote token. function _calcAssetValue( address asset_, uint256 amount_, address quote_ ) internal view virtual returns (int256) { return IAssetRouter(msg.sender).calcAssetValue(asset_, amount_, quote_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IAssetOracle { function calcConversionAmount( address base_, uint256 baseAmount_, address quote_ ) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IAssetRegistry { function bannedResolvers(address) external view returns (bool); function register(address asset_, address resolver_) external; function unregister(address asset_) external; function banResolver(address resolver_) external; function unbanResolver(address resolver_) external; function resolvers(address asset_) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IAssetResolver { function calcAssetValue( address, uint256, address ) external view returns (int256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IAssetRegistry} from "./IAssetRegistry.sol"; import {IAssetOracle} from "./IAssetOracle.sol"; interface IAssetRouter { function oracle() external view returns (IAssetOracle); function registry() external view returns (IAssetRegistry); function setOracle(address oracle_) external; function setRegistry(address registry_) external; function calcAssetsTotalValue( address[] calldata bases_, uint256[] calldata amounts_, address quote_ ) external view returns (uint256); function calcAssetValue( address asset_, uint256 amount_, address quote_ ) external view returns (int256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ICurveLiquidityPool { function get_virtual_price() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {Errors} from "../../../utils/Errors.sol"; import {IAssetResolver} from "../../interfaces/IAssetResolver.sol"; import {AssetResolverBase} from "../../AssetResolverBase.sol"; import {ICurveLiquidityPool} from "./ICurveLiquidityPool.sol"; /// @title The curve stable resolver contract RCurveStable is IAssetResolver, AssetResolverBase, Ownable { struct PoolInfo { address pool; address valuedAsset; uint256 valuedAssetDecimals; } uint256 private constant _VIRTUAL_PRICE_UNIT = 10**18; mapping(address => PoolInfo) public assetToPoolInfo; event PoolInfoSet( address indexed asset, address indexed pool, address indexed valuedAsset, uint256 valuedAssetDecimals ); event PoolInfoRemoved(address indexed asset); /// @notice Set the pool info. /// @param asset_ The asset address. /// @param pool_ The pool address which provides virtual price. /// @param valuedAsset_ The valued asset address. /// @param valuedAssetDecimals_ The decimals of the valued asset. function setPoolInfo( address asset_, address pool_, address valuedAsset_, uint256 valuedAssetDecimals_ ) external onlyOwner { Errors._require(asset_ != address(0), Errors.Code.RCURVE_STABLE_ZERO_ASSET_ADDRESS); Errors._require(pool_ != address(0), Errors.Code.RCURVE_STABLE_ZERO_POOL_ADDRESS); Errors._require(valuedAsset_ != address(0), Errors.Code.RCURVE_STABLE_ZERO_VALUED_ASSET_ADDRESS); Errors._require( valuedAssetDecimals_ == IERC20Metadata(valuedAsset_).decimals(), Errors.Code.RCURVE_STABLE_VALUED_ASSET_DECIMAL_NOT_MATCH_VALUED_ASSET ); assetToPoolInfo[asset_] = PoolInfo({ pool: pool_, valuedAsset: valuedAsset_, valuedAssetDecimals: valuedAssetDecimals_ }); emit PoolInfoSet(asset_, pool_, valuedAsset_, valuedAssetDecimals_); } /// @notice Remove the pool info. /// @param asset_ The asset address. function removePoolInfo(address asset_) external onlyOwner { Errors._require(assetToPoolInfo[asset_].pool != address(0), Errors.Code.RCURVE_STABLE_POOL_INFO_IS_NOT_SET); delete assetToPoolInfo[asset_]; emit PoolInfoRemoved(asset_); } /// @notice Calculate asset value /// @param asset_ The asset address. Should be a curve lp token address. /// @param amount_ The amount of asset. /// @param quote_ The address of the quote token. /// @return The value of asset in quote token. /// @dev The value must be positive. function calcAssetValue( address asset_, uint256 amount_, address quote_ ) external view returns (int256) { // Get pool info PoolInfo memory info = assetToPoolInfo[asset_]; Errors._require(info.pool != address(0), Errors.Code.RCURVE_STABLE_POOL_INFO_IS_NOT_SET); // Calculate value uint256 underlyingAmount; uint256 virtualPrice = ICurveLiquidityPool(info.pool).get_virtual_price(); if (info.valuedAssetDecimals == 18) { underlyingAmount = (amount_ * virtualPrice) / _VIRTUAL_PRICE_UNIT; } else { underlyingAmount = ((amount_ * virtualPrice * (10**info.valuedAssetDecimals)) / _VIRTUAL_PRICE_UNIT) / _VIRTUAL_PRICE_UNIT; } // Calculate underlying value int256 value = _calcAssetValue(info.valuedAsset, underlyingAmount, quote_); Errors._require(value >= 0, Errors.Code.RESOLVER_ASSET_VALUE_NEGATIVE); return value; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Errors { error RevertCode(Code errorCode); enum Code { COMPTROLLER_HALTED, // 0: "Halted" COMPTROLLER_BANNED, // 1: "Banned" COMPTROLLER_ZERO_ADDRESS, // 2: "Zero address" COMPTROLLER_TOS_AND_SIGS_LENGTH_INCONSISTENT, // 3: "tos and sigs length are inconsistent" COMPTROLLER_BEACON_IS_INITIALIZED, // 4: "Beacon is initialized" COMPTROLLER_DENOMINATIONS_AND_DUSTS_LENGTH_INCONSISTENT, // 5: "denominations and dusts length are inconsistent" IMPLEMENTATION_ASSET_LIST_NOT_EMPTY, // 6: "assetList is not empty" IMPLEMENTATION_INVALID_DENOMINATION, // 7: "Invalid denomination" IMPLEMENTATION_INVALID_MORTGAGE_TIER, // 8: "Mortgage tier not set in comptroller" IMPLEMENTATION_PENDING_SHARE_NOT_RESOLVABLE, // 9: "pending share is not resolvable" IMPLEMENTATION_PENDING_NOT_START, // 10: "Pending does not start" IMPLEMENTATION_PENDING_NOT_EXPIRE, // 11: "Pending does not expire" IMPLEMENTATION_INVALID_ASSET, // 12: "Invalid asset" IMPLEMENTATION_INSUFFICIENT_TOTAL_VALUE_FOR_EXECUTION, // 13: "Insufficient total value for execution" FUND_PROXY_FACTORY_INVALID_CREATOR, // 14: "Invalid creator" FUND_PROXY_FACTORY_INVALID_DENOMINATION, // 15: "Invalid denomination" FUND_PROXY_FACTORY_INVALID_MORTGAGE_TIER, // 16: "Mortgage tier not set in comptroller" FUND_PROXY_STORAGE_UTILS_INVALID_DENOMINATION, // 17: "Invalid denomination" FUND_PROXY_STORAGE_UTILS_UNKNOWN_OWNER, // 18: "Unknown owner" FUND_PROXY_STORAGE_UTILS_WRONG_ALLOWANCE, // 19: "Wrong allowance" FUND_PROXY_STORAGE_UTILS_IS_NOT_ZERO, // 20: "Is not zero value or address " FUND_PROXY_STORAGE_UTILS_IS_ZERO, // 21: "Is zero value or address" MORTGAGE_VAULT_FUND_MORTGAGED, // 22: "Fund mortgaged" SHARE_TOKEN_INVALID_FROM, // 23: "Invalid from" SHARE_TOKEN_INVALID_TO, // 24: "Invalid to" TASK_EXECUTOR_TOS_AND_DATAS_LENGTH_INCONSISTENT, // 25: "tos and datas length inconsistent" TASK_EXECUTOR_TOS_AND_CONFIGS_LENGTH_INCONSISTENT, // 26: "tos and configs length inconsistent" TASK_EXECUTOR_INVALID_COMPTROLLER_DELEGATE_CALL, // 27: "Invalid comptroller delegate call" TASK_EXECUTOR_INVALID_COMPTROLLER_CONTRACT_CALL, // 28: "Invalid comptroller contract call" TASK_EXECUTOR_INVALID_DEALING_ASSET, // 29: "Invalid dealing asset" TASK_EXECUTOR_REFERENCE_TO_OUT_OF_LOCALSTACK, // 30: "Reference to out of localStack" TASK_EXECUTOR_RETURN_NUM_AND_PARSED_RETURN_NUM_NOT_MATCHED, // 31: "Return num and parsed return num not matched" TASK_EXECUTOR_ILLEGAL_LENGTH_FOR_PARSE, // 32: "Illegal length for _parse" TASK_EXECUTOR_STACK_OVERFLOW, // 33: "Stack overflow" TASK_EXECUTOR_INVALID_INITIAL_ASSET, // 34: "Invalid initial asset" TASK_EXECUTOR_NON_ZERO_QUOTA, // 35: "Quota is not zero" AFURUCOMBO_DUPLICATED_TOKENSOUT, // 36: "Duplicated tokensOut" AFURUCOMBO_REMAINING_TOKENS, // 37: "Furucombo has remaining tokens" AFURUCOMBO_TOKENS_AND_AMOUNTS_LENGTH_INCONSISTENT, // 38: "Token length != amounts length" AFURUCOMBO_INVALID_COMPTROLLER_HANDLER_CALL, // 39: "Invalid comptroller handler call" CHAINLINK_ASSETS_AND_AGGREGATORS_INCONSISTENT, // 40: "assets.length == aggregators.length" CHAINLINK_ZERO_ADDRESS, // 41: "Zero address" CHAINLINK_EXISTING_ASSET, // 42: "Existing asset" CHAINLINK_NON_EXISTENT_ASSET, // 43: "Non-existent asset" CHAINLINK_INVALID_PRICE, // 44: "Invalid price" CHAINLINK_STALE_PRICE, // 45: "Stale price" ASSET_REGISTRY_UNREGISTERED, // 46: "Unregistered" ASSET_REGISTRY_BANNED_RESOLVER, // 47: "Resolver has been banned" ASSET_REGISTRY_ZERO_RESOLVER_ADDRESS, // 48: "Resolver zero address" ASSET_REGISTRY_ZERO_ASSET_ADDRESS, // 49: "Asset zero address" ASSET_REGISTRY_REGISTERED_RESOLVER, // 50: "Resolver is registered" ASSET_REGISTRY_NON_REGISTERED_RESOLVER, // 51: "Asset not registered" ASSET_REGISTRY_NON_BANNED_RESOLVER, // 52: "Resolver is not banned" ASSET_ROUTER_ASSETS_AND_AMOUNTS_LENGTH_INCONSISTENT, // 53: "assets length != amounts length" ASSET_ROUTER_NEGATIVE_VALUE, // 54: "Negative value" RESOLVER_ASSET_VALUE_NEGATIVE, // 55: "Resolver's asset value < 0" RESOLVER_ASSET_VALUE_POSITIVE, // 56: "Resolver's asset value > 0" RCURVE_STABLE_ZERO_ASSET_ADDRESS, // 57: "Zero asset address" RCURVE_STABLE_ZERO_POOL_ADDRESS, // 58: "Zero pool address" RCURVE_STABLE_ZERO_VALUED_ASSET_ADDRESS, // 59: "Zero valued asset address" RCURVE_STABLE_VALUED_ASSET_DECIMAL_NOT_MATCH_VALUED_ASSET, // 60: "Valued asset decimal not match valued asset" RCURVE_STABLE_POOL_INFO_IS_NOT_SET, // 61: "Pool info is not set" ASSET_MODULE_DIFFERENT_ASSET_REMAINING, // 62: "Different asset remaining" ASSET_MODULE_FULL_ASSET_CAPACITY, // 63: "Full Asset Capacity" MANAGEMENT_FEE_MODULE_FEE_RATE_SHOULD_BE_LESS_THAN_FUND_BASE, // 64: "Fee rate should be less than 100%" PERFORMANCE_FEE_MODULE_CAN_NOT_CRYSTALLIZED_YET, // 65: "Can not crystallized yet" PERFORMANCE_FEE_MODULE_TIME_BEFORE_START, // 66: "Time before start" PERFORMANCE_FEE_MODULE_FEE_RATE_SHOULD_BE_LESS_THAN_BASE, // 67: "Fee rate should be less than 100%" PERFORMANCE_FEE_MODULE_CRYSTALLIZATION_PERIOD_TOO_SHORT, // 68: "Crystallization period too short" SHARE_MODULE_SHARE_AMOUNT_TOO_LARGE, // 69: "The requesting share amount is greater than total share amount" SHARE_MODULE_PURCHASE_ZERO_BALANCE, // 70: "The purchased balance is zero" SHARE_MODULE_PURCHASE_ZERO_SHARE, // 71: "The share purchased need to greater than zero" SHARE_MODULE_REDEEM_ZERO_SHARE, // 72: "The redeem share is zero" SHARE_MODULE_INSUFFICIENT_SHARE, // 73: "Insufficient share amount" SHARE_MODULE_REDEEM_IN_PENDING_WITHOUT_PERMISSION, // 74: "Redeem in pending without permission" SHARE_MODULE_PENDING_ROUND_INCONSISTENT, // 75: "user pending round and current pending round are inconsistent" SHARE_MODULE_PENDING_REDEMPTION_NOT_CLAIMABLE // 76: "Pending redemption is not claimable" } function _require(bool condition_, Code errorCode_) internal pure { if (!condition_) revert RevertCode(errorCode_); } function _revertMsg(string memory functionName_, string memory reason_) internal pure { revert(string(abi.encodePacked(functionName_, ": ", reason_))); } function _revertMsg(string memory functionName_) internal pure { _revertMsg(functionName_, "Unspecified"); } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"enum Errors.Code","name":"errorCode","type":"uint8"}],"name":"RevertCode","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"}],"name":"PoolInfoRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"valuedAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"valuedAssetDecimals","type":"uint256"}],"name":"PoolInfoSet","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assetToPoolInfo","outputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"valuedAsset","type":"address"},{"internalType":"uint256","name":"valuedAssetDecimals","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"address","name":"quote_","type":"address"}],"name":"calcAssetValue","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset_","type":"address"}],"name":"removePoolInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"asset_","type":"address"},{"internalType":"address","name":"pool_","type":"address"},{"internalType":"address","name":"valuedAsset_","type":"address"},{"internalType":"uint256","name":"valuedAssetDecimals_","type":"uint256"}],"name":"setPoolInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109b58061007e6000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063715018a61161005b578063715018a6146101135780638da5cb5b1461011b578063dedcf67514610136578063f2fde38b1461015757600080fd5b80634ea8ecf7146100825780635a3934da146100975780636673d8c314610100575b600080fd5b6100956100903660046106f4565b61016a565b005b6100d56100a53660046106f4565b60016020819052600091825260409091208054918101546002909101546001600160a01b03928316929091169083565b604080516001600160a01b039485168152939092166020840152908201526060015b60405180910390f35b61009561010e366004610716565b61022b565b6100956103af565b6000546040516001600160a01b0390911681526020016100f7565b610149610144366004610761565b6103e5565b6040519081526020016100f7565b6100956101653660046106f4565b610547565b6000546001600160a01b0316331461019d5760405162461bcd60e51b81526004016101949061079d565b60405180910390fd5b6001600160a01b038181166000908152600160205260409020546101c591161515603d6105e2565b6001600160a01b038116600081815260016020819052604080832080546001600160a01b0319908116825592810180549093169092556002909101829055517fd31cd1cde8b4bd38c1dc91c8c9c75c02ded82bb0b075d2f9c1dbe1ec815212229190a250565b6000546001600160a01b031633146102555760405162461bcd60e51b81526004016101949061079d565b61026b6001600160a01b038516151560396105e2565b6102816001600160a01b0384161515603a6105e2565b6102976001600160a01b0383161515603b6105e2565b610308826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fc91906107d2565b60ff168214603c6105e2565b604080516060810182526001600160a01b0385811680835285821660208085018281528587018881528b861660008181526001808652908a9020985189549089166001600160a01b0319918216178a5593519089018054919098169316929092179095559351600290950194909455935185815290927fa20206dd00568e14342e20906ec9271593605e729e08747b09c01ef28f300412910160405180910390a450505050565b6000546001600160a01b031633146103d95760405162461bcd60e51b81526004016101949061079d565b6103e36000610606565b565b6001600160a01b038084166000908152600160208181526040808420815160608101835281548716808252948201549096169286019290925260029091015490840152909190610438901515603d6105e2565b60008082600001516001600160a01b031663bb7b8b806040518163ffffffff1660e01b8152600401602060405180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a191906107f5565b90508260400151601214156104d457670de0b6b3a76400006104c38288610824565b6104cd9190610843565b915061051a565b670de0b6b3a7640000808460400151600a6104ef919061094b565b6104f9848a610824565b6105039190610824565b61050d9190610843565b6105179190610843565b91505b600061052b84602001518488610656565b905061053c600082121560376105e2565b979650505050505050565b6000546001600160a01b031633146105715760405162461bcd60e51b81526004016101949061079d565b6001600160a01b0381166105d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610194565b6105df81610606565b50565b81610602578060405163193106d160e21b81526004016101949190610957565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405163dedcf67560e01b81526001600160a01b0380851660048301526024820184905282166044820152600090339063dedcf67590606401602060405180830381865afa1580156106ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d091906107f5565b949350505050565b80356001600160a01b03811681146106ef57600080fd5b919050565b60006020828403121561070657600080fd5b61070f826106d8565b9392505050565b6000806000806080858703121561072c57600080fd5b610735856106d8565b9350610743602086016106d8565b9250610751604086016106d8565b9396929550929360600135925050565b60008060006060848603121561077657600080fd5b61077f846106d8565b925060208401359150610794604085016106d8565b90509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156107e457600080fd5b815160ff8116811461070f57600080fd5b60006020828403121561080757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561083e5761083e61080e565b500290565b60008261086057634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156108a05781600019048211156108865761088661080e565b8085161561089357918102915b93841c939080029061086a565b509250929050565b6000826108b757506001610945565b816108c457506000610945565b81600181146108da57600281146108e457610900565b6001915050610945565b60ff8411156108f5576108f561080e565b50506001821b610945565b5060208310610133831016604e8410600b8410161715610923575081810a610945565b61092d8383610865565b80600019048211156109415761094161080e565b0290505b92915050565b600061070f83836108a8565b60208101604d831061097957634e487b7160e01b600052602160045260246000fd5b9190529056fea264697066735822122000a376ef640535c87a2b79dbb3adcd542827e68a3431b8377cd37da20f82289064736f6c634300080a0033
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.