Skip to content

Latest commit

 

History

History
45 lines (45 loc) · 1.83 KB

formulae.md

File metadata and controls

45 lines (45 loc) · 1.83 KB

#####P
Required Publish Fee, in fiat.
max (Pf, Pc)
#####QP
Quantity of Florincoin tokens estimated for Required Publish Fee.
P / fmdUSD #####Pf
Publish Fee, Free Artifacts.
V * s / blockchainsize #####Pc
Publish Fee, Commercial Artifacts.
if ( C < Cv, C, (( log (C) - log (Cv) ) x (Cv / C ) x D ) + Cv ) #####V
Value of mined blocks in one day.
BlocksPerDay * coinbasereward * fmdUSD #####fmdUSD Florincoin's current USD market price according to Flo-market-data API
hosted API endpoint | Github source
#####s
artifact's total size in blockchain.
(integer, in bytes)
#####blockchainsize
Wallet lookup function, not yet implemented
(integer, in bytes; currently use hardcorded value of 1,065,000)
#####BlocksPerDay
The target number of blocks mined per day, according to the blockchain protocol
(integer, value = 2160) #####coinbasereward
Number of tokens awarded with each found block, looked up based on block height
(integer, current value = 25)
#####C
artifact "cost", defined as the average between its total minPlay and its total sugBuy values
avg (m,b) #####m
sum of all of the minPlay prices in a given artifact
∑ (m₁,m₂, ...)
#####b
sum of all of the sugBuy prices in a given artifact
∑ (b₁,b₂, ...) #####Cv
mean average of all artifact "cost"s in entire library.
avg (C₁,C₂,...)
#####D
diff between an artifacts "cost" and mean avg artifact cost in the library
C - Cv