MobySale
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
8
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 49 additional slots
-
variable spans 49 additional slots
-
variable spans 48 additional slots
-
variable spans 48 additional slots
-
variable spans 48 additional slots
-
variable spans 48 additional slots
-
variable spans 47 additional slots
7 additional
variables
Balances ($0.00)
No balances found for "MobySale"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "MobySale"
ABI
ABI objects
Getter at block 21177268
BASIS_POINTS() view returns (uint256)
10000
DEFAULT_ADMIN_ROLE() view returns (bytes32)
0x0000000000000000000000000000000000000000000000000000000000000000
MINIMUM_CLAIM_PERIOD() view returns (uint256)
604800
OPERATOR_ROLE() view returns (bytes32)
0x97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929
PRICE_PRECISION() view returns (uint256)
1000000000000000000
claimTime() view returns (uint256)
0
eip712Domain() view returns (bytes1 fields, string name, string version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] extensions)
(fields=0x0f, name=, version=, chainId=1, verifyingContract=0x513ab8bfb5f32094a88f9fcc6cf4956bd3bd63c0, salt=0x0000000000000000000000000000000000000000000000000000000000000000, extensions=[])
getHardCapMaxPay() view returns (uint256)
0
hardCapConfig() view returns (uint256 cap, uint256 startTime, uint256 endTime, uint256 price, uint256 extendedStep, uint256 extendPrice, uint256 minPay, uint256 maxPay, uint256 maxPayIncreaseTime, uint256 increasedMaxPay, uint256 initialReleasePbs, uint256 vestingPeriod)
(cap=0, startTime=0, endTime=0, price=0, extendedStep=0, extendPrice=0, minPay=0, maxPay=0, maxPayIncreaseTime=0, increasedMaxPay=0, initialReleasePbs=0, vestingPeriod=0)
isSwept() view returns (bool)
false
owner() view returns (address)
0x0000000000000000000000000000000000000000
paused() view returns (bool)
false
paymentToken() view returns (address)
0x0000000000000000000000000000000000000000
saleToken() view returns (address)
0x0000000000000000000000000000000000000000
softLaunchConfig() view returns (uint256 cap, uint256 startTime, uint256 endTime, uint256 price, uint256 minPay, uint256 maxPay, uint256 initialReleasePbs, uint256 vestingPeriod)
(cap=0, startTime=0, endTime=0, price=0, minPay=0, maxPay=0, initialReleasePbs=0, vestingPeriod=0)
sweepTime() view returns (uint256)
0
totalPurchasedAmount() view returns (uint256)
0
verifier() view returns (address)
0x0000000000000000000000000000000000000000
Read-only
getClaimAmount(address account) view returns (uint256 claimAmount)
getPurchaseAmount(uint256 amount, address user) view returns (uint256 paymentTokenAmount, uint256 softLaunchAmount, uint256 hardCapAmount)
getRoleAdmin(bytes32 role) view returns (bytes32)
hasRole(bytes32 role, address account) view returns (bool)
nonces(address account) view returns (uint256)
purchasers(address) view returns (address account, uint256 softLaunchAmount, uint256 hardCapAmount, uint256 lastTimeClaimed)
softLaunchWhitelistAllocations(address) view returns (uint256)
supportsInterface(bytes4 interfaceId) view returns (bool)
verifyPurchaseRequest(address _user, uint256 _nonce, bytes _signature) view returns (bool)
State-modifying
Events addOperator(address account)
claim() returns (uint256 claimAmount)
grantRole(bytes32 role, address account)
initialize(address initialOwner, address _saleToken, address _paymentToken, address _verifier, struct IMobySaleSoftLaunchConfig _softLaunchConfig, struct IMobySaleHardCapConfig _hardCapConfig, uint256 _claimTime, string domainName, string signatureVersion)
pause()
purchase(uint256 amount, bytes signature) payable
purchaseWithPermit(uint256 amount, struct IMobySalePermitRequest permit, bytes signature)
removeOperator(address account)
renounceOwnership()
renounceRole(bytes32 role, address account)
revokeRole(bytes32 role, address account)
setClaimTime(uint256 _claimTime)
setHardCapConfig(struct IMobySaleHardCapConfig _hardCapConfig)
setSaleToken(address _saleToken)
setSoftLaunchConfig(struct IMobySaleSoftLaunchConfig _softLaunchConfig)
setSoftLaunchWhitelistAllocation(address[] _addresses, uint256[] _allocations)
setVerifier(address _verifier)
sweep(address to)
transferOwnership(address newOwner)
unpause()
withdraw(address to, uint256 amount)
ClaimTimeChanged(uint256 claimTime)
Claimed(address indexed sender, uint256 amount)
EIP712DomainChanged()
HardCapConfigChanged(struct IMobySaleHardCapConfig config)
Initialized(uint8 version)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused(address account)
Purchased(address indexed sender, uint256 amount)
RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender)
SaleTokenChanged(address saleToken)
SoftLaunchConfigChanged(struct IMobySaleSoftLaunchConfig config)
Swept(address indexed receiver, uint256 amount)
Unpaused(address account)
VerifierChanged(address verifier)
Whitelisted(address indexed account, uint256 allocation)
Withdrawn(address indexed receiver, uint256 amount)
This contract contains no constructor objects.
This contract contains no fallback and receive objects.
AlreadyPurchaseExtendedCap()
AlreadyPurchaseHardCap()
AlreadyPurchaseSoftLaunch()
AlreadySwept()
InvalidAmount()
InvalidExtendedCapAmount()
InvalidHardCapAmount()
InvalidLength()
InvalidPbs()
InvalidPrice()
InvalidPurchaseCap()
InvalidSaleCap()
InvalidSignature()
InvalidSoftLaunchAmount()
InvalidTimeStamps()
NativePaymentToken()
NotOperator(address arg0)
NotSweepTime()
NothingToClaim()
OnlyOperator(address arg0)
OperatorAdded(address arg0)
PermitFailed()
SaleEnded()
SaleNotEnded()
SaleNotStarted()
SaleStarted()
SoldOut()
SoldOutOrEnded()
ZeroAddress()