Claimable is a smart contract that allows you to schedule your token release or transfer. It works similar to a stock option grant, where you specify a cliff and a vesting period. This could be used for common use cases such as investor token release and incentive token grants.
Watch the video demo here: https://youtu.be/_mL4ejo-Oks
As a grantor, you can create a grant ticket
where you specify the following
- token: the address of the ERC20 token you are granting
- beneficiary: the recipient of this token grant
- cliff: you can specify a cliff (in number of days) or set it to 0 to make it immediately available
- vesting: the number of days for the entire amount to be vested
- amount: the number of tokens you are granting
- irrevocable: if set to
true
, you will not be able to revoke
As a grantor, you can create a batch of tickets
where you specify the following
- token: the address of the ERC20 token you are granting
- beneficiaries: array of recipients
- cliff: you can specify a cliff (in number of days) or set it to 0 to make it immediately available
- vesting: the number of days for the entire amount to be vested
- amount: the number of tokens you are granting
- irrevocable: if set to
true
, you will not be able to revoke
As a grantor, you can create a batch of tickets
where you specify the following
- token: the address of the ERC20 token you are granting
- beneficiaries: array of recipients
- cliff: you can specify a cliff (in number of days) or set it to 0 to make it immediately available
- vesting: the number of days for the entire amount to be vested
- amounts: the number array of tokens you are granting for each beneficiary
- irrevocable: if set to
true
, you will not be able to revoke
- You may revoke a grant by calling it with a ticket number. The method will transfer the remaining balance of the tokens back to the grantor wallet address, and the beneficiary will no longer be able to make a claim
- You can claim your ticket for all the available tokens. You will be responsible for paying for the gas fee
- Display the number of tokens that are available to the beneficiary for the ticket. Only grantor and beneficiary can query
- Check if the ticket has cliffed or not. Only grantor and beneficiary can query
- List all ticket numbers that you are the beneficiary
- List all ticket numbers that you are the grantor
- enter ticket number to view Ticket struct
- It is available on Rinkey testnet: 0xB84cda1Bf76328EfEEB0FE40139177790866F210
- You will need first to approve the smart contract with your token
- Use the
Write Contract
tab tocreate
,claim
orrevoke
- You can use the
Read Contract
tab for queries
- I am still building the user interface, will launch to mainnet after UI is completed
- Further testing and security audit will be performed
- Disclaimer: There is absolutely no warranty or guarantee. Use at your own risk.