Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- ExponentialCurve
- Optimization enabled
- true
- Compiler version
- v0.8.13+commit.abaa5c0e
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2024-01-31T11:35:24.775298Z
contracts/v2/bonding-curves/ExponentialCurve.sol
// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import {ICurve} from "./ICurve.sol";import {CurveErrorCodes} from "./CurveErrorCodes.sol";import {FixedPointMathLib} from "@rari-capital/solmate/src/utils/FixedPointMathLib.sol";/*@author 0xmons and boredGenius@notice Bonding curve logic for an exponential curve, where each buy/sell changes spot price by multiplying/dividing delta*/contract ExponentialCurve is ICurve, CurveErrorCodes {using FixedPointMathLib for uint256;// minimum price to prevent numerical issuesuint256 public constant MIN_PRICE = 1 gwei;/**@dev See {ICurve-validateDelta}*/function validateDelta(uint128 delta)externalpureoverridereturns (bool){return delta > FixedPointMathLib.WAD;}/**@dev See {ICurve-validateSpotPrice}*/function validateSpotPrice(uint128 newSpotPrice)externalpureoverridereturns (bool){return newSpotPrice >= MIN_PRICE;}
contracts/v2/bonding-curves/CurveErrorCodes.sol
// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;contract CurveErrorCodes {enum Error {OK, // No errorINVALID_NUMITEMS, // The numItem value is 0SPOT_PRICE_OVERFLOW // The updated spot price doesn't fit into 128 bits}/*** @return totalProtocolFeeMultiplier totalProtocol fee multiplier* @return totalProtocolFeeAmount total protocol fee amount* @return protocolFeeAmount protocol fee amount* @return protocolFeeReceiver protocol fee receiver*/struct ProtocolFeeStruct {uint totalProtocolFeeMultiplier;uint totalProtocolFeeAmount;uint[] protocolFeeAmount;address[] protocolFeeReceiver;}}
contracts/v2/bonding-curves/ICurve.sol
// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import {CurveErrorCodes} from "./CurveErrorCodes.sol";interface ICurve {/**@notice Validates if a delta value is valid for the curve. The criteria forvalidity can be different for each type of curve, for instance ExponentialCurverequires delta to be greater than 1.@param delta The delta value to be validated@return valid True if delta is valid, false otherwise*/function validateDelta(uint128 delta) external pure returns (bool valid);/**@notice Validates if a new spot price is valid for the curve. Spot price is generally assumed to be the immediate sell price of 1 NFT to the pool, in units of the pool's paired token.@param newSpotPrice The new spot price to be set@return valid True if the new spot price is valid, false otherwise*/function validateSpotPrice(uint128 newSpotPrice)externalviewreturns (bool valid);/**@notice Given the current state of the pair and the trade, computes how much the usershould pay to purchase an NFT from the pair, the new spot price, and other values.@param spotPrice The current selling spot price of the pair, in tokens@param delta The delta parameter of the pair, what it means depends on the curve@param numItems The number of NFTs the user is buying from the pair@param feeMultiplier Determines how much fee the LP takes from this trade, 18 decimals@param protocolFeeMultipliers protocol fee multipliers@return error Any math calculation errors, only Error.OK means the returned values are valid@return newSpotPrice The updated selling spot price, in tokens@return newDelta The updated delta, used to parameterize the bonding curve@return inputValue The amount that the user should pay, in tokens@return protocolFeeStruct protocol fee struct*/function getBuyInfo(
@rari-capital/solmate/src/utils/FixedPointMathLib.sol
// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Arithmetic library with operations for fixed-point numbers./// @author Modified from Dappsys V2 (https://github.com/dapp-org/dappsys-v2/blob/main/src/math.sol)/// and ABDK (https://github.com/abdk-consulting/abdk-libraries-solidity/blob/master/ABDKMath64x64.sol)library FixedPointMathLib {/*///////////////////////////////////////////////////////////////COMMON BASE UNITS//////////////////////////////////////////////////////////////*/uint256 internal constant YAD = 1e8;uint256 internal constant WAD = 1e18;uint256 internal constant RAY = 1e27;uint256 internal constant RAD = 1e45;/*///////////////////////////////////////////////////////////////FIXED POINT OPERATIONS//////////////////////////////////////////////////////////////*/function fmul(uint256 x,uint256 y,uint256 baseUnit) internal pure returns (uint256 z) {assembly {// Store x * y in z for now.z := mul(x, y)// Equivalent to require(x == 0 || (x * y) / x == y)if iszero(or(iszero(x), eq(div(z, x), y))) {revert(0, 0)}// If baseUnit is zero this will return zero instead of reverting.z := div(z, baseUnit)}}function fdiv(uint256 x,
Compiler Settings
{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true,"details":{"yul":false}},"libraries":{}}
Contract ABI
[{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MIN_PRICE","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint8","name":"error","internalType":"enum CurveErrorCodes.Error"},{"type":"uint128","name":"newSpotPrice","internalType":"uint128"},{"type":"uint128","name":"newDelta","internalType":"uint128"},{"type":"uint256","name":"inputValue","internalType":"uint256"},{"type":"tuple","name":"protocolFeeStruct","internalType":"struct CurveErrorCodes.ProtocolFeeStruct","components":[{"type":"uint256","name":"totalProtocolFeeMultiplier","internalType":"uint256"},{"type":"uint256","name":"totalProtocolFeeAmount","internalType":"uint256"},{"type":"uint256[]","name":"protocolFeeAmount","internalType":"uint256[]"},{"type":"address[]","name":"protocolFeeReceiver","internalType":"address[]"}]}],"name":"getBuyInfo","inputs":[{"type":"uint128","name":"spotPrice","internalType":"uint128"},{"type":"uint128","name":"delta","internalType":"uint128"},{"type":"uint256","name":"numItems","internalType":"uint256"},{"type":"uint256","name":"feeMultiplier","internalType":"uint256"},{"type":"uint256[]","name":"protocolFeeMultipliers","internalType":"uint256[]"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint8","name":"error","internalType":"enum CurveErrorCodes.Error"},{"type":"uint128","name":"newSpotPrice","internalType":"uint128"},{"type":"uint128","name":"newDelta","internalType":"uint128"},{"type":"uint256","name":"outputValue","internalType":"uint256"},{"type":"tuple","name":"protocolFeeStruct","internalType":"struct CurveErrorCodes.ProtocolFeeStruct","components":[{"type":"uint256","name":"totalProtocolFeeMultiplier","internalType":"uint256"},{"type":"uint256","name":"totalProtocolFeeAmount","internalType":"uint256"},{"type":"uint256[]","name":"protocolFeeAmount","internalType":"uint256[]"},{"type":"address[]","name":"protocolFeeReceiver","internalType":"address[]"}]}],"name":"getSellInfo","inputs":[{"type":"uint128","name":"spotPrice","internalType":"uint128"},{"type":"uint128","name":"delta","internalType":"uint128"},{"type":"uint256","name":"numItems","internalType":"uint256"},{"type":"uint256","name":"feeMultiplier","internalType":"uint256"},{"type":"uint256[]","name":"protocolFeeMultipliers","internalType":"uint256[]"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validateDelta","inputs":[{"type":"uint128","name":"delta","internalType":"uint128"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validateSpotPrice","inputs":[{"type":"uint128","name":"newSpotPrice","internalType":"uint128"}]}]
Contract Creation Code
0x608060405234801561001057600080fd5b50610cc1806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80630ae67ccc1461005c5780636d2b053114610098578063745cb444146100bc578063a1bbb2e8146100cf578063ad9f20a6146100f2575b600080fd5b61008261006a366004610868565b670de0b6b3a76400006001600160801b039091161190565b60405161008f919061089b565b60405180910390f35b6100ab6100a63660046109c1565b61010a565b60405161008f959493929190610bd0565b6100ab6100ca3660046109c1565b61040a565b6100826100dd366004610868565b633b9aca006001600160801b03909116101590565b6100fd633b9aca0081565b60405161008f9190610c22565b60008060008061013b6040518060800160405280600081526020016000815260200160608152602001606081525090565b876000036101ea576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561017d5761017d6108ba565b6040519080825280602002602001820160405280156101a6578160200160208202803683370190505b50815260200160006040519080825280602002602001820160405280156101d7578160200160208202803683370190505b50815250945094509450945094506103fd565b6000610208670de0b6b3a76400006001600160801b038c1681610741565b9050600061021f828b670de0b6b3a7640000610764565b905061023d6001600160801b038d1682670de0b6b3a7640000610823565b9550633b9aca00866001600160801b0316101561025c57633b9aca0095505b6102a761028e61027484670de0b6b3a7640000610c46565b670de0b6b3a76400006102878582610c46565b9190610741565b6001600160801b038e1690670de0b6b3a7640000610823565b9350875167ffffffffffffffff8111156102c3576102c36108ba565b6040519080825280602002602001820160405280156102ec578160200160208202803683370190505b50604084015260005b88518110156103c15788818151811061031057610310610c5d565b6020026020010151846000018181516103299190610c73565b9052508851610365908a908390811061034457610344610c5d565b6020026020010151670de0b6b3a7640000876108239092919063ffffffff16565b8460400151828151811061037b5761037b610c5d565b6020026020010181815250508360400151818151811061039d5761039d610c5d565b6020026020010151846020018181516103b69190610c73565b9052506001016102f5565b506103d5848a670de0b6b3a7640000610823565b6103df9085610c46565b93508260200151846103f19190610c46565b93508a94506000965050505b9550955095509550959050565b60008060008061043b6040518060800160405280600081526020016000815260200160608152602001606081525090565b8760000361047d576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561017d5761017d6108ba565b600061049b6001600160801b038b168a670de0b6b3a7640000610764565b905060006104bb6001600160801b038d1683670de0b6b3a7640000610823565b90506001600160801b03811115610575576002600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff811115610506576105066108ba565b60405190808252806020026020018201604052801561052f578160200160208202803683370190505b5081526020016000604051908082528060200260200182016040528015610560578160200160208202803683370190505b508152509650965096509650965050506103fd565b94508460006105996001600160801b038e8116908e16670de0b6b3a7640000610823565b90506105e16105d1670de0b6b3a76400008e6001600160801b03166105be9190610c46565b670de0b6b3a76400006102878188610c46565b8290670de0b6b3a7640000610823565b9450885167ffffffffffffffff8111156105fd576105fd6108ba565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50604085015260005b89518110156106fb5789818151811061064a5761064a610c5d565b6020026020010151856000018181516106639190610c73565b905250895161069f908b908390811061067e5761067e610c5d565b6020026020010151670de0b6b3a7640000886108239092919063ffffffff16565b856040015182815181106106b5576106b5610c5d565b602002602001018181525050846040015181815181106106d7576106d7610c5d565b6020026020010151856020018181516106f09190610c73565b90525060010161062f565b5061070f858b670de0b6b3a7640000610823565b6107199086610c73565b945083602001518561072b9190610c73565b60009e979d509a50929850949650505050505050565b8281028215841585830484141715171561075a57600080fd5b9190910492915050565b60008380156108055760018416801561077f57859250610783565b8392505b50600283046002850494505b84156107ff5785860286878204146107a657600080fd5b818101818110156107b657600080fd5b858104975060028706156107f25787850285898204141589151516156107db57600080fd5b838101818110156107eb57600080fd5b8790049550505b505060028504945061078f565b5061081b565b8380156108155760009250610819565b8392505b505b509392505050565b828202831584820484141761083757600080fd5b0492915050565b6001600160801b0381165b811461085457600080fd5b50565b80356108628161083e565b92915050565b60006020828403121561087d5761087d600080fd5b60006108898484610857565b949350505050565b8015155b82525050565b602081016108628284610891565b80610849565b8035610862816108a9565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156108f6576108f66108ba565b6040525050565b600061090860405190565b905061091482826108d0565b919050565b600067ffffffffffffffff821115610933576109336108ba565b5060209081020190565b600061095061094b84610919565b6108fd565b8381529050602080820190840283018581111561096f5761096f600080fd5b835b81811015610993578061098488826108af565b84525060209283019201610971565b5050509392505050565b600082601f8301126109b1576109b1600080fd5b813561088984826020860161093d565b600080600080600060a086880312156109dc576109dc600080fd5b60006109e88888610857565b95505060206109f988828901610857565b9450506040610a0a888289016108af565b9350506060610a1b888289016108af565b925050608086013567ffffffffffffffff811115610a3b57610a3b600080fd5b610a478882890161099d565b9150509295509295909350565b634e487b7160e01b600052602160045260246000fd5b6003811061085457610854610a54565b8061091481610a6a565b600061086282610a7a565b61089581610a84565b6001600160801b038116610895565b80610895565b6000610ab98383610aa7565b505060200190565b6000610acb825190565b80845260209384019383018060005b83811015610aff578151610aee8882610aad565b975060208301925050600101610ada565b509495945050505050565b60006001600160a01b038216610862565b61089581610b0a565b6000610ab98383610b1b565b6000610b3a825190565b80845260209384019383018060005b83811015610aff578151610b5d8882610b24565b975060208301925050600101610b49565b80516000906080840190610b828582610aa7565b506020830151610b956020860182610aa7565b5060408301518482036040860152610bad8282610ac1565b91505060608301518482036060860152610bc78282610b30565b95945050505050565b60a08101610bde8288610a8f565b610beb6020830187610a98565b610bf86040830186610a98565b610c056060830185610aa7565b8181036080830152610c178184610b6e565b979650505050505050565b602081016108628284610aa7565b634e487b7160e01b600052601160045260246000fd5b600082821015610c5857610c58610c30565b500390565b634e487b7160e01b600052603260045260246000fd5b60008219821115610c8657610c86610c30565b50019056fea264697066735822122043b1de5b327c29b1b6f1d99f0ef799b239ccca1367fff87d2e0527c4717f7ee864736f6c634300080d0033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100575760003560e01c80630ae67ccc1461005c5780636d2b053114610098578063745cb444146100bc578063a1bbb2e8146100cf578063ad9f20a6146100f2575b600080fd5b61008261006a366004610868565b670de0b6b3a76400006001600160801b039091161190565b60405161008f919061089b565b60405180910390f35b6100ab6100a63660046109c1565b61010a565b60405161008f959493929190610bd0565b6100ab6100ca3660046109c1565b61040a565b6100826100dd366004610868565b633b9aca006001600160801b03909116101590565b6100fd633b9aca0081565b60405161008f9190610c22565b60008060008061013b6040518060800160405280600081526020016000815260200160608152602001606081525090565b876000036101ea576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561017d5761017d6108ba565b6040519080825280602002602001820160405280156101a6578160200160208202803683370190505b50815260200160006040519080825280602002602001820160405280156101d7578160200160208202803683370190505b50815250945094509450945094506103fd565b6000610208670de0b6b3a76400006001600160801b038c1681610741565b9050600061021f828b670de0b6b3a7640000610764565b905061023d6001600160801b038d1682670de0b6b3a7640000610823565b9550633b9aca00866001600160801b0316101561025c57633b9aca0095505b6102a761028e61027484670de0b6b3a7640000610c46565b670de0b6b3a76400006102878582610c46565b9190610741565b6001600160801b038e1690670de0b6b3a7640000610823565b9350875167ffffffffffffffff8111156102c3576102c36108ba565b6040519080825280602002602001820160405280156102ec578160200160208202803683370190505b50604084015260005b88518110156103c15788818151811061031057610310610c5d565b6020026020010151846000018181516103299190610c73565b9052508851610365908a908390811061034457610344610c5d565b6020026020010151670de0b6b3a7640000876108239092919063ffffffff16565b8460400151828151811061037b5761037b610c5d565b6020026020010181815250508360400151818151811061039d5761039d610c5d565b6020026020010151846020018181516103b69190610c73565b9052506001016102f5565b506103d5848a670de0b6b3a7640000610823565b6103df9085610c46565b93508260200151846103f19190610c46565b93508a94506000965050505b9550955095509550959050565b60008060008061043b6040518060800160405280600081526020016000815260200160608152602001606081525090565b8760000361047d576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561017d5761017d6108ba565b600061049b6001600160801b038b168a670de0b6b3a7640000610764565b905060006104bb6001600160801b038d1683670de0b6b3a7640000610823565b90506001600160801b03811115610575576002600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff811115610506576105066108ba565b60405190808252806020026020018201604052801561052f578160200160208202803683370190505b5081526020016000604051908082528060200260200182016040528015610560578160200160208202803683370190505b508152509650965096509650965050506103fd565b94508460006105996001600160801b038e8116908e16670de0b6b3a7640000610823565b90506105e16105d1670de0b6b3a76400008e6001600160801b03166105be9190610c46565b670de0b6b3a76400006102878188610c46565b8290670de0b6b3a7640000610823565b9450885167ffffffffffffffff8111156105fd576105fd6108ba565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50604085015260005b89518110156106fb5789818151811061064a5761064a610c5d565b6020026020010151856000018181516106639190610c73565b905250895161069f908b908390811061067e5761067e610c5d565b6020026020010151670de0b6b3a7640000886108239092919063ffffffff16565b856040015182815181106106b5576106b5610c5d565b602002602001018181525050846040015181815181106106d7576106d7610c5d565b6020026020010151856020018181516106f09190610c73565b90525060010161062f565b5061070f858b670de0b6b3a7640000610823565b6107199086610c73565b945083602001518561072b9190610c73565b60009e979d509a50929850949650505050505050565b8281028215841585830484141715171561075a57600080fd5b9190910492915050565b60008380156108055760018416801561077f57859250610783565b8392505b50600283046002850494505b84156107ff5785860286878204146107a657600080fd5b818101818110156107b657600080fd5b858104975060028706156107f25787850285898204141589151516156107db57600080fd5b838101818110156107eb57600080fd5b8790049550505b505060028504945061078f565b5061081b565b8380156108155760009250610819565b8392505b505b509392505050565b828202831584820484141761083757600080fd5b0492915050565b6001600160801b0381165b811461085457600080fd5b50565b80356108628161083e565b92915050565b60006020828403121561087d5761087d600080fd5b60006108898484610857565b949350505050565b8015155b82525050565b602081016108628284610891565b80610849565b8035610862816108a9565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156108f6576108f66108ba565b6040525050565b600061090860405190565b905061091482826108d0565b919050565b600067ffffffffffffffff821115610933576109336108ba565b5060209081020190565b600061095061094b84610919565b6108fd565b8381529050602080820190840283018581111561096f5761096f600080fd5b835b81811015610993578061098488826108af565b84525060209283019201610971565b5050509392505050565b600082601f8301126109b1576109b1600080fd5b813561088984826020860161093d565b600080600080600060a086880312156109dc576109dc600080fd5b60006109e88888610857565b95505060206109f988828901610857565b9450506040610a0a888289016108af565b9350506060610a1b888289016108af565b925050608086013567ffffffffffffffff811115610a3b57610a3b600080fd5b610a478882890161099d565b9150509295509295909350565b634e487b7160e01b600052602160045260246000fd5b6003811061085457610854610a54565b8061091481610a6a565b600061086282610a7a565b61089581610a84565b6001600160801b038116610895565b80610895565b6000610ab98383610aa7565b505060200190565b6000610acb825190565b80845260209384019383018060005b83811015610aff578151610aee8882610aad565b975060208301925050600101610ada565b509495945050505050565b60006001600160a01b038216610862565b61089581610b0a565b6000610ab98383610b1b565b6000610b3a825190565b80845260209384019383018060005b83811015610aff578151610b5d8882610b24565b975060208301925050600101610b49565b80516000906080840190610b828582610aa7565b506020830151610b956020860182610aa7565b5060408301518482036040860152610bad8282610ac1565b91505060608301518482036060860152610bc78282610b30565b95945050505050565b60a08101610bde8288610a8f565b610beb6020830187610a98565b610bf86040830186610a98565b610c056060830185610aa7565b8181036080830152610c178184610b6e565b979650505050505050565b602081016108628284610aa7565b634e487b7160e01b600052601160045260246000fd5b600082821015610c5857610c58610c30565b500390565b634e487b7160e01b600052603260045260246000fd5b60008219821115610c8657610c86610c30565b50019056fea264697066735822122043b1de5b327c29b1b6f1d99f0ef799b239ccca1367fff87d2e0527c4717f7ee864736f6c634300080d0033