Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- LinearCurve
- Optimization enabled
- true
- Compiler version
- v0.8.13+commit.abaa5c0e
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2024-01-31T11:34:43.066062Z
contracts/v2/bonding-curves/LinearCurve.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 a linear curve, where each buy/sell changes spot price by adding/substracting delta*/contract LinearCurve is ICurve, CurveErrorCodes {using FixedPointMathLib for uint256;/**@dev See {ICurve-validateDelta}*/function validateDelta(uint128 /*delta*/) external pure override returns (bool valid) {// For a linear curve, all values of delta are validreturn true;}/**@dev See {ICurve-validateSpotPrice}*/function validateSpotPrice(uint128 /* newSpotPrice */) external pure override returns (bool) {// For a linear curve, all values of spot price are validreturn true;}/**@dev See {ICurve-getBuyInfo}*/function getBuyInfo(uint128 spotPrice,uint128 delta,uint256 numItems,uint256 feeMultiplier,
@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,
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(
Compiler Settings
{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true,"details":{"yul":false}},"libraries":{}}
Contract ABI
[{"type":"function","stateMutability":"view","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":"valid","internalType":"bool"}],"name":"validateDelta","inputs":[{"type":"uint128","name":"","internalType":"uint128"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validateSpotPrice","inputs":[{"type":"uint128","name":"","internalType":"uint128"}]}]
Contract Creation Code
0x608060405234801561001057600080fd5b50610c0d806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630ae67ccc146100515780636d2b05311461007b578063745cb4441461009f578063a1bbb2e814610051575b600080fd5b61006561005f366004610704565b50600190565b6040516100729190610737565b60405180910390f35b61008e61008936600461085d565b6100b2565b604051610072959493929190610a6c565b61008e6100ad36600461085d565b6103a7565b6000806000806100e36040518060800160405280600081526020016000815260200160608152602001606081525090565b87600003610192576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561012557610125610756565b60405190808252806020026020018201604052801561014e578160200160208202803683370190505b508152602001600060405190808252806020026020018201604052801561017f578160200160208202803683370190505b508152509450945094509450945061039a565b60006101a7896001600160801b038c16610ad4565b9050808b6001600160801b031610156101e65760009450846101c98b8d610b09565b6101d4906001610b36565b6001600160801b031699506101f39050565b6101f0818c610b6e565b94505b60026001600160801b038b1661020a60018c610b9e565b610214908c610ad4565b61021e9190610ad4565b6102289190610ba6565b61023b6001600160801b038d168b610ad4565b6102459190610b9e565b9250865167ffffffffffffffff81111561026157610261610756565b60405190808252806020026020018201604052801561028a578160200160208202803683370190505b50604083015260005b875181101561035f578781815181106102ae576102ae610bae565b6020026020010151836000018181516102c79190610bc4565b9052508751610303908990839081106102e2576102e2610bae565b6020026020010151670de0b6b3a7640000866106bf9092919063ffffffff16565b8360400151828151811061031957610319610bae565b6020026020010181815250508260400151818151811061033b5761033b610bae565b6020026020010151836020018181516103549190610bc4565b905250600101610293565b506103738389670de0b6b3a76400006106bf565b61037d9084610b9e565b925081602001518361038f9190610b9e565b925089935060009550505b9550955095509550959050565b6000806000806103d86040518060800160405280600081526020016000815260200160608152602001606081525090565b8760000361041a576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561012557610125610756565b600061042f896001600160801b038c16610ad4565b610442906001600160801b038d16610bc4565b90506001600160801b038111156104fb576002600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561048d5761048d610756565b6040519080825280602002602001820160405280156104b6578160200160208202803683370190505b50815260200160006040519080825280602002602001820160405280156104e7578160200160208202803683370190505b50815250955095509550955095505061039a565b935083600061050a8b8d610b36565b6001600160801b0316905060028b6001600160801b031660018c61052e9190610b9e565b610538908d610ad4565b6105429190610ad4565b61054c9190610ba6565b610556828c610ad4565b6105609190610bc4565b9350875167ffffffffffffffff81111561057c5761057c610756565b6040519080825280602002602001820160405280156105a5578160200160208202803683370190505b50604084015260005b885181101561067a578881815181106105c9576105c9610bae565b6020026020010151846000018181516105e29190610bc4565b905250885161061e908a90839081106105fd576105fd610bae565b6020026020010151670de0b6b3a7640000876106bf9092919063ffffffff16565b8460400151828151811061063457610634610bae565b6020026020010181815250508360400151818151811061065657610656610bae565b60200260200101518460200181815161066f9190610bc4565b9052506001016105ae565b5061068e848a670de0b6b3a76400006106bf565b6106989085610bc4565b93508260200151846106aa9190610bc4565b60009d969c5099509197509395505050505050565b82820283158482048414176106d357600080fd5b0492915050565b6001600160801b0381165b81146106f057600080fd5b50565b80356106fe816106da565b92915050565b60006020828403121561071957610719600080fd5b600061072584846106f3565b949350505050565b8015155b82525050565b602081016106fe828461072d565b806106e5565b80356106fe81610745565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff8211171561079257610792610756565b6040525050565b60006107a460405190565b90506107b0828261076c565b919050565b600067ffffffffffffffff8211156107cf576107cf610756565b5060209081020190565b60006107ec6107e7846107b5565b610799565b8381529050602080820190840283018581111561080b5761080b600080fd5b835b8181101561082f5780610820888261074b565b8452506020928301920161080d565b5050509392505050565b600082601f83011261084d5761084d600080fd5b81356107258482602086016107d9565b600080600080600060a0868803121561087857610878600080fd5b600061088488886106f3565b9550506020610895888289016106f3565b94505060406108a68882890161074b565b93505060606108b78882890161074b565b925050608086013567ffffffffffffffff8111156108d7576108d7600080fd5b6108e388828901610839565b9150509295509295909350565b634e487b7160e01b600052602160045260246000fd5b600381106106f0576106f06108f0565b806107b081610906565b60006106fe82610916565b61073181610920565b6001600160801b038116610731565b80610731565b60006109558383610943565b505060200190565b6000610967825190565b80845260209384019383018060005b8381101561099b57815161098a8882610949565b975060208301925050600101610976565b509495945050505050565b60006001600160a01b0382166106fe565b610731816109a6565b600061095583836109b7565b60006109d6825190565b80845260209384019383018060005b8381101561099b5781516109f988826109c0565b9750602083019250506001016109e5565b80516000906080840190610a1e8582610943565b506020830151610a316020860182610943565b5060408301518482036040860152610a49828261095d565b91505060608301518482036060860152610a6382826109cc565b95945050505050565b60a08101610a7a828861092b565b610a876020830187610934565b610a946040830186610934565b610aa16060830185610943565b8181036080830152610ab38184610a0a565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610aee57610aee610abe565b500290565b634e487b7160e01b600052601260045260246000fd5b60006001600160801b03821691506001600160801b0383165b925082610b3157610b31610af3565b500490565b60006001600160801b03821691506001600160801b0383169250826001600160801b0303821115610b6957610b69610abe565b500190565b60006001600160801b03821691506001600160801b0383165b925082821015610b9957610b99610abe565b500390565b600082610b87565b600082610b22565b634e487b7160e01b600052603260045260246000fd5b60008219821115610b6957610b69610abe56fea26469706673582212202e3fa67b83c853779aac83e0636449082ba9e271672997cbb14790de9e128aa364736f6c634300080d0033
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630ae67ccc146100515780636d2b05311461007b578063745cb4441461009f578063a1bbb2e814610051575b600080fd5b61006561005f366004610704565b50600190565b6040516100729190610737565b60405180910390f35b61008e61008936600461085d565b6100b2565b604051610072959493929190610a6c565b61008e6100ad36600461085d565b6103a7565b6000806000806100e36040518060800160405280600081526020016000815260200160608152602001606081525090565b87600003610192576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561012557610125610756565b60405190808252806020026020018201604052801561014e578160200160208202803683370190505b508152602001600060405190808252806020026020018201604052801561017f578160200160208202803683370190505b508152509450945094509450945061039a565b60006101a7896001600160801b038c16610ad4565b9050808b6001600160801b031610156101e65760009450846101c98b8d610b09565b6101d4906001610b36565b6001600160801b031699506101f39050565b6101f0818c610b6e565b94505b60026001600160801b038b1661020a60018c610b9e565b610214908c610ad4565b61021e9190610ad4565b6102289190610ba6565b61023b6001600160801b038d168b610ad4565b6102459190610b9e565b9250865167ffffffffffffffff81111561026157610261610756565b60405190808252806020026020018201604052801561028a578160200160208202803683370190505b50604083015260005b875181101561035f578781815181106102ae576102ae610bae565b6020026020010151836000018181516102c79190610bc4565b9052508751610303908990839081106102e2576102e2610bae565b6020026020010151670de0b6b3a7640000866106bf9092919063ffffffff16565b8360400151828151811061031957610319610bae565b6020026020010181815250508260400151818151811061033b5761033b610bae565b6020026020010151836020018181516103549190610bc4565b905250600101610293565b506103738389670de0b6b3a76400006106bf565b61037d9084610b9e565b925081602001518361038f9190610b9e565b925089935060009550505b9550955095509550959050565b6000806000806103d86040518060800160405280600081526020016000815260200160608152602001606081525090565b8760000361041a576001600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561012557610125610756565b600061042f896001600160801b038c16610ad4565b610442906001600160801b038d16610bc4565b90506001600160801b038111156104fb576002600080600060405180608001604052806000815260200160008152602001600067ffffffffffffffff81111561048d5761048d610756565b6040519080825280602002602001820160405280156104b6578160200160208202803683370190505b50815260200160006040519080825280602002602001820160405280156104e7578160200160208202803683370190505b50815250955095509550955095505061039a565b935083600061050a8b8d610b36565b6001600160801b0316905060028b6001600160801b031660018c61052e9190610b9e565b610538908d610ad4565b6105429190610ad4565b61054c9190610ba6565b610556828c610ad4565b6105609190610bc4565b9350875167ffffffffffffffff81111561057c5761057c610756565b6040519080825280602002602001820160405280156105a5578160200160208202803683370190505b50604084015260005b885181101561067a578881815181106105c9576105c9610bae565b6020026020010151846000018181516105e29190610bc4565b905250885161061e908a90839081106105fd576105fd610bae565b6020026020010151670de0b6b3a7640000876106bf9092919063ffffffff16565b8460400151828151811061063457610634610bae565b6020026020010181815250508360400151818151811061065657610656610bae565b60200260200101518460200181815161066f9190610bc4565b9052506001016105ae565b5061068e848a670de0b6b3a76400006106bf565b6106989085610bc4565b93508260200151846106aa9190610bc4565b60009d969c5099509197509395505050505050565b82820283158482048414176106d357600080fd5b0492915050565b6001600160801b0381165b81146106f057600080fd5b50565b80356106fe816106da565b92915050565b60006020828403121561071957610719600080fd5b600061072584846106f3565b949350505050565b8015155b82525050565b602081016106fe828461072d565b806106e5565b80356106fe81610745565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff8211171561079257610792610756565b6040525050565b60006107a460405190565b90506107b0828261076c565b919050565b600067ffffffffffffffff8211156107cf576107cf610756565b5060209081020190565b60006107ec6107e7846107b5565b610799565b8381529050602080820190840283018581111561080b5761080b600080fd5b835b8181101561082f5780610820888261074b565b8452506020928301920161080d565b5050509392505050565b600082601f83011261084d5761084d600080fd5b81356107258482602086016107d9565b600080600080600060a0868803121561087857610878600080fd5b600061088488886106f3565b9550506020610895888289016106f3565b94505060406108a68882890161074b565b93505060606108b78882890161074b565b925050608086013567ffffffffffffffff8111156108d7576108d7600080fd5b6108e388828901610839565b9150509295509295909350565b634e487b7160e01b600052602160045260246000fd5b600381106106f0576106f06108f0565b806107b081610906565b60006106fe82610916565b61073181610920565b6001600160801b038116610731565b80610731565b60006109558383610943565b505060200190565b6000610967825190565b80845260209384019383018060005b8381101561099b57815161098a8882610949565b975060208301925050600101610976565b509495945050505050565b60006001600160a01b0382166106fe565b610731816109a6565b600061095583836109b7565b60006109d6825190565b80845260209384019383018060005b8381101561099b5781516109f988826109c0565b9750602083019250506001016109e5565b80516000906080840190610a1e8582610943565b506020830151610a316020860182610943565b5060408301518482036040860152610a49828261095d565b91505060608301518482036060860152610a6382826109cc565b95945050505050565b60a08101610a7a828861092b565b610a876020830187610934565b610a946040830186610934565b610aa16060830185610943565b8181036080830152610ab38184610a0a565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610aee57610aee610abe565b500290565b634e487b7160e01b600052601260045260246000fd5b60006001600160801b03821691506001600160801b0383165b925082610b3157610b31610af3565b500490565b60006001600160801b03821691506001600160801b0383169250826001600160801b0303821115610b6957610b69610abe565b500190565b60006001600160801b03821691506001600160801b0383165b925082821015610b9957610b99610abe565b500390565b600082610b87565b600082610b22565b634e487b7160e01b600052603260045260246000fd5b60008219821115610b6957610b69610abe56fea26469706673582212202e3fa67b83c853779aac83e0636449082ba9e271672997cbb14790de9e128aa364736f6c634300080d0033