<html> <p><img src="https://www.commercialintegrator.com/wp-content/uploads/2017/09/coding-924920_1280-1000x650.jpg" width="1000" height="650"/></p> <h1><strong>Dev-Blog #9 - Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans</strong></h1> <h2><strong>Week Plans</strong></h2> <p><strong>- Monday: </strong>SteemMe V0.0.5</p> <p>- <strong>Tuesday:</strong> CoinStats - New Layout</p> <p>- <strong>Wednesday:</strong> SteemMe V0.0.6 - Wallet Detail Page</p> <p>- <strong>Thursday:</strong> CoinStats (Probably) - Running on a Server</p> <p>- <strong>Friday:</strong> SteemMe V0.0.7 - Display Wallet Volume in Currency</p> <h2><strong>Steem Swift Wrapper</strong></h2> <p>Almost all of my free time goes into this project. In private I develop a lot for iOS with Swift as programming language. In my opinion it is bad practice to develop mobile apps with JavaScript / etc... instead of their native language (Obj-C & Swift for iOS). So I took a lot of time to build a Wrapper for the Steem Blockchain. Thanks to the already finished Wrappers and my understanding in JS / Python I am able to make the Wrapper :)</p> <p>The Wrapper already works for fetching data of the Steem Blockchain. I am working currently on the last step for broadcasting (signing data). You can expect and Introducing post in the next 1-2 Weeks for this project. It will change the way Steem is used completely because a Swift Wrapper opens iOS for Steem integration !!!</p> <h2><strong>Steemit (financial) Transaction Bot</strong></h2> <p>CoinStats is coming to it's first final version, it only need to run on a web-server to be fully completed. Since I have more time then, my next bot will cover the whole transaction history for an account in a specified timespan. Meaning I want to gather and output all informations about when SBD / SP was earned, when it was converted to other coins, etc... -> to have an full overview about your earnings. </p> </html>
author | moonrise |
---|---|
permlink | dev-blog-9-upcoming-projects-steem-swift-wrapper-steemit-transaction-bot-week-plans |
category | development |
json_metadata | {"tags":["development","blog","life","cryptocurrency","coin"],"image":["https://www.commercialintegrator.com/wp-content/uploads/2017/09/coding-924920_1280-1000x650.jpg"],"app":"steemit/0.1","format":"html"} |
created | 2018-03-05 11:30:18 |
last_update | 2018-03-05 11:30:18 |
depth | 0 |
children | 4 |
last_payout | 2018-03-12 11:30:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.672 HBD |
curator_payout_value | 1.728 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,984 |
author_reputation | 10,047,335,281,671 |
root_title | "[Dev-Blog #9] Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,356,585 |
net_rshares | 1,810,318,346,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 1,796,910,653,064 | 100% | ||
gokulnk | 0 | 4,160,450,298 | 15% | ||
moonrise | 0 | 6,814,358,348 | 100% | ||
siraspurjitu | 0 | 1,206,686,374 | 1% | ||
psilocybit | 0 | 163,616,722 | 100% | ||
hevictor | 0 | 591,494,192 | 100% | ||
salyannur | 0 | 184,618,245 | 100% | ||
soyjoy | 0 | 286,469,424 | 100% |
I think your work on "Steem Swift Wrapper" will be most helpful to the community. Let us hope it will kickstart ios app based on Steem blockchain. BTW do you know how to get the comment perm link when you use `steem.broadcast.comment` method? From the output I am not able to get the permlink. I assumed that it would be available in the output of the method but there seems to be nothing there other than transaction id and related data.
author | gokulnk |
---|---|
permlink | re-moonrise-dev-blog-9-upcoming-projects-steem-swift-wrapper-steemit-transaction-bot-week-plans-20180305t185958459z |
category | development |
json_metadata | {"tags":["development"],"app":"steemit/0.1"} |
created | 2018-03-05 19:00:00 |
last_update | 2018-03-05 19:00:00 |
depth | 1 |
children | 2 |
last_payout | 2018-03-12 19:00:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 442 |
author_reputation | 17,871,219,215,380 |
root_title | "[Dev-Blog #9] Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,444,248 |
net_rshares | 0 |
Hey @gokulnk you pass the permlink parameter to the ```steem.broadcast.comment``` function so you should already have access to it. For example here I am using the string function to store the permlink for the comment before broadcasting, if you needed you could pass it to the callback function too. ``` let permlink = randomString(); steem.broadcast.comment( author_wif, '', tag, author_name, permlink, '', comment, { tags: ['tag1'], app: 'helloworld/v.0.0.1' }, function(err, result) { console.log(err, result); } ); ``` ``` function randomString() { let string = '' let allowedChars = "abcdefghijklmnopqrstuvwxyz0123456789"; for (var i = 0; i < 32; i++){ string += allowedChars.charAt(Math.floor(Math.random() * allowedChars.length)); } return string + '-post'; } ```
author | sambillingham |
---|---|
permlink | re-gokulnk-re-moonrise-dev-blog-9-upcoming-projects-steem-swift-wrapper-steemit-transaction-bot-week-plans-20180305t210913948z |
category | development |
json_metadata | {"tags":["development"],"users":["gokulnk"],"app":"steemit/0.1"} |
created | 2018-03-05 21:09:12 |
last_update | 2018-03-05 21:09:12 |
depth | 2 |
children | 1 |
last_payout | 2018-03-12 21:09:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 948 |
author_reputation | 34,876,406,478,004 |
root_title | "[Dev-Blog #9] Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,464,184 |
net_rshares | 6,934,083,831 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gokulnk | 0 | 6,934,083,831 | 35% |
@sambillingham you are a saviour. My bad, I took a break from coding and forgot that I was passing this parameter myself :P I am using the below for permlink and I can use the same for upvote as well. `var commentPermlink = steem.formatter.commentPermlink(parentAuthor, parentPermlink);`
author | gokulnk |
---|---|
permlink | re-sambillingham-re-gokulnk-re-moonrise-dev-blog-9-upcoming-projects-steem-swift-wrapper-steemit-transaction-bot-week-plans-20180306t145431305z |
category | development |
json_metadata | {"tags":["development"],"users":["sambillingham"],"app":"steemit/0.1"} |
created | 2018-03-06 14:54:33 |
last_update | 2018-03-06 14:54:33 |
depth | 3 |
children | 0 |
last_payout | 2018-03-13 14:54:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 288 |
author_reputation | 17,871,219,215,380 |
root_title | "[Dev-Blog #9] Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,643,642 |
net_rshares | 16,325,678,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sambillingham | 0 | 16,325,678,528 | 11% |
Post
author | salyannur |
---|---|
permlink | re-moonrise-dev-blog-9-upcoming-projects-steem-swift-wrapper-steemit-transaction-bot-week-plans-20180305t113131619z |
category | development |
json_metadata | {"tags":["development"],"app":"steemit/0.1"} |
created | 2018-03-05 11:31:33 |
last_update | 2018-03-05 11:31:33 |
depth | 1 |
children | 0 |
last_payout | 2018-03-12 11:31:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 279,453,964,922 |
root_title | "[Dev-Blog #9] Upcoming Projects (Steem Swift Wrapper, Steemit Transaction Bot) + Week Plans" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,356,858 |
net_rshares | 0 |