EthBridgeV2
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
0
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
Balances ($0.00)
No balances found for "EthBridgeV2"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "EthBridgeV2"
ABI
ABI objects
Getter at block 21294925
luckyBlockV2() view returns (address)
0x0000000000000000000000000000000000000000
owner() view returns (address)
0x0000000000000000000000000000000000000000
paused() view returns (bool)
false
totalVestingSlots() view returns (uint256)
0
Read-only
getClaimableAmount(address _address, uint256 _slotId) view returns (uint256)
isBlacklisted(address, uint256) view returns (bool)
vestingSlots(uint256) view returns (uint256 startTime, uint256 vestingDuration)
vestings(address, uint256) view returns (uint256 totalAmount, uint256 claimedAmount)
State-modifying
Events addToBlacklist(uint256 _slotId, address[] _users)
claimTokens(uint256 _vestingSlot)
createVestingSlot(uint256 _vestingStartTime, uint256 _vestingDuration)
createVestings(uint256 _vestingSlotId, address[] _users, uint256[] _amounts)
initialize(address _luckyBlockV2Token)
pause()
removeFromBlacklist(uint256 _slotId, address[] _users)
renounceOwnership()
transferOwnership(address newOwner)
unpause()
updateVestingSlot(uint256 _slotId, uint256 _vestingStartTime, uint256 _vestingDuration)
updateVestings(uint256 _vestingSlotId, address[] _users, uint256[] _amounts)
Initialized(uint8 version)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused(address account)
TokensClaimed(address indexed by, uint256 indexed vestingSlotId, uint256 claimedAmount, uint256 timestamp)
Unpaused(address account)
UsersAddedToBlacklist(address indexed by, uint256 indexed slotId, address[] users, uint256 timestamp)
UsersRemovedFromBlacklist(address indexed by, uint256 indexed slotId, address[] users, uint256 timestamp)
VestingSlotCreated(address indexed by, uint256 indexed slotId, uint256 startTime, uint256 vestingDuration, uint256 timestamp)
VestingSlotUpdated(address indexed by, uint256 indexed slotId, uint256 startTime, uint256 vestingDuration, uint256 timestamp)
VestingsCreated(address indexed by, uint256 indexed vestingSlotId, address[] users, uint256[] amounts, uint256 timestamp)
VestingsUpdated(address indexed by, uint256 indexed vestingSlotId, address[] users, uint256[] amounts, uint256 timestamp)
constructor()
This contract contains no fallback and receive objects.
ArrayLengthMismatch(uint256 usersArrayLength, uint256 amountsArrayLength)
BlacklistedFromClaiming()
CannotUpdateActiveSlot()
CannotUpdateActiveSlotVestings()
ClaimBeforeVestingStart(uint256 slotId, uint256 startTime, uint256 currentTime)
ErrorInTokenTransfer(address from, address to, uint256 amount)
InvalidVestingSlotId()
NoClaimAvailable(uint256 slotId, address user)
VestingDoesNotExist(uint256 slotId, address user)
VestingDurationCannotBeZero()
VestingExists(uint256 slotId, address user)
VestingStartTimeInPast(uint256 startTime, uint256 currentTime)
ZeroAddress()