https://github.com/Steemia/Steemia
https://github.com/Steemia/Steemia/pull/68
https://github.com/Steemia/Steemia/pull/69
Steemia is a social network app running over the Steem Blockchain. This app will provide the users an enriched user experience plus features commonly encountered in a casually used social media. The goal of this project is to give the community a mobile app where they can do their daily activity in the blockchain.
https://min-api.cryptocompare.com/data/pricemulti?fsyms=STEEM,SBD*&tsyms=USD
Before, author page was loaded without first checking the user. Opening your profile from post single page, votes page, follow list page, comments and user-item component will redirect you to the author profile page instead of your own profile. This was successfully done by adding a middleware(developed by ) to check the user and determine which page to load.
public get_steem_price(curreny) {
return new Promise(resolve => {
this.http.get('https://min-api.cryptocompare.com/data/pricemulti?fsyms=STEEM,SBD*&tsyms='+ curreny)
.toPromise().then((data: any) => {
resolve({
data
});
});
}).catch(e => console.log(e))
}
In order to make payout calculations much easier for users, the above mentioned instance STEEM & SBD provider automatically calculates the instantaneous revenue for the article. The function developed for the calculation is below.
We allow our users to track cryptocurrency addresses and their balances on the wallet page but when users wanted to change their cryptocurrency adresses, there was no way to do this.
Cryptocurrency addresses are added to the edit profile page so that users can easily change their cryptocurrency addresses.
The favorites feature has been developed so that users can add people they follow often to a list of favorites. Users can easily add their favorite user through the author page. It can also be managed from the favorites page.
You just need to fork the following repository, feel free to send us a Pull Request...
https://github.com/Steemia/Steemia