How did the distribution work on this? There are quite a few people with zero or almost no HP who got thousands of tokens (Their proposal votes would have been worthless). Project looks cool though!
How did the distribution work on this? There are quite a few people with zero or almost no HP who got thousands of tokens (Their proposal votes would have been worthless). Project looks cool though!
These are the current liquid balances and not the airdrop amount.
this file was put through the following code.
function airdrop(state, aird, source) { var src = source || 'rm' for (a in aird){ if (parseInt(aird[a].amount) > 0){ var drop = parseInt(parseInt(aird[a].amount) / 1883359298) //vest to HP if(drop>10000){drop=10000} if(drop){ state.balances[a] += drop if(!state.balances[a]){ state.balances[a] = drop } console.log(a,state.balances[a]) state.balances[src] -= drop } } } return state }
So any amounts higher than 10 DLUX were OG holders.
ohh, ok. state.balances[a] += drop... I didn't read the post properly, and thought it was just the airdrop.
Thanks for the clarification!