Token Vesting Schedule Impact Models

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

TokenVestingImpactModels

TokenVestingQueryParams

TokenVestingImpactData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.token_vesting_schedule_impact_models import (
    TokenVestingImpactModels,
    TokenVestingQueryParams,
    TokenVestingImpactData,
)

Parameters

Name
Type
Description
Default
Optional

token_symbol

Union[str, List[str]]

Token(s) with vesting schedules to analyze.

None

False

include_locked_tokens

bool

Include analysis of tokens still under lock-up.

True

True

time_horizon

int

Time window (in days) for forecasting vesting impacts.

30

True


Data

Name
Type
Description

token_symbol

str

Symbol of the token analyzed.

total_vested_tokens

float

Total number of tokens scheduled for release.

price_impact_forecast

float

Projected price impact due to token release.

vesting_schedule

dict

Details of the vesting timeline and amounts.

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Price Impact Simulations: Predicts how upcoming vesting releases may affect token price.

  • Timeline Visualization: Generates visual schedules of token releases over time.

  • Risk Assessment: Identifies high-risk periods when significant token unlocks occur.

Last updated