11 txs
77 calls
constructor
constructor()
functions
allowance
viewfunction allowance(address owner, address spender) view returns (uint256)
balanceOf
viewfunction balanceOf(address account) view returns (uint256)
botProtectionDurationInSeconds
viewfunction botProtectionDurationInSeconds() view returns (uint256)
decimals
viewfunction decimals() view returns (uint8)
fundedDate
viewfunction fundedDate() view returns (uint32)
isLiquidityPool
viewfunction isLiquidityPool(address queryAddress_) view returns (bool)
isValidCaller
viewfunction isValidCaller(bytes32 queryHash_) view returns (bool)
liquidityPools
viewfunction liquidityPools() view returns (address[] liquidityPools_)
name
viewfunction name() view returns (string)
owner
viewfunction owner() view returns (address)
pairToken
viewfunction pairToken() view returns (address)
pendingOwner
viewfunction pendingOwner() view returns (address)
projectBuyTaxBasisPoints
viewfunction projectBuyTaxBasisPoints() view returns (uint16)
projectSellTaxBasisPoints
viewfunction projectSellTaxBasisPoints() view returns (uint16)
projectTaxPendingSwap
viewfunction projectTaxPendingSwap() view returns (uint128)
projectTaxRecipient
viewfunction projectTaxRecipient() view returns (address)
swapThresholdBasisPoints
viewfunction swapThresholdBasisPoints() view returns (uint16)
symbol
viewfunction symbol() view returns (string)
totalBuyTaxBasisPoints
viewfunction totalBuyTaxBasisPoints() view returns (uint256)
totalSellTaxBasisPoints
viewfunction totalSellTaxBasisPoints() view returns (uint256)
totalSupply
viewfunction totalSupply() view returns (uint256)
uniswapV2Pair
viewfunction uniswapV2Pair() view returns (address)
validCallers
viewfunction validCallers() view returns (bytes32[] validCallerHashes_)
vault
viewfunction vault() view returns (address)
acceptOwnership
nonpayablefunction acceptOwnership()
addInitialLiquidity
nonpayablefunction addInitialLiquidity(address lpOwner)
addLiquidityPool
nonpayablefunction addLiquidityPool(address newLiquidityPool_)
addValidCaller
nonpayablefunction addValidCaller(bytes32 newValidCallerHash_)
approve
nonpayablefunction approve(address spender, uint256 amount) returns (bool)
burn
nonpayablefunction burn(uint256 value)
burnFrom
nonpayablefunction burnFrom(address account, uint256 value)
decreaseAllowance
nonpayablefunction decreaseAllowance(address spender, uint256 subtractedValue) returns (bool)
distributeTaxTokens
nonpayablefunction distributeTaxTokens()
increaseAllowance
nonpayablefunction increaseAllowance(address spender, uint256 addedValue) returns (bool)
initialize
nonpayablefunction initialize(address[3] integrationAddresses_, bytes baseParams_, bytes supplyParams_, bytes taxParams_)
removeLiquidityPool
nonpayablefunction removeLiquidityPool(address removedLiquidityPool_)
removeValidCaller
nonpayablefunction removeValidCaller(bytes32 removedValidCallerHash_)
renounceOwnership
nonpayablefunction renounceOwnership()
setProjectTaxRates
nonpayablefunction setProjectTaxRates(uint16 newProjectBuyTaxBasisPoints_, uint16 newProjectSellTaxBasisPoints_)
setProjectTaxRecipient
nonpayablefunction setProjectTaxRecipient(address projectTaxRecipient_)
setSwapThresholdBasisPoints
nonpayablefunction setSwapThresholdBasisPoints(uint16 swapThresholdBasisPoints_)
transfer
nonpayablefunction transfer(address to, uint256 amount) returns (bool)
transferFrom
nonpayablefunction transferFrom(address from, address to, uint256 amount) returns (bool)
transferOwnership
nonpayablefunction transferOwnership(address newOwner)
withdrawERC20
nonpayablefunction withdrawERC20(address token_, uint256 amount_)
withdrawETH
nonpayablefunction withdrawETH(uint256 amount_)
events
Approval
event Approval(address indexed owner, address indexed spender, uint256 value)
AutoSwapThresholdUpdated
event AutoSwapThresholdUpdated(uint256 oldThreshold, uint256 newThreshold)
ExternalCallError
event ExternalCallError(uint256 identifier)
Initialized
event Initialized(uint64 version)
InitialLiquidityAdded
event InitialLiquidityAdded(uint256 tokenA, uint256 tokenB, uint256 lpToken)
LimitsUpdated
event LimitsUpdated(uint256 oldMaxTokensPerTransaction, uint256 newMaxTokensPerTransaction, uint256 oldMaxTokensPerWallet, uint256 newMaxTokensPerWallet)
LiquidityPoolAdded
event LiquidityPoolAdded(address addedPool)
LiquidityPoolCreated
event LiquidityPoolCreated(address addedPool)
LiquidityPoolRemoved
event LiquidityPoolRemoved(address removedPool)
OwnershipTransferred
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
OwnershipTransferStarted
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)
ProjectTaxBasisPointsChanged
event ProjectTaxBasisPointsChanged(uint256 oldBuyBasisPoints, uint256 newBuyBasisPoints, uint256 oldSellBasisPoints, uint256 newSellBasisPoints)
ProjectTaxRecipientUpdated
event ProjectTaxRecipientUpdated(address treasury)
RevenueAutoSwap
event RevenueAutoSwap()
Transfer
event Transfer(address indexed from, address indexed to, uint256 value)
ValidCallerAdded
event ValidCallerAdded(bytes32 addedValidCaller)
ValidCallerRemoved
event ValidCallerRemoved(bytes32 removedValidCaller)
errors
AdapterParamsMustBeEmpty
error AdapterParamsMustBeEmpty()
AdditionToPoolIsBelowPerTransactionMinimum
error AdditionToPoolIsBelowPerTransactionMinimum()
AdditionToPoolWouldExceedPerAddressCap
error AdditionToPoolWouldExceedPerAddressCap()
AdditionToPoolWouldExceedPoolCap
error AdditionToPoolWouldExceedPoolCap()
AddressAlreadySet
error AddressAlreadySet()
AddressEmptyCode
error AddressEmptyCode(address target)
AddressInsufficientBalance
error AddressInsufficientBalance(address account)
AllowanceDecreasedBelowZero
error AllowanceDecreasedBelowZero()
AlreadyInitialised
error AlreadyInitialised()
ApprovalCallerNotOwnerNorApproved
error ApprovalCallerNotOwnerNorApproved()
ApprovalQueryForNonexistentToken
error ApprovalQueryForNonexistentToken()
ApproveFromTheZeroAddress
error ApproveFromTheZeroAddress()
ApproveToTheZeroAddress
error ApproveToTheZeroAddress()
AuctionStatusIsNotEnded
error AuctionStatusIsNotEnded()
AuctionStatusIsNotOpen
error AuctionStatusIsNotOpen()
AuxCallFailed
error AuxCallFailed(address[] modules, uint256 value, bytes data, uint256 txGas)
BalanceMismatch
error BalanceMismatch()
BalanceQueryForZeroAddress
error BalanceQueryForZeroAddress()
BidMustBeBelowTheFloorForRefundDuringAuction
error BidMustBeBelowTheFloorForRefundDuringAuction()
BidMustBeBelowTheFloorWhenReducingQuantity
error BidMustBeBelowTheFloorWhenReducingQuantity()
BondingCurveError
error BondingCurveError(uint8 error)
BurnExceedsBalance
error BurnExceedsBalance()
BurnFromTheZeroAddress
error BurnFromTheZeroAddress()
CallerIsNotAdminNorFactory
error CallerIsNotAdminNorFactory()
CallerIsNotDepositBoxOwner
error CallerIsNotDepositBoxOwner()
CallerIsNotFactory
error CallerIsNotFactory()
CallerIsNotFactoryOrProjectOwner
error CallerIsNotFactoryOrProjectOwner()
CallerIsNotFactoryProjectOwnerOrPool
error CallerIsNotFactoryProjectOwnerOrPool()
CallerIsNotPlatformAdmin
error CallerIsNotPlatformAdmin(address caller)
CallerIsNotSuperAdmin
error CallerIsNotSuperAdmin(address caller)
CallerIsNotTheManager
error CallerIsNotTheManager()
CallerIsNotTheOwner
error CallerIsNotTheOwner()
CallerMustBeLzApp
error CallerMustBeLzApp()
CannotAddLiquidityOnCreateAndUseDRIPool
error CannotAddLiquidityOnCreateAndUseDRIPool()
CannotSetNewManagerToTheZeroAddress
error CannotSetNewManagerToTheZeroAddress()
CannotSetNewOwnerToTheZeroAddress
error CannotSetNewOwnerToTheZeroAddress()
CannotSetToZeroAddress
error CannotSetToZeroAddress()
CannotWithdrawThisToken
error CannotWithdrawThisToken()
CanOnlyReduce
error CanOnlyReduce()
CollectionAlreadyRevealed
error CollectionAlreadyRevealed()
ContractIsDecommissioned
error ContractIsDecommissioned()
ContractIsNotPaused
error ContractIsNotPaused()
ContractIsPaused
error ContractIsPaused()
DecreasedAllowanceBelowZero
error DecreasedAllowanceBelowZero()
DeployerOnly
error DeployerOnly()
DeploymentError
error DeploymentError()
DepositBoxIsNotOpen
error DepositBoxIsNotOpen()
DestinationIsNotTrustedSource
error DestinationIsNotTrustedSource()
DriPoolAddressCannotBeAddressZero
error DriPoolAddressCannotBeAddressZero()
FailedInnerCall
error FailedInnerCall()
GasLimitIsTooLow
error GasLimitIsTooLow()
IncorrectConfirmationValue
error IncorrectConfirmationValue()
IncorrectPayment
error IncorrectPayment()
InitialLiquidityAlreadyAdded
error InitialLiquidityAlreadyAdded()
InitialLiquidityNotYetAdded
error InitialLiquidityNotYetAdded()
InsufficientAllowance
error InsufficientAllowance()
InvalidAdapterParams
error InvalidAdapterParams()
InvalidAddress
error InvalidAddress()
InvalidEndpointCaller
error InvalidEndpointCaller()
InvalidInitialization
error InvalidInitialization()
InvalidMinGas
error InvalidMinGas()
InvalidOracleSignature
error InvalidOracleSignature()
InvalidPayload
error InvalidPayload()
InvalidReceiver
error InvalidReceiver()
InvalidSourceSendingContract
error InvalidSourceSendingContract()
InvalidTotalShares
error InvalidTotalShares()
LimitsCanOnlyBeRaised
error LimitsCanOnlyBeRaised()
LiquidityPoolCannotBeAddressZero
error LiquidityPoolCannotBeAddressZero()
LiquidityPoolMustBeAContractAddress
error LiquidityPoolMustBeAContractAddress()
ListLengthMismatch
error ListLengthMismatch()
LPLockUpMustFitUint88
error LPLockUpMustFitUint88()
MachineAddressCannotBeAddressZero
error MachineAddressCannotBeAddressZero()
ManagerUnauthorizedAccount
error ManagerUnauthorizedAccount()
MaxBidQuantityIs255
error MaxBidQuantityIs255()
MaxPublicMintAllowanceExceeded
error MaxPublicMintAllowanceExceeded(uint256 requested, uint256 alreadyMinted, uint256 maxAllowance)
MaxSupplyTooHigh
error MaxSupplyTooHigh()
MaxTokensPerTxnExceeded
error MaxTokensPerTxnExceeded()
MaxTokensPerWalletExceeded
error MaxTokensPerWalletExceeded()
MetadataIsLocked
error MetadataIsLocked()
MinGasLimitNotSet
error MinGasLimitNotSet()
MintERC2309QuantityExceedsLimit
error MintERC2309QuantityExceedsLimit()
MintingIsClosedForever
error MintingIsClosedForever()
MintToZeroAddress
error MintToZeroAddress()
MintZeroQuantity
error MintZeroQuantity()
NewBuyTaxBasisPointsExceedsMaximum
error NewBuyTaxBasisPointsExceedsMaximum()
NewSellTaxBasisPointsExceedsMaximum
error NewSellTaxBasisPointsExceedsMaximum()
NoETHForLiquidityPair
error NoETHForLiquidityPair()
NoPaymentDue
error NoPaymentDue()
NoRefundForCaller
error NoRefundForCaller()
NoStoredMessage
error NoStoredMessage()
NothingToClaim
error NothingToClaim()
NotInitializing
error NotInitializing()
NoTokenForLiquidityPair
error NoTokenForLiquidityPair()
NoTrustedPathRecord
error NoTrustedPathRecord()
OperationDidNotSucceed
error OperationDidNotSucceed()
OracleSignatureHasExpired
error OracleSignatureHasExpired()
OwnableInvalidOwner
error OwnableInvalidOwner(address owner)
OwnableUnauthorizedAccount
error OwnableUnauthorizedAccount(address account)
OwnerQueryForNonexistentToken
error OwnerQueryForNonexistentToken()
OwnershipNotInitializedForExtraData
error OwnershipNotInitializedForExtraData()
ParametersDoNotMatchSignedMessage
error ParametersDoNotMatchSignedMessage()
ParamTooLargeEndDate
error ParamTooLargeEndDate()
ParamTooLargeMinETH
error ParamTooLargeMinETH()
ParamTooLargePerAddressMax
error ParamTooLargePerAddressMax()
ParamTooLargePoolPerTxnMinETH
error ParamTooLargePoolPerTxnMinETH()
ParamTooLargePoolSupply
error ParamTooLargePoolSupply()
ParamTooLargeStartDate
error ParamTooLargeStartDate()
ParamTooLargeVestingDays
error ParamTooLargeVestingDays()
PassedConfigDoesNotMatchApproved
error PassedConfigDoesNotMatchApproved()
PauseCutOffHasPassed
error PauseCutOffHasPassed()
PaymentMustCoverPerMintFee
error PaymentMustCoverPerMintFee()
PermitDidNotSucceed
error PermitDidNotSucceed()
PlatformAdminCannotBeAddressZero
error PlatformAdminCannotBeAddressZero()
PlatformTreasuryCannotBeAddressZero
error PlatformTreasuryCannotBeAddressZero()
PoolIsAboveMinimum
error PoolIsAboveMinimum()
PoolIsBelowMinimum
error PoolIsBelowMinimum()
PoolPhaseIsClosed
error PoolPhaseIsClosed()
PoolPhaseIsNotAfter
error PoolPhaseIsNotAfter()
PoolVestingNotYetComplete
error PoolVestingNotYetComplete()
ProjectOwnerCannotBeAddressZero
error ProjectOwnerCannotBeAddressZero()
ProofInvalid
error ProofInvalid()
QuantityExceedsMaxPossibleCollectionSupply
error QuantityExceedsMaxPossibleCollectionSupply()
QuantityExceedsRemainingCollectionSupply
error QuantityExceedsRemainingCollectionSupply()
QuantityExceedsRemainingPhaseSupply
error QuantityExceedsRemainingPhaseSupply()
ReferralIdAlreadyUsed
error ReferralIdAlreadyUsed()
RequestingMoreThanAvailableBalance
error RequestingMoreThanAvailableBalance()
RequestingMoreThanRemainingAllocation
error RequestingMoreThanRemainingAllocation(uint256 previouslyMinted, uint256 requested, uint256 remainingAllocation)
RoyaltyFeeWillExceedSalePrice
error RoyaltyFeeWillExceedSalePrice()
SafeERC20FailedOperation
error SafeERC20FailedOperation(address token)
ShareTotalCannotBeZero
error ShareTotalCannotBeZero()
SliceOutOfBounds
error SliceOutOfBounds()
SliceOverflow
error SliceOverflow()
SuperAdminCannotBeAddressZero
error SuperAdminCannotBeAddressZero()
SupplyTotalMismatch
error SupplyTotalMismatch()
SupportWindowIsNotOpen
error SupportWindowIsNotOpen()
TaxFreeAddressCannotBeAddressZero
error TaxFreeAddressCannotBeAddressZero()
TaxPeriodStillInForce
error TaxPeriodStillInForce()
TemplateCannotBeAddressZero
error TemplateCannotBeAddressZero()
TemplateNotFound
error TemplateNotFound()
ThisMintIsClosed
error ThisMintIsClosed()
TotalSharesMustMatchDenominator
error TotalSharesMustMatchDenominator()
TransferAmountExceedsBalance
error TransferAmountExceedsBalance()
TransferCallerNotOwnerNorApproved
error TransferCallerNotOwnerNorApproved()
TransferFailed
error TransferFailed()
TransferFromIncorrectOwner
error TransferFromIncorrectOwner()
TransferFromZeroAddress
error TransferFromZeroAddress()
TransferToNonERC721ReceiverImplementer
error TransferToNonERC721ReceiverImplementer()
TransferToZeroAddress
error TransferToZeroAddress()
UnrecognisedVRFMode
error UnrecognisedVRFMode()
URIQueryForNonexistentToken
error URIQueryForNonexistentToken()
ValueExceedsMaximum
error ValueExceedsMaximum()
VRFCoordinatorCannotBeAddressZero
error VRFCoordinatorCannotBeAddressZero()
creation bytecode
0x3d602d80600a3d3981f3363d3d373d3d3d363d73766e0671bbbf59370c35a8882366a2085b46eb7b5af43d82803e903d91602b57fd5bf3