A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain ) by akintunde

View this thread on steempeak.com
· @akintunde · (edited)
$70.98
A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )
This explains the process of forking a bugged php steemblockchain access tool (php steem tools – <a href="https://github.com/dragosroua/php-steem-tools">GITHUB ADDRESS</a> ) to make a bug free and easily deployable version which is named (AKINGOS PHP STEEM-ACCESS  TOOLS – <a href ="https://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-" >GITHUB ADDRESS</a>)

I have a different username there (akintunde102). So below is a logged in section proof.
![login section.JPG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487045/cvc1d0uctdzsekzxpjcb.jpg)


Ever since I joined steemit, I have always wanted to tinker with the  STEEMBLOCKCHAIN but I had been skeptical about the availability of php steem tools for php developers to easily have access to the blockchain . So I started sniffing around and I came across @dragosroua  post  about a  <a href="https://steemit.com/steemit/@dragosroua/introducing-steem-api-tools-a-collection-of-php-tools-for-interacting-with-the-steem-blockchain">A Collection Of PHP Tools For Interacting With The Steem Blockchain </a>

He featured his own tool  on the blog post which he dubbed the **PHP Steem Tools** . The gihub address is  <a href="https://github.com/dragosroua/php-steem-tools">here</a> but then he quickly pointed out in the post that it is “by no means a production-ready package,” . 

So I downloaded it and for some reasons it didn’t work with my local server, WAMPSERVER 2.5 (PHP 5.5.12 , APACHE 2.4.9), so I started to work around with it.

The WEBSOCKET DEPENDENCY FILES were somewhat absent .

The first thing I did was to directly add all the files of the WEBSOCKET-PHP-MASTER  that the script seriously depended on. 

Below is a snapshot of the SRC  FOLDER of both scripts.
OLD SRC FOLDER
![p-his 1 jpg.JPG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487393/keig5xmh7t6hcb8osnwm.jpg)

THE NEW SRC FOLDER
![p-mine 1.JPG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487468/fjyzzumryr7nytwvyi90.jpg)

Those extra files in my own scripts snapshot are the  files the WEBSOCKET-PHP-MASTER depended upon, that was the best I could do at the moment to save time.

I guess he must have included the websocket script in a way that didn’t work with my version of WAMP , or maybe it was just a bug.

 All I know was that errors of not finding the WEBSOCKETS file kept coming up.  

The only thing I could find about the websocket file was in a composer.json file. It reads thus 

`{
    "name": "dragos-roua/php-steem-tools",
    "description": "Tools to interact with the Steem blockchain.",
    "keywords": ["steemit", "blockchain", "package"],
    "license": "MIT",
    "authors": [
        {
            "name": "Dragos Roua",
            "email": "dragosroua@gmail.com"
        }
    ],
    "type": "library",
    "require": {
		"php": ">=5.4",
		"textalk/websocket": "1.0.*"
    },
	"require-dev": {
		"phpunit/phpunit": "5.2.*"
    },
	"autoload": {
        "psr-4": {
            "DragosRoua\\PHPSteemTools\\": "src/"
        }
    }
}`

So, I knew he included it in a way but for some odd reasons it wouldn’t work in my local server and I believe being able to work with codes in a local development environment is highly important, more reason for the recreation.

Another issue I faced was for the file inclusion process and namespace issues. "*My server didn’t like that idea*", so I had to work around that. It wasn’t easy though, the source code seemed to be built around those namespaces , I had to change some codes so It could be compatible with the new inclusion.

Below is a snapshot of the changes.
His Inclusion Process
![p-his 2.JPG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487701/ahyhsldwgubmccjjpdii.jpg)

My Inclusion Process
![p-mine 2.JPG](https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487730/plou5f4km0rzhr5yay6w.jpg)



There are many more changes I made that could be seen and compared if you check through the codes in the github channels.

 I named the   recreated  (or forked) version, AKINGOS PHP STEEM-ACCESS  TOOLS , AKINGOS  is a combination of the first part of my name (AKINtunde) and the middle part of his username (draGOSroua).

# Now, the funny part .

He added quite an hilarious license to his own version. Here it goes:
> DON'T BE A dk PUBLIC LICENSE
Version 1, September 2017
Copyright (C) 2009 Dragos Roua dragosroua@gmail.com
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
DON'T BE A dk PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
Do whatever you like with the original work, just don't be a dk.
Being a dk includes - but is not limited to - the following instances:
1a. Outright copyright infringement - Don't just copy this and change the name.
1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dk.
1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dk.
If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dk would make loads off this work and not buy the original works creator(s) a pint.**
Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dk. Fix the problem yourself. A non-dk would submit the fix back..

The 'dk 'stands for an NFSW word that I wouldnt want to use here, You can read  the license on the github page to know what I mean.

So I have adopted his own license too but I adjusted the dk part to PRICK, you can find that on the github page. I hope I am not being a PRICK.

More so, I hope to give him a portion of whatever I generate on this post according to the license, but the discretion of that is totally up to me. I will promise not to be a prick.

