Steem challenger is a project for the people who posts via utopian, dmania, dlive and many other projects which includes beneficaries.
System is currently working on http://omeratagun.tk
Proposal
In the repository you can see "modules" folder. I put API fetch and calculations from the SBD to BTC,ETH, DOLLAR, EURO, TRY in 3 different files.
"currentvalues.php": Fetch the data from https://coincapmarket.com
Example;
$euro_value = 'https://api.coinmarketcap.com/v1/ticker/steem-dollars/?convert=EUR';
$json_euro = file_get_contents($euro_value);
$data_euro = json_decode($json_euro, true);
"index.php": Using steemconnect API, fetching the data of user's "pending payouts"
Example;
$myself_url = 'https://api.steemjs.com/get_discussions_by_blog?query={"tag":"'.$meme.'","limit":"50"}';
$json= file_get_contents($myself_url);
$data = json_decode($json,true);
End of this process checks if username returns "null"
if($person1['author'] == null){
$error = true;
$error_null = 'WARNING!!! This username doesnt exist';
echo $error_null;
}
Basicly, you can manipulate all the system easily( add new currencies, crypto etc)
Mockups / Examples
Enter the website, type your username, press enter.
- Result will be shown as like this;
Benefits
Instead of losing the time of calculations of your income, you can just type your username and check how much you will get from your effort.
Near future plans
- Visual design
- Seperated posts (Steemit and other beneficaries)
- Other coins
- Other currencies
Posted on Utopian.io - Rewarding Open Source Contributors