VestingToken
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
6
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($0.00)
No balances found for "VestingToken"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "VestingToken"
ABI
ABI objects
Getter at block 21099034 claimFeeData() view returns (address, uint64) claimableSupply() view returns (uint256) lockedSupply() view returns (uint256) transferFeeData() view returns (address, uint64) unlockedPercentage() view returns (uint256)
claimedSupply() view returns (uint256)
0
decimals() view returns (uint8)
0
manager() view returns (address)
0x0000000000000000000000000000000000000000
milestones() view returns (struct IVestingTokenMilestone[])
[]
name() view returns (string)
symbol() view returns (string)
totalSupply() view returns (uint256)
0
underlyingToken() view returns (address)
0x0000000000000000000000000000000000000000
Read-only
allowance(address owner, address spender) view returns (uint256)
balanceOf(address account) view returns (uint256)
claimableBalanceOf(address account) view returns (uint256)
claimedBalanceOf(address account) view returns (uint256)
exportRecipient(address recipient) view returns (address, uint256, uint256, uint256)
exportRecipients(address[] recipients) view returns (address[], uint256[], uint256[], uint256)
lockedBalanceOf(address account) view returns (uint256)
metadataOf(address account) view returns (struct VestingTokenMetadata metadata)
State-modifying
Events addRecipient(address recipient, uint256 amount)
addRecipients(address[] recipients, uint256[] amounts, uint256 totalAmount)
approve(address spender, uint256 value) returns (bool)
burn(uint256 amount) payable
claim() payable
importRecipient(address recipient, uint256 amount, uint256 claimableAmountOfImport, uint256 unlocked)
importRecipients(address[] recipients, uint256[] amounts, uint256[] claimableAmountsOfImport, uint256 totalAmount, uint256 unlocked)
initialize(string name, string symbol, address underlyingTokenAddress, struct IVestingTokenMilestone[] milestonesArray)
transfer(address to, uint256 amount) returns (bool)
transferFrom(address from, address to, uint256 amount) returns (bool)
updateLastReachedMilestone(uint256 startIndex)
Approval(address indexed owner, address indexed spender, uint256 value)
Burn(address indexed account, uint256 amount)
Claim(address indexed account, uint256 amount)
Initialized(uint64 version)
MilestoneReached(uint256 indexed milestoneIndex)
Transfer(address indexed from, address indexed to, uint256 value)
constructor()
This contract contains no fallback and receive objects.
AddressEmptyCode(address target)
AddressInsufficientBalance(address account)
ClaimableAmountOfImportIsGreaterThanExpected()
ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed)
ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed)
ERC20InvalidApprover(address approver)
ERC20InvalidReceiver(address receiver)
ERC20InvalidSender(address sender)
ERC20InvalidSpender(address spender)
EqualPercentagesOnlyAllowedBeforeLinear()
FailedInnerCall()
IncorrectClaimFee()
InputArraysMustHaveSameLength()
InvalidInitialization()
InvalidTotalAmount()
LastPercentageMustBe100()
MaxAllowedMilestonesHit()
MilestonePercentagesNotSorted()
MilestoneTimestampsNotSorted()
MinMilestonesNotReached()
MoreThanTwoEqualPercentages()
NoClaimableAmount()
NotInitializing()
OnlyLastPercentageCanBe100()
ReentrancyGuardReentrantCall()
SafeERC20FailedOperation(address token)
UnlockedIsGreaterThanExpected()
UnsuccessfulFetchOfTokenBalance()