Staking
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
3
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 48 additional slots
-
variable spans 48 additional slots
-
variable spans 48 additional slots
Balances ($0.00)
No balances found for "Staking"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "Staking"
ABI
ABI objects
Getter at block 21181681
MAXIMUM_UNLOCK_REQUESTS() view returns (uint256)
5
isEmergencyWithdraw() view returns (bool)
false
owner() view returns (address)
0x0000000000000000000000000000000000000000
paused() view returns (bool)
false
stakeToken() view returns (address)
0x0000000000000000000000000000000000000000
totalStaked() view returns (uint256)
0
unstakeLockTime() view returns (uint256)
0
Read-only
getUserUnstakeRequests(address _user) view returns (bytes32[])
stakedAmount(address) view returns (uint256)
unstakeRequests(bytes32) view returns (address owner, uint256 amount, uint256 claimTime, bool claimed)
State-modifying
Events claim(bytes32 unstakeRequestId)
claimMultiple(bytes32[] unstakeRequestIds)
emergencyWithdraw()
initialize(address _stakeToken, uint256 _unstakeLockTime, address _owner)
pause()
renounceOwnership()
setIsEmergencyWithdraw(bool _value)
setUnstakeLockTime(uint256 _unstakeLockTime)
stake(uint256 amount)
transferOwnership(address newOwner)
unpause()
unstake(uint256 amount) returns (bytes32 unstakeRequestId)
Claimed(address indexed user, bytes32 indexed unstakeRequestId, uint256 amount)
EmergencyWithdrawn(address indexed user, uint256 amount)
Initialized(uint8 version)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused(address account)
SetIsEmergencyWithdraw(bool emergencyWithdraw)
Staked(address indexed user, uint256 amount)
Unpaused(address account)
Unstake(address indexed user, bytes32 indexed unstakeRequestId, uint256 amount, uint256 claimTime)
UnstakeLockTimeChanged(uint256 oldUnstakeLockTime, uint256 newUnstakeLockTime)
This contract contains no constructor objects.
This contract contains no fallback and receive objects.
AlreadyClaimed()
DuplicateUnstakeRequest()
InsufficientStakedAmount()
InvalidAmount()
MaximumUnstakeRequestReached()
NotClaimTime()
NotEmergencyWithdraw()
NotRequestOwner()
ZeroAddress()