Skip to content

exp-table/TINIH

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TINIH

There Is No Invisible Hand.

A (very) minimalistic PoC controller for game dynamics.

Comptroller

A stateless controller. It just has one function, getRate(target, price), which will output the spawn rate, aka the probability that, on the desired action, an item will be generated. Thus, the rate R will always satisfy the following bounds 0 <= R <= 1.

To expand a bit on why we are using the Weibull's distribution CDF to compute the rate (which is similar to a sigmoid function with only positive inputs) ; ideally, we want the ratio price/target to always be around 1. If it ratio goes above 1, it means that there is not enough supply and therefore we should increase it by increasing the spawn rate of the item. On the opposite, if it's below 1, it means there are too many items and thus we need to constrict the supply by reducing the rate at which the items appear.

It is currently deployed here.

Concerto

A super super dumb contract to just show the behaviour of the Comptroller with on-chain price tracking. It is currently deployed here.

Acknowledgements