Conclusively, I will like to say that my version of the PHP STEEMTOOLS allows any developer with at least PHP 5.5 upwards to have access to the STEEM BLOCKCHAIN, all you need is just download and load it up straight to your server. Unlike his, this is production ready. More so, my own version has an example script that allows you to view the number of users (I wrote an article about it <a href="https://steemit.com/steemit/@akintunde/steemuser-update-12-000-users-have-registered-in-the-last-one-week">here</a>) and to see the number of intending witnesses on steemit .


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@akintunde/a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , ,
properties (23)
post_id19,544,121
authorakintunde
permlinka-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain
categoryutopian-io
json_metadata"{"type": "development", "repository": {"id": 113196749, "watchers": 0, "events_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/events", "forks": 0, "name": "AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "issues_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/issues{/number}", "trees_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/git/trees{/sha}", "fork": false, "git_url": "git://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-.git", "assignees_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/assignees{/user}", "size": 0, "owner": {"id": 17033759, "following_url": "https://api.github.com/users/Akintunde102/following{/other_user}", "starred_url": "https://api.github.com/users/Akintunde102/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Akintunde102/subscriptions", "repos_url": "https://api.github.com/users/Akintunde102/repos", "login": "Akintunde102", "gists_url": "https://api.github.com/users/Akintunde102/gists{/gist_id}", "followers_url": "https://api.github.com/users/Akintunde102/followers", "received_events_url": "https://api.github.com/users/Akintunde102/received_events", "type": "User", "avatar_url": "https://avatars2.githubusercontent.com/u/17033759?v=4", "site_admin": false, "organizations_url": "https://api.github.com/users/Akintunde102/orgs", "gravatar_id": "", "events_url": "https://api.github.com/users/Akintunde102/events{/privacy}", "url": "https://api.github.com/users/Akintunde102", "html_url": "https://github.com/Akintunde102"}, "forks_count": 0, "git_refs_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/git/refs{/sha}", "blobs_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/git/blobs{/sha}", "pushed_at": "2017-12-05T15:10:39Z", "watchers_count": 0, "teams_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/teams", "comments_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/comments{/number}", "archived": false, "svn_url": "https://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "merges_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/merges", "subscribers_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/subscribers", "issue_events_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/issues/events{/number}", "stargazers_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/stargazers", "mirror_url": null, "statuses_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/statuses/{sha}", "has_projects": true, "milestones_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/milestones{/number}", "description": null, "keys_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/keys{/key_id}", "open_issues": 0, "compare_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/compare/{base}...{head}", "ssh_url": "git@github.com:Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-.git", "license": {"name": "Other", "key": "other", "url": null, "spdx_id": null}, "html_url": "https://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "commits_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/commits{/sha}", "open_issues_count": 0, "stargazers_count": 0, "branches_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/branches{/branch}", "full_name": "Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "forks_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/forks", "score": 4.677563, "deployments_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/deployments", "contributors_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/contributors", "homepage": null, "contents_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/contents/{+path}", "has_downloads": true, "collaborators_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/collaborators{/collaborator}", "created_at": "2017-12-05T15:05:45Z", "git_commits_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/git/commits{/sha}", "releases_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/releases{/id}", "private": false, "pulls_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/pulls{/number}", "git_tags_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/git/tags{/sha}", "notifications_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/notifications{?since,all,participating}", "language": "PHP", "updated_at": "2017-12-05T15:10:07Z", "has_wiki": true, "downloads_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/downloads", "hooks_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/hooks", "languages_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/languages", "default_branch": "master", "labels_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/labels{/name}", "url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "has_pages": false, "tags_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/tags", "clone_url": "https://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-.git", "archive_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/{archive_format}{/ref}", "has_issues": true, "issue_comment_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/issues/comments{/number}", "subscription_url": "https://api.github.com/repos/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-/subscription"}, "pullRequests": [], "format": "markdown", "image": ["https://res.cloudinary.com/hpiynhbhq/image/upload/v1512487045/cvc1d0uctdzsekzxpjcb.jpg"], "links": ["https://github.com/dragosroua/php-steem-tools", "https://github.com/Akintunde102/AKINGOS-PHP-STEEM-ACCESS-TOOLS-", "https://steemit.com/steemit/@dragosroua/introducing-steem-api-tools-a-collection-of-php-tools-for-interacting-with-the-steem-blockchain", "https://steemit.com/steemit/@akintunde/steemuser-update-12-000-users-have-registered-in-the-last-one-week", "https://utopian.io/utopian-io/@akintunde/a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain"], "app": "steemit/0.1", "platform": "github", "tags": ["utopian-io", "steem", "php", "api", "steemit"], "community": "utopian", "users": ["dragosroua"]}"
created2017-12-05 15:53:03
last_update2017-12-05 23:37:21
depth0
children11
net_rshares21,778,724,976,841
last_payout2017-12-12 15:53:03
cashout_time1969-12-31 23:59:59
total_payout_value51.430 SBD
curator_payout_value19.548 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6,697
author_reputation16,553,464,008,506
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries
0.
accountarie.steem
weight48
1.
accountcnts
weight10
2.
accountfreedom
weight658
3.
accountknowledges
weight47
4.
accountnetuoso
weight6
5.
accounttransisto
weight70
6.
accountutopian-io
weight536
7.
accountxeldal
weight27
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (17)
@reggaemuffin ·
$0.17
Your contribution cannot be approved yet. See the [Utopian Rules](https://utopian.io/rules). Please edit your contribution to reapply for approval.

Can you format your code as code?

```
do code between ``` and it will look better.
```



You may edit your post [here](https://utopian.io/utopian-io/@akintunde/a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain), as shown below: 
![](https://res.cloudinary.com/hpiynhbhq/image/upload/v1509788371/nbgbomithszxs3nxq6gx.png)

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  , , , ,
properties (23)
post_id19,545,779
authorreggaemuffin
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t161414913z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-05 16:14:15
last_update2017-12-05 16:14:15
depth1
children3
net_rshares47,174,806,973
last_payout2017-12-12 16:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.168 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length629
author_reputation37,631,848,837,452
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@akintunde ·
$0.38
It has been reedited @reggaemuffin
👍  
properties (23)
post_id19,546,838
authorakintunde
permlinkre-reggaemuffin-re-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t162716605z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-05 16:27:21
last_update2017-12-05 16:27:21
depth2
children2
net_rshares106,049,766,274
last_payout2017-12-12 16:27:21
cashout_time1969-12-31 23:59:59
total_payout_value0.368 SBD
curator_payout_value0.015 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length34
author_reputation16,553,464,008,506
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@reggaemuffin ·
$0.22
Thank you :)

As a future note, check out https://getcomposer.org/ and you will find a way to get all the missing libraries. It would be a good thing to check it out and see how it works for future projects :)
👍  , , , , , , ,
properties (23)
post_id19,547,078
authorreggaemuffin
permlinkre-akintunde-re-reggaemuffin-re-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t163025833z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "links": ["https://getcomposer.org/"], "tags": ["utopian-io"]}"
created2017-12-05 16:30:24
last_update2017-12-05 16:30:24
depth3
children1
net_rshares61,251,578,516
last_payout2017-12-12 16:30:24
cashout_time1969-12-31 23:59:59
total_payout_value0.222 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length209
author_reputation37,631,848,837,452
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (8)
@reggaemuffin ·
$0.25
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  , , , , , ,
properties (23)
post_id19,547,104
authorreggaemuffin
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t163044233z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-05 16:30:45
last_update2017-12-05 16:30:45
depth1
children0
net_rshares69,833,548,450
last_payout2017-12-12 16:30:45
cashout_time1969-12-31 23:59:59
total_payout_value0.252 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation37,631,848,837,452
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (7)
@ecoman1 ·
it is sure ...
properties (22)
post_id19,562,139
authorecoman1
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t194105531z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-05 19:41:09
last_update2017-12-05 19:41:09
depth1
children0
net_rshares0
last_payout2017-12-12 19:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation3,593,813,663
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rufans ·
I love this bro ✅
Bravo ✅ I'm glad with your article
properties (22)
post_id19,573,792
authorrufans
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171205t224138832z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-05 22:41:39
last_update2017-12-05 22:41:39
depth1
children1
net_rshares0
last_payout2017-12-12 22:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation71,157,752,447,147
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@akintunde ·
Thank you
properties (22)
post_id19,579,499
authorakintunde
permlinkre-rufans-re-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171206t002748123z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-06 00:28:45
last_update2017-12-06 00:28:45
depth2
children0
net_rshares0
last_payout2017-12-13 00:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation16,553,464,008,506
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
### Hey @akintunde I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
post_id19,658,927
authorutopian-io
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171206t215506334z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-12-06 21:55:06
last_update2017-12-06 21:55:06
depth1
children0
net_rshares0
last_payout2017-12-13 21:55:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,085
author_reputation152,913,012,544,965
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@deveerei ·
Funny license. Did you buy him a pint though? If not, you're being a dk.
properties (22)
post_id22,649,552
authordeveerei
permlinkre-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171230t105233695z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-12-30 10:52:30
last_update2017-12-30 10:52:30
depth1
children1
net_rshares0
last_payout2018-01-06 10:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length72
author_reputation73,752,675,176,126
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@akintunde ·
$0.19
Yes, I did. I sent him 0.5 sbd. That should be okay for a pint. LOL
👍  
properties (23)
post_id22,732,675
authorakintunde
permlinkre-deveerei-re-akintunde-a-recreation-fork-of-php-steem-tools-an-open-source-php-library-for-the-steem-blockchain-20171230t232641664z
categoryutopian-io
json_metadata"{"app": "busy/2.2.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-30 23:26:42
last_update2017-12-30 23:26:42
depth2
children0
net_rshares19,371,803,658
last_payout2018-01-06 23:26:42
cashout_time1969-12-31 23:59:59
total_payout_value0.186 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation16,553,464,008,506
root_title"A RECREATION (FORK) OF PHP STEEM TOOLS (An Open Source PHP Library For The Steem Blockchain )"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)