forked from SugarFunge/sugarfunge-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
27 lines (23 loc) · 1.12 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#HOST OF WHERE THE FULA CONTRACT API IS RUNNING
FULA_CONTRACT_API_HOST="https://contract-api.functionyard.fula.network"
# Class_id and Asset_id of the Labor tokens. depends on time and size that a file is stored.
# and earned as long as I store the file
# Proof engine only on the device knows someone has this token but chain does not know
# This is the amount of tokens in tokenomics
# Tihs is combination of both mining reward and storage reward
LABOR_TOKEN_CLASS_ID=100
LABOR_TOKEN_ASSET_ID=100
# Class_id and Asset_id of the challenge tokens.
# depends on file size and earned when node is challenged. Everything stored is challenged randmely
# chain knows I have this token
CHALLENGE_TOKEN_CLASS_ID=110
CHALLENGE_TOKEN_ASSET_ID=100
# The value of each token (Labor token + challenge token) that is equivalent to a Fula Token
# I need 1 labor token and 1 challenge token to get 1 fula
LABOR_TOKEN_VALUE=1
CHALLENGE_TOKEN_VALUE=1
# Class_id and Asset_id of the claimed tokens. this is 1-1 with fula.
# For example this is fula on polygon
# Conversion to claimed token is automatic
CLAIMED_TOKEN_CLASS_ID=120
CLAIMED_TOKEN_ASSET_ID=100