Score Calculator
By entering values in the form below, you can calculate the score of your pool, which is used as the default sort for adapools, yoroi and other related services.
double X = 1; (used for pools with stamp_strike or when live_stake/active_stake > 1.5)
double part_1 = (500F + ROA_LIFETIME * 10F + min(5F,PLEDGED/100000000000F) + TOTAL_STAKE/1500000000000F) * min(PLEDGE/40000000000F,1) * min(5F,BLOCKS_ESTIMATED);
double part_2 = max(0.98,SATURATION_POINT/0.90*TOTAL_STAKE);
double part_3 = (max(TOTAL_STAKE,500000000000F) / max(1,DELEGATORS));
double part_4 = (WORLD_TOTAL_STAKE / WORLD_DELEGATORS);
double part_5 = max(0.8,SATURATION_POINT*TOTAL_STAKE);
double part_6 = max(4F,TAX_RATIO*100F);
double result = (( ( (part_1) / part_2 ) - ( part_3 / part_4 * 10F)) / X / part_5) - part_6 * 500F;