Actual
An Actual is an unlocking schedule for a single recipient and builds on top of an existing
Preset.
An actual contains information that is different from one stakeholder to the next.
Members
preset_id: The ID of thePresetthat thisActualreferences.start_timestamp_absolute: The timestamp of when this unlocking schedule actually starts.amount_claimed: The amount of tokens that have already been claimed by the recipient.total_amount: The maximum amount of tokens that the recipient can claim throughout the entire schedule.
Fully qualified path: tokentable_v2::components::structs::actual::Actual
[derive(PartialEq, Drop, Serde, Copy, starknet::Store)]
pub struct Actual {
pub preset_id: felt252,
pub start_timestamp_absolute: u64,
pub amount_claimed: u256,
pub total_amount: u256,
}
Members
preset_id
Fully qualified path: tokentable_v2::components::structs::actual::Actual::preset_id
pub preset_id: felt252
start_timestamp_absolute
Fully qualified path: tokentable_v2::components::structs::actual::Actual::start_timestamp_absolute
pub start_timestamp_absolute: u64
amount_claimed
Fully qualified path: tokentable_v2::components::structs::actual::Actual::amount_claimed
pub amount_claimed: u256
total_amount
Fully qualified path: tokentable_v2::components::structs::actual::Actual::total_amount
pub total_amount: u256