Posts

August LPUD Winners - Transparency video

avatar of @anomadsoul
25
@anomadsoul
·
0 views
·
2 min read

▶️ Watch on 3Speak


LPUD came and went and we powered up more than 330K Leo tokens!

Check the official announcement here

This is a video where I pick the LPUD winners for the month of August, this is not an announcement, it's just a video where anyone can watch the process we used to pick the winners of the 3rd Leo Power Up day.

This is the SQL query I ran to get the LPUD August participants:

 
Select 
 
ID, json, timestamp, tid, required_auth
 
From
 
TxCustoms
 
where
 
timestamp between '2022-08-14' and '2022-08-16 14:00:00'
 
and tid like '%ssc_mainnet_hive%'
 
and json like '%"contractAction":"stake"%'
 
and json like '%"symbol":"LEO"%'
 
order by timestamp desc
 

*

This is the Javascript script I ran to clean the SQL database:

 
const leo = [
 
  '{"contractName":"tokens","contractAction":"stake","contractPayload":{"to":"tinyputerboy","symbol":"LEO","quantity":"0.225"}}',
 
  '{"contractName":"tokens","contractAction":"stake","contractPayload":{"to":"kolus290","symbol":"LEO","quantity":"2.115"}}',
 
];
 

 
for (let i = 0; i < leo.length; i++) {
 
  const obj = JSON.parse(leo[i]);
 
  console.log(parseFloat(obj.contractPayload.quantity));
 
}
 

 

The link for the spreadsheet is here

*

Here are the bet IDs of every roll I made to pick the winners and you can crosscheck them with the video:

62d355ee8d2 | b54e664b4ee | 22476e9de49 |8486ed53858

-|-|-|-

44956eb65d4 | 62d35e92922 | 59b28639664 | 3b8765b3b75

8486ed4d943 | 8486ede5582 | b54e688d65e | 44956ee42ed

44956ee6264 | 8486ed85d45 | 73476d79e6b | 3b8768333e9

734764988bd | 734764e92d5 | duckdice.io | Check 'em

I have one question for you guys, do you think it's fair to remove the three winners of this LPUD from the next edition so they open up some space for those who join next month, or do you think we should respect the process that if anyone joins two months in a row and they are lucky enough to win both times one of the main prizes, then we should respect that.

Personally I believe that we should respect this and anyone who joins LPUD every month is eligible to win every single month, in the end it is a provably fair process that depends 100% on luck (provided the user fulfills all the requirements to become eligible).

What do you think? Please leave your feedback in the comment section :D


▶️ 3Speak