Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x81f5a3068771f81dc84516583c18bbd42b72007a056c91b710e3efc67fd1b603 | 21745305 | 560 days 2 hrs ago | 0x930a54d8af945f6d1bed5aaf63b63fab50a8197f | Contract Creation | 0 MATIC |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xCbbA8c0645ffb8aA6ec868f6F5858F2b0eAe34DA
Contract Name:
SynthereumPoolOnChainPriceFeed
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ))); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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 "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {IStandardERC20} from '../../base/interfaces/IStandardERC20.sol'; import {IDerivative} from '../../derivative/common/interfaces/IDerivative.sol'; import { ISynthereumPoolOnChainPriceFeed } from './interfaces/IPoolOnChainPriceFeed.sol'; import { ISynthereumPoolOnChainPriceFeedStorage } from './interfaces/IPoolOnChainPriceFeedStorage.sol'; import {ISynthereumFinder} from '../../core/interfaces/IFinder.sol'; import {ISynthereumDeployer} from '../../core/interfaces/IDeployer.sol'; import {SynthereumInterfaces} from '../../core/Constants.sol'; import {Strings} from '../../../@openzeppelin/contracts/utils/Strings.sol'; import { EnumerableSet } from '../../../@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; import { FixedPoint } from '../../../@uma/core/contracts/common/implementation/FixedPoint.sol'; import {SynthereumPoolOnChainPriceFeedLib} from './PoolOnChainPriceFeedLib.sol'; import {Lockable} from '../../../@uma/core/contracts/common/implementation/Lockable.sol'; import { AccessControlEnumerable } from '../../../@openzeppelin/contracts/access/AccessControlEnumerable.sol'; /** * @title Token Issuer Contract * @notice Collects collateral and issues synthetic assets */ contract SynthereumPoolOnChainPriceFeed is AccessControlEnumerable, ISynthereumPoolOnChainPriceFeedStorage, ISynthereumPoolOnChainPriceFeed, Lockable { using FixedPoint for FixedPoint.Unsigned; using SynthereumPoolOnChainPriceFeedLib for Storage; using EnumerableSet for EnumerableSet.AddressSet; //---------------------------------------- // Constants //---------------------------------------- bytes32 public constant MAINTAINER_ROLE = keccak256('Maintainer'); bytes32 public constant LIQUIDITY_PROVIDER_ROLE = keccak256('Liquidity Provider'); //---------------------------------------- // Storage //---------------------------------------- Storage private poolStorage; //---------------------------------------- // Events //---------------------------------------- event Mint( address indexed account, address indexed pool, uint256 collateralSent, uint256 numTokensReceived, uint256 feePaid, address recipient ); event Redeem( address indexed account, address indexed pool, uint256 numTokensSent, uint256 collateralReceived, uint256 feePaid, address recipient ); event Exchange( address indexed account, address indexed sourcePool, address indexed destPool, uint256 numTokensSent, uint256 destNumTokensReceived, uint256 feePaid, address recipient ); event Settlement( address indexed account, address indexed pool, uint256 numTokens, uint256 collateralSettled ); event SetFeePercentage(uint256 feePercentage); event SetFeeRecipients(address[] feeRecipients, uint32[] feeProportions); // We may omit the pool from event since we can recover it from the address of smart contract emitting event, but for query convenience we include it in the event event AddDerivative(address indexed pool, address indexed derivative); event RemoveDerivative(address indexed pool, address indexed derivative); //---------------------------------------- // Modifiers //---------------------------------------- modifier onlyMaintainer() { require( hasRole(MAINTAINER_ROLE, msg.sender), 'Sender must be the maintainer' ); _; } modifier onlyLiquidityProvider() { require( hasRole(LIQUIDITY_PROVIDER_ROLE, msg.sender), 'Sender must be the liquidity provider' ); _; } //---------------------------------------- // Constructor //---------------------------------------- /** * @notice The derivative's collateral currency must be an ERC20 * @notice The validator will generally be an address owned by the LP * @notice `_startingCollateralization should be greater than the expected asset price multiplied * by the collateral requirement. The degree to which it is greater should be based on * the expected asset volatility. * @param _derivative The perpetual derivative * @param _finder The Synthereum finder * @param _version Synthereum version * @param _roles The addresses of admin, maintainer, liquidity provider and validator * @param _startingCollateralization Collateralization ratio to use before a global one is set * @param _fee The fee structure */ constructor( IDerivative _derivative, ISynthereumFinder _finder, uint8 _version, Roles memory _roles, uint256 _startingCollateralization, Fee memory _fee ) nonReentrant { _setRoleAdmin(DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(MAINTAINER_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(LIQUIDITY_PROVIDER_ROLE, DEFAULT_ADMIN_ROLE); _setupRole(DEFAULT_ADMIN_ROLE, _roles.admin); _setupRole(MAINTAINER_ROLE, _roles.maintainer); _setupRole(LIQUIDITY_PROVIDER_ROLE, _roles.liquidityProvider); poolStorage.initialize( _version, _finder, _derivative, FixedPoint.Unsigned(_startingCollateralization) ); poolStorage.setFeePercentage(_fee.feePercentage); poolStorage.setFeeRecipients(_fee.feeRecipients, _fee.feeProportions); } //---------------------------------------- // External functions //---------------------------------------- /** * @notice Add a derivate to be controlled by this pool * @param derivative A perpetual derivative */ function addDerivative(IDerivative derivative) external override onlyMaintainer nonReentrant { poolStorage.addDerivative(derivative); } /** * @notice Remove a derivative controlled by this pool * @param derivative A perpetual derivative */ function removeDerivative(IDerivative derivative) external override onlyMaintainer nonReentrant { poolStorage.removeDerivative(derivative); } /** * @notice Mint synthetic tokens using fixed amount of collateral * @notice This calculate the price using on chain price feed * @notice User must approve collateral transfer for the mint request to succeed * @param mintParams Input parameters for minting (see MintParams struct) * @return syntheticTokensMinted Amount of synthetic tokens minted by a user * @return feePaid Amount of collateral paid by the minter as fee */ function mint(MintParams memory mintParams) external override nonReentrant returns (uint256 syntheticTokensMinted, uint256 feePaid) { (syntheticTokensMinted, feePaid) = poolStorage.mint(mintParams); } /** * @notice Redeem amount of collateral using fixed number of synthetic token * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param redeemParams Input parameters for redeeming (see RedeemParams struct) * @return collateralRedeemed Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function redeem(RedeemParams memory redeemParams) external override nonReentrant returns (uint256 collateralRedeemed, uint256 feePaid) { (collateralRedeemed, feePaid) = poolStorage.redeem(redeemParams); } /** * @notice Exchange a fixed amount of synthetic token of this pool, with an amount of synthetic tokens of an another pool * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param exchangeParams Input parameters for exchanging (see ExchangeParams struct) * @return destNumTokensMinted Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function exchange(ExchangeParams memory exchangeParams) external override nonReentrant returns (uint256 destNumTokensMinted, uint256 feePaid) { (destNumTokensMinted, feePaid) = poolStorage.exchange(exchangeParams); } /** * @notice Called by a source Pool's `exchange` function to mint destination tokens * @notice This functon can be called only by a pool registred in the PoolRegister contract * @param srcDerivative Derivative used by the source pool * @param derivative The derivative of the destination pool to use for mint * @param collateralAmount The amount of collateral to use from the source Pool * @param numTokens The number of new tokens to mint */ function exchangeMint( IDerivative srcDerivative, IDerivative derivative, uint256 collateralAmount, uint256 numTokens ) external override nonReentrant { poolStorage.exchangeMint( srcDerivative, derivative, FixedPoint.Unsigned(collateralAmount), FixedPoint.Unsigned(numTokens) ); } /** * @notice Liquidity provider withdraw collateral from the pool * @param collateralAmount The amount of collateral to withdraw */ function withdrawFromPool(uint256 collateralAmount) external override onlyLiquidityProvider nonReentrant { poolStorage.withdrawFromPool(FixedPoint.Unsigned(collateralAmount)); } /** * @notice Move collateral from Pool to its derivative in order to increase GCR * @param derivative Derivative on which to deposit collateral * @param collateralAmount The amount of collateral to move into derivative */ function depositIntoDerivative( IDerivative derivative, uint256 collateralAmount ) external override onlyLiquidityProvider nonReentrant { poolStorage.depositIntoDerivative( derivative, FixedPoint.Unsigned(collateralAmount) ); } /** * @notice Start a slow withdrawal request * @notice Collateral can be withdrawn once the liveness period has elapsed * @param derivative Derivative from which the collateral withdrawal is requested * @param collateralAmount The amount of excess collateral to withdraw */ function slowWithdrawRequest(IDerivative derivative, uint256 collateralAmount) external override onlyLiquidityProvider nonReentrant { poolStorage.slowWithdrawRequest( derivative, FixedPoint.Unsigned(collateralAmount) ); } /** * @notice Withdraw collateral after a withdraw request has passed it's liveness period * @param derivative Derivative from which collateral withdrawal was requested * @return amountWithdrawn Amount of collateral withdrawn by slow withdrawal */ function slowWithdrawPassedRequest(IDerivative derivative) external override onlyLiquidityProvider nonReentrant returns (uint256 amountWithdrawn) { amountWithdrawn = poolStorage.slowWithdrawPassedRequest(derivative); } /** * @notice Withdraw collateral immediately if the remaining collateral is above GCR * @param derivative Derivative from which fast withdrawal was requested * @param collateralAmount The amount of excess collateral to withdraw * @return amountWithdrawn Amount of collateral withdrawn by fast withdrawal */ function fastWithdraw(IDerivative derivative, uint256 collateralAmount) external override onlyLiquidityProvider nonReentrant returns (uint256 amountWithdrawn) { amountWithdrawn = poolStorage.fastWithdraw( derivative, FixedPoint.Unsigned(collateralAmount) ); } /** * @notice Redeem tokens after derivative emergency shutdown * @param derivative Derivative for which settlement is requested * @return amountSettled Amount of collateral withdrawn after emergency shutdown */ function settleEmergencyShutdown(IDerivative derivative) external override nonReentrant returns (uint256 amountSettled) { amountSettled = poolStorage.settleEmergencyShutdown( derivative, LIQUIDITY_PROVIDER_ROLE ); } /** * @notice Update the fee percentage * @param _feePercentage The new fee percentage */ function setFeePercentage(uint256 _feePercentage) external override onlyMaintainer nonReentrant { poolStorage.setFeePercentage(FixedPoint.Unsigned(_feePercentage)); } /** * @notice Update the addresses of recipients for generated fees and proportions of fees each address will receive * @param _feeRecipients An array of the addresses of recipients that will receive generated fees * @param _feeProportions An array of the proportions of fees generated each recipient will receive */ function setFeeRecipients( address[] calldata _feeRecipients, uint32[] calldata _feeProportions ) external override onlyMaintainer nonReentrant { poolStorage.setFeeRecipients(_feeRecipients, _feeProportions); } /** * @notice Reset the starting collateral ratio - for example when you add a new derivative without collateral * @param startingCollateralRatio Initial ratio between collateral amount and synth tokens */ function setStartingCollateralization(uint256 startingCollateralRatio) external override onlyMaintainer nonReentrant { poolStorage.setStartingCollateralization( FixedPoint.Unsigned(startingCollateralRatio) ); } //---------------------------------------- // External view functions //---------------------------------------- /** * @notice Get Synthereum finder of the pool * @return finder Returns finder contract */ function synthereumFinder() external view override returns (ISynthereumFinder finder) { finder = poolStorage.finder; } /** * @notice Get Synthereum version * @return poolVersion Returns the version of the Synthereum pool */ function version() external view override returns (uint8 poolVersion) { poolVersion = poolStorage.version; } /** * @notice Get the collateral token * @return collateralCurrency The ERC20 collateral token */ function collateralToken() external view override returns (IERC20 collateralCurrency) { collateralCurrency = poolStorage.collateralToken; } /** * @notice Get the synthetic token associated to this pool * @return syntheticCurrency The ERC20 synthetic token */ function syntheticToken() external view override returns (IERC20 syntheticCurrency) { syntheticCurrency = poolStorage.syntheticToken; } /** * @notice Get all the derivatives associated to this pool * @return Return list of all derivatives */ function getAllDerivatives() external view override returns (IDerivative[] memory) { EnumerableSet.AddressSet storage derivativesSet = poolStorage.derivatives; uint256 numberOfDerivatives = derivativesSet.length(); IDerivative[] memory derivatives = new IDerivative[](numberOfDerivatives); for (uint256 j = 0; j < numberOfDerivatives; j++) { derivatives[j] = (IDerivative(derivativesSet.at(j))); } return derivatives; } /** * @notice Check if a derivative is in the withelist of this pool * @param derivative Perpetual derivative * @return isAdmitted Return true if in the withelist otherwise false */ function isDerivativeAdmitted(address derivative) external view override returns (bool isAdmitted) { isAdmitted = poolStorage.derivatives.contains(address(derivative)); } /** * @notice Get the starting collateral ratio of the pool * @return startingCollateralRatio Initial ratio between collateral amount and synth tokens */ function getStartingCollateralization() external view override returns (uint256 startingCollateralRatio) { startingCollateralRatio = poolStorage.startingCollateralization.rawValue; } /** * @notice Get the synthetic token symbol associated to this pool * @return symbol The ERC20 synthetic token symbol */ function syntheticTokenSymbol() external view override returns (string memory symbol) { symbol = IStandardERC20(address(poolStorage.syntheticToken)).symbol(); } /** * @notice Returns infos about fee set * @return fee Percentage and recipients of fee */ function getFeeInfo() external view override returns (Fee memory fee) { fee = poolStorage.fee; } /** * @notice Returns price identifier of the pool * @return identifier Price identifier */ function getPriceFeedIdentifier() external view override returns (bytes32 identifier) { identifier = poolStorage.priceIdentifier; } /** * @notice Calculate the fees a user will have to pay to mint tokens with their collateral * @param collateralAmount Amount of collateral on which fee is calculated * @return fee Amount of fee that must be paid */ function calculateFee(uint256 collateralAmount) external view override returns (uint256 fee) { fee = FixedPoint .Unsigned(collateralAmount) .mul(poolStorage.fee.feePercentage) .rawValue; } //---------------------------------------- // Public functions //---------------------------------------- /** * @notice Update the fee percentage, recipients and recipient proportions * @param _fee Fee struct containing percentage, recipients and proportions */ function setFee(Fee memory _fee) public override onlyMaintainer nonReentrant { poolStorage.setFeePercentage(_fee.feePercentage); poolStorage.setFeeRecipients(_fee.feeRecipients, _fee.feeProportions); } }
// SPDX-License-Identifier: MIT 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; interface IStandardERC20 is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory); /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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() external view returns (uint8); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IDerivativeMain} from './IDerivativeMain.sol'; import {IDerivativeDeployment} from './IDerivativeDeployment.sol'; /** * @title Interface that a derivative MUST have in order to be used in the pools */ interface IDerivative is IDerivativeDeployment, IDerivativeMain { }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import { FixedPoint } from '../../../../@uma/core/contracts/common/implementation/FixedPoint.sol'; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { IDerivative } from '../../../derivative/common/interfaces/IDerivative.sol'; import {ISynthereumDeployer} from '../../../core/interfaces/IDeployer.sol'; import {ISynthereumFinder} from '../../../core/interfaces/IFinder.sol'; import { ISynthereumPoolDeployment } from '../../common/interfaces/IPoolDeployment.sol'; import {ISynthereumPoolGeneral} from '../../common/interfaces/IPoolGeneral.sol'; /** * @title Token Issuer Contract Interface */ interface ISynthereumPoolOnChainPriceFeed is ISynthereumPoolDeployment { // Describe fee structure struct Fee { // Fees charged when a user mints, redeem and exchanges tokens FixedPoint.Unsigned feePercentage; address[] feeRecipients; uint32[] feeProportions; } // Describe role structure struct Roles { address admin; address maintainer; address liquidityProvider; } struct MintParams { // Derivative to use IDerivative derivative; // Minimum amount of synthetic tokens that a user wants to mint using collateral (anti-slippage) uint256 minNumTokens; // Amount of collateral that a user wants to spend for minting uint256 collateralAmount; // Maximum amount of fees in percentage that user is willing to pay uint256 feePercentage; // Expiration time of the transaction uint256 expiration; // Address to which send synthetic tokens minted address recipient; } struct RedeemParams { // Derivative to use IDerivative derivative; // Amount of synthetic tokens that user wants to use for redeeming uint256 numTokens; // Minimium amount of collateral that user wants to redeem (anti-slippage) uint256 minCollateral; // Maximum amount of fees in percentage that user is willing to pay uint256 feePercentage; // Expiration time of the transaction uint256 expiration; // Address to which send collateral tokens redeemed address recipient; } struct ExchangeParams { // Derivative of source pool IDerivative derivative; // Destination pool ISynthereumPoolGeneral destPool; // Derivative of destination pool IDerivative destDerivative; // Amount of source synthetic tokens that user wants to use for exchanging uint256 numTokens; // Minimum Amount of destination synthetic tokens that user wants to receive (anti-slippage) uint256 minDestNumTokens; // Maximum amount of fees in percentage that user is willing to pay uint256 feePercentage; // Expiration time of the transaction uint256 expiration; // Address to which send synthetic tokens exchanged address recipient; } /** * @notice Add a derivate to be controlled by this pool * @param derivative A perpetual derivative */ function addDerivative(IDerivative derivative) external; /** * @notice Remove a derivative controlled by this pool * @param derivative A perpetual derivative */ function removeDerivative(IDerivative derivative) external; /** * @notice Mint synthetic tokens using fixed amount of collateral * @notice This calculate the price using on chain price feed * @notice User must approve collateral transfer for the mint request to succeed * @param mintParams Input parameters for minting (see MintParams struct) * @return syntheticTokensMinted Amount of synthetic tokens minted by a user * @return feePaid Amount of collateral paid by the minter as fee */ function mint(MintParams memory mintParams) external returns (uint256 syntheticTokensMinted, uint256 feePaid); /** * @notice Redeem amount of collateral using fixed number of synthetic token * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param redeemParams Input parameters for redeeming (see RedeemParams struct) * @return collateralRedeemed Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function redeem(RedeemParams memory redeemParams) external returns (uint256 collateralRedeemed, uint256 feePaid); /** * @notice Exchange a fixed amount of synthetic token of this pool, with an amount of synthetic tokens of an another pool * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param exchangeParams Input parameters for exchanging (see ExchangeParams struct) * @return destNumTokensMinted Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function exchange(ExchangeParams memory exchangeParams) external returns (uint256 destNumTokensMinted, uint256 feePaid); /** * @notice Called by a source TIC's `exchange` function to mint destination tokens * @notice This functon can be called only by a pool registred in the PoolRegister contract * @param srcDerivative Derivative used by the source pool * @param derivative The derivative of the destination pool to use for mint * @param collateralAmount The amount of collateral to use from the source TIC * @param numTokens The number of new tokens to mint */ function exchangeMint( IDerivative srcDerivative, IDerivative derivative, uint256 collateralAmount, uint256 numTokens ) external; /** * @notice Liquidity provider withdraw margin from the pool * @param collateralAmount The amount of margin to withdraw */ function withdrawFromPool(uint256 collateralAmount) external; /** * @notice Move collateral from Pool to its derivative in order to increase GCR * @param derivative Derivative on which to deposit collateral * @param collateralAmount The amount of collateral to move into derivative */ function depositIntoDerivative( IDerivative derivative, uint256 collateralAmount ) external; /** * @notice Start a slow withdrawal request * @notice Collateral can be withdrawn once the liveness period has elapsed * @param derivative Derivative from which collateral withdrawal is requested * @param collateralAmount The amount of excess collateral to withdraw */ function slowWithdrawRequest(IDerivative derivative, uint256 collateralAmount) external; /** * @notice Withdraw collateral after a withdraw request has passed it's liveness period * @param derivative Derivative from which collateral withdrawal is requested * @return amountWithdrawn Amount of collateral withdrawn by slow withdrawal */ function slowWithdrawPassedRequest(IDerivative derivative) external returns (uint256 amountWithdrawn); /** * @notice Withdraw collateral immediately if the remaining collateral is above GCR * @param derivative Derivative from which fast withdrawal is requested * @param collateralAmount The amount of excess collateral to withdraw * @return amountWithdrawn Amount of collateral withdrawn by fast withdrawal */ function fastWithdraw(IDerivative derivative, uint256 collateralAmount) external returns (uint256 amountWithdrawn); /** * @notice Redeem tokens after contract emergency shutdown * @param derivative Derivative for which settlement is requested * @return amountSettled Amount of collateral withdrawn after emergency shutdown */ function settleEmergencyShutdown(IDerivative derivative) external returns (uint256 amountSettled); /** * @notice Update the fee percentage, recipients and recipient proportions * @param _fee Fee struct containing percentage, recipients and proportions */ function setFee(Fee memory _fee) external; /** * @notice Update the fee percentage * @param _feePercentage The new fee percentage */ function setFeePercentage(uint256 _feePercentage) external; /** * @notice Update the addresses of recipients for generated fees and proportions of fees each address will receive * @param _feeRecipients An array of the addresses of recipients that will receive generated fees * @param _feeProportions An array of the proportions of fees generated each recipient will receive */ function setFeeRecipients( address[] memory _feeRecipients, uint32[] memory _feeProportions ) external; /** * @notice Reset the starting collateral ratio - for example when you add a new derivative without collateral * @param startingCollateralRatio Initial ratio between collateral amount and synth tokens */ function setStartingCollateralization(uint256 startingCollateralRatio) external; /** * @notice Get all the derivatives associated to this pool * @return Return list of all derivatives */ function getAllDerivatives() external view returns (IDerivative[] memory); /** * @notice Get the starting collateral ratio of the pool * @return startingCollateralRatio Initial ratio between collateral amount and synth tokens */ function getStartingCollateralization() external view returns (uint256 startingCollateralRatio); /** * @notice Returns infos about fee set * @return fee Percentage and recipients of fee */ function getFeeInfo() external view returns (Fee memory fee); /** * @notice Calculate the fees a user will have to pay to mint tokens with their collateral * @param collateralAmount Amount of collateral on which fees are calculated * @return fee Amount of fee that must be paid by the user */ function calculateFee(uint256 collateralAmount) external view returns (uint256 fee); /** * @notice Returns price identifier of the pool * @return identifier Price identifier */ function getPriceFeedIdentifier() external view returns (bytes32 identifier); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {ISynthereumPoolOnChainPriceFeed} from './IPoolOnChainPriceFeed.sol'; import {ISynthereumFinder} from '../../../core/interfaces/IFinder.sol'; import { EnumerableSet } from '../../../../@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; import { FixedPoint } from '../../../../@uma/core/contracts/common/implementation/FixedPoint.sol'; interface ISynthereumPoolOnChainPriceFeedStorage { struct Storage { // Synthereum finder ISynthereumFinder finder; // Synthereum version uint8 version; // Collateral token IERC20 collateralToken; // Synthetic token IERC20 syntheticToken; // Derivatives supported EnumerableSet.AddressSet derivatives; // Starting collateralization ratio FixedPoint.Unsigned startingCollateralization; // Fees ISynthereumPoolOnChainPriceFeed.Fee fee; // Used with individual proportions to scale values uint256 totalFeeProportions; // Price identifier bytes32 priceIdentifier; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; /** * @title Provides addresses of the contracts implementing certain interfaces. */ interface ISynthereumFinder { /** * @notice Updates the address of the contract that implements `interfaceName`. * @param interfaceName bytes32 encoding of the interface name that is either changed or registered. * @param implementationAddress address of the deployed contract that implements the interface. */ function changeImplementationAddress( bytes32 interfaceName, address implementationAddress ) external; /** * @notice Gets the address of the contract that implements the given `interfaceName`. * @param interfaceName queried interface. * @return implementationAddress Address of the deployed contract that implements the interface. */ function getImplementationAddress(bytes32 interfaceName) external view returns (address); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { ISynthereumPoolDeployment } from '../../synthereum-pool/common/interfaces/IPoolDeployment.sol'; import { IDerivativeDeployment } from '../../derivative/common/interfaces/IDerivativeDeployment.sol'; import { ISelfMintingDerivativeDeployment } from '../../derivative/self-minting/common/interfaces/ISelfMintingDerivativeDeployment.sol'; import { EnumerableSet } from '../../../@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; /** * @title Provides interface with functions of Synthereum deployer */ interface ISynthereumDeployer { /** * @notice Deploys derivative and pool linking the contracts together * @param derivativeVersion Version of derivative contract * @param poolVersion Version of the pool contract * @param derivativeParamsData Input params of derivative constructor * @param poolParamsData Input params of pool constructor * @return derivative Derivative contract deployed * @return pool Pool contract deployed */ function deployPoolAndDerivative( uint8 derivativeVersion, uint8 poolVersion, bytes calldata derivativeParamsData, bytes calldata poolParamsData ) external returns (IDerivativeDeployment derivative, ISynthereumPoolDeployment pool); /** * @notice Deploys a pool and links it with an already existing derivative * @param poolVersion Version of the pool contract * @param poolParamsData Input params of pool constructor * @param derivative Existing derivative contract to link with the new pool * @return pool Pool contract deployed */ function deployOnlyPool( uint8 poolVersion, bytes calldata poolParamsData, IDerivativeDeployment derivative ) external returns (ISynthereumPoolDeployment pool); /** * @notice Deploys a derivative and option to links it with an already existing pool * @param derivativeVersion Version of the derivative contract * @param derivativeParamsData Input params of derivative constructor * @param pool Existing pool contract to link with the new derivative * @return derivative Derivative contract deployed */ function deployOnlyDerivative( uint8 derivativeVersion, bytes calldata derivativeParamsData, ISynthereumPoolDeployment pool ) external returns (IDerivativeDeployment derivative); function deployOnlySelfMintingDerivative( uint8 selfMintingDerVersion, bytes calldata selfMintingDerParamsData ) external returns (ISelfMintingDerivativeDeployment selfMintingDerivative); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; /** * @title Stores common interface names used throughout Synthereum. */ library SynthereumInterfaces { bytes32 public constant Deployer = 'Deployer'; bytes32 public constant FactoryVersioning = 'FactoryVersioning'; bytes32 public constant TokenFactory = 'TokenFactory'; bytes32 public constant PoolRegistry = 'PoolRegistry'; bytes32 public constant SelfMintingRegistry = 'SelfMintingRegistry'; bytes32 public constant PriceFeed = 'PriceFeed'; bytes32 public constant Manager = 'Manager'; bytes32 public constant SelfMintingController = 'SelfMintingController'; } library FactoryInterfaces { bytes32 public constant PoolFactory = 'PoolFactory'; bytes32 public constant DerivativeFactory = 'DerivativeFactory'; bytes32 public constant SelfMintingFactory = 'SelfMintingFactory'; }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.0; import "../../../../../@openzeppelin/contracts/utils/math/SafeMath.sol"; import "../../../../../@openzeppelin/contracts/utils/math/SignedSafeMath.sol"; /** * @title Library for fixed point arithmetic on uints */ library FixedPoint { using SafeMath for uint256; using SignedSafeMath for int256; // Supports 18 decimals. E.g., 1e18 represents "1", 5e17 represents "0.5". // For unsigned values: // This can represent a value up to (2^256 - 1)/10^18 = ~10^59. 10^59 will be stored internally as uint256 10^77. uint256 private constant FP_SCALING_FACTOR = 10**18; // --------------------------------------- UNSIGNED ----------------------------------------------------------------------------- struct Unsigned { uint256 rawValue; } /** * @notice Constructs an `Unsigned` from an unscaled uint, e.g., `b=5` gets stored internally as `5*(10**18)`. * @param a uint to convert into a FixedPoint. * @return the converted FixedPoint. */ function fromUnscaledUint(uint256 a) internal pure returns (Unsigned memory) { return Unsigned(a.mul(FP_SCALING_FACTOR)); } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if equal, or False. */ function isEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue == fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if equal, or False. */ function isEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue == b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a > b`, or False. */ function isGreaterThan(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue > b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a > b`, or False. */ function isGreaterThan(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue > fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a > b`, or False. */ function isGreaterThan(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue > b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue >= b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue >= fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue >= b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a < b`, or False. */ function isLessThan(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue < b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a < b`, or False. */ function isLessThan(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue < fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a < b`, or False. */ function isLessThan(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue < b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Unsigned memory a, Unsigned memory b) internal pure returns (bool) { return a.rawValue <= b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint. * @param b a uint256. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Unsigned memory a, uint256 b) internal pure returns (bool) { return a.rawValue <= fromUnscaledUint(b).rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a uint256. * @param b a FixedPoint. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(uint256 a, Unsigned memory b) internal pure returns (bool) { return fromUnscaledUint(a).rawValue <= b.rawValue; } /** * @notice The minimum of `a` and `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return the minimum of `a` and `b`. */ function min(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return a.rawValue < b.rawValue ? a : b; } /** * @notice The maximum of `a` and `b`. * @param a a FixedPoint. * @param b a FixedPoint. * @return the maximum of `a` and `b`. */ function max(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return a.rawValue > b.rawValue ? a : b; } /** * @notice Adds two `Unsigned`s, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the sum of `a` and `b`. */ function add(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.add(b.rawValue)); } /** * @notice Adds an `Unsigned` to an unscaled uint, reverting on overflow. * @param a a FixedPoint. * @param b a uint256. * @return the sum of `a` and `b`. */ function add(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return add(a, fromUnscaledUint(b)); } /** * @notice Subtracts two `Unsigned`s, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the difference of `a` and `b`. */ function sub(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.sub(b.rawValue)); } /** * @notice Subtracts an unscaled uint256 from an `Unsigned`, reverting on overflow. * @param a a FixedPoint. * @param b a uint256. * @return the difference of `a` and `b`. */ function sub(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return sub(a, fromUnscaledUint(b)); } /** * @notice Subtracts an `Unsigned` from an unscaled uint256, reverting on overflow. * @param a a uint256. * @param b a FixedPoint. * @return the difference of `a` and `b`. */ function sub(uint256 a, Unsigned memory b) internal pure returns (Unsigned memory) { return sub(fromUnscaledUint(a), b); } /** * @notice Multiplies two `Unsigned`s, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mul(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { // There are two caveats with this computation: // 1. Max output for the represented number is ~10^41, otherwise an intermediate value overflows. 10^41 is // stored internally as a uint256 ~10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 1.4 * 2e-18 = 2.8e-18, which // would round to 3, but this computation produces the result 2. // No need to use SafeMath because FP_SCALING_FACTOR != 0. return Unsigned(a.rawValue.mul(b.rawValue) / FP_SCALING_FACTOR); } /** * @notice Multiplies an `Unsigned` and an unscaled uint256, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint. * @param b a uint256. * @return the product of `a` and `b`. */ function mul(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.mul(b)); } /** * @notice Multiplies two `Unsigned`s and "ceil's" the product, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mulCeil(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { uint256 mulRaw = a.rawValue.mul(b.rawValue); uint256 mulFloor = mulRaw / FP_SCALING_FACTOR; uint256 mod = mulRaw.mod(FP_SCALING_FACTOR); if (mod != 0) { return Unsigned(mulFloor.add(1)); } else { return Unsigned(mulFloor); } } /** * @notice Multiplies an `Unsigned` and an unscaled uint256 and "ceil's" the product, reverting on overflow. * @param a a FixedPoint. * @param b a FixedPoint. * @return the product of `a` and `b`. */ function mulCeil(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { // Since b is an int, there is no risk of truncation and we can just mul it normally return Unsigned(a.rawValue.mul(b)); } /** * @notice Divides one `Unsigned` by an `Unsigned`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { // There are two caveats with this computation: // 1. Max value for the number dividend `a` represents is ~10^41, otherwise an intermediate value overflows. // 10^41 is stored internally as a uint256 10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 2 / 3 = 0.6 repeating, which // would round to 0.666666666666666667, but this computation produces the result 0.666666666666666666. return Unsigned(a.rawValue.mul(FP_SCALING_FACTOR).div(b.rawValue)); } /** * @notice Divides one `Unsigned` by an unscaled uint256, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return the quotient of `a` divided by `b`. */ function div(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { return Unsigned(a.rawValue.div(b)); } /** * @notice Divides one unscaled uint256 by an `Unsigned`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a uint256 numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(uint256 a, Unsigned memory b) internal pure returns (Unsigned memory) { return div(fromUnscaledUint(a), b); } /** * @notice Divides one `Unsigned` by an `Unsigned` and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function divCeil(Unsigned memory a, Unsigned memory b) internal pure returns (Unsigned memory) { uint256 aScaled = a.rawValue.mul(FP_SCALING_FACTOR); uint256 divFloor = aScaled.div(b.rawValue); uint256 mod = aScaled.mod(b.rawValue); if (mod != 0) { return Unsigned(divFloor.add(1)); } else { return Unsigned(divFloor); } } /** * @notice Divides one `Unsigned` by an unscaled uint256 and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return the quotient of `a` divided by `b`. */ function divCeil(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory) { // Because it is possible that a quotient gets truncated, we can't just call "Unsigned(a.rawValue.div(b))" // similarly to mulCeil with a uint256 as the second parameter. Therefore we need to convert b into an Unsigned. // This creates the possibility of overflow if b is very large. return divCeil(a, fromUnscaledUint(b)); } /** * @notice Raises an `Unsigned` to the power of an unscaled uint256, reverting on overflow. E.g., `b=2` squares `a`. * @dev This will "floor" the result. * @param a a FixedPoint numerator. * @param b a uint256 denominator. * @return output is `a` to the power of `b`. */ function pow(Unsigned memory a, uint256 b) internal pure returns (Unsigned memory output) { output = fromUnscaledUint(1); for (uint256 i = 0; i < b; i = i.add(1)) { output = mul(output, a); } } // ------------------------------------------------- SIGNED ------------------------------------------------------------- // Supports 18 decimals. E.g., 1e18 represents "1", 5e17 represents "0.5". // For signed values: // This can represent a value up (or down) to +-(2^255 - 1)/10^18 = ~10^58. 10^58 will be stored internally as int256 10^76. int256 private constant SFP_SCALING_FACTOR = 10**18; struct Signed { int256 rawValue; } function fromSigned(Signed memory a) internal pure returns (Unsigned memory) { require(a.rawValue >= 0, "Negative value provided"); return Unsigned(uint256(a.rawValue)); } function fromUnsigned(Unsigned memory a) internal pure returns (Signed memory) { require(a.rawValue <= uint256(type(int256).max), "Unsigned too large"); return Signed(int256(a.rawValue)); } /** * @notice Constructs a `Signed` from an unscaled int, e.g., `b=5` gets stored internally as `5*(10**18)`. * @param a int to convert into a FixedPoint.Signed. * @return the converted FixedPoint.Signed. */ function fromUnscaledInt(int256 a) internal pure returns (Signed memory) { return Signed(a.mul(SFP_SCALING_FACTOR)); } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint.Signed. * @param b a int256. * @return True if equal, or False. */ function isEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue == fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if equal, or False. */ function isEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue == b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a > b`, or False. */ function isGreaterThan(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue > b.rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a > b`, or False. */ function isGreaterThan(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue > fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is greater than `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a > b`, or False. */ function isGreaterThan(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue > b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue >= b.rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue >= fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is greater than or equal to `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a >= b`, or False. */ function isGreaterThanOrEqual(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue >= b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a < b`, or False. */ function isLessThan(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue < b.rawValue; } /** * @notice Whether `a` is less than `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a < b`, or False. */ function isLessThan(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue < fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is less than `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a < b`, or False. */ function isLessThan(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue < b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Signed memory a, Signed memory b) internal pure returns (bool) { return a.rawValue <= b.rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a a FixedPoint.Signed. * @param b an int256. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(Signed memory a, int256 b) internal pure returns (bool) { return a.rawValue <= fromUnscaledInt(b).rawValue; } /** * @notice Whether `a` is less than or equal to `b`. * @param a an int256. * @param b a FixedPoint.Signed. * @return True if `a <= b`, or False. */ function isLessThanOrEqual(int256 a, Signed memory b) internal pure returns (bool) { return fromUnscaledInt(a).rawValue <= b.rawValue; } /** * @notice The minimum of `a` and `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the minimum of `a` and `b`. */ function min(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return a.rawValue < b.rawValue ? a : b; } /** * @notice The maximum of `a` and `b`. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the maximum of `a` and `b`. */ function max(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return a.rawValue > b.rawValue ? a : b; } /** * @notice Adds two `Signed`s, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the sum of `a` and `b`. */ function add(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return Signed(a.rawValue.add(b.rawValue)); } /** * @notice Adds an `Signed` to an unscaled int, reverting on overflow. * @param a a FixedPoint.Signed. * @param b an int256. * @return the sum of `a` and `b`. */ function add(Signed memory a, int256 b) internal pure returns (Signed memory) { return add(a, fromUnscaledInt(b)); } /** * @notice Subtracts two `Signed`s, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the difference of `a` and `b`. */ function sub(Signed memory a, Signed memory b) internal pure returns (Signed memory) { return Signed(a.rawValue.sub(b.rawValue)); } /** * @notice Subtracts an unscaled int256 from an `Signed`, reverting on overflow. * @param a a FixedPoint.Signed. * @param b an int256. * @return the difference of `a` and `b`. */ function sub(Signed memory a, int256 b) internal pure returns (Signed memory) { return sub(a, fromUnscaledInt(b)); } /** * @notice Subtracts an `Signed` from an unscaled int256, reverting on overflow. * @param a an int256. * @param b a FixedPoint.Signed. * @return the difference of `a` and `b`. */ function sub(int256 a, Signed memory b) internal pure returns (Signed memory) { return sub(fromUnscaledInt(a), b); } /** * @notice Multiplies two `Signed`s, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mul(Signed memory a, Signed memory b) internal pure returns (Signed memory) { // There are two caveats with this computation: // 1. Max output for the represented number is ~10^41, otherwise an intermediate value overflows. 10^41 is // stored internally as an int256 ~10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 1.4 * 2e-18 = 2.8e-18, which // would round to 3, but this computation produces the result 2. // No need to use SafeMath because SFP_SCALING_FACTOR != 0. return Signed(a.rawValue.mul(b.rawValue) / SFP_SCALING_FACTOR); } /** * @notice Multiplies an `Signed` and an unscaled int256, reverting on overflow. * @dev This will "floor" the product. * @param a a FixedPoint.Signed. * @param b an int256. * @return the product of `a` and `b`. */ function mul(Signed memory a, int256 b) internal pure returns (Signed memory) { return Signed(a.rawValue.mul(b)); } /** * @notice Multiplies two `Signed`s and "ceil's" the product, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mulAwayFromZero(Signed memory a, Signed memory b) internal pure returns (Signed memory) { int256 mulRaw = a.rawValue.mul(b.rawValue); int256 mulTowardsZero = mulRaw / SFP_SCALING_FACTOR; // Manual mod because SignedSafeMath doesn't support it. int256 mod = mulRaw % SFP_SCALING_FACTOR; if (mod != 0) { bool isResultPositive = isLessThan(a, 0) == isLessThan(b, 0); int256 valueToAdd = isResultPositive ? int256(1) : int256(-1); return Signed(mulTowardsZero.add(valueToAdd)); } else { return Signed(mulTowardsZero); } } /** * @notice Multiplies an `Signed` and an unscaled int256 and "ceil's" the product, reverting on overflow. * @param a a FixedPoint.Signed. * @param b a FixedPoint.Signed. * @return the product of `a` and `b`. */ function mulAwayFromZero(Signed memory a, int256 b) internal pure returns (Signed memory) { // Since b is an int, there is no risk of truncation and we can just mul it normally return Signed(a.rawValue.mul(b)); } /** * @notice Divides one `Signed` by an `Signed`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(Signed memory a, Signed memory b) internal pure returns (Signed memory) { // There are two caveats with this computation: // 1. Max value for the number dividend `a` represents is ~10^41, otherwise an intermediate value overflows. // 10^41 is stored internally as an int256 10^59. // 2. Results that can't be represented exactly are truncated not rounded. E.g., 2 / 3 = 0.6 repeating, which // would round to 0.666666666666666667, but this computation produces the result 0.666666666666666666. return Signed(a.rawValue.mul(SFP_SCALING_FACTOR).div(b.rawValue)); } /** * @notice Divides one `Signed` by an unscaled int256, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a a FixedPoint numerator. * @param b an int256 denominator. * @return the quotient of `a` divided by `b`. */ function div(Signed memory a, int256 b) internal pure returns (Signed memory) { return Signed(a.rawValue.div(b)); } /** * @notice Divides one unscaled int256 by an `Signed`, reverting on overflow or division by 0. * @dev This will "floor" the quotient. * @param a an int256 numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function div(int256 a, Signed memory b) internal pure returns (Signed memory) { return div(fromUnscaledInt(a), b); } /** * @notice Divides one `Signed` by an `Signed` and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b a FixedPoint denominator. * @return the quotient of `a` divided by `b`. */ function divAwayFromZero(Signed memory a, Signed memory b) internal pure returns (Signed memory) { int256 aScaled = a.rawValue.mul(SFP_SCALING_FACTOR); int256 divTowardsZero = aScaled.div(b.rawValue); // Manual mod because SignedSafeMath doesn't support it. int256 mod = aScaled % b.rawValue; if (mod != 0) { bool isResultPositive = isLessThan(a, 0) == isLessThan(b, 0); int256 valueToAdd = isResultPositive ? int256(1) : int256(-1); return Signed(divTowardsZero.add(valueToAdd)); } else { return Signed(divTowardsZero); } } /** * @notice Divides one `Signed` by an unscaled int256 and "ceil's" the quotient, reverting on overflow or division by 0. * @param a a FixedPoint numerator. * @param b an int256 denominator. * @return the quotient of `a` divided by `b`. */ function divAwayFromZero(Signed memory a, int256 b) internal pure returns (Signed memory) { // Because it is possible that a quotient gets truncated, we can't just call "Signed(a.rawValue.div(b))" // similarly to mulCeil with an int256 as the second parameter. Therefore we need to convert b into an Signed. // This creates the possibility of overflow if b is very large. return divAwayFromZero(a, fromUnscaledInt(b)); } /** * @notice Raises an `Signed` to the power of an unscaled uint256, reverting on overflow. E.g., `b=2` squares `a`. * @dev This will "floor" the result. * @param a a FixedPoint.Signed. * @param b a uint256 (negative exponents are not allowed). * @return output is `a` to the power of `b`. */ function pow(Signed memory a, uint256 b) internal pure returns (Signed memory output) { output = fromUnscaledInt(1); for (uint256 i = 0; i < b; i = i.add(1)) { output = mul(output, a); } } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import { ISynthereumPoolOnChainPriceFeed } from './interfaces/IPoolOnChainPriceFeed.sol'; import {ISynthereumPoolGeneral} from '../common/interfaces/IPoolGeneral.sol'; import { ISynthereumPoolOnChainPriceFeedStorage } from './interfaces/IPoolOnChainPriceFeedStorage.sol'; import { FixedPoint } from '../../../@uma/core/contracts/common/implementation/FixedPoint.sol'; import {IERC20} from '../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {IStandardERC20} from '../../base/interfaces/IStandardERC20.sol'; import {IDerivative} from '../../derivative/common/interfaces/IDerivative.sol'; import {IRole} from '../../base/interfaces/IRole.sol'; import {ISynthereumFinder} from '../../core/interfaces/IFinder.sol'; import { ISynthereumRegistry } from '../../core/registries/interfaces/IRegistry.sol'; import { ISynthereumPriceFeed } from '../../oracle/common/interfaces/IPriceFeed.sol'; import {SynthereumInterfaces} from '../../core/Constants.sol'; import {SafeMath} from '../../../@openzeppelin/contracts/utils/math/SafeMath.sol'; import { SafeERC20 } from '../../../@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import { EnumerableSet } from '../../../@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; /** * @notice Pool implementation is stored here to reduce deployment costs */ library SynthereumPoolOnChainPriceFeedLib { using SafeMath for uint256; using FixedPoint for FixedPoint.Unsigned; using SynthereumPoolOnChainPriceFeedLib for ISynthereumPoolOnChainPriceFeedStorage.Storage; using SynthereumPoolOnChainPriceFeedLib for IDerivative; using EnumerableSet for EnumerableSet.AddressSet; using SafeERC20 for IERC20; struct ExecuteMintParams { // Amount of synth tokens to mint FixedPoint.Unsigned numTokens; // Amount of collateral (excluding fees) needed for mint FixedPoint.Unsigned collateralAmount; // Amount of fees of collateral user must pay FixedPoint.Unsigned feeAmount; // Amount of collateral equal to collateral minted + fees FixedPoint.Unsigned totCollateralAmount; } struct ExecuteRedeemParams { //Amount of synth tokens needed for redeem FixedPoint.Unsigned numTokens; // Amount of collateral that user will receive FixedPoint.Unsigned collateralAmount; // Amount of fees of collateral user must pay FixedPoint.Unsigned feeAmount; // Amount of collateral equal to collateral redeemed + fees FixedPoint.Unsigned totCollateralAmount; } struct ExecuteExchangeParams { // Amount of tokens to send FixedPoint.Unsigned numTokens; // Amount of collateral (excluding fees) equivalent to synthetic token (exluding fees) to send FixedPoint.Unsigned collateralAmount; // Amount of fees of collateral user must pay FixedPoint.Unsigned feeAmount; // Amount of collateral equal to collateral redemeed + fees FixedPoint.Unsigned totCollateralAmount; // Amount of synthetic token to receive FixedPoint.Unsigned destNumTokens; } //---------------------------------------- // Events //---------------------------------------- event Mint( address indexed account, address indexed pool, uint256 collateralSent, uint256 numTokensReceived, uint256 feePaid, address recipient ); event Redeem( address indexed account, address indexed pool, uint256 numTokensSent, uint256 collateralReceived, uint256 feePaid, address recipient ); event Exchange( address indexed account, address indexed sourcePool, address indexed destPool, uint256 numTokensSent, uint256 destNumTokensReceived, uint256 feePaid, address recipient ); event Settlement( address indexed account, address indexed pool, uint256 numTokens, uint256 collateralSettled ); event SetFeePercentage(uint256 feePercentage); event SetFeeRecipients(address[] feeRecipients, uint32[] feeProportions); // We may omit the pool from event since we can recover it from the address of smart contract emitting event, but for query convenience we include it in the event event AddDerivative(address indexed pool, address indexed derivative); event RemoveDerivative(address indexed pool, address indexed derivative); //---------------------------------------- // Modifiers //---------------------------------------- // Check that derivative must be whitelisted in this pool modifier checkDerivative( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative ) { require(self.derivatives.contains(address(derivative)), 'Wrong derivative'); _; } //---------------------------------------- // External function //---------------------------------------- /** * @notice Initializes a fresh on chain pool * @notice The derivative's collateral currency must be a Collateral Token * @notice `_startingCollateralization should be greater than the expected asset price multiplied * by the collateral requirement. The degree to which it is greater should be based on * the expected asset volatility. * @param self Data type the library is attached to * @param _version Synthereum version of the pool * @param _finder Synthereum finder * @param _derivative The perpetual derivative * @param _startingCollateralization Collateralization ratio to use before a global one is set */ function initialize( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, uint8 _version, ISynthereumFinder _finder, IDerivative _derivative, FixedPoint.Unsigned memory _startingCollateralization ) external { self.version = _version; self.finder = _finder; self.startingCollateralization = _startingCollateralization; self.collateralToken = getDerivativeCollateral(_derivative); self.syntheticToken = _derivative.tokenCurrency(); self.priceIdentifier = _derivative.priceIdentifier(); self.derivatives.add(address(_derivative)); emit AddDerivative(address(this), address(_derivative)); } /** * @notice Add a derivate to be linked to this pool * @param self Data type the library is attached to * @param derivative A perpetual derivative */ function addDerivative( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative ) external { require( self.collateralToken == getDerivativeCollateral(derivative), 'Wrong collateral of the new derivative' ); require( self.syntheticToken == derivative.tokenCurrency(), 'Wrong synthetic token' ); require( self.derivatives.add(address(derivative)), 'Derivative has already been included' ); emit AddDerivative(address(this), address(derivative)); } /** * @notice Remove a derivate linked to this pool * @param self Data type the library is attached to * @param derivative A perpetual derivative */ function removeDerivative( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative ) external { require( self.derivatives.remove(address(derivative)), 'Derivative not included' ); emit RemoveDerivative(address(this), address(derivative)); } /** * @notice Mint synthetic tokens using fixed amount of collateral * @notice This calculate the price using on chain price feed * @notice User must approve collateral transfer for the mint request to succeed * @param self Data type the library is attached to * @param mintParams Input parameters for minting (see MintParams struct) * @return syntheticTokensMinted Amount of synthetic tokens minted by a user * @return feePaid Amount of collateral paid by the minter as fee */ function mint( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, ISynthereumPoolOnChainPriceFeed.MintParams memory mintParams ) external returns (uint256 syntheticTokensMinted, uint256 feePaid) { FixedPoint.Unsigned memory totCollateralAmount = FixedPoint.Unsigned(mintParams.collateralAmount); FixedPoint.Unsigned memory feeAmount = totCollateralAmount.mul(self.fee.feePercentage); FixedPoint.Unsigned memory collateralAmount = totCollateralAmount.sub(feeAmount); FixedPoint.Unsigned memory numTokens = calculateNumberOfTokens( self.finder, IStandardERC20(address(self.collateralToken)), self.priceIdentifier, collateralAmount ); require( numTokens.rawValue >= mintParams.minNumTokens, 'Number of tokens less than minimum limit' ); checkParams( self, mintParams.derivative, mintParams.feePercentage, mintParams.expiration ); self.executeMint( mintParams.derivative, ExecuteMintParams( numTokens, collateralAmount, feeAmount, totCollateralAmount ), mintParams.recipient ); syntheticTokensMinted = numTokens.rawValue; feePaid = feeAmount.rawValue; } /** * @notice Redeem amount of collateral using fixed number of synthetic token * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param self Data type the library is attached to * @param redeemParams Input parameters for redeeming (see RedeemParams struct) * @return collateralRedeemed Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function redeem( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, ISynthereumPoolOnChainPriceFeed.RedeemParams memory redeemParams ) external returns (uint256 collateralRedeemed, uint256 feePaid) { FixedPoint.Unsigned memory numTokens = FixedPoint.Unsigned(redeemParams.numTokens); FixedPoint.Unsigned memory totCollateralAmount = calculateCollateralAmount( self.finder, IStandardERC20(address(self.collateralToken)), self.priceIdentifier, numTokens ); FixedPoint.Unsigned memory feeAmount = totCollateralAmount.mul(self.fee.feePercentage); FixedPoint.Unsigned memory collateralAmount = totCollateralAmount.sub(feeAmount); require( collateralAmount.rawValue >= redeemParams.minCollateral, 'Collateral amount less than minimum limit' ); checkParams( self, redeemParams.derivative, redeemParams.feePercentage, redeemParams.expiration ); self.executeRedeem( redeemParams.derivative, ExecuteRedeemParams( numTokens, collateralAmount, feeAmount, totCollateralAmount ), redeemParams.recipient ); feePaid = feeAmount.rawValue; collateralRedeemed = collateralAmount.rawValue; } /** * @notice Exchange a fixed amount of synthetic token of this pool, with an amount of synthetic tokens of an another pool * @notice This calculate the price using on chain price feed * @notice User must approve synthetic token transfer for the redeem request to succeed * @param exchangeParams Input parameters for exchanging (see ExchangeParams struct) * @return destNumTokensMinted Amount of collateral redeeem by user * @return feePaid Amount of collateral paid by user as fee */ function exchange( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, ISynthereumPoolOnChainPriceFeed.ExchangeParams memory exchangeParams ) external returns (uint256 destNumTokensMinted, uint256 feePaid) { FixedPoint.Unsigned memory numTokens = FixedPoint.Unsigned(exchangeParams.numTokens); FixedPoint.Unsigned memory totCollateralAmount = calculateCollateralAmount( self.finder, IStandardERC20(address(self.collateralToken)), self.priceIdentifier, numTokens ); FixedPoint.Unsigned memory feeAmount = totCollateralAmount.mul(self.fee.feePercentage); FixedPoint.Unsigned memory collateralAmount = totCollateralAmount.sub(feeAmount); FixedPoint.Unsigned memory destNumTokens = calculateNumberOfTokens( self.finder, IStandardERC20(address(self.collateralToken)), exchangeParams.destPool.getPriceFeedIdentifier(), collateralAmount ); require( destNumTokens.rawValue >= exchangeParams.minDestNumTokens, 'Number of destination tokens less than minimum limit' ); checkParams( self, exchangeParams.derivative, exchangeParams.feePercentage, exchangeParams.expiration ); self.executeExchange( exchangeParams.derivative, exchangeParams.destPool, exchangeParams.destDerivative, ExecuteExchangeParams( numTokens, collateralAmount, feeAmount, totCollateralAmount, destNumTokens ), exchangeParams.recipient ); destNumTokensMinted = destNumTokens.rawValue; feePaid = feeAmount.rawValue; } /** * @notice Called by a source Pool's `exchange` function to mint destination tokens * @notice This functon can be called only by a pool registred in the deployer * @param self Data type the library is attached to * @param srcDerivative Derivative used by the source pool * @param derivative Derivative that this pool will use * @param collateralAmount The amount of collateral to use from the source Pool * @param numTokens The number of new tokens to mint */ function exchangeMint( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative srcDerivative, IDerivative derivative, FixedPoint.Unsigned memory collateralAmount, FixedPoint.Unsigned memory numTokens ) external { self.checkPool(ISynthereumPoolGeneral(msg.sender), srcDerivative); FixedPoint.Unsigned memory globalCollateralization = derivative.getGlobalCollateralizationRatio(); // Target the starting collateralization ratio if there is no global ratio FixedPoint.Unsigned memory targetCollateralization = globalCollateralization.isGreaterThan(0) ? globalCollateralization : self.startingCollateralization; // Check that LP collateral can support the tokens to be minted require( self.checkCollateralizationRatio( targetCollateralization, collateralAmount, numTokens ), 'Insufficient collateral available from Liquidity Provider' ); // Pull Collateral Tokens from calling Pool contract self.pullCollateral(msg.sender, collateralAmount); // Mint new tokens with the collateral self.mintSynTokens( derivative, numTokens.mulCeil(targetCollateralization), numTokens ); // Transfer new tokens back to the calling Pool where they will be sent to the user self.transferSynTokens(msg.sender, numTokens); } /** * @notice Liquidity provider withdraw collateral from the pool * @param self Data type the library is attached to * @param collateralAmount The amount of collateral to withdraw */ function withdrawFromPool( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory collateralAmount ) external { // Transfer the collateral from this pool to the LP sender self.collateralToken.safeTransfer(msg.sender, collateralAmount.rawValue); } /** * @notice Move collateral from Pool to its derivative in order to increase GCR * @param self Data type the library is attached to * @param derivative Derivative on which to deposit collateral * @param collateralAmount The amount of collateral to move into derivative */ function depositIntoDerivative( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, FixedPoint.Unsigned memory collateralAmount ) external checkDerivative(self, derivative) { self.collateralToken.safeApprove( address(derivative), collateralAmount.rawValue ); derivative.deposit(collateralAmount); } /** * @notice Start a withdrawal request * @notice Collateral can be withdrawn once the liveness period has elapsed * @param self Data type the library is attached to * @param derivative Derivative from which request collateral withdrawal * @param collateralAmount The amount of short margin to withdraw */ function slowWithdrawRequest( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, FixedPoint.Unsigned memory collateralAmount ) external checkDerivative(self, derivative) { derivative.requestWithdrawal(collateralAmount); } /** * @notice Withdraw collateral after a withdraw request has passed it's liveness period * @param self Data type the library is attached to * @param derivative Derivative from which collateral withdrawal was requested * @return amountWithdrawn Amount of collateral withdrawn by slow withdrawal */ function slowWithdrawPassedRequest( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative ) external checkDerivative(self, derivative) returns (uint256 amountWithdrawn) { FixedPoint.Unsigned memory totalAmountWithdrawn = derivative.withdrawPassedRequest(); amountWithdrawn = liquidateWithdrawal( self, totalAmountWithdrawn, msg.sender ); } /** * @notice Withdraw collateral immediately if the remaining collateral is above GCR * @param self Data type the library is attached to * @param derivative Derivative from which fast withdrawal was requested * @param collateralAmount The amount of excess collateral to withdraw * @return amountWithdrawn Amount of collateral withdrawn by fast withdrawal */ function fastWithdraw( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, FixedPoint.Unsigned memory collateralAmount ) external checkDerivative(self, derivative) returns (uint256 amountWithdrawn) { FixedPoint.Unsigned memory totalAmountWithdrawn = derivative.withdraw(collateralAmount); amountWithdrawn = liquidateWithdrawal( self, totalAmountWithdrawn, msg.sender ); } /** * @notice Redeem tokens after derivative emergency shutdown * @param self Data type the library is attached to * @param derivative Derivative for which settlement is requested * @param liquidity_provider_role Lp role * @return amountSettled Amount of collateral withdrawn after emergency shutdown */ function settleEmergencyShutdown( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, bytes32 liquidity_provider_role ) external returns (uint256 amountSettled) { IERC20 tokenCurrency = self.syntheticToken; IERC20 collateralToken = self.collateralToken; FixedPoint.Unsigned memory userNumTokens = FixedPoint.Unsigned(tokenCurrency.balanceOf(msg.sender)); FixedPoint.Unsigned memory totNumTokens = userNumTokens.add( FixedPoint.Unsigned(tokenCurrency.balanceOf(address(this))) ); //Check if sender is a LP bool isLiquidityProvider = IRole(address(this)).hasRole(liquidity_provider_role, msg.sender); // Make sure there is something for the user to settle require( userNumTokens.isGreaterThan(0) || isLiquidityProvider, 'Account has nothing to settle' ); if (userNumTokens.isGreaterThan(0)) { // Move synthetic tokens from the user to the pool // - This is because derivative expects the tokens to come from the sponsor address tokenCurrency.safeTransferFrom( msg.sender, address(this), userNumTokens.rawValue ); // Allow the derivative to transfer tokens from the pool tokenCurrency.safeApprove(address(derivative), totNumTokens.rawValue); } // Redeem the synthetic tokens for collateral derivative.settleEmergencyShutdown(); // Amount of collateral that will be redeemed and sent to the user FixedPoint.Unsigned memory totalToRedeem; // If the user is the LP, send redeemed token collateral plus excess collateral if (isLiquidityProvider) { // Redeem LP collateral held in pool // Includes excess collateral withdrawn by a user previously calling `settleEmergencyShutdown` totalToRedeem = FixedPoint.Unsigned( collateralToken.balanceOf(address(this)) ); } else { // Otherwise, separate excess collateral from redeemed token value // Must be called after `emergencyShutdown` to make sure expiryPrice is set FixedPoint.Unsigned memory dueCollateral = totNumTokens.mul(derivative.emergencyShutdownPrice()); totalToRedeem = FixedPoint.min( dueCollateral, FixedPoint.Unsigned(collateralToken.balanceOf(address(this))) ); } amountSettled = totalToRedeem.rawValue; // Redeem the collateral for the underlying asset and transfer to the user collateralToken.safeTransfer(msg.sender, amountSettled); emit Settlement( msg.sender, address(this), totNumTokens.rawValue, amountSettled ); } /** * @notice Update the fee percentage * @param self Data type the library is attached to * @param _feePercentage The new fee percentage */ function setFeePercentage( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory _feePercentage ) external { require( _feePercentage.rawValue < 10**(18), 'Fee Percentage must be less than 100%' ); self.fee.feePercentage = _feePercentage; emit SetFeePercentage(_feePercentage.rawValue); } /** * @notice Update the addresses of recipients for generated fees and proportions of fees each address will receive * @param self Data type the library is attached to * @param _feeRecipients An array of the addresses of recipients that will receive generated fees * @param _feeProportions An array of the proportions of fees generated each recipient will receive */ function setFeeRecipients( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, address[] calldata _feeRecipients, uint32[] calldata _feeProportions ) external { require( _feeRecipients.length == _feeProportions.length, 'Fee recipients and fee proportions do not match' ); uint256 totalActualFeeProportions; // Store the sum of all proportions for (uint256 i = 0; i < _feeProportions.length; i++) { totalActualFeeProportions += _feeProportions[i]; } self.fee.feeRecipients = _feeRecipients; self.fee.feeProportions = _feeProportions; self.totalFeeProportions = totalActualFeeProportions; emit SetFeeRecipients(_feeRecipients, _feeProportions); } /** * @notice Reset the starting collateral ratio - for example when you add a new derivative without collateral * @param startingCollateralRatio Initial ratio between collateral amount and synth tokens */ function setStartingCollateralization( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory startingCollateralRatio ) external { self.startingCollateralization = startingCollateralRatio; } //---------------------------------------- // Internal functions //---------------------------------------- /** * @notice Execute mint of synthetic tokens * @param self Data type the library is attached tfo * @param derivative Derivative to use * @param executeMintParams Params for execution of mint (see ExecuteMintParams struct) * @param recipient Address to which send synthetic tokens minted */ function executeMint( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, ExecuteMintParams memory executeMintParams, address recipient ) internal { // Sending amount must be different from 0 require( executeMintParams.collateralAmount.isGreaterThan(0), 'Sending amount is equal to 0' ); FixedPoint.Unsigned memory globalCollateralization = derivative.getGlobalCollateralizationRatio(); // Target the starting collateralization ratio if there is no global ratio FixedPoint.Unsigned memory targetCollateralization = globalCollateralization.isGreaterThan(0) ? globalCollateralization : self.startingCollateralization; // Check that LP collateral can support the tokens to be minted require( self.checkCollateralizationRatio( targetCollateralization, executeMintParams.collateralAmount, executeMintParams.numTokens ), 'Insufficient collateral available from Liquidity Provider' ); // Pull user's collateral and mint fee into the pool self.pullCollateral(msg.sender, executeMintParams.totCollateralAmount); // Mint synthetic asset with collateral from user and liquidity provider self.mintSynTokens( derivative, executeMintParams.numTokens.mulCeil(targetCollateralization), executeMintParams.numTokens ); // Transfer synthetic assets to the user self.transferSynTokens(recipient, executeMintParams.numTokens); // Send fees self.sendFee(executeMintParams.feeAmount); emit Mint( msg.sender, address(this), executeMintParams.totCollateralAmount.rawValue, executeMintParams.numTokens.rawValue, executeMintParams.feeAmount.rawValue, recipient ); } /** * @notice Execute redeem of collateral * @param self Data type the library is attached tfo * @param derivative Derivative to use * @param executeRedeemParams Params for execution of redeem (see ExecuteRedeemParams struct) * @param recipient Address to which send collateral tokens redeemed */ function executeRedeem( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, ExecuteRedeemParams memory executeRedeemParams, address recipient ) internal { // Sending amount must be different from 0 require( executeRedeemParams.numTokens.isGreaterThan(0), 'Sending amount is equal to 0' ); FixedPoint.Unsigned memory amountWithdrawn = redeemForCollateral( msg.sender, derivative, executeRedeemParams.numTokens ); require( amountWithdrawn.isGreaterThan(executeRedeemParams.totCollateralAmount), 'Collateral from derivative less than collateral amount' ); //Send net amount of collateral to the user that submited the redeem request self.collateralToken.safeTransfer( recipient, executeRedeemParams.collateralAmount.rawValue ); // Send fees collected self.sendFee(executeRedeemParams.feeAmount); emit Redeem( msg.sender, address(this), executeRedeemParams.numTokens.rawValue, executeRedeemParams.collateralAmount.rawValue, executeRedeemParams.feeAmount.rawValue, recipient ); } /** * @notice Execute exchange between synthetic tokens * @param self Data type the library is attached tfo * @param derivative Derivative to use * @param destPool Pool of synthetic token to receive * @param destDerivative Derivative of the pool of synthetic token to receive * @param executeExchangeParams Params for execution of exchange (see ExecuteExchangeParams struct) * @param recipient Address to which send synthetic tokens exchanged */ function executeExchange( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, ISynthereumPoolGeneral destPool, IDerivative destDerivative, ExecuteExchangeParams memory executeExchangeParams, address recipient ) internal { // Sending amount must be different from 0 require( executeExchangeParams.numTokens.isGreaterThan(0), 'Sending amount is equal to 0' ); FixedPoint.Unsigned memory amountWithdrawn = redeemForCollateral( msg.sender, derivative, executeExchangeParams.numTokens ); require( amountWithdrawn.isGreaterThan(executeExchangeParams.totCollateralAmount), 'Collateral from derivative less than collateral amount' ); self.checkPool(destPool, destDerivative); self.sendFee(executeExchangeParams.feeAmount); self.collateralToken.safeApprove( address(destPool), executeExchangeParams.collateralAmount.rawValue ); // Mint the destination tokens with the withdrawn collateral destPool.exchangeMint( derivative, destDerivative, executeExchangeParams.collateralAmount.rawValue, executeExchangeParams.destNumTokens.rawValue ); // Transfer the new tokens to the user destDerivative.tokenCurrency().safeTransfer( recipient, executeExchangeParams.destNumTokens.rawValue ); emit Exchange( msg.sender, address(this), address(destPool), executeExchangeParams.numTokens.rawValue, executeExchangeParams.destNumTokens.rawValue, executeExchangeParams.feeAmount.rawValue, recipient ); } /** * @notice Pulls collateral tokens from the sender to store in the Pool * @param self Data type the library is attached to * @param numTokens The number of tokens to pull */ function pullCollateral( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, address from, FixedPoint.Unsigned memory numTokens ) internal { self.collateralToken.safeTransferFrom( from, address(this), numTokens.rawValue ); } /** * @notice Mints synthetic tokens with the available collateral * @param self Data type the library is attached to * @param collateralAmount The amount of collateral to send * @param numTokens The number of tokens to mint */ function mintSynTokens( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, FixedPoint.Unsigned memory collateralAmount, FixedPoint.Unsigned memory numTokens ) internal { self.collateralToken.safeApprove( address(derivative), collateralAmount.rawValue ); derivative.create(collateralAmount, numTokens); } /** * @notice Transfer synthetic tokens from the derivative to an address * @dev Refactored from `mint` to guard against reentrancy * @param self Data type the library is attached to * @param recipient The address to send the tokens * @param numTokens The number of tokens to send */ function transferSynTokens( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, address recipient, FixedPoint.Unsigned memory numTokens ) internal { self.syntheticToken.safeTransfer(recipient, numTokens.rawValue); } /** * @notice Redeem synthetic tokens for collateral from the derivative * @param tokenHolder Address of the user that redeems * @param derivative Derivative from which collateral is redeemed * @param numTokens The number of tokens to redeem * @return amountWithdrawn Collateral amount withdrawn by redeem execution */ function redeemForCollateral( address tokenHolder, IDerivative derivative, FixedPoint.Unsigned memory numTokens ) internal returns (FixedPoint.Unsigned memory amountWithdrawn) { IERC20 tokenCurrency = derivative.tokenCurrency(); require( tokenCurrency.balanceOf(tokenHolder) >= numTokens.rawValue, 'Token balance less than token to redeem' ); // Move synthetic tokens from the user to the Pool // - This is because derivative expects the tokens to come from the sponsor address tokenCurrency.safeTransferFrom( tokenHolder, address(this), numTokens.rawValue ); // Allow the derivative to transfer tokens from the Pool tokenCurrency.safeApprove(address(derivative), numTokens.rawValue); // Redeem the synthetic tokens for Collateral tokens amountWithdrawn = derivative.redeem(numTokens); } /** * @notice Send collateral withdrawn by the derivative to the LP * @param self Data type the library is attached to * @param collateralAmount Amount of collateral to send to the LP * @param recipient Address of a LP * @return amountWithdrawn Collateral amount withdrawn */ function liquidateWithdrawal( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory collateralAmount, address recipient ) internal returns (uint256 amountWithdrawn) { amountWithdrawn = collateralAmount.rawValue; self.collateralToken.safeTransfer(recipient, amountWithdrawn); } /** * @notice Set the Pool fee structure parameters * @param self Data type the library is attached tfo * @param _feeAmount Amount of fee to send */ function sendFee( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory _feeAmount ) internal { // Distribute fees // TODO Consider using the withdrawal pattern for fees for (uint256 i = 0; i < self.fee.feeRecipients.length; i++) { self.collateralToken.safeTransfer( self.fee.feeRecipients[i], // This order is important because it mixes FixedPoint with unscaled uint _feeAmount .mul(self.fee.feeProportions[i]) .div(self.totalFeeProportions) .rawValue ); } } //---------------------------------------- // Internal views functions //---------------------------------------- /** * @notice Check fee percentage and expiration of mint, redeem and exchange transaction * @param self Data type the library is attached tfo * @param derivative Derivative to use * @param feePercentage Maximum percentage of fee that a user want to pay * @param expiration Expiration time of the transaction */ function checkParams( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, IDerivative derivative, uint256 feePercentage, uint256 expiration ) internal view checkDerivative(self, derivative) { require(block.timestamp <= expiration, 'Transaction expired'); require( self.fee.feePercentage.rawValue <= feePercentage, 'User fee percentage less than actual one' ); } /** * @notice Get the address of collateral of a perpetual derivative * @param derivative Address of the perpetual derivative * @return collateral Address of the collateral of perpetual derivative */ function getDerivativeCollateral(IDerivative derivative) internal view returns (IERC20 collateral) { collateral = derivative.collateralCurrency(); } /** * @notice Get the global collateralization ratio of the derivative * @param derivative Perpetual derivative contract * @return The global collateralization ratio */ function getGlobalCollateralizationRatio(IDerivative derivative) internal view returns (FixedPoint.Unsigned memory) { FixedPoint.Unsigned memory totalTokensOutstanding = derivative.totalTokensOutstanding(); if (totalTokensOutstanding.isGreaterThan(0)) { return derivative.totalPositionCollateral().div(totalTokensOutstanding); } else { return FixedPoint.fromUnscaledUint(0); } } /** * @notice Check if a call to `mint` with the supplied parameters will succeed * @dev Compares the new collateral from `collateralAmount` combined with LP collateral * against the collateralization ratio of the derivative. * @param self Data type the library is attached to * @param globalCollateralization The global collateralization ratio of the derivative * @param collateralAmount The amount of additional collateral supplied * @param numTokens The number of tokens to mint * @return `true` if there is sufficient collateral */ function checkCollateralizationRatio( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, FixedPoint.Unsigned memory globalCollateralization, FixedPoint.Unsigned memory collateralAmount, FixedPoint.Unsigned memory numTokens ) internal view returns (bool) { // Collateral ratio possible for new tokens accounting for LP collateral FixedPoint.Unsigned memory newCollateralization = collateralAmount .add(FixedPoint.Unsigned(self.collateralToken.balanceOf(address(this)))) .div(numTokens); // Check that LP collateral can support the tokens to be minted return newCollateralization.isGreaterThanOrEqual(globalCollateralization); } /** * @notice Check if sender or receiver pool is a correct registered pool * @param self Data type the library is attached to * @param poolToCheck Pool that should be compared with this pool * @param derivativeToCheck Derivative of poolToCheck */ function checkPool( ISynthereumPoolOnChainPriceFeedStorage.Storage storage self, ISynthereumPoolGeneral poolToCheck, IDerivative derivativeToCheck ) internal view { require( poolToCheck.isDerivativeAdmitted(address(derivativeToCheck)), 'Wrong derivative' ); IERC20 collateralToken = self.collateralToken; require( collateralToken == poolToCheck.collateralToken(), 'Collateral tokens do not match' ); ISynthereumFinder finder = self.finder; require(finder == poolToCheck.synthereumFinder(), 'Finders do not match'); ISynthereumRegistry poolRegister = ISynthereumRegistry( finder.getImplementationAddress(SynthereumInterfaces.PoolRegistry) ); require( poolRegister.isDeployed( poolToCheck.syntheticTokenSymbol(), collateralToken, poolToCheck.version(), address(poolToCheck) ), 'Destination pool not registred' ); } /** * @notice Calculate collateral amount starting from an amount of synthtic token, using on-chain oracle * @param finder Synthereum finder * @param collateralToken Collateral token contract * @param priceIdentifier Identifier of price pair * @param numTokens Amount of synthetic tokens from which you want to calculate collateral amount * @return collateralAmount Amount of collateral after on-chain oracle conversion */ function calculateCollateralAmount( ISynthereumFinder finder, IStandardERC20 collateralToken, bytes32 priceIdentifier, FixedPoint.Unsigned memory numTokens ) internal view returns (FixedPoint.Unsigned memory collateralAmount) { FixedPoint.Unsigned memory priceRate = getPriceFeedRate(finder, priceIdentifier); uint256 decimalsOfCollateral = getCollateralDecimals(collateralToken); collateralAmount = numTokens.mul(priceRate).div( 10**((uint256(18)).sub(decimalsOfCollateral)) ); } /** * @notice Calculate synthetic token amount starting from an amount of collateral, using on-chain oracle * @param finder Synthereum finder * @param collateralToken Collateral token contract * @param priceIdentifier Identifier of price pair * @param numTokens Amount of collateral from which you want to calculate synthetic token amount * @return numTokens Amount of tokens after on-chain oracle conversion */ function calculateNumberOfTokens( ISynthereumFinder finder, IStandardERC20 collateralToken, bytes32 priceIdentifier, FixedPoint.Unsigned memory collateralAmount ) internal view returns (FixedPoint.Unsigned memory numTokens) { FixedPoint.Unsigned memory priceRate = getPriceFeedRate(finder, priceIdentifier); uint256 decimalsOfCollateral = getCollateralDecimals(collateralToken); numTokens = collateralAmount .mul(10**((uint256(18)).sub(decimalsOfCollateral))) .div(priceRate); } /** * @notice Retrun the on-chain oracle price for a pair * @param finder Synthereum finder * @param priceIdentifier Identifier of price pair * @return priceRate Latest rate of the pair */ function getPriceFeedRate(ISynthereumFinder finder, bytes32 priceIdentifier) internal view returns (FixedPoint.Unsigned memory priceRate) { ISynthereumPriceFeed priceFeed = ISynthereumPriceFeed( finder.getImplementationAddress(SynthereumInterfaces.PriceFeed) ); priceRate = FixedPoint.Unsigned(priceFeed.getLatestPrice(priceIdentifier)); } /** * @notice Retrun the number of decimals of collateral token * @param collateralToken Collateral token contract * @return decimals number of decimals */ function getCollateralDecimals(IStandardERC20 collateralToken) internal view returns (uint256 decimals) { decimals = collateralToken.decimals(); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.0; /** * @title A contract that provides modifiers to prevent reentrancy to state-changing and view-only methods. This contract * is inspired by https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/ReentrancyGuard.sol * and https://github.com/balancer-labs/balancer-core/blob/master/contracts/BPool.sol. */ contract Lockable { bool private _notEntered; constructor() { // Storing an initial non-zero value makes deployment a bit more expensive, but in exchange the refund on every // call to nonReentrant will be lower in amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to increase the likelihood of the full // refund coming into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` function is not supported. It is possible to * prevent this from happening by making the `nonReentrant` function external, and making it call a `private` * function that does the actual state modification. */ modifier nonReentrant() { _preEntranceCheck(); _preEntranceSet(); _; _postEntranceReset(); } /** * @dev Designed to prevent a view-only method from being re-entered during a call to a `nonReentrant()` state-changing method. */ modifier nonReentrantView() { _preEntranceCheck(); _; } // Internal methods are used to avoid copying the require statement's bytecode to every `nonReentrant()` method. // On entry into a function, `_preEntranceCheck()` should always be called to check if the function is being // re-entered. Then, if the function modifies state, it should call `_postEntranceSet()`, perform its logic, and // then call `_postEntranceReset()`. // View-only methods can simply call `_preEntranceCheck()` to make sure that it is not being re-entered. function _preEntranceCheck() internal view { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); } function _preEntranceSet() internal { // Any calls to nonReentrant after this point will fail _notEntered = false; } function _postEntranceReset() internal { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {ISynthereumFinder} from '../../../core/interfaces/IFinder.sol'; import { FixedPoint } from '../../../../@uma/core/contracts/common/implementation/FixedPoint.sol'; /** * @title Interface for interacting with the Derivatives contracts */ interface IDerivativeMain { /** @notice Deposit funds to a certain derivative contract with specified sponsor * @param sponsor Address of the sponsor to which the funds will be deposited * @param collateralAmount Amount of funds to be deposited */ function depositTo( address sponsor, FixedPoint.Unsigned memory collateralAmount ) external; /** @notice Deposit funds to the derivative contract where msg sender is the sponsor * @param collateralAmount Amount of funds to be deposited */ function deposit(FixedPoint.Unsigned memory collateralAmount) external; /** @notice Fast withdraw excess collateral from a derivative contract * @param collateralAmount Amount of funds to be withdrawn */ function withdraw(FixedPoint.Unsigned memory collateralAmount) external returns (FixedPoint.Unsigned memory amountWithdrawn); /** @notice Request of slow withdraw of collateral from derivative changing GCR * @param collateralAmount Amount of funds to be withdrawn */ function requestWithdrawal(FixedPoint.Unsigned memory collateralAmount) external; /** @notice Execute withdraw if a slow withdraw request has passed */ function withdrawPassedRequest() external returns (FixedPoint.Unsigned memory amountWithdrawn); /** @notice Cancel a slow withdraw request */ function cancelWithdrawal() external; /** @notice Mint synthetic tokens * @param collateralAmount Amount of collateral to be locked * @param numTokens Amount of tokens to be minted based on collateralAmount */ function create( FixedPoint.Unsigned memory collateralAmount, FixedPoint.Unsigned memory numTokens ) external; /** @notice Redeem collateral by burning synthetic tokens * @param numTokens Amount of synthetic tokens to be burned to unlock collateral */ function redeem(FixedPoint.Unsigned memory numTokens) external returns (FixedPoint.Unsigned memory amountWithdrawn); /** @notice Burning an amount of synthetic tokens to increase GCR * @param numTokens Amount of synthetic tokens to be burned */ function repay(FixedPoint.Unsigned memory numTokens) external; /** @notice Settles the withdraws from an emergency shutdown of a derivative */ function settleEmergencyShutdown() external returns (FixedPoint.Unsigned memory amountWithdrawn); /** @notice Invokes an emergency shutdown of a derivative */ function emergencyShutdown() external; /** @notice Remargin function */ function remargin() external; /** @notice Allows withdrawing of excess ERC20 tokens * @param token The address of the ERC20 token */ function trimExcess(IERC20 token) external returns (FixedPoint.Unsigned memory amount); /** @notice Gets the collateral locked by a certain sponsor * @param sponsor The address of the sponsor for which to return amount of collateral locked */ function getCollateral(address sponsor) external view returns (FixedPoint.Unsigned memory collateralAmount); /** @notice Gets the address of the SynthereumFinder contract */ function synthereumFinder() external view returns (ISynthereumFinder finder); /** @notice Gets the synthetic token symbol associated with the derivative */ function syntheticTokenSymbol() external view returns (string memory symbol); /** @notice Gets the price identifier associated with the derivative */ function priceIdentifier() external view returns (bytes32 identifier); /** @notice Gets the total collateral locked in a derivative */ function totalPositionCollateral() external view returns (FixedPoint.Unsigned memory totalCollateral); /** @notice Gets the total synthetic tokens minted through a derivative */ function totalTokensOutstanding() external view returns (FixedPoint.Unsigned memory totalTokens); /** @notice Gets the price at which the emergency shutdown was performed */ function emergencyShutdownPrice() external view returns (FixedPoint.Unsigned memory emergencyPrice); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; /** * @title Interface that a derivative MUST have in order to be included in the deployer */ interface IDerivativeDeployment { /** * @notice Gets the collateral currency of the derivative * @return collateral Collateral currency */ function collateralCurrency() external view returns (IERC20 collateral); /** * @notice Get the token currency of the derivative * @return syntheticCurrency Synthetic token */ function tokenCurrency() external view returns (IERC20 syntheticCurrency); /** * @notice Accessor method for the list of members with admin role * @return array of addresses with admin role */ function getAdminMembers() external view returns (address[] memory); /** * @notice Accessor method for the list of members with pool role * @return array of addresses with pool role */ function getPoolMembers() external view returns (address[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {ISynthereumFinder} from '../../../core/interfaces/IFinder.sol'; import {IRole} from '../../../base/interfaces/IRole.sol'; import { IDerivative } from '../../../derivative/common/interfaces/IDerivative.sol'; /** * @title Interface that a pool MUST have in order to be included in the deployer */ interface ISynthereumPoolDeployment { /** * @notice Get Synthereum finder of the pool * @return finder Returns finder contract */ function synthereumFinder() external view returns (ISynthereumFinder finder); /** * @notice Get Synthereum version * @return poolVersion Returns the version of this Synthereum pool */ function version() external view returns (uint8 poolVersion); /** * @notice Get the collateral token * @return collateralCurrency The ERC20 collateral token */ function collateralToken() external view returns (IERC20 collateralCurrency); /** * @notice Get the synthetic token associated to this pool * @return syntheticCurrency The ERC20 synthetic token */ function syntheticToken() external view returns (IERC20 syntheticCurrency); /** * @notice Get the synthetic token symbol associated to this pool * @return symbol The ERC20 synthetic token symbol */ function syntheticTokenSymbol() external view returns (string memory symbol); function isDerivativeAdmitted(address derivative) external view returns (bool isAdmitted); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {ISynthereumPoolInteraction} from './IPoolInteraction.sol'; import {ISynthereumPoolDeployment} from './IPoolDeployment.sol'; interface ISynthereumPoolGeneral is ISynthereumPoolDeployment, ISynthereumPoolInteraction {}
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {ISynthereumFinder} from '../../../../core/interfaces/IFinder.sol'; /** @title Interface for interacting with SelfMintingDerivativeDeployment contract */ interface ISelfMintingDerivativeDeployment { /** @notice Returns the address of the SynthereumFinder contract */ function synthereumFinder() external view returns (ISynthereumFinder finder); /** @notice Returns the address of the collateralCurrency contract */ function collateralCurrency() external view returns (IERC20 collateral); /** @notice Returns the address of the synthetic token contract */ function tokenCurrency() external view returns (IERC20 syntheticCurrency); /** @notice Returns the synthetic token symbol */ function syntheticTokenSymbol() external view returns (string memory symbol); /** @notice Returns the version of the deployed self-minting derivative */ function version() external view returns (uint8 selfMintingversion); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; /** * @title Access role interface */ interface IRole { /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import { IDerivative } from '../../../derivative/common/interfaces/IDerivative.sol'; interface ISynthereumPoolInteraction { /** * @notice Called by a source Pool's `exchange` function to mint destination tokens * @notice This functon can be called only by a pool registred in the PoolRegister contract * @param srcDerivative Derivative used by the source pool * @param derivative The derivative of the destination pool to use for mint * @param collateralAmount The amount of collateral to use from the source Pool * @param numTokens The number of new tokens to mint */ function exchangeMint( IDerivative srcDerivative, IDerivative derivative, uint256 collateralAmount, uint256 numTokens ) external; /** * @notice Returns price identifier of the pool * @return identifier Price identifier */ function getPriceFeedIdentifier() external view returns (bytes32 identifier); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; import {IERC20} from '../../../../@openzeppelin/contracts/token/ERC20/IERC20.sol'; /** * @title Provides interface with functions of SynthereumRegistry */ interface ISynthereumRegistry { /** * @notice Allow the deployer to register an element * @param syntheticTokenSymbol Symbol of the syntheticToken * @param collateralToken Collateral ERC20 token of the element deployed * @param version Version of the element deployed * @param element Address of the element deployed */ function register( string calldata syntheticTokenSymbol, IERC20 collateralToken, uint8 version, address element ) external; /** * @notice Returns if a particular element exists or not * @param syntheticTokenSymbol Synthetic token symbol of the element * @param collateralToken ERC20 contract of collateral currency * @param version Version of the element * @param element Contract of the element to check * @return isElementDeployed Returns true if a particular element exists, otherwise false */ function isDeployed( string calldata syntheticTokenSymbol, IERC20 collateralToken, uint8 version, address element ) external view returns (bool isElementDeployed); /** * @notice Returns all the elements with partcular symbol, collateral and version * @param syntheticTokenSymbol Synthetic token symbol of the element * @param collateralToken ERC20 contract of collateral currency * @param version Version of the element * @return List of all elements */ function getElements( string calldata syntheticTokenSymbol, IERC20 collateralToken, uint8 version ) external view returns (address[] memory); /** * @notice Returns all the synthetic token symbol used * @return List of all synthetic token symbol */ function getSyntheticTokens() external view returns (string[] memory); /** * @notice Returns all the versions used * @return List of all versions */ function getVersions() external view returns (uint8[] memory); /** * @notice Returns all the collaterals used * @return List of all collaterals */ function getCollaterals() external view returns (address[] memory); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.4; interface ISynthereumPriceFeed { /** * @notice Get last chainlink oracle price for a given price identifier * @param priceIdentifier Price feed identifier * @return price Oracle price */ function getLatestPrice(bytes32 priceIdentifier) external view returns (uint256 price); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": { "deploy/contracts/synthereum-pool/v4/PoolOnChainPriceFeedLib.sol": { "SynthereumPoolOnChainPriceFeedLib": "0x586cce2d7ce78e9c9fd5c062ec6ee59880eac78f" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IDerivative","name":"_derivative","type":"address"},{"internalType":"contract ISynthereumFinder","name":"_finder","type":"address"},{"internalType":"uint8","name":"_version","type":"uint8"},{"components":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"maintainer","type":"address"},{"internalType":"address","name":"liquidityProvider","type":"address"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.Roles","name":"_roles","type":"tuple"},{"internalType":"uint256","name":"_startingCollateralization","type":"uint256"},{"components":[{"components":[{"internalType":"uint256","name":"rawValue","type":"uint256"}],"internalType":"struct FixedPoint.Unsigned","name":"feePercentage","type":"tuple"},{"internalType":"address[]","name":"feeRecipients","type":"address[]"},{"internalType":"uint32[]","name":"feeProportions","type":"uint32[]"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.Fee","name":"_fee","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"derivative","type":"address"}],"name":"AddDerivative","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sourcePool","type":"address"},{"indexed":true,"internalType":"address","name":"destPool","type":"address"},{"indexed":false,"internalType":"uint256","name":"numTokensSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"destNumTokensReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feePaid","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Exchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"numTokensReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feePaid","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"numTokensSent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feePaid","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"derivative","type":"address"}],"name":"RemoveDerivative","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feePercentage","type":"uint256"}],"name":"SetFeePercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"feeRecipients","type":"address[]"},{"indexed":false,"internalType":"uint32[]","name":"feeProportions","type":"uint32[]"}],"name":"SetFeeRecipients","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"numTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralSettled","type":"uint256"}],"name":"Settlement","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_PROVIDER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAINTAINER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"}],"name":"addDerivative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"name":"calculateFee","outputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralToken","outputs":[{"internalType":"contract IERC20","name":"collateralCurrency","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"name":"depositIntoDerivative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"contract ISynthereumPoolGeneral","name":"destPool","type":"address"},{"internalType":"contract IDerivative","name":"destDerivative","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"uint256","name":"minDestNumTokens","type":"uint256"},{"internalType":"uint256","name":"feePercentage","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.ExchangeParams","name":"exchangeParams","type":"tuple"}],"name":"exchange","outputs":[{"internalType":"uint256","name":"destNumTokensMinted","type":"uint256"},{"internalType":"uint256","name":"feePaid","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"srcDerivative","type":"address"},{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"exchangeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"name":"fastWithdraw","outputs":[{"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllDerivatives","outputs":[{"internalType":"contract IDerivative[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeeInfo","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"rawValue","type":"uint256"}],"internalType":"struct FixedPoint.Unsigned","name":"feePercentage","type":"tuple"},{"internalType":"address[]","name":"feeRecipients","type":"address[]"},{"internalType":"uint32[]","name":"feeProportions","type":"uint32[]"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.Fee","name":"fee","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceFeedIdentifier","outputs":[{"internalType":"bytes32","name":"identifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartingCollateralization","outputs":[{"internalType":"uint256","name":"startingCollateralRatio","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"derivative","type":"address"}],"name":"isDerivativeAdmitted","outputs":[{"internalType":"bool","name":"isAdmitted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"minNumTokens","type":"uint256"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"internalType":"uint256","name":"feePercentage","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.MintParams","name":"mintParams","type":"tuple"}],"name":"mint","outputs":[{"internalType":"uint256","name":"syntheticTokensMinted","type":"uint256"},{"internalType":"uint256","name":"feePaid","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"uint256","name":"minCollateral","type":"uint256"},{"internalType":"uint256","name":"feePercentage","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.RedeemParams","name":"redeemParams","type":"tuple"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"collateralRedeemed","type":"uint256"},{"internalType":"uint256","name":"feePaid","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"}],"name":"removeDerivative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"rawValue","type":"uint256"}],"internalType":"struct FixedPoint.Unsigned","name":"feePercentage","type":"tuple"},{"internalType":"address[]","name":"feeRecipients","type":"address[]"},{"internalType":"uint32[]","name":"feeProportions","type":"uint32[]"}],"internalType":"struct ISynthereumPoolOnChainPriceFeed.Fee","name":"_fee","type":"tuple"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feePercentage","type":"uint256"}],"name":"setFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_feeRecipients","type":"address[]"},{"internalType":"uint32[]","name":"_feeProportions","type":"uint32[]"}],"name":"setFeeRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingCollateralRatio","type":"uint256"}],"name":"setStartingCollateralization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"}],"name":"settleEmergencyShutdown","outputs":[{"internalType":"uint256","name":"amountSettled","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"}],"name":"slowWithdrawPassedRequest","outputs":[{"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDerivative","name":"derivative","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"name":"slowWithdrawRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"synthereumFinder","outputs":[{"internalType":"contract ISynthereumFinder","name":"finder","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"syntheticToken","outputs":[{"internalType":"contract IERC20","name":"syntheticCurrency","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"syntheticTokenSymbol","outputs":[{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"poolVersion","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"name":"withdrawFromPool","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002f3e38038062002f3e833981016040819052620000349162000646565b6002805460ff191660011790556200004b62000292565b6200005b6002805460ff19169055565b62000068600080620002eb565b6200008460008051602062002efe8339815191526000620002eb565b620000a060008051602062002f1e8339815191526000620002eb565b8251620000b0906000906200033f565b620000d560008051602062002efe83398151915284602001516200033f60201b60201c565b620000fa60008051602062002f1e83398151915284604001516200033f60201b60201c565b60408051602081018252838152905163b22c026f60e01b81526003600482015260ff861660248201526001600160a01b038088166044830152881660648201529051608482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9063b22c026f9060a40160006040518083038186803b1580156200017957600080fd5b505af41580156200018e573d6000803e3d6000fd5b50508251604051630342350d60e21b8152600360048201529051602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9250630d08d434915060440160006040518083038186803b158015620001e757600080fd5b505af4158015620001fc573d6000803e3d6000fd5b505050602082015160408084015190516358a3f97d60e11b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f935063b147f2fa92620002449260039260040162000731565b60006040518083038186803b1580156200025d57600080fd5b505af415801562000272573d6000803e3d6000fd5b50505050620002866200038260201b60201c565b505050505050620008a0565b60025460ff16620002e95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640160405180910390fd5b565b600082815260208190526040902060010154819060405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526020829052604090912060010155565b6200035682826200039160201b620013351760201c565b60008281526001602090815260409091206200037d9183906200133f620003a1821b17901c565b505050565b6002805460ff19166001179055565b6200039d8282620003c1565b5050565b6000620003b8836001600160a01b03841662000461565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200039d576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200041d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620004aa57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003bb565b506000620003bb565b600082601f830112620004c4578081fd5b81516020620004dd620004d7836200084b565b62000818565b80838252828201915082860187848660051b8901011115620004fd578586fd5b855b858110156200052f57815163ffffffff811681146200051c578788fd5b84529284019290840190600101620004ff565b5090979650505050505050565b600081830360608112156200054f578182fd5b62000559620007c8565b91506020808212156200056b57600080fd5b62000575620007f3565b8451815283528084015191506001600160401b03808311156200059757600080fd5b828501925085601f840112620005ac57600080fd5b8251620005bd620004d7826200084b565b80828252848201915084860189868560051b8901011115620005de57600080fd5b600096505b838710156200060e578051620005f98162000887565b835260019690960195918501918501620005e3565b5086850152505060408501519250808311156200062a57600080fd5b50506200063a84828501620004b3565b60408301525092915050565b60008060008060008086880361010081121562000661578283fd5b87516200066e8162000887565b6020890151909750620006818162000887565b604089015190965060ff8116811462000698578384fd5b94506060605f1982011215620006ac578283fd5b50620006b7620007c8565b6060880151620006c78162000887565b81526080880151620006d98162000887565b602082015260a0880151620006ee8162000887565b604082015260c088015160e089015191945092506001600160401b0381111562000716578182fd5b6200072489828a016200053c565b9150509295509295509295565b60006060820185835260206060818501528186518084526080860191508288019350845b818110156200077c5784516001600160a01b03168352938301939183019160010162000755565b505084810360408601528551808252908201925081860190845b81811015620007ba57825163ffffffff168552938301939183019160010162000796565b509298975050505050505050565b604051606081016001600160401b0381118282101715620007ed57620007ed62000871565b60405290565b604051602081016001600160401b0381118282101715620007ed57620007ed62000871565b604051601f8201601f191681016001600160401b038111828210171562000843576200084362000871565b604052919050565b60006001600160401b0382111562000867576200086762000871565b5060051b60200190565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200089d57600080fd5b50565b61264e80620008b06000396000f3fe608060405234801561001057600080fd5b50600436106102315760003560e01c806391d1485411610130578063c0034cfb116100b8578063df7725e01161007c578063df7725e0146104fa578063e6c3189a1461050d578063f39ce35414610520578063f6bf3ef614610533578063f87422541461054457600080fd5b8063c0034cfb146104a6578063c26b5435146104b9578063c77a4e5b146104c1578063ca15c873146104d4578063d547741f146104e757600080fd5b8063ae06c1b7116100ff578063ae06c1b714610449578063b2016bd41461045c578063b21824e11461046d578063b5e4039014610480578063c002475a1461049357600080fd5b806391d148541461040857806399a5d7471461041b578063a217fddf1461042e578063a90296ac1461043657600080fd5b806336568abe116101be57806354fd4d501161018257806354fd4d501461038b57806380759cb1146103aa5780638230ecd6146103bd578063856f9658146103e25780639010d07c146103f557600080fd5b806336568abe1461031357806336815bb7146103265780633bf8c1731461033b578063410d95591461036357806349b6ca811461037857600080fd5b806320037cdd1161020557806320037cdd146102ad578063248a9ca3146102c25780632b27324a146102e55780632f2ff15d146102ed57806330fc43ed1461030057600080fd5b806202eab71461023657806301ffc9a7146102545780630fbe057a1461027757806311adda7b14610298575b600080fd5b61023e610559565b60405161024b919061218e565b60405180910390f35b610267610262366004611cde565b610689565b604051901515815260200161024b565b61028a610285366004611bf1565b6106b4565b60405190815260200161024b565b6102ab6102a6366004611eb3565b6107a5565b005b61028a6000805160206125f983398151915281565b61028a6102d0366004611c76565b60009081526020819052604090206001015490565b600d5461028a565b6102ab6102fb366004611c8e565b6108d2565b6102ab61030e366004611c76565b6108f9565b6102ab610321366004611c8e565b610988565b61032e6109aa565b60405161024b91906120df565b61034e610349366004611fc7565b610a30565b6040805192835260208301919091520161024b565b61036b610ade565b60405161024b9190612092565b6102ab610386366004611bf1565b610bab565b600354600160a01b900460ff1660405160ff909116815260200161024b565b61028a6103b8366004611d4b565b610c36565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161024b565b6102ab6103f0366004611c76565b610d2b565b6103ca610403366004611cbd565b610dba565b610267610416366004611c8e565b610dd9565b61028a610429366004611c76565b610e02565b61028a600081565b6102ab610444366004611d4b565b610e30565b6102ab610457366004611c76565b610f06565b6004546001600160a01b03166103ca565b6102ab61047b366004611d06565b610f95565b6102ab61048e366004611c0d565b611053565b6102ab6104a1366004611bf1565b6110d7565b61034e6104b4366004611e06565b611162565b60085461028a565b6102676104cf366004611bf1565b6111af565b61028a6104e2366004611c76565b6111bc565b6102ab6104f5366004611c8e565b6111d3565b6102ab610508366004611d4b565b6111dd565b61034e61051b366004611fc7565b61127b565b61028a61052e366004611bf1565b6112c8565b6003546001600160a01b03166103ca565b61028a6000805160206125d983398151915281565b61058660408051608081019091526000606082019081528190815260200160608152602001606081525090565b6040805160808101825260098054606083019081528252600a805484516020828102820181019096528181529394929383860193909291908301828280156105f757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116105d9575b505050505081526020016002820180548060200260200160405190810160405280929190818152602001828054801561067b57602002820191906000526020600020906000905b82829054906101000a900463ffffffff1663ffffffff168152602001906004019060208260030104928301926001038202915080841161063e5790505b505050505081525050905090565b60006001600160e01b03198216635a05180f60e01b14806106ae57506106ae82611354565b92915050565b60006106ce6000805160206125f983398151915233610dd9565b6106f35760405162461bcd60e51b81526004016106ea90612112565b60405180910390fd5b6106fb611389565b6107036113dd565b6040516325aa497d60e01b8152600360048201526001600160a01b038316602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906325aa497d906044015b60206040518083038186803b15801561075e57600080fd5b505af4158015610772573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107969190611fe2565b90506107a06113e9565b919050565b6107bd6000805160206125d983398151915233610dd9565b6107d95760405162461bcd60e51b81526004016106ea90612157565b6107e1611389565b6107e96113dd565b8051604051630342350d60e21b8152600360048201529051602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90630d08d4349060440160006040518083038186803b15801561083d57600080fd5b505af4158015610851573d6000803e3d6000fd5b505050602082015160408084015190516358a3f97d60e11b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f935063b147f2fa92610897926003926004016122cb565b60006040518083038186803b1580156108af57600080fd5b505af41580156108c3573d6000803e3d6000fd5b505050506108cf6113e9565b50565b6108dc82826113f8565b60008281526001602052604090206108f4908261133f565b505050565b6109116000805160206125f983398151915233610dd9565b61092d5760405162461bcd60e51b81526004016106ea90612112565b610935611389565b61093d6113dd565b604080516020810182528281529051631cf6948560e01b8152600360048201529051602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90631cf6948590604401610897565b610992828261141e565b60008281526001602052604090206108f49082611498565b600554604080516395d89b4160e01b815290516060926001600160a01b0316916395d89b41916004808301926000929190829003018186803b1580156109ef57600080fd5b505afa158015610a03573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a2b9190810190611d76565b905090565b600080610a3b611389565b610a436113dd565b60405163439c4d4b60e11b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906387389a9690610a7d9060039087906004016123d8565b604080518083038186803b158015610a9457600080fd5b505af4158015610aa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acc9190611ffa565b9092509050610ad96113e9565b915091565b606060066000610aed826114ad565b905060008167ffffffffffffffff811115610b1857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b41578160200160208202803683370190505b50905060005b82811015610ba357610b5984826114b7565b828281518110610b7957634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280610b9b8161257c565b915050610b47565b509392505050565b610bc36000805160206125d983398151915233610dd9565b610bdf5760405162461bcd60e51b81526004016106ea90612157565b610be7611389565b610bef6113dd565b6040516374a168bb60e01b8152600360048201526001600160a01b038216602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906374a168bb90604401610897565b6000610c506000805160206125f983398151915233610dd9565b610c6c5760405162461bcd60e51b81526004016106ea90612112565b610c74611389565b610c7c6113dd565b604080516020810182528381529051634e47785160e11b8152600360048201526001600160a01b03851660248201529051604482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90639c8ef0a29060640160206040518083038186803b158015610ce957600080fd5b505af4158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190611fe2565b90506106ae6113e9565b610d436000805160206125d983398151915233610dd9565b610d5f5760405162461bcd60e51b81526004016106ea90612157565b610d67611389565b610d6f6113dd565b60408051602081018252828152905163149984a160e11b8152600360048201529051602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90632933094290604401610897565b6000828152600160205260408120610dd290836114b7565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b604080516020808201835260095482528251908101909252828252600091610e29916114c3565b5192915050565b610e486000805160206125f983398151915233610dd9565b610e645760405162461bcd60e51b81526004016106ea90612112565b610e6c611389565b610e746113dd565b60408051602081018252828152905163a847750760e01b8152600360048201526001600160a01b03841660248201529051604482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9063a8477507906064015b60006040518083038186803b158015610ee257600080fd5b505af4158015610ef6573d6000803e3d6000fd5b50505050610f026113e9565b5050565b610f1e6000805160206125d983398151915233610dd9565b610f3a5760405162461bcd60e51b81526004016106ea90612157565b610f42611389565b610f4a6113dd565b604080516020810182528281529051630342350d60e21b8152600360048201529051602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90630d08d43490604401610897565b610f9d611389565b610fa56113dd565b60408051602080820183528482528251908101835283815291516305cd02d160e21b8152600360048201526001600160a01b03808816602483015286166044820152905160648201529051608482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906317340b449060a4015b60006040518083038186803b15801561102d57600080fd5b505af4158015611041573d6000803e3d6000fd5b5050505061104d6113e9565b50505050565b61106b6000805160206125d983398151915233610dd9565b6110875760405162461bcd60e51b81526004016106ea90612157565b61108f611389565b6110976113dd565b6040516358a3f97d60e11b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9063b147f2fa90611015906003908890889088908890600401612232565b6110ef6000805160206125d983398151915233610dd9565b61110b5760405162461bcd60e51b81526004016106ea90612157565b611113611389565b61111b6113dd565b6040516345c10fbf60e01b8152600360048201526001600160a01b038216602482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906345c10fbf90604401610897565b60008061116d611389565b6111756113dd565b60405163010a4a1760e61b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9063429285c090610a7d906003908790600401612360565b60006106ae600683611509565b60008181526001602052604081206106ae906114ad565b610992828261152b565b6111f56000805160206125f983398151915233610dd9565b6112115760405162461bcd60e51b81526004016106ea90612112565b611219611389565b6112216113dd565b6040805160208101825282815290516318ac993760e21b8152600360048201526001600160a01b03841660248201529051604482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f906362b264dc90606401610eca565b600080611286611389565b61128e6113dd565b6040516328157f8960e11b815273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f9063502aff1290610a7d9060039087906004016123d8565b60006112d2611389565b6112da6113dd565b604051630be70ee360e01b8152600360048201526001600160a01b03831660248201526000805160206125f9833981519152604482015273586cce2d7ce78e9c9fd5c062ec6ee59880eac78f90630be70ee390606401610746565b610f028282611551565b6000610dd2836001600160a01b0384166115d5565b60006001600160e01b03198216637965db0b60e01b14806106ae57506301ffc9a760e01b6001600160e01b03198316146106ae565b60025460ff166113db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ea565b565b6002805460ff19169055565b6002805460ff19166001179055565b6000828152602081905260409020600101546114148133611624565b6108f48383611551565b6001600160a01b038116331461148e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106ea565b610f028282611688565b6000610dd2836001600160a01b0384166116ed565b60006106ae825490565b6000610dd28383611804565b6040805160208101909152600081526040805160208101909152825184518291670de0b6b3a7640000916114f691611898565b61150091906124e3565b90529392505050565b6001600160a01b03811660009081526001830160205260408120541515610dd2565b6000828152602081905260409020600101546115478133611624565b6108f48383611688565b61155b8282610dd9565b610f02576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556115913390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461161c575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556106ae565b5060006106ae565b61162e8282610dd9565b610f0257611646816001600160a01b031660146118a4565b6116518360206118a4565b60405160200161166292919061201d565b60408051601f198184030181529082905262461bcd60e51b82526106ea916004016120df565b6116928282610dd9565b15610f02576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156117fa576000611711600183612522565b855490915060009061172590600190612522565b9050600086600001828154811061174c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061177d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600189019091526040902084905586548790806117be57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506106ae565b60009150506106ae565b815460009082106118625760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106ea565b82600001828154811061188557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6000610dd28284612503565b606060006118b3836002612503565b6118be9060026124cb565b67ffffffffffffffff8111156118e457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561190e576020820181803683370190505b509050600360fc1b8160008151811061193757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061197457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611998846002612503565b6119a39060016124cb565b90505b6001811115611a37576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119e557634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611a0957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611a3081612565565b90506119a6565b508315610dd25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106ea565b80356107a0816125c3565b60008083601f840112611aa2578182fd5b50813567ffffffffffffffff811115611ab9578182fd5b6020830191508360208260051b8501011115611ad457600080fd5b9250929050565b600082601f830112611aeb578081fd5b81356020611b00611afb836124a7565b612476565b80838252828201915082860187848660051b8901011115611b1f578586fd5b855b85811015611b4457611b3282611bdd565b84529284019290840190600101611b21565b5090979650505050505050565b600060c08284031215611b62578081fd5b60405160c0810181811067ffffffffffffffff82111715611b8557611b856125ad565b6040529050808235611b96816125c3565b808252506020830135602082015260408301356040820152606083013560608201526080830135608082015260a0830135611bd0816125c3565b60a0919091015292915050565b803563ffffffff811681146107a057600080fd5b600060208284031215611c02578081fd5b8135610dd2816125c3565b60008060008060408587031215611c22578283fd5b843567ffffffffffffffff80821115611c39578485fd5b611c4588838901611a91565b90965094506020870135915080821115611c5d578384fd5b50611c6a87828801611a91565b95989497509550505050565b600060208284031215611c87578081fd5b5035919050565b60008060408385031215611ca0578182fd5b823591506020830135611cb2816125c3565b809150509250929050565b60008060408385031215611ccf578182fd5b50508035926020909101359150565b600060208284031215611cef578081fd5b81356001600160e01b031981168114610dd2578182fd5b60008060008060808587031215611d1b578182fd5b8435611d26816125c3565b93506020850135611d36816125c3565b93969395505050506040820135916060013590565b60008060408385031215611d5d578182fd5b8235611d68816125c3565b946020939093013593505050565b600060208284031215611d87578081fd5b815167ffffffffffffffff80821115611d9e578283fd5b818401915084601f830112611db1578283fd5b815181811115611dc357611dc36125ad565b611dd6601f8201601f1916602001612476565b9150808252856020828501011115611dec578384fd5b611dfd816020840160208601612539565b50949350505050565b6000610100808385031215611e19578182fd5b6040519081019067ffffffffffffffff82118183101715611e3c57611e3c6125ad565b8160405283359150611e4d826125c3565b818152611e5c60208501611a86565b6020820152611e6d60408501611a86565b6040820152606084013560608201526080840135608082015260a084013560a082015260c084013560c0820152611ea660e08501611a86565b60e0820152949350505050565b60006020808385031215611ec5578182fd5b823567ffffffffffffffff80821115611edc578384fd5b908401908186036060811215611ef0578485fd5b611ef861242a565b84821215611f04578586fd5b611f0c612453565b84358152815284840135915082821115611f24578586fd5b818401915087601f830112611f37578586fd5b8135611f45611afb826124a7565b8082825287820191508785018b898560051b8801011115611f6457898afd5b8995505b83861015611f8f578035611f7b816125c3565b835260019590950194918801918801611f68565b5080888501525050506040840135945082851115611fab578586fd5b611fb788868601611adb565b6040820152979650505050505050565b600060c08284031215611fd8578081fd5b610dd28383611b51565b600060208284031215611ff3578081fd5b5051919050565b6000806040838503121561200c578182fd5b505080516020909101519092909150565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612055816017850160208801612539565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612086816028840160208801612539565b01602801949350505050565b6020808252825182820181905260009190848201906040850190845b818110156120d35783516001600160a01b0316835292840192918401916001016120ae565b50909695505050505050565b60208152600082518060208401526120fe816040850160208701612539565b601f01601f19169190910160400192915050565b60208082526025908201527f53656e646572206d75737420626520746865206c69717569646974792070726f6040820152643b34b232b960d91b606082015260800190565b6020808252601d908201527f53656e646572206d75737420626520746865206d61696e7461696e6572000000604082015260600190565b602080825282515182820152828101516060604084015280516080840181905260009291820190839060a08601905b808310156121e85783516001600160a01b0316825260208201915084840193506001830192506121bd565b506040870151868203601f1901606088015280518083529085019350908401915084905b808210156120d357835163ffffffff16835292840192918401916001919091019061220c565b85815260606020808301829052908201859052600090869060808401835b88811015612280578335612263816125c3565b6001600160a01b0316825292820192602090910190600101612250565b5084810360408601528581528101915085835b868110156122bc5763ffffffff6122a983611bdd565b1684529282019290820190600101612293565b50919998505050505050505050565b60006060820185835260206060818501528186518084526080860191508288019350845b818110156123165784516001600160a01b03168352602083019484019492506001016122ef565b505084810360408601528551808252908201925081860190845b8181101561235257825163ffffffff1685529383019391830191600101612330565b509298975050505050505050565b60006101208201905083825260018060a01b038084511660208401528060208501511660408401528060408501511660608401525060608301516080830152608083015160a083015260a083015160c083015260c083015160e083015260e0830151610ba36101008401826001600160a01b03169052565b82815260e08101610dd2602083018480516001600160a01b0390811683526020808301519084015260408083015190840152606080830151908401526080808301519084015260a09182015116910152565b6040516060810167ffffffffffffffff8111828210171561244d5761244d6125ad565b60405290565b6040516020810167ffffffffffffffff8111828210171561244d5761244d6125ad565b604051601f8201601f1916810167ffffffffffffffff8111828210171561249f5761249f6125ad565b604052919050565b600067ffffffffffffffff8211156124c1576124c16125ad565b5060051b60200190565b600082198211156124de576124de612597565b500190565b6000826124fe57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561251d5761251d612597565b500290565b60008282101561253457612534612597565b500390565b60005b8381101561255457818101518382015260200161253c565b8381111561104d5750506000910152565b60008161257457612574612597565b506000190190565b600060001982141561259057612590612597565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108cf57600080fdfe126303c860ea810f85e857ad8768056e2eebc24b7796655ff3107e4af18e3f1ece7acaec76157f4ab170d5942fe00a5c7b7d3c7b0f5c45f2bda3a5f7012cb7c7a2646970667358221220ebd590006429e76b9bac4afbeb5079da61c7d5f4f655a60e73787a12dfd192a064736f6c63430008040033126303c860ea810f85e857ad8768056e2eebc24b7796655ff3107e4af18e3f1ece7acaec76157f4ab170d5942fe00a5c7b7d3c7b0f5c45f2bda3a5f7012cb7c70000000000000000000000000fa1a6b68be5dd9132a09286a166d75480be916500000000000000000000000043a98e5c4a7f3b7f11080fc9d58b0b8a80ca954e00000000000000000000000000000000000000000000000000000000000000040000000000000000000000008a73fda882601c4b84b0c52d7d85e4ba46357ca1000000000000000000000000685723b9dc89bdf28ba5f98f9a8c0ac899bd6e77000000000000000000000000c31249ba48763df46388ba5c4e7565d62ed4801c00000000000000000000000000000000000000000000000000000000001665e3000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000071afd498d0000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000008ef00583baa186094d9a34a0a4750c1d1bb86831000000000000000000000000c31249ba48763df46388ba5c4e7565d62ed4801c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032
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.