Mechanistic model for the Filecoin Economy
Project description
Filecoin Mechanistic Twin
Mechanistic model for the Filecoin Economy. You can use this model to forecast all the components underlying Filecoin's circulating supply (i.e., minting, vesting, locking and burning), based on a set of parameters that encode storage provider behavior. The model uses the following assumptions:
- Forecasting is done daily. This means that each forecasting step corresponds to a day and the forecasted metrics correspond to the value we expect to see at the end of that day.
- The model uses the current sector states (i.e. known schedule expirations) and it estimates future onboardings and future renewals.
- The daily power onboarded is provided as a tunable parameter.
- The sector renewal rates are provided as a tunable parameter.
- Sector duration is a constant provided as a tunable parameter.
- Filecoin Plus sectors have the same renewal rates and sector durations as other sectors.
- The model uses the current pledge metrics (i.e. known scheduled expiration in pledge) to measure known active sectors, and it estimates pledge metrics coming from future onboardings and renewals using the same assumptions as the ones used to model storage power.
- The model ignores storage deal collateral when computing the total locked FIL.
To learn more about how the model is designed, check the specifications linked at the end of this readme.
Prerequisites
numpy>=1.23.1
pandas>=1.4.3
requests>=2.28.1
matplotlib>=3.5.2
seaborn>=0.11.2
Installing
This package is available on PyPI and thus can be directly installed with pip:
pip install mechaFIL
Alternatively, this package can be installed from source by cloning this repository and installing it manually with the command:
python setup.py install
Usage
There is a high-level function that can be used to run a forecast/simulation of circulating supply and its components. First you need to import the relevant packages:
import mechafil
import datetime
Now, you need to define some parameters:
# Starting date for the simulation
start_date = datetime.date(2021, 3, 15)
# Current date
current_date = datetime.date(2022, 11, 1)
# Number of days to run the simulation (after current_rate)
forecast_length = 365
# Renewal rate of all sectors (percentage of raw-byte that will renew)
renewal_rate= 0.6
# Raw-byte power (in PiB) that is onboarded every day
rb_onboard_power = 12.0
# Percentage of raw-byte power onboarded that contains FIL+ deals
fil_plus_rate = 0.098
# Sector duration of newly onboarding sectors
duration = 360
# Method of computing QAP
qap_method = 'tunable'
A few important notes regarding the inputs:
- Due to data availability, the start date cannot be earlier than 2021-03-15.
- The current date needs to be at least 2 days after the start date.
- The parameters
renewal_rate
,rb_onboard_power
andfil_plus_rate
can be a single number or a vector of numbers. If they are a number, the model assumes that number as a constant throughout the simulation. If a vector is provided, then the vector needs to have the same size as the simulation length. The vector option gives the user the most flexibility since they can apply different constants throughout the simulation. - The optional parameter
qap_method
determines how network QAP will be computed. Two approaches are provided in the library, which we termbasic
andtunable
. Setting this value totunable
will enable QAP to be computed with tunable sector duration multipliers, but note that this is an approximation. The other method isbasic
which does not support sector duration multipliers. See here for more details.
Now, you can call the simulation function and collect the data in a DataFrame:
cil_df = mechafil.run_simple_sim(start_date,
current_date,
forecast_length,
renewal_rate,
rb_onboard_power,
fil_plus_rate,
duration,
qap_method='tunable')
cil_df.head()
You can also run part of the simulation separately. To see more examples, check the available notebooks.
References
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mechaFIL-1.4.tar.gz
.
File metadata
- Download URL: mechaFIL-1.4.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d754594e149ebe14ea57d368ea00e7518def9351aa7da586ab90731fadedc1b5 |
|
MD5 | a3dbdec151e53d91ce2e78ca00dcac44 |
|
BLAKE2b-256 | b1a4c6b6bb9729cd2200a61cced9f5ea10dc5873da47aa0240df52c9716262f0 |
File details
Details for the file mechaFIL-1.4-py3-none-any.whl
.
File metadata
- Download URL: mechaFIL-1.4-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edd0db7938bce27159fe1d324608a68140d57b5736b161e6baea580896c5d7bc |
|
MD5 | 30512695b42d4548639d35b60efd6aa1 |
|
BLAKE2b-256 | c9c614b9cfd3281b18c79ccc0ba061f0509a020ebb2c17ad39483c5e0f3391f4 |