Skip to main content

Vesting

Overview

The Vesting contract progressively unlocks ASTRO that can then be distributed to LP stakers via the Generator contract.

InstantiateMsg

Initializes the contract with the address of the ASTRO token.

json
vesting.rs
Copy
{
"owner": "...",
"token_addr": "..."
}
ParamsTypeDescription
ownerStringAddress allowed to change contract parameters
token_addrStringThe address of the token that's being vested

ExecuteMsg

claim

Transfer vested tokens from all vesting schedules that have the same VestingContractAddress (address that's vesting tokens).

json
vesting.rs
Copy
{
"claim": {
"recipient": "...",
"amount": "1000000"
}
}
ParamsTypeDescription
recipientOption<String>The address that receives the vested tokens
amountOption<Uint128>The amount of tokens to claim

receive

CW20 receive msg.

json
router.rs
Copy
{
"receive": {
"sender": "terra...",
"amount": "123",
"msg": "<base64_encoded_json_string>"
}
}
ParamsTypeDescription
receiveCw20ReceiveMsgCW20 receive message

register_vesting_accounts

Creates vesting schedules for the ASTRO token. Each vesting token should have the Generator contract address as the VestingContractAddress. Also, each schedule will unlock tokens at a different rate according to its time duration.

NOTE

You should execute this message inside the ASTRO token contract.

json
Copy
{
"send": {
"contract": "VestingContractAddress",
"amount": "999",
"msg": "base64-encodedStringOfWithdrawMsg"
}
}
ParamsTypeDescription
sendCw20ExecuteMsgCW20 receive message

In send.msg, you may encode this JSON string into base64 encoding.

json
vesting.rs
Copy
{
"register_vesting_accounts": {
"vesting_accounts": [
{
"vesting_account": {
"address": "...",
"schedules": [
{
"vesting_schedule": {
"start_point": {
"time": 12345,
"amount": "1000000"
},
"end_point": {
"time": 12345,
"amount": "1000000"
}
}
}
]
}
},
etc...
]
}
}
ParamsTypeDescription
vesting_accountsVec<VestingAccount>Vesting account to register

VestingAccount

This structure stores vesting information for a specific address that is getting tokens.

json
vesting.rs
Copy
{
"vesting_account": {
"address": "...",
"schedules": [
{
"vesting_schedule": {
"start_point": {
"time": 12345,
"amount": "1000000"
},
"end_point": {
"time": 12345,
"amount": "1000000"
}
}
}
]
}
}
ParamsTypeDescription
addressStringThe address that is getting tokens
schedulesVec<VestingSchedule>The vesting schedules targeted at the address

VestingSchedule

This structure stores parameters for a specific vesting schedule.

json
vesting.rs
Copy
{
"vesting_schedule": {
"start_point": {
"time": 12345,
"amount": "1000000"
},
"end_point": {
"time": 12345,
"amount": "1000000"
}
}
}
ParamsTypeDescription
start_pointVestingSchedulePointThe start date for the vesting schedule
end_pointOption<VestingSchedulePoint>The end point for the vesting schedule

VestingSchedulePoint

This structure stores the parameters used to create a vesting schedule.

json
vesting.rs
Copy
{
"vesting_schedule_point": {
"time": 12345,
"amount": "1000000"
}
}
ParamsTypeDescription
timeu64The start time for the vesting schedule
amountUint128The amount of tokens being vested

QueryMsg

config

Queries the vesting token contract address (the ASTRO token address).

json
vesting.rs
Copy
{
"config": {}
}

ConfigResponse

This structure describes a custom struct used to return the contract configuration.

json
vesting.rs
Copy
{
"owner": "...",
"token_addr": "..."
}
ParamsTypeDescription
ownerAddrAddress allowed to set contract parameters
token_addrAddrThe address of the token being vested

vesting_account

Queries all vesting schedules with their details for a specific vesting recipient.

json
vesting.rs
Copy
{
"vesting_account": {
"address": "..."
}
}
ParamsTypeDescription
addressStringVesting account address

VestingAccountResponse

This structure describes a custom struct used to return vesting data about a specific vesting target.

json
vesting.rs
Copy
{
"address": "...",
"info": {
"schedules": [
{
"start_point": {
"time": 12345,
"amount": "1000000"
},
"end_point": {
"time": 12345,
"amount": "1000000"
}
}
],
"released_amount": "1234567"
}
}
ParamsTypeDescription
addressAddrThe address that's vesting tokens
infoVestingInfoVesting information

VestingInfo

json
vesting.rs
Copy
{
"vesting_info": {
"schedules": [
{
"start_point": {
"time": 12345,
"amount": "1000000"
},
"end_point": {
"time": 12345,
"amount": "1000000"
}
}
],
"released_amount": "1234567"
}
}
ParamsTypeDescription
schedulesVec<VestingSchedule>The vesting schedules
released_amountUint128The total amount of ASTRO already claimed

vesting_accounts

Queries all vesting schedules with their details for all vesting recipient. Given fields are optional.

json
vesting.rs
Copy
{
"vesting_accounts": {
"start_after": "...",
"limit": 10,
"order_by": {
"desc": {}
}
}
}
ParamsTypeDescription
start_afterOption<String>Vesting account address to start after
limitOption<u32>Amount of addresses to list
order_byOption<OrderBy>Order by ascending or descending

Returns VestingAccountsResponse

OrderBy

This enum describes the types of sorting that can be applied to some piece of data.

vesting.rs
Copy
#[cw_serde]
pub enum OrderBy {
Asc,
Desc,
}
VariantsDescription
AscOrder by ascending
DescOrder by decending

available_amount

Queries the claimable amount (vested but not yet claimed) of ASTRO tokens that a vesting target can claim.

json
vesting.rs
Copy
{
"available_amount": {
"address": "..."
}
}
ParamsTypeDescription
addressStringVesting account address

Returns Uint128

timestamp

Queries the current timestamp.

json
vesting.rs
Copy
{
"timestamp": {}
}

Returns u64