Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 30 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer LP | 16654541 | 692 days ago | IN | 0 ETH | 0.01110266 | ||||
Transfer LP | 16650943 | 693 days ago | IN | 0 ETH | 0.02356302 | ||||
Transfer LP | 16471840 | 718 days ago | IN | 0 ETH | 0.0108945 | ||||
Transfer LP | 16471479 | 718 days ago | IN | 0 ETH | 0.0180623 | ||||
Transfer LP | 16072829 | 774 days ago | IN | 0 ETH | 0.00682259 | ||||
Transfer LP | 15939069 | 792 days ago | IN | 0 ETH | 0.01074549 | ||||
Transfer LP | 15934623 | 793 days ago | IN | 0 ETH | 0.03349957 | ||||
Transfer LP | 15934063 | 793 days ago | IN | 0 ETH | 0.02391612 | ||||
Transfer LP | 15920372 | 795 days ago | IN | 0 ETH | 0.01057318 | ||||
Transfer LP | 15919931 | 795 days ago | IN | 0 ETH | 0.00959842 | ||||
Transfer LP | 15919854 | 795 days ago | IN | 0 ETH | 0.01062205 | ||||
Transfer LP | 15911454 | 796 days ago | IN | 0 ETH | 0.00739273 | ||||
Transfer LP | 15880857 | 800 days ago | IN | 0 ETH | 0.00497997 | ||||
Transfer LP | 15867632 | 802 days ago | IN | 0 ETH | 0.03506747 | ||||
Transfer LP | 15825597 | 808 days ago | IN | 0 ETH | 0.02280431 | ||||
Transfer LP | 15737916 | 820 days ago | IN | 0 ETH | 0.0056923 | ||||
Transfer LP | 15683551 | 828 days ago | IN | 0 ETH | 0.01072743 | ||||
Transfer LP | 15653973 | 832 days ago | IN | 0 ETH | 0.00561152 | ||||
Transfer LP | 15653952 | 832 days ago | IN | 0 ETH | 0.00569036 | ||||
Transfer LP | 15649285 | 833 days ago | IN | 0 ETH | 0.00504928 | ||||
Transfer LP | 15531532 | 850 days ago | IN | 0 ETH | 0.00377743 | ||||
Transfer LP | 15518611 | 852 days ago | IN | 0 ETH | 0.00413428 | ||||
Transfer LP | 15505822 | 854 days ago | IN | 0 ETH | 0.0067012 | ||||
Transfer LP | 15494252 | 856 days ago | IN | 0 ETH | 0.00711122 | ||||
Transfer LP | 15493323 | 856 days ago | IN | 0 ETH | 0.00412302 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16654541 | 692 days ago | 0.93194843 ETH | ||||
16654541 | 692 days ago | 0.93194843 ETH | ||||
16650943 | 693 days ago | 0.93228534 ETH | ||||
16650943 | 693 days ago | 0.93228534 ETH | ||||
16471840 | 718 days ago | 0.93088066 ETH | ||||
16471840 | 718 days ago | 0.93088066 ETH | ||||
16471479 | 718 days ago | 0.93215622 ETH | ||||
16471479 | 718 days ago | 0.93215622 ETH | ||||
16072829 | 774 days ago | 0.92889986 ETH | ||||
16072829 | 774 days ago | 0.92889986 ETH | ||||
15939069 | 792 days ago | 0.93192044 ETH | ||||
15939069 | 792 days ago | 0.93192044 ETH | ||||
15934623 | 793 days ago | 0.93192044 ETH | ||||
15934623 | 793 days ago | 0.93192044 ETH | ||||
15934063 | 793 days ago | 0.93141702 ETH | ||||
15934063 | 793 days ago | 0.93141702 ETH | ||||
15920372 | 795 days ago | 0.1120813 ETH | ||||
15920372 | 795 days ago | 0.1120813 ETH | ||||
15919931 | 795 days ago | 0.46616336 ETH | ||||
15919931 | 795 days ago | 0.46616336 ETH | ||||
15919854 | 795 days ago | 0.55938303 ETH | ||||
15919854 | 795 days ago | 0.55938303 ETH | ||||
15911454 | 796 days ago | 0.08005438 ETH | ||||
15911454 | 796 days ago | 0.08005438 ETH | ||||
15880857 | 800 days ago | 0.93131017 ETH |
Loading...
Loading
Contract Name:
MainnetLPTransferFromOldClipper
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: Copyright 2022 Shipyard Software, Inc. pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./ClipperCommonExchange.sol"; import "./interfaces/WrapperContractInterface.sol"; contract MainnetLPTransferFromOldClipper { address payable public immutable OLD_EXCHANGE_INTERFACE; address payable public immutable OLD_POOL; address payable public immutable NEW_EXCHANGE; address payable public immutable WRAPPER_CONTRACT; uint256 private constant ONE_IN_TEN_DECIMALS = 1e10; using SafeERC20 for IERC20; event LPTransferred( address indexed depositor, uint256 oldPoolTokens, uint256 newPoolTokens ); constructor(address _oldExchangeInterface, address _oldPool, address payable _newExchange) { OLD_EXCHANGE_INTERFACE = payable(_oldExchangeInterface); OLD_POOL = payable(_oldPool); NEW_EXCHANGE = _newExchange; WRAPPER_CONTRACT = payable(ClipperCommonExchange(_newExchange).WRAPPER_CONTRACT()); } // Allows the receipt of ETH directly from burn receive() external payable { } function safeEthSend(address recipient, uint256 howMuch) internal { (bool success, ) = payable(recipient).call{value: howMuch}(""); require(success, "Call with value failed"); } function verifyETHBalanceFromBurn(uint256 allegedDeposit, uint256 myFraction) internal view { // check that fraction of ETH balance aligns with allegedDeposit uint256 correspondingTokens = (myFraction*OLD_POOL.balance)/ONE_IN_TEN_DECIMALS; require(allegedDeposit <= correspondingTokens, "Deposit unsupported by old pool balance"); } function verifyBalanceFromBurn(address theAsset, uint256 allegedDeposit, uint256 myFraction) internal view { // check that fraction of poolTokens aligns with token holdings uint256 correspondingTokens = (myFraction*IERC20(theAsset).balanceOf(OLD_POOL))/ONE_IN_TEN_DECIMALS; require(allegedDeposit <= correspondingTokens, "Deposit unsupported by old pool assets"); } // Transfers LP from old to new pool contracts. // This contract should be whitelisted for zero-day deposits with reasonable limit // No sender -> must be this contract // No nDays -> must be 0 function transferLP(uint256[] calldata depositAmounts, uint256 poolTokens, uint256 goodUntil, ClipperCommonExchange.Signature calldata theSignature) external { uint256 oldLPBalance = IERC20(OLD_POOL).balanceOf(msg.sender); // Make sure we'll get enough tokens from burning this LP's pool tokens to make the deposit uint256 i; uint256 newNTokens = ClipperCommonExchange(NEW_EXCHANGE).nTokens(); uint256 myFraction = (oldLPBalance*ONE_IN_TEN_DECIMALS)/IERC20(OLD_POOL).totalSupply(); for(i=0; i < newNTokens; i++){ address _theToken = ClipperCommonExchange(NEW_EXCHANGE).tokenAt(i); if(ClipperCommonExchange(OLD_POOL).isToken(_theToken)){ verifyBalanceFromBurn(_theToken, depositAmounts[i], myFraction); } else if(_theToken == WRAPPER_CONTRACT){ verifyETHBalanceFromBurn(depositAmounts[i], myFraction); } else { require(depositAmounts[i]==0, "Invalid deposit"); } } IERC20(OLD_POOL).safeTransferFrom(msg.sender, address(this), oldLPBalance); // Call signature here is exactly the same as WETH WrapperContractInterface(OLD_EXCHANGE_INTERFACE).withdraw(oldLPBalance); // Go through all the tokens of the old pool and transfer to the new exchange if they're supported there // If not, just send them back to the depositor uint256 oldNTokens = ClipperCommonExchange(OLD_POOL).nTokens(); for(i=0; i < oldNTokens; i++){ address _theToken = ClipperCommonExchange(OLD_POOL).tokenAt(i); uint256 _theBalance = IERC20(_theToken).balanceOf(address(this)); address _destination; if(ClipperCommonExchange(NEW_EXCHANGE).isToken(_theToken)){ _destination = NEW_EXCHANGE; } else { _destination = msg.sender; } IERC20(_theToken).safeTransfer(_destination, _theBalance); } // We got raw ETH back from the burn. Wrap and send that, too. uint256 _myEthBalance = address(this).balance; safeEthSend(WRAPPER_CONTRACT, _myEthBalance); IERC20(WRAPPER_CONTRACT).safeTransfer(NEW_EXCHANGE, _myEthBalance); // Make the deposit and send back the tokens to the user ClipperCommonExchange(NEW_EXCHANGE).deposit(address(this), depositAmounts, 0, poolTokens, goodUntil, theSignature); IERC20(NEW_EXCHANGE).safeTransfer(msg.sender, poolTokens); emit LPTransferred(msg.sender, oldLPBalance, poolTokens); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.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' 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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
//SPDX-License-Identifier: Copyright 2021 Shipyard Software, Inc. pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./interfaces/WrapperContractInterface.sol"; abstract contract ClipperCommonExchange is ERC20, ReentrancyGuard { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; struct Signature { uint8 v; bytes32 r; bytes32 s; } struct Deposit { uint lockedUntil; uint256 poolTokenAmount; } uint256 constant ONE_IN_TEN_DECIMALS = 1e10; // Allow for inputs up to 0.5% more than quoted values to have scaled output. // Inputs higher than this value just get 0.5% more. uint256 constant MAX_ALLOWED_OVER_TEN_DECIMALS = ONE_IN_TEN_DECIMALS+50*1e6; // Signer is passed in on construction, hence "immutable" address immutable public DESIGNATED_SIGNER; address immutable public WRAPPER_CONTRACT; // Constant values for EIP-712 signing bytes32 immutable DOMAIN_SEPARATOR; string constant VERSION = "1.0.0"; string constant NAME = "ClipperDirect"; address constant CLIPPER_ETH_SIGIL = address(0); bytes32 constant EIP712DOMAIN_TYPEHASH = keccak256( abi.encodePacked("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)") ); bytes32 constant OFFERSTRUCT_TYPEHASH = keccak256( abi.encodePacked("OfferStruct(address input_token,address output_token,uint256 input_amount,uint256 output_amount,uint256 good_until,address destination_address)") ); bytes32 constant DEPOSITSTRUCT_TYPEHASH = keccak256( abi.encodePacked("DepositStruct(address sender,uint256[] deposit_amounts,uint256 days_locked,uint256 pool_tokens,uint256 good_until)") ); bytes32 constant SINGLEDEPOSITSTRUCT_TYPEHASH = keccak256( abi.encodePacked("SingleDepositStruct(address sender,address token,uint256 amount,uint256 days_locked,uint256 pool_tokens,uint256 good_until)") ); bytes32 constant WITHDRAWALSTRUCT_TYPEHASH = keccak256( abi.encodePacked("WithdrawalStruct(address token_holder,uint256 pool_token_amount_to_burn,address asset_address,uint256 asset_amount,uint256 good_until)") ); // Assets // lastBalances: used for "transmit then swap then sync" modality // assetSet is a set of keys that have lastBalances mapping(address => uint256) public lastBalances; EnumerableSet.AddressSet assetSet; // Allows lookup mapping(address => Deposit) public vestingDeposits; // Events event Swapped( address indexed inAsset, address indexed outAsset, address indexed recipient, uint256 inAmount, uint256 outAmount, bytes auxiliaryData ); event Deposited( address indexed depositor, uint256 poolTokens, uint256 nDays ); event Withdrawn( address indexed withdrawer, uint256 poolTokens, uint256 fractionOfPool ); event AssetWithdrawn( address indexed withdrawer, uint256 poolTokens, address indexed assetAddress, uint256 assetAmount ); // Take in the designated signer address and the token list constructor(address theSigner, address theWrapper, address[] memory tokens) ERC20("ClipperDirect Pool Token", "CLPRDRPL") { DESIGNATED_SIGNER = theSigner; uint i; uint n = tokens.length; while(i < n) { assetSet.add(tokens[i]); i++; } DOMAIN_SEPARATOR = createDomainSeparator(NAME, VERSION, address(this)); WRAPPER_CONTRACT = theWrapper; } // Allows the receipt of ETH directly receive() external payable { } function safeEthSend(address recipient, uint256 howMuch) internal { (bool success, ) = payable(recipient).call{value: howMuch}(""); require(success, "Call with value failed"); } /* TOKEN AND ASSET FUNCTIONS */ function nTokens() public view returns (uint) { return assetSet.length(); } function tokenAt(uint i) public view returns (address) { return assetSet.at(i); } function isToken(address token) public view returns (bool) { return assetSet.contains(token); } function _sync(address token) internal virtual; // Can be overridden as in Caravel function getLastBalance(address token) public view virtual returns (uint256) { return lastBalances[token]; } function allTokensBalance() external view returns (uint256[] memory, address[] memory, uint256){ uint n = nTokens(); uint256[] memory balances = new uint256[](n); address[] memory tokens = new address[](n); for (uint i = 0; i < n; i++) { address token = tokenAt(i); balances[i] = getLastBalance(token); tokens[i] = token; } return (balances, tokens, totalSupply()); } // nonReentrant asset transfer function transferAsset(address token, address recipient, uint256 amount) internal nonReentrant { IERC20(token).safeTransfer(recipient, amount); // We never want to transfer an asset without sync'ing _sync(token); } function calculateFairOutput(uint256 statedInput, uint256 actualInput, uint256 statedOutput) internal pure returns (uint256) { if(actualInput == statedInput) { return statedOutput; } else { uint256 theFraction = (ONE_IN_TEN_DECIMALS*actualInput)/statedInput; if(theFraction >= MAX_ALLOWED_OVER_TEN_DECIMALS) { return (MAX_ALLOWED_OVER_TEN_DECIMALS*statedOutput)/ONE_IN_TEN_DECIMALS; } else { return (theFraction*statedOutput)/ONE_IN_TEN_DECIMALS; } } } /* DEPOSIT FUNCTIONALITY */ function canUnlockDeposit(address theAddress) public view returns (bool) { Deposit storage myDeposit = vestingDeposits[theAddress]; return (myDeposit.poolTokenAmount > 0) && (myDeposit.lockedUntil <= block.timestamp); } function unlockDeposit() external returns (uint256 poolTokens) { require(canUnlockDeposit(msg.sender), "ClipperDirect: Deposit cannot be unlocked"); poolTokens = vestingDeposits[msg.sender].poolTokenAmount; delete vestingDeposits[msg.sender]; _transfer(address(this), msg.sender, poolTokens); } function _mintOrVesting(address sender, uint256 nDays, uint256 poolTokens) internal { if(nDays==0){ // No vesting period required - mint tokens directly for the user _mint(sender, poolTokens); } else { // Set up a vesting deposit for the sender _createVestingDeposit(sender, nDays, poolTokens); } } // Mints tokens to this contract to hold for vesting function _createVestingDeposit(address theAddress, uint256 nDays, uint256 numPoolTokens) internal { require(nDays > 0, "ClipperDirect: Cannot create vesting deposit without positive vesting period"); require(vestingDeposits[theAddress].poolTokenAmount==0, "ClipperDirect: Depositor already has an active deposit"); Deposit memory myDeposit = Deposit({ lockedUntil: block.timestamp + (nDays * 1 days), poolTokenAmount: numPoolTokens }); vestingDeposits[theAddress] = myDeposit; _mint(address(this), numPoolTokens); } function transmitAndDeposit(uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) external { uint i=0; uint n = depositAmounts.length; while(i < n){ uint256 transferAmount = depositAmounts[i]; if(transferAmount > 0){ IERC20(tokenAt(i)).safeTransferFrom(msg.sender, address(this), transferAmount); } i++; } deposit(msg.sender, depositAmounts, nDays, poolTokens, goodUntil, theSignature); } function transmitAndDepositSingleAsset(address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) external virtual; function deposit(address sender, uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable virtual; function depositSingleAsset(address sender, address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable virtual; /* WITHDRAWAL FUNCTIONALITY */ function _proportionalWithdrawal(uint256 myFraction) internal { uint256 toTransfer; uint i; uint n = nTokens(); while(i < n) { address theToken = tokenAt(i); toTransfer = (myFraction*getLastBalance(theToken)) / ONE_IN_TEN_DECIMALS; // syncs done automatically on transfer transferAsset(theToken, msg.sender, toTransfer); i++; } } function burnToWithdraw(uint256 amount) external { // Capture the fraction first, before burning uint256 theFractionBaseTen = (ONE_IN_TEN_DECIMALS*amount)/totalSupply(); // Reverts if balance is insufficient _burn(msg.sender, amount); _proportionalWithdrawal(theFractionBaseTen); emit Withdrawn(msg.sender, amount, theFractionBaseTen); } function withdrawSingleAsset(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil, Signature calldata theSignature) external virtual; /* SWAP Functionality: Virtual */ function sellEthForToken(address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external payable virtual; function sellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function transmitAndSellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function transmitAndSwap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function swap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) public virtual; /* SIGNING Functionality */ function createDomainSeparator(string memory name, string memory version, address theSigner) internal view returns (bytes32) { return keccak256(abi.encode( EIP712DOMAIN_TYPEHASH, keccak256(abi.encodePacked(name)), keccak256(abi.encodePacked(version)), uint256(block.chainid), theSigner )); } function hashInputOffer(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress) internal pure returns (bytes32) { return keccak256(abi.encode( OFFERSTRUCT_TYPEHASH, inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress )); } function hashDeposit(address sender, uint256[] calldata depositAmounts, uint256 daysLocked, uint256 poolTokens, uint256 goodUntil) internal pure returns (bytes32) { bytes32 depositAmountsHash = keccak256(abi.encodePacked(depositAmounts)); return keccak256(abi.encode( DEPOSITSTRUCT_TYPEHASH, sender, depositAmountsHash, daysLocked, poolTokens, goodUntil )); } function hashSingleDeposit(address sender, address inputToken, uint256 inputAmount, uint256 daysLocked, uint256 poolTokens, uint256 goodUntil) internal pure returns (bytes32) { return keccak256(abi.encode( SINGLEDEPOSITSTRUCT_TYPEHASH, sender, inputToken, inputAmount, daysLocked, poolTokens, goodUntil )); } function hashWithdrawal(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil) internal pure returns (bytes32) { return keccak256(abi.encode( WITHDRAWALSTRUCT_TYPEHASH, tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount, goodUntil )); } function createSwapDigest(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress) internal view returns (bytes32 digest){ bytes32 hashedInput = hashInputOffer(inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress); digest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createDepositDigest(address sender, uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil) internal view returns (bytes32 depositDigest){ bytes32 hashedInput = hashDeposit(sender, depositAmounts, nDays, poolTokens, goodUntil); depositDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createSingleDepositDigest(address sender, address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil) internal view returns (bytes32 depositDigest){ bytes32 hashedInput = hashSingleDeposit(sender, inputToken, inputAmount, nDays, poolTokens, goodUntil); depositDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createWithdrawalDigest(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil) internal view returns (bytes32 withdrawalDigest){ bytes32 hashedInput = hashWithdrawal(tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount, goodUntil); withdrawalDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function verifyDigestSignature(bytes32 theDigest, Signature calldata theSignature) internal view { address signingAddress = ecrecover(theDigest, theSignature.v, theSignature.r, theSignature.s); require(signingAddress==DESIGNATED_SIGNER, "Message signed by incorrect address"); } }
//SPDX-License-Identifier: Copyright 2021 Shipyard Software, Inc. pragma solidity ^0.8.0; interface WrapperContractInterface { function withdraw(uint256 amount) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being 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. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @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 work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol) 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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ 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; if (lastIndex != toDeleteIndex) { 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_oldExchangeInterface","type":"address"},{"internalType":"address","name":"_oldPool","type":"address"},{"internalType":"address payable","name":"_newExchange","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldPoolTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPoolTokens","type":"uint256"}],"name":"LPTransferred","type":"event"},{"inputs":[],"name":"NEW_EXCHANGE","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OLD_EXCHANGE_INTERFACE","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OLD_POOL","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WRAPPER_CONTRACT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"depositAmounts","type":"uint256[]"},{"internalType":"uint256","name":"poolTokens","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"transferLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040523480156200001257600080fd5b50604051620014e6380380620014e6833981016040819052620000359162000113565b6001600160601b0319606084811b821660805283811b821660a05282901b1660c05260408051635aecdda560e01b815290516001600160a01b03831691635aecdda5916004808301926020929190829003018186803b1580156200009857600080fd5b505afa158015620000ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d39190620000ed565b60601b6001600160601b03191660e052506200017f915050565b600060208284031215620000ff578081fd5b81516200010c8162000166565b9392505050565b60008060006060848603121562000128578182fd5b8351620001358162000166565b6020850151909350620001488162000166565b60408501519092506200015b8162000166565b809150509250925092565b6001600160a01b03811681146200017c57600080fd5b50565b60805160601c60a05160601c60c05160601c60e05160601c61129f620002476000396000818160bc015281816104cb0152818161091a015261094c015260008181610124015281816102090152818161036e01528181610841015281816108c30152818161096e015281816109950152610a2b01526000818160f0015281816101800152818161029e01528181610412015281816105c0015281816106660152818161071d01528181610ab30152610bcf015260008181606c01526105fe015261129f6000f3fe60806040526004361061004e5760003560e01c80631239cc211461005a5780635aecdda5146100aa5780636a41eac0146100de578063b85c707d14610112578063d76986db1461014657600080fd5b3661005557005b600080fd5b34801561006657600080fd5b5061008e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b657600080fd5b5061008e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156100ea57600080fd5b5061008e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561011e57600080fd5b5061008e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561015257600080fd5b5061016661016136600461101a565b610168565b005b6040516370a0823160e01b81523360048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b1580156101ca57600080fd5b505afa1580156101de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020291906110d6565b90506000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631b6a87596040518163ffffffff1660e01b815260040160206040518083038186803b15801561026057600080fd5b505afa158015610274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029891906110d6565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156102f557600080fd5b505afa158015610309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032d91906110d6565b61033c6402540be400866111ed565b61034691906111cd565b9050600092505b818310156105b3576040516349548d1d60e11b8152600481018490526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906392a91a3a9060240160206040518083038186803b1580156103b857600080fd5b505afa1580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610ff3565b6040516319f3736160e01b81526001600160a01b0380831660048301529192507f0000000000000000000000000000000000000000000000000000000000000000909116906319f373619060240160206040518083038186803b15801561045657600080fd5b505afa15801561046a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048e91906110b6565b156104c9576104c4818b8b878181106104b757634e487b7160e01b600052603260045260246000fd5b9050602002013584610a9c565b6105a0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415610533576104c48a8a8681811061052657634e487b7160e01b600052603260045260246000fd5b9050602002013583610bba565b89898581811061055357634e487b7160e01b600052603260045260246000fd5b905060200201356000146105a05760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590819195c1bdcda5d608a1b60448201526064015b60405180910390fd5b50826105ab81611238565b93505061034d565b6105e86001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333087610c67565b604051632e1a7d4d60e01b8152600481018590527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561064a57600080fd5b505af115801561065e573d6000803e3d6000fd5b5050505060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631b6a87596040518163ffffffff1660e01b815260040160206040518083038186803b1580156106bd57600080fd5b505afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f591906110d6565b9050600093505b80841015610914576040516349548d1d60e11b8152600481018590526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906392a91a3a9060240160206040518083038186803b15801561076757600080fd5b505afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f9190610ff3565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a082319060240160206040518083038186803b1580156107e457600080fd5b505afa1580156107f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c91906110d6565b6040516319f3736160e01b81526001600160a01b0384811660048301529192506000917f000000000000000000000000000000000000000000000000000000000000000016906319f373619060240160206040518083038186803b15801561088357600080fd5b505afa158015610897573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bb91906110b6565b156108e757507f00000000000000000000000000000000000000000000000000000000000000006108ea565b50335b6108fe6001600160a01b0384168284610cd2565b505050838061090c90611238565b9450506106fc565b4761093f7f000000000000000000000000000000000000000000000000000000000000000082610d02565b6109936001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083610cd2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635250d730308d8d60008e8e8e6040518863ffffffff1660e01b81526004016109ec979695949392919061110a565b600060405180830381600087803b158015610a0657600080fd5b505af1158015610a1a573d6000803e3d6000fd5b50610a549250506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169050338b610cd2565b60408051878152602081018b905233917fa21882aba5d98415008fc5b5faea5b008828b34f9f5d1819dd3948ee5e7cabf7910160405180910390a25050505050505050505050565b6040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000916402540be400918616906370a082319060240160206040518083038186803b158015610b0757600080fd5b505afa158015610b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3f91906110d6565b610b4990846111ed565b610b5391906111cd565b905080831115610bb45760405162461bcd60e51b815260206004820152602660248201527f4465706f73697420756e737570706f72746564206279206f6c6420706f6f6c2060448201526561737365747360d01b6064820152608401610597565b50505050565b60006402540be400610bf66001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001631846111ed565b610c0091906111cd565b905080831115610c625760405162461bcd60e51b815260206004820152602760248201527f4465706f73697420756e737570706f72746564206279206f6c6420706f6f6c2060448201526662616c616e636560c81b6064820152608401610597565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610bb49085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610d9e565b6040516001600160a01b038316602482015260448101829052610c6290849063a9059cbb60e01b90606401610c9b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b5050905080610c625760405162461bcd60e51b815260206004820152601660248201527510d85b1b081dda5d1a081d985b1d594819985a5b195960521b6044820152606401610597565b6000610df3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e709092919063ffffffff16565b805190915015610c625780806020019051810190610e1191906110b6565b610c625760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610597565b6060610e7f8484600085610e89565b90505b9392505050565b606082471015610eea5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610597565b6001600160a01b0385163b610f415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610597565b600080866001600160a01b03168587604051610f5d91906110ee565b60006040518083038185875af1925050503d8060008114610f9a576040519150601f19603f3d011682016040523d82523d6000602084013e610f9f565b606091505b5091509150610faf828286610fba565b979650505050505050565b60608315610fc9575081610e82565b825115610fd95782518084602001fd5b8160405162461bcd60e51b8152600401610597919061119a565b600060208284031215611004578081fd5b81516001600160a01b0381168114610e82578182fd5b600080600080600085870360c0811215611032578182fd5b863567ffffffffffffffff80821115611049578384fd5b818901915089601f83011261105c578384fd5b81358181111561106a578485fd5b8a60208260051b850101111561107e578485fd5b602092830198509650508701359350604087013592506060605f19820112156110a5578182fd5b506060860190509295509295909350565b6000602082840312156110c7578081fd5b81518015158114610e82578182fd5b6000602082840312156110e7578081fd5b5051919050565b6000825161110081846020870161120c565b9190910192915050565b6001600160a01b038816815261010060208201819052810186905260006101206001600160fb1b0388111561113d578182fd5b8760051b808a83860137830101908152604082018690526060820185905260808201849052823560ff811680821461117457600080fd5b60a084015250602083013560c083015260409092013560e0909101529695505050505050565b60208152600082518060208401526111b981604085016020870161120c565b601f01601f19169190910160400192915050565b6000826111e857634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561120757611207611253565b500290565b60005b8381101561122757818101518382015260200161120f565b83811115610bb45750506000910152565b600060001982141561124c5761124c611253565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203e6e0ca50b2e310d58869b23a2651ab23a8be19b6b6e6d7c30af4a5df5db0d5e64736f6c634300080400330000000000000000000000002e9c6dcdca22a5952a88c4b18edb5b54c5155bc9000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d9000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c
Deployed Bytecode
0x60806040526004361061004e5760003560e01c80631239cc211461005a5780635aecdda5146100aa5780636a41eac0146100de578063b85c707d14610112578063d76986db1461014657600080fd5b3661005557005b600080fd5b34801561006657600080fd5b5061008e7f0000000000000000000000002e9c6dcdca22a5952a88c4b18edb5b54c5155bc981565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b657600080fd5b5061008e7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156100ea57600080fd5b5061008e7f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d981565b34801561011e57600080fd5b5061008e7f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c81565b34801561015257600080fd5b5061016661016136600461101a565b610168565b005b6040516370a0823160e01b81523360048201526000907f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d96001600160a01b0316906370a082319060240160206040518083038186803b1580156101ca57600080fd5b505afa1580156101de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020291906110d6565b90506000807f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c6001600160a01b0316631b6a87596040518163ffffffff1660e01b815260040160206040518083038186803b15801561026057600080fd5b505afa158015610274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029891906110d6565b905060007f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d96001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156102f557600080fd5b505afa158015610309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032d91906110d6565b61033c6402540be400866111ed565b61034691906111cd565b9050600092505b818310156105b3576040516349548d1d60e11b8152600481018490526000907f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c6001600160a01b0316906392a91a3a9060240160206040518083038186803b1580156103b857600080fd5b505afa1580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610ff3565b6040516319f3736160e01b81526001600160a01b0380831660048301529192507f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d9909116906319f373619060240160206040518083038186803b15801561045657600080fd5b505afa15801561046a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048e91906110b6565b156104c9576104c4818b8b878181106104b757634e487b7160e01b600052603260045260246000fd5b9050602002013584610a9c565b6105a0565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316816001600160a01b03161415610533576104c48a8a8681811061052657634e487b7160e01b600052603260045260246000fd5b9050602002013583610bba565b89898581811061055357634e487b7160e01b600052603260045260246000fd5b905060200201356000146105a05760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590819195c1bdcda5d608a1b60448201526064015b60405180910390fd5b50826105ab81611238565b93505061034d565b6105e86001600160a01b037f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d916333087610c67565b604051632e1a7d4d60e01b8152600481018590527f0000000000000000000000002e9c6dcdca22a5952a88c4b18edb5b54c5155bc96001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561064a57600080fd5b505af115801561065e573d6000803e3d6000fd5b5050505060007f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d96001600160a01b0316631b6a87596040518163ffffffff1660e01b815260040160206040518083038186803b1580156106bd57600080fd5b505afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f591906110d6565b9050600093505b80841015610914576040516349548d1d60e11b8152600481018590526000907f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d96001600160a01b0316906392a91a3a9060240160206040518083038186803b15801561076757600080fd5b505afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f9190610ff3565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a082319060240160206040518083038186803b1580156107e457600080fd5b505afa1580156107f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c91906110d6565b6040516319f3736160e01b81526001600160a01b0384811660048301529192506000917f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c16906319f373619060240160206040518083038186803b15801561088357600080fd5b505afa158015610897573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bb91906110b6565b156108e757507f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c6108ea565b50335b6108fe6001600160a01b0384168284610cd2565b505050838061090c90611238565b9450506106fc565b4761093f7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc282610d02565b6109936001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2167f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c83610cd2565b7f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c6001600160a01b0316635250d730308d8d60008e8e8e6040518863ffffffff1660e01b81526004016109ec979695949392919061110a565b600060405180830381600087803b158015610a0657600080fd5b505af1158015610a1a573d6000803e3d6000fd5b50610a549250506001600160a01b037f000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c169050338b610cd2565b60408051878152602081018b905233917fa21882aba5d98415008fc5b5faea5b008828b34f9f5d1819dd3948ee5e7cabf7910160405180910390a25050505050505050505050565b6040516370a0823160e01b81526001600160a01b037f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d9811660048301526000916402540be400918616906370a082319060240160206040518083038186803b158015610b0757600080fd5b505afa158015610b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3f91906110d6565b610b4990846111ed565b610b5391906111cd565b905080831115610bb45760405162461bcd60e51b815260206004820152602660248201527f4465706f73697420756e737570706f72746564206279206f6c6420706f6f6c2060448201526561737365747360d01b6064820152608401610597565b50505050565b60006402540be400610bf66001600160a01b037f000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d91631846111ed565b610c0091906111cd565b905080831115610c625760405162461bcd60e51b815260206004820152602760248201527f4465706f73697420756e737570706f72746564206279206f6c6420706f6f6c2060448201526662616c616e636560c81b6064820152608401610597565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610bb49085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610d9e565b6040516001600160a01b038316602482015260448101829052610c6290849063a9059cbb60e01b90606401610c9b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b5050905080610c625760405162461bcd60e51b815260206004820152601660248201527510d85b1b081dda5d1a081d985b1d594819985a5b195960521b6044820152606401610597565b6000610df3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e709092919063ffffffff16565b805190915015610c625780806020019051810190610e1191906110b6565b610c625760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610597565b6060610e7f8484600085610e89565b90505b9392505050565b606082471015610eea5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610597565b6001600160a01b0385163b610f415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610597565b600080866001600160a01b03168587604051610f5d91906110ee565b60006040518083038185875af1925050503d8060008114610f9a576040519150601f19603f3d011682016040523d82523d6000602084013e610f9f565b606091505b5091509150610faf828286610fba565b979650505050505050565b60608315610fc9575081610e82565b825115610fd95782518084602001fd5b8160405162461bcd60e51b8152600401610597919061119a565b600060208284031215611004578081fd5b81516001600160a01b0381168114610e82578182fd5b600080600080600085870360c0811215611032578182fd5b863567ffffffffffffffff80821115611049578384fd5b818901915089601f83011261105c578384fd5b81358181111561106a578485fd5b8a60208260051b850101111561107e578485fd5b602092830198509650508701359350604087013592506060605f19820112156110a5578182fd5b506060860190509295509295909350565b6000602082840312156110c7578081fd5b81518015158114610e82578182fd5b6000602082840312156110e7578081fd5b5051919050565b6000825161110081846020870161120c565b9190910192915050565b6001600160a01b038816815261010060208201819052810186905260006101206001600160fb1b0388111561113d578182fd5b8760051b808a83860137830101908152604082018690526060820185905260808201849052823560ff811680821461117457600080fd5b60a084015250602083013560c083015260409092013560e0909101529695505050505050565b60208152600082518060208401526111b981604085016020870161120c565b601f01601f19169190910160400192915050565b6000826111e857634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561120757611207611253565b500290565b60005b8381101561122757818101518382015260200161120f565b83811115610bb45750506000910152565b600060001982141561124c5761124c611253565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203e6e0ca50b2e310d58869b23a2651ab23a8be19b6b6e6d7c30af4a5df5db0d5e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002e9c6dcdca22a5952a88c4b18edb5b54c5155bc9000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d9000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c
-----Decoded View---------------
Arg [0] : _oldExchangeInterface (address): 0x2e9c6Dcdca22A5952A88C4b18EDB5B54C5155BC9
Arg [1] : _oldPool (address): 0xe82906b6B1B04f631D126c974Af57a3A7B6a99d9
Arg [2] : _newExchange (address): 0xE7b0CE0526fbE3969035a145C9e9691d4d9D216c
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002e9c6dcdca22a5952a88c4b18edb5b54c5155bc9
Arg [1] : 000000000000000000000000e82906b6b1b04f631d126c974af57a3a7b6a99d9
Arg [2] : 000000000000000000000000e7b0ce0526fbe3969035a145c9e9691d4d9d216c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.