transactions | 0. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"oldbutgold","following":"nohely","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f5da66b9aac495fe5c719088e70ca8f319f9ae9e1291761ecfceb6ca4707f326039024829e70ca0caf6709e4dc82b88f83533fc2240eff8915d37e569d9b76237 |
---|
|
---|
transaction_id | 8457a426d291192c89739e8a45bb1ed02f7f4442 |
---|
block_num | 21,167,238 |
---|
transaction_num | 0 |
---|
|
---|
1. | ref_block_num | 64,622 |
---|
ref_block_prefix | 2,382,807,422 |
---|
expiration | 2018-03-31 21:32:57 |
---|
operations | 0. | 0. | transfer |
---|
1. | from | rinmo |
---|
to | nanobot |
---|
amount | 0.001 HBD |
---|
memo | https://steemit.com/dmania/@rinmo/its-my-birthday-so-heres-a-sunday-stolen-meme-dump-zg1hbmlh-8ktv5 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f4385e25f9ba1a52e9a3d5245d8fbeae2c76fdc320ca75d7d74c11e627c0fcf6b02431835ef89b4683e8dffc3332f65eb0c6f3ca39fdfa92fe6f856ffea236023 |
---|
|
---|
transaction_id | 9b1748fe9d96677fe7f6fcf2685361d810982aba |
---|
block_num | 21,167,238 |
---|
transaction_num | 1 |
---|
|
---|
2. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | "" |
---|
parent_permlink | utopian-io |
---|
author | dotevo |
---|
permlink | steemnova-marketplace-history-and-bugfixes |
---|
title | "Steemnova: Marketplace history and bugfixes" |
---|
body | "### Market history
Marketplace is a very useful feature in the game. Every user can create offers and wait for the customer. But it is always difficult to find the real value of the resources. Some offers are on the market many days and fleet goes back with nothing. Ratio of the resources changes in the game all the time, but what is actual value?
The solution is simple. History of the transactions. If offer has bought it is possible that similar one also.

#### Implementation
It is one of the smallest features which I made for steemnova so I will try to describe it accurately.
The first step was to create a new function in the ShowMarketPlacePage.class.php which will return the data from the database.
```php
+ private function getTradeHistory() {
+ $db = Database::get();
```
Database::get returns object of the database to run query.
``` php
+ $sql = 'SELECT
+ seller_u.username as seller,
+ buyer_u.username as buyer,
+ buy_time as time,
+ ex_resource_type as type,
+ ex_resource_amount as amount,
+ seller.fleet_resource_metal as metal,
+ seller.fleet_resource_crystal as crystal,
+ seller.fleet_resource_deuterium as deuterium
+ FROM %%TRADES%%
+ JOIN %%LOG_FLEETS%% seller ON seller.fleet_id = seller_fleet_id
+ JOIN %%LOG_FLEETS%% buyer ON buyer.fleet_id = buyer_fleet_id
+ JOIN %%USERS%% buyer_u ON buyer_u.id = buyer.fleet_owner
+ JOIN %%USERS%% seller_u ON seller_u.id = seller.fleet_owner
+ WHERE transaction_type = 0 ORDER BY time DESC LIMIT 40;';
```
This query return the last 40 transactions. JOIN is used to get the buyer and seller name. Change has been merged without the names because players wanted this solution first. But I plan to create a special setting in the administration panel to give possibility of changing it. That's why still old query is used.
```php
+ $trades = $db->select($sql, array(
+ ));
+ return $trades;
+ }
```
$db->sekect runs query and returns the results. Result goes to the template:
``` php
$this->assign(array(
'message' => $message,
'FlyingFleetList' => $FlyingFleetList,
+ 'history' => $this->getTradeHistory(),
));
$this->tplObj->loadscript('marketplace.js');
$this->display('page.marketPlace.default.tpl');
```
And in template new table has been created.
``` html
+<table id="historyList" style="width:50%;white-space: nowrap;" class="tablesorter">
+ <thead>
+ <tr>
+ <th>ID</th>
+ <th>{$LNG.tkb_datum}</th>
+ <th>{$LNG['tech'][901]}</th>
+ <th>{$LNG['tech'][902]}</th>
+ <th>{$LNG['tech'][903]}</th>
+ <th class="no-background no-border center">-></th>
+ <th>{$LNG.market_p_cost_amount}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {foreach name=History item=row from=$history}
+ <tr>
+ <td>{$smarty.foreach.History.iteration}</td>
+ <td>{$row.time}</td>
+ <td>{$row.metal}</td>
+ <td>{$row.crystal}</td>
+ <td>{$row.deuterium}</td>
+ <td class="no-background no-border center">
+ {if $row.type == 1}<img src="./styles/theme/nova/images/metal.gif"/>
+ {elseif $row.type == 2}<img src="./styles/theme/nova/images/crystal.gif"/>
+ {elseif $row.type == 3}<img src="./styles/theme/nova/images/deuterium.gif"/>{/if}</td>
+ <td>{$row.amount}</td>
+ </tr>
+ {/foreach}
+ </tbody>
+</table>
```
### Bugfix: No diplo
This bug happens if someone is in alliance but without packts:

#### Solution
Fix is simple. If no diplomatic level found, use the null value.
``` php
includes/pages/game/ShowMarketPlacePage.class.php
@@ -100,7 +100,11 @@ private function doBuy() {
':ow' => $USER['ally_id'],
':ow2' => $fleetResult[0]['ally_id'],
));
- $buy = $this->checkBuyable($fleetResult[0]['filter_visibility'], $res[0]['level'], $fleetResult[0]['ally_id'], $USER['ally_id']);
+ $level = null;
+ if ($db->rowCount() != 0) {
+ $level = $res[0]['level'];
+ }
+ $buy = $this->checkBuyable($fleetResult[0]['filter_visibility'], $level, $fleetResult[0]['ally_id'], $USER['ally_id']);
if(!$buy['buyable']) {
return $buy['reason'];
}
```
### Bugfix: Research
It was possible to do research and build laboratory at the same time if good order has been used.

Full description of the bug [here](https://utopian.io/utopian-io/@dotevo/parallel-action-building-res-lab-and-research)
#### Solution
In file includes/pages/game/ShowResearchPage.class.php which is responsible for research was simple checking but only the planet with the research.
The easiest solution was to check all planets. I did the SQL query and function is checking all planets know.
``` php
private function CheckLabSettingsInQueue()
{
- global $PLANET;
- if ($PLANET['b_building'] == 0)
- return true;
-
- $CurrentQueue = unserialize($PLANET['b_building_id']);
- foreach($CurrentQueue as $ListIDArray) {
- if($ListIDArray[0] == 6 || $ListIDArray[0] == 31)
- return false;
+ global $USER;
+ $db = Database::get();
+ $sql = "SELECT * FROM %%PLANETS%% WHERE id_owner = :owner;";
+ $planets = $db->select($sql, array(
+ ':owner' => $USER['id'],
+ ));
+
+ foreach ($planets as $planet)
+ {
+ if ($planet['b_building'] == 0)
+ continue;
+
+ $CurrentQueue = unserialize($planet['b_building_id']);
+ foreach($CurrentQueue as $ListIDArray) {
+ if($ListIDArray[0] == 6 || $ListIDArray[0] == 31)
+ return false;
+ }
}
return true;
}
```
<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@dotevo/steemnova-marketplace-history-and-bugfixes">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>" |
---|
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":118179003,"name":"steemnova","full_name":"steemnova/steemnova","html_url":"https://github.com/steemnova/steemnova","fork":false,"owner":{"login":"steemnova"}},"pullRequests":[{"url":"https://api.github.com/repos/steemnova/steemnova/pulls/97","id":178260613,"html_url":"https://github.com/steemnova/steemnova/pull/97","diff_url":"https://github.com/steemnova/steemnova/pull/97.diff","patch_url":"https://github.com/steemnova/steemnova/pull/97.patch","issue_url":"https://api.github.com/repos/steemnova/steemnova/issues/97","number":97,"state":"closed","locked":false,"title":"Fix: Market: No diplo","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-03-29T08:34:07Z","updated_at":"2018-03-29T13:20:51Z","closed_at":"2018-03-29T13:20:51Z","merged_at":"2018-03-29T13:20:51Z","merge_commit_sha":"d30f93ef3849b61a7b5e70be7ffe4b7ae09090ee","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/steemnova/steemnova/pulls/97/commits","review_comments_url":"https://api.github.com/repos/steemnova/steemnova/pulls/97/comments","review_comment_url":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}","comments_url":"https://api.github.com/repos/steemnova/steemnova/issues/97/comments","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/e90db51adf888f0338c928957a5a5ba2cdfdcb46","head":{"label":"dotevo:sql_fix","ref":"sql_fix","sha":"e90db51adf888f0338c928957a5a5ba2cdfdcb46","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"repo":{"id":122082367,"name":"steemnova","full_name":"dotevo/steemnova","owner":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dotevo/steemnova","description":null,"fork":true,"url":"https://api.github.com/repos/dotevo/steemnova","forks_url":"https://api.github.com/repos/dotevo/steemnova/forks","keys_url":"https://api.github.com/repos/dotevo/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dotevo/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dotevo/steemnova/teams","hooks_url":"https://api.github.com/repos/dotevo/steemnova/hooks","issue_events_url":"https://api.github.com/repos/dotevo/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/dotevo/steemnova/events","assignees_url":"https://api.github.com/repos/dotevo/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/dotevo/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/dotevo/steemnova/tags","blobs_url":"https://api.github.com/repos/dotevo/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dotevo/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dotevo/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/dotevo/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dotevo/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/dotevo/steemnova/languages","stargazers_url":"https://api.github.com/repos/dotevo/steemnova/stargazers","contributors_url":"https://api.github.com/repos/dotevo/steemnova/contributors","subscribers_url":"https://api.github.com/repos/dotevo/steemnova/subscribers","subscription_url":"https://api.github.com/repos/dotevo/steemnova/subscription","commits_url":"https://api.github.com/repos/dotevo/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/dotevo/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/dotevo/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/dotevo/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/dotevo/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/dotevo/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dotevo/steemnova/merges","archive_url":"https://api.github.com/repos/dotevo/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dotevo/steemnova/downloads","issues_url":"https://api.github.com/repos/dotevo/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/dotevo/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/dotevo/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/dotevo/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dotevo/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/dotevo/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/dotevo/steemnova/deployments","created_at":"2018-02-19T15:33:21Z","updated_at":"2018-02-19T15:33:25Z","pushed_at":"2018-03-30T20:37:04Z","git_url":"git://github.com/dotevo/steemnova.git","ssh_url":"git@github.com:dotevo/steemnova.git","clone_url":"https://github.com/dotevo/steemnova.git","svn_url":"https://github.com/dotevo/steemnova","homepage":null,"size":10785,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"steemnova:master","ref":"master","sha":"2fd1f07b59b67a0356c1193f7b1b2ea3f3c0664f","user":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"repo":{"id":118179003,"name":"steemnova","full_name":"steemnova/steemnova","owner":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/steemnova/steemnova","description":null,"fork":false,"url":"https://api.github.com/repos/steemnova/steemnova","forks_url":"https://api.github.com/repos/steemnova/steemnova/forks","keys_url":"https://api.github.com/repos/steemnova/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/steemnova/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/steemnova/steemnova/teams","hooks_url":"https://api.github.com/repos/steemnova/steemnova/hooks","issue_events_url":"https://api.github.com/repos/steemnova/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/steemnova/steemnova/events","assignees_url":"https://api.github.com/repos/steemnova/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/steemnova/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/steemnova/steemnova/tags","blobs_url":"https://api.github.com/repos/steemnova/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/steemnova/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/steemnova/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/steemnova/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/steemnova/steemnova/languages","stargazers_url":"https://api.github.com/repos/steemnova/steemnova/stargazers","contributors_url":"https://api.github.com/repos/steemnova/steemnova/contributors","subscribers_url":"https://api.github.com/repos/steemnova/steemnova/subscribers","subscription_url":"https://api.github.com/repos/steemnova/steemnova/subscription","commits_url":"https://api.github.com/repos/steemnova/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/steemnova/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/steemnova/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/steemnova/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/steemnova/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/steemnova/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/steemnova/steemnova/merges","archive_url":"https://api.github.com/repos/steemnova/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/steemnova/steemnova/downloads","issues_url":"https://api.github.com/repos/steemnova/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/steemnova/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/steemnova/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/steemnova/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/steemnova/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/steemnova/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/steemnova/steemnova/deployments","created_at":"2018-01-19T21:11:59Z","updated_at":"2018-03-30T21:15:44Z","pushed_at":"2018-03-30T21:15:42Z","git_url":"git://github.com/steemnova/steemnova.git","ssh_url":"git@github.com:steemnova/steemnova.git","clone_url":"https://github.com/steemnova/steemnova.git","svn_url":"https://github.com/steemnova/steemnova","homepage":null,"size":10952,"stargazers_count":10,"watchers_count":10,"language":"PHP","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":17,"mirror_url":null,"archived":false,"open_issues_count":23,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":17,"open_issues":23,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/97"},"html":{"href":"https://github.com/steemnova/steemnova/pull/97"},"issue":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/97"},"comments":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/97/comments"},"review_comments":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/97/comments"},"review_comment":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/97/commits"},"statuses":{"href":"https://api.github.com/repos/steemnova/steemnova/statuses/e90db51adf888f0338c928957a5a5ba2cdfdcb46"}},"author_association":"CONTRIBUTOR"},{"url":"https://api.github.com/repos/steemnova/steemnova/pulls/94","id":178142074,"html_url":"https://github.com/steemnova/steemnova/pull/94","diff_url":"https://github.com/steemnova/steemnova/pull/94.diff","patch_url":"https://github.com/steemnova/steemnova/pull/94.patch","issue_url":"https://api.github.com/repos/steemnova/steemnova/issues/94","number":94,"state":"closed","locked":false,"title":"Marketplace: Trade history","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-03-28T19:39:48Z","updated_at":"2018-03-28T21:25:48Z","closed_at":"2018-03-28T21:25:48Z","merged_at":"2018-03-28T21:25:48Z","merge_commit_sha":"f7bd921c4a2183ac0e333adf4f4ee7bbe37a42c5","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/steemnova/steemnova/pulls/94/commits","review_comments_url":"https://api.github.com/repos/steemnova/steemnova/pulls/94/comments","review_comment_url":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}","comments_url":"https://api.github.com/repos/steemnova/steemnova/issues/94/comments","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/62cdbf32de94caa55e0b83e95315b106421ea08a","head":{"label":"dotevo:trade_history","ref":"trade_history","sha":"62cdbf32de94caa55e0b83e95315b106421ea08a","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"repo":{"id":122082367,"name":"steemnova","full_name":"dotevo/steemnova","owner":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dotevo/steemnova","description":null,"fork":true,"url":"https://api.github.com/repos/dotevo/steemnova","forks_url":"https://api.github.com/repos/dotevo/steemnova/forks","keys_url":"https://api.github.com/repos/dotevo/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dotevo/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dotevo/steemnova/teams","hooks_url":"https://api.github.com/repos/dotevo/steemnova/hooks","issue_events_url":"https://api.github.com/repos/dotevo/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/dotevo/steemnova/events","assignees_url":"https://api.github.com/repos/dotevo/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/dotevo/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/dotevo/steemnova/tags","blobs_url":"https://api.github.com/repos/dotevo/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dotevo/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dotevo/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/dotevo/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dotevo/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/dotevo/steemnova/languages","stargazers_url":"https://api.github.com/repos/dotevo/steemnova/stargazers","contributors_url":"https://api.github.com/repos/dotevo/steemnova/contributors","subscribers_url":"https://api.github.com/repos/dotevo/steemnova/subscribers","subscription_url":"https://api.github.com/repos/dotevo/steemnova/subscription","commits_url":"https://api.github.com/repos/dotevo/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/dotevo/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/dotevo/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/dotevo/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/dotevo/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/dotevo/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dotevo/steemnova/merges","archive_url":"https://api.github.com/repos/dotevo/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dotevo/steemnova/downloads","issues_url":"https://api.github.com/repos/dotevo/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/dotevo/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/dotevo/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/dotevo/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dotevo/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/dotevo/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/dotevo/steemnova/deployments","created_at":"2018-02-19T15:33:21Z","updated_at":"2018-02-19T15:33:25Z","pushed_at":"2018-03-30T20:37:04Z","git_url":"git://github.com/dotevo/steemnova.git","ssh_url":"git@github.com:dotevo/steemnova.git","clone_url":"https://github.com/dotevo/steemnova.git","svn_url":"https://github.com/dotevo/steemnova","homepage":null,"size":10785,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"steemnova:master","ref":"master","sha":"dfa991cc4da6254b3b4d35a82d1bee4ff4d9e5dc","user":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"repo":{"id":118179003,"name":"steemnova","full_name":"steemnova/steemnova","owner":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/steemnova/steemnova","description":null,"fork":false,"url":"https://api.github.com/repos/steemnova/steemnova","forks_url":"https://api.github.com/repos/steemnova/steemnova/forks","keys_url":"https://api.github.com/repos/steemnova/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/steemnova/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/steemnova/steemnova/teams","hooks_url":"https://api.github.com/repos/steemnova/steemnova/hooks","issue_events_url":"https://api.github.com/repos/steemnova/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/steemnova/steemnova/events","assignees_url":"https://api.github.com/repos/steemnova/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/steemnova/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/steemnova/steemnova/tags","blobs_url":"https://api.github.com/repos/steemnova/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/steemnova/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/steemnova/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/steemnova/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/steemnova/steemnova/languages","stargazers_url":"https://api.github.com/repos/steemnova/steemnova/stargazers","contributors_url":"https://api.github.com/repos/steemnova/steemnova/contributors","subscribers_url":"https://api.github.com/repos/steemnova/steemnova/subscribers","subscription_url":"https://api.github.com/repos/steemnova/steemnova/subscription","commits_url":"https://api.github.com/repos/steemnova/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/steemnova/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/steemnova/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/steemnova/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/steemnova/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/steemnova/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/steemnova/steemnova/merges","archive_url":"https://api.github.com/repos/steemnova/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/steemnova/steemnova/downloads","issues_url":"https://api.github.com/repos/steemnova/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/steemnova/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/steemnova/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/steemnova/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/steemnova/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/steemnova/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/steemnova/steemnova/deployments","created_at":"2018-01-19T21:11:59Z","updated_at":"2018-03-30T21:15:44Z","pushed_at":"2018-03-30T21:15:42Z","git_url":"git://github.com/steemnova/steemnova.git","ssh_url":"git@github.com:steemnova/steemnova.git","clone_url":"https://github.com/steemnova/steemnova.git","svn_url":"https://github.com/steemnova/steemnova","homepage":null,"size":10952,"stargazers_count":10,"watchers_count":10,"language":"PHP","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":17,"mirror_url":null,"archived":false,"open_issues_count":23,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":17,"open_issues":23,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/94"},"html":{"href":"https://github.com/steemnova/steemnova/pull/94"},"issue":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/94"},"comments":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/94/comments"},"review_comments":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/94/comments"},"review_comment":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/94/commits"},"statuses":{"href":"https://api.github.com/repos/steemnova/steemnova/statuses/62cdbf32de94caa55e0b83e95315b106421ea08a"}},"author_association":"CONTRIBUTOR"},{"url":"https://api.github.com/repos/steemnova/steemnova/pulls/71","id":176342729,"html_url":"https://github.com/steemnova/steemnova/pull/71","diff_url":"https://github.com/steemnova/steemnova/pull/71.diff","patch_url":"https://github.com/steemnova/steemnova/pull/71.patch","issue_url":"https://api.github.com/repos/steemnova/steemnova/issues/71","number":71,"state":"closed","locked":false,"title":"Research: Check all planets","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"body":"","created_at":"2018-03-20T22:43:03Z","updated_at":"2018-03-21T19:10:38Z","closed_at":"2018-03-21T19:10:38Z","merged_at":"2018-03-21T19:10:38Z","merge_commit_sha":"8d1d9d3987de5abc3db2b93c45c36cb9e90fe20e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/steemnova/steemnova/pulls/71/commits","review_comments_url":"https://api.github.com/repos/steemnova/steemnova/pulls/71/comments","review_comment_url":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}","comments_url":"https://api.github.com/repos/steemnova/steemnova/issues/71/comments","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/3282d4e88d839ee778fd13e14ff06e1136f225e6","head":{"label":"dotevo:bug_lab","ref":"bug_lab","sha":"3282d4e88d839ee778fd13e14ff06e1136f225e6","user":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"repo":{"id":122082367,"name":"steemnova","full_name":"dotevo/steemnova","owner":{"login":"dotevo","id":246080,"avatar_url":"https://avatars0.githubusercontent.com/u/246080?v=4","gravatar_id":"","url":"https://api.github.com/users/dotevo","html_url":"https://github.com/dotevo","followers_url":"https://api.github.com/users/dotevo/followers","following_url":"https://api.github.com/users/dotevo/following{/other_user}","gists_url":"https://api.github.com/users/dotevo/gists{/gist_id}","starred_url":"https://api.github.com/users/dotevo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotevo/subscriptions","organizations_url":"https://api.github.com/users/dotevo/orgs","repos_url":"https://api.github.com/users/dotevo/repos","events_url":"https://api.github.com/users/dotevo/events{/privacy}","received_events_url":"https://api.github.com/users/dotevo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/dotevo/steemnova","description":null,"fork":true,"url":"https://api.github.com/repos/dotevo/steemnova","forks_url":"https://api.github.com/repos/dotevo/steemnova/forks","keys_url":"https://api.github.com/repos/dotevo/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dotevo/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dotevo/steemnova/teams","hooks_url":"https://api.github.com/repos/dotevo/steemnova/hooks","issue_events_url":"https://api.github.com/repos/dotevo/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/dotevo/steemnova/events","assignees_url":"https://api.github.com/repos/dotevo/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/dotevo/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/dotevo/steemnova/tags","blobs_url":"https://api.github.com/repos/dotevo/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dotevo/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dotevo/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/dotevo/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dotevo/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/dotevo/steemnova/languages","stargazers_url":"https://api.github.com/repos/dotevo/steemnova/stargazers","contributors_url":"https://api.github.com/repos/dotevo/steemnova/contributors","subscribers_url":"https://api.github.com/repos/dotevo/steemnova/subscribers","subscription_url":"https://api.github.com/repos/dotevo/steemnova/subscription","commits_url":"https://api.github.com/repos/dotevo/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/dotevo/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/dotevo/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/dotevo/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/dotevo/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/dotevo/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dotevo/steemnova/merges","archive_url":"https://api.github.com/repos/dotevo/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dotevo/steemnova/downloads","issues_url":"https://api.github.com/repos/dotevo/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/dotevo/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/dotevo/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/dotevo/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dotevo/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/dotevo/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/dotevo/steemnova/deployments","created_at":"2018-02-19T15:33:21Z","updated_at":"2018-02-19T15:33:25Z","pushed_at":"2018-03-30T20:37:04Z","git_url":"git://github.com/dotevo/steemnova.git","ssh_url":"git@github.com:dotevo/steemnova.git","clone_url":"https://github.com/dotevo/steemnova.git","svn_url":"https://github.com/dotevo/steemnova","homepage":null,"size":10785,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"steemnova:master","ref":"master","sha":"b3aad7e07964c7d7d0337e33f17d13b2c590bb66","user":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"repo":{"id":118179003,"name":"steemnova","full_name":"steemnova/steemnova","owner":{"login":"steemnova","id":35613083,"avatar_url":"https://avatars0.githubusercontent.com/u/35613083?v=4","gravatar_id":"","url":"https://api.github.com/users/steemnova","html_url":"https://github.com/steemnova","followers_url":"https://api.github.com/users/steemnova/followers","following_url":"https://api.github.com/users/steemnova/following{/other_user}","gists_url":"https://api.github.com/users/steemnova/gists{/gist_id}","starred_url":"https://api.github.com/users/steemnova/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steemnova/subscriptions","organizations_url":"https://api.github.com/users/steemnova/orgs","repos_url":"https://api.github.com/users/steemnova/repos","events_url":"https://api.github.com/users/steemnova/events{/privacy}","received_events_url":"https://api.github.com/users/steemnova/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/steemnova/steemnova","description":null,"fork":false,"url":"https://api.github.com/repos/steemnova/steemnova","forks_url":"https://api.github.com/repos/steemnova/steemnova/forks","keys_url":"https://api.github.com/repos/steemnova/steemnova/keys{/key_id}","collaborators_url":"https://api.github.com/repos/steemnova/steemnova/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/steemnova/steemnova/teams","hooks_url":"https://api.github.com/repos/steemnova/steemnova/hooks","issue_events_url":"https://api.github.com/repos/steemnova/steemnova/issues/events{/number}","events_url":"https://api.github.com/repos/steemnova/steemnova/events","assignees_url":"https://api.github.com/repos/steemnova/steemnova/assignees{/user}","branches_url":"https://api.github.com/repos/steemnova/steemnova/branches{/branch}","tags_url":"https://api.github.com/repos/steemnova/steemnova/tags","blobs_url":"https://api.github.com/repos/steemnova/steemnova/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/steemnova/steemnova/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/steemnova/steemnova/git/refs{/sha}","trees_url":"https://api.github.com/repos/steemnova/steemnova/git/trees{/sha}","statuses_url":"https://api.github.com/repos/steemnova/steemnova/statuses/{sha}","languages_url":"https://api.github.com/repos/steemnova/steemnova/languages","stargazers_url":"https://api.github.com/repos/steemnova/steemnova/stargazers","contributors_url":"https://api.github.com/repos/steemnova/steemnova/contributors","subscribers_url":"https://api.github.com/repos/steemnova/steemnova/subscribers","subscription_url":"https://api.github.com/repos/steemnova/steemnova/subscription","commits_url":"https://api.github.com/repos/steemnova/steemnova/commits{/sha}","git_commits_url":"https://api.github.com/repos/steemnova/steemnova/git/commits{/sha}","comments_url":"https://api.github.com/repos/steemnova/steemnova/comments{/number}","issue_comment_url":"https://api.github.com/repos/steemnova/steemnova/issues/comments{/number}","contents_url":"https://api.github.com/repos/steemnova/steemnova/contents/{+path}","compare_url":"https://api.github.com/repos/steemnova/steemnova/compare/{base}...{head}","merges_url":"https://api.github.com/repos/steemnova/steemnova/merges","archive_url":"https://api.github.com/repos/steemnova/steemnova/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/steemnova/steemnova/downloads","issues_url":"https://api.github.com/repos/steemnova/steemnova/issues{/number}","pulls_url":"https://api.github.com/repos/steemnova/steemnova/pulls{/number}","milestones_url":"https://api.github.com/repos/steemnova/steemnova/milestones{/number}","notifications_url":"https://api.github.com/repos/steemnova/steemnova/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/steemnova/steemnova/labels{/name}","releases_url":"https://api.github.com/repos/steemnova/steemnova/releases{/id}","deployments_url":"https://api.github.com/repos/steemnova/steemnova/deployments","created_at":"2018-01-19T21:11:59Z","updated_at":"2018-03-30T21:15:44Z","pushed_at":"2018-03-30T21:15:42Z","git_url":"git://github.com/steemnova/steemnova.git","ssh_url":"git@github.com:steemnova/steemnova.git","clone_url":"https://github.com/steemnova/steemnova.git","svn_url":"https://github.com/steemnova/steemnova","homepage":null,"size":10952,"stargazers_count":10,"watchers_count":10,"language":"PHP","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":17,"mirror_url":null,"archived":false,"open_issues_count":23,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":17,"open_issues":23,"watchers":10,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/71"},"html":{"href":"https://github.com/steemnova/steemnova/pull/71"},"issue":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/71"},"comments":{"href":"https://api.github.com/repos/steemnova/steemnova/issues/71/comments"},"review_comments":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/71/comments"},"review_comment":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/steemnova/steemnova/pulls/71/commits"},"statuses":{"href":"https://api.github.com/repos/steemnova/steemnova/statuses/3282d4e88d839ee778fd13e14ff06e1136f225e6"}},"author_association":"CONTRIBUTOR"}],"platform":"github","type":"development","tags":["utopian-io","steemnova","php"],"users":["dotevo"],"links":["https://cdn.utopian.io/posts/04f7b915e3a1c67993b4e44cfe57de21664cZrzut_ekranu_z_2018-03-31_22-39-27.png","https://cdn.utopian.io/posts/1a088c5ab9757e504dcf4170b06b27debc15unknown.png","https://steemit-production-imageproxy-web.s3.amazonaws.com/U5dtzCc6zTrN7SN4oBmqQ5Vjnu4Q4n5","https://utopian.io/utopian-io/@dotevo/parallel-action-building-res-lab-and-research"],"image":["https://cdn.utopian.io/posts/04f7b915e3a1c67993b4e44cfe57de21664cZrzut_ekranu_z_2018-03-31_22-39-27.png","https://cdn.utopian.io/posts/1a088c5ab9757e504dcf4170b06b27debc15unknown.png","https://steemit-production-imageproxy-web.s3.amazonaws.com/U5dtzCc6zTrN7SN4oBmqQ5Vjnu4Q4n5"]}" |
---|
|
---|
|
---|
1. | 0. | comment_options |
---|
1. | author | dotevo |
---|
permlink | steemnova-marketplace-history-and-bugfixes |
---|
max_accepted_payout | 1,000,000.000 HBD |
---|
percent_hbd | 10,000 |
---|
allow_votes | true |
---|
allow_curation_rewards | true |
---|
extensions | 0. | 0. | 0 |
---|
1. | beneficiaries | 0. | account | utopian.pay |
---|
weight | 2,500 |
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2073b3eb44a49718ad4bc452a3be8d6f0c2f561922bcbcb16c91171e9cde917b5d65a9649afa2e3e9bc2e760089e837d2fcfcd4e7db46e0c9885f82839a008b937 |
---|
|
---|
transaction_id | c811e8eb97d1d0352a92ba957af58b6c59c88952 |
---|
block_num | 21,167,238 |
---|
transaction_num | 2 |
---|
|
---|
3. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"promotedpost","following":"fanie27","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 203763f05d542307af5870c752dd3319803d089ec21c67e6df779d541163f729f360dc407eba09da847456044dd98b01f226a9fa75c74474764dc7067b86cd72f4 |
---|
|
---|
transaction_id | b1b43c6aafd71573fa5d902c30469a809dc37e84 |
---|
block_num | 21,167,238 |
---|
transaction_num | 3 |
---|
|
---|
4. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | raybox |
---|
author | dineroconopcion |
---|
permlink | what-deserves-to-be-on-trending-what-is-trash-and-what-is-not |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f0d105086c0f5b57d3df01acbcd0466002b157439a682e4cd92756e699c92da5755453bbc01db070bdc0a24bbf3f56fd53553b26496dd87e54874cf2a2630c1fc |
---|
|
---|
transaction_id | 6eef096ddf5d75615822940f10efc9c8b4fbdfab |
---|
block_num | 21,167,238 |
---|
transaction_num | 4 |
---|
|
---|
5. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["reblog",{"account":"clinttorrez","author":"tlavagabond","permlink":"pl2okgtu"}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2003376661e78bab1e5f2c5c498d71500bd977c806877510aeb2c00b6db1ea4fd1444ebd268e2d11d79fe3692fc9b3892262996c5f73dd69ba1ec410a8d6ad4736 |
---|
|
---|
transaction_id | 6b00ca5fcbe21715cd6cb7762bf70bdf4d26ce39 |
---|
block_num | 21,167,238 |
---|
transaction_num | 5 |
---|
|
---|
6. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | mercurybot |
---|
author | stephan92 |
---|
permlink | 5-ways-to-increase-your-concentration-power |
---|
weight | 871 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f0927890639b04a6b52ecb795ef4dcffb5187e00f9e0ce34dcbe93ef239ce5bd932c924eb84fcc09a9b6a1142ffaf27117a8f8955cbb59f8a10ef805c8d6ca9ea |
---|
|
---|
transaction_id | c762d5fdd7d196db3417d3c36bb6e7459f9dbfef |
---|
block_num | 21,167,238 |
---|
transaction_num | 6 |
---|
|
---|
7. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slpickr","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2044bf8b556d397f5d6a2403b7211e620878a1a341495a12dcf684b4c24709923b2030d40ef0206103d33b255bb605e6d39656529562ece57d9da149a1ed8e4fe2 |
---|
|
---|
transaction_id | 5561205818d1eb43a1d280e4d1bbbeac57d53b20 |
---|
block_num | 21,167,238 |
---|
transaction_num | 7 |
---|
|
---|
8. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"artcity","following":"iamsedat","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f24c6cfc1bf5b1a408471cb8334bc4fa4ed624bd69a6dffd0af5e91c0dc58d2b8216eae196b96d0d97426739bdbe0fad577bdb217b286f6ef4293d2ff19b50edb |
---|
|
---|
transaction_id | ae8ed9baf7d0d2bd0c17029f3ba9b1d671891f64 |
---|
block_num | 21,167,238 |
---|
transaction_num | 8 |
---|
|
---|
9. | ref_block_num | 64,642 |
---|
ref_block_prefix | 578,740,549 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | wagun001 |
---|
author | dzued |
---|
permlink | our-lord-and-savior-jesus-christ-illustrated-by-dzued |
---|
weight | 35 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f30e8da09b8acae3aedb701988f8594d3f86a43ec461c5251d6e1907c85c8ec5477cfe7142d5cad8a92d1d47fe5133f04330e7e04836912480c616b8b1dd3f516 |
---|
|
---|
transaction_id | b47326b6024dd7c68203c7937c18718c0bb6a7b2 |
---|
block_num | 21,167,238 |
---|
transaction_num | 9 |
---|
|
---|
10. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"hichemfetoui","following":"a53jasmin","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 202fc3b1bf3f0e2768915db95e9e29ad8e36f7c85db0e884035f8653c2ce2c39f9534b2af0c13e89dd56eca9e9cdab3ab812a16a54743701dbc8a7776025937d1a |
---|
|
---|
transaction_id | 5fc75a236ae11d4cd132ab0114c0a41596e00cb4 |
---|
block_num | 21,167,238 |
---|
transaction_num | 10 |
---|
|
---|
11. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slpp","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2049ae52a4bd3aea214299803f385e9e7ddbd1aa4c5b6d04f8f98936dce2063d1b1f999380aa5e7a8caf07beae29ffaf7fb2f420385316267ecb3337340a196bdf |
---|
|
---|
transaction_id | 6d9ab9deae2ec599d96c3a244beed395cb4e3ad3 |
---|
block_num | 21,167,238 |
---|
transaction_num | 11 |
---|
|
---|
12. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"promotedpost","following":"henrry1954","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f28b8f3195241f0e7e966841dfe9f1934ac6c038c0c054d0fdd72e5b5458b0f6b38decb3069fd2bb755faef413897f30106bbe5774db5b6f836c9c2cb6a221c80 |
---|
|
---|
transaction_id | d36339b2a3486fc5b891701cce36f4427dd9016d |
---|
block_num | 21,167,238 |
---|
transaction_num | 12 |
---|
|
---|
13. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slugandaworm","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 206ca73d2de9f10dd156441c7263f90c117a672982385337a002cebedbd709f6b70f33152473f6755748f11aaca21f5aa68359fc323edc9a2e7e68b2b2a197f29e |
---|
|
---|
transaction_id | d9e7d3de3ae062f961ec5245b2a61474109d6fc9 |
---|
block_num | 21,167,238 |
---|
transaction_num | 13 |
---|
|
---|
14. | ref_block_num | 64,642 |
---|
ref_block_prefix | 578,740,549 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | wanderingdanish |
---|
author | dzued |
---|
permlink | our-lord-and-savior-jesus-christ-illustrated-by-dzued |
---|
weight | 100 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20787167fe7585b0331127468248dfb5068c6829b4c760d24a9bec562d67884f8764d77c3973fe3bde1a564be5c47829d70e143d480483c436a01cc014f2f4ff49 |
---|
|
---|
transaction_id | 40d806375758646a435bd9121f8454098c5c8d05 |
---|
block_num | 21,167,238 |
---|
transaction_num | 14 |
---|
|
---|
15. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"sluideain","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f33b515c2132403e2cfa1a9dce800905a4f7b3751a15b1aec4301211b1041a2f20f51960347cb557f9e2d34f3d4db3d8a4f494553e20f35b5044ed91bfef2c79c |
---|
|
---|
transaction_id | b6751ca85c53dc8dec8667a6f6fab4d639a41f95 |
---|
block_num | 21,167,238 |
---|
transaction_num | 15 |
---|
|
---|
16. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"artcity","following":"iamshadowwalker","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 206d1d5c53f9f1d9d83a5c5c3f1492f7c7ac04640058ec6cd1d2092e6efd862f35453cd1e9ddcd821cecfba8a15566879966475c0c847bb5e0a20aafb1b4185309 |
---|
|
---|
transaction_id | b194bbbdc23c92ecbb6be6023547471c26d024d3 |
---|
block_num | 21,167,238 |
---|
transaction_num | 16 |
---|
|
---|
17. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | buggedout |
---|
author | ssg-community |
---|
permlink | re-ssg-community-voting-post-nick-name-contest-for-ssg-community-bot-20180331t185150646z |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2032a2289d9fd2a351e7d3eb5ffde8215fa7bd64c8c0d47c41b6c25403b13d52ec38e10f84a5697c2caf9aa620fb1628c1057e6bbabf0fe6cff2f4ea4aad4e2d0d |
---|
|
---|
transaction_id | 85701f4a03eb2cc84baf6a2b5eb44410ce01cc00 |
---|
block_num | 21,167,238 |
---|
transaction_num | 17 |
---|
|
---|
18. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | lighteye |
---|
parent_permlink | re-cicbar-crypto-purification-20180331t211039836z |
---|
author | cicbar |
---|
permlink | re-lighteye-re-cicbar-crypto-purification-20180331t212304283z |
---|
title | "" |
---|
body | "Mislim da to nema previše smisla jer ne poznajem uopšte srpsku berzu a velika većina naših ljudi ne može da trguje na inostranim berzama. Iz nekih informacija koje imam, naša berza se zasniva samo na špekulacijama i bez insajderskih informacija je teško biti uspešan. Naravno da nije sve sjajno i pošteno na inostranim berzama ali ako nisi pohlepan i ulažeš u velike kompanije sa sigurnim poslovanjem, novac ti neće gubiti vrednost i imaćeš dugoročno sigurnu zaradu koja nije velika ali je ipak zarada." |
---|
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 207888b78332ccc1ad2c73108990b7ed1bed8868852ead10a9b3e39035392755b265b9b50097bfd4a61710b67f4f7a6b749dc6af7aeb4a8d768047a0dd04a40b62 |
---|
|
---|
transaction_id | 1512ebe0a959963040a291a11a03dc28bab57db5 |
---|
block_num | 21,167,238 |
---|
transaction_num | 18 |
---|
|
---|
19. | ref_block_num | 64,645 |
---|
ref_block_prefix | 32,000,980 |
---|
expiration | 2018-03-31 21:23:33 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | stephen.king989 |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 10 |
---|
|
---|
|
---|
1. | 0. | vote |
---|
1. | voter | edrivegom |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
2. | 0. | vote |
---|
1. | voter | starsteem |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 15 |
---|
|
---|
|
---|
3. | 0. | vote |
---|
1. | voter | steemprentice |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
4. | 0. | vote |
---|
1. | voter | pomperipossa |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
5. | 0. | vote |
---|
1. | voter | decibel |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 25 |
---|
|
---|
|
---|
6. | 0. | vote |
---|
1. | voter | pheonike |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
7. | 0. | vote |
---|
1. | voter | bradfordtennyson |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
8. | 0. | vote |
---|
1. | voter | gamerveda |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 25 |
---|
|
---|
|
---|
9. | 0. | vote |
---|
1. | voter | dirty.hera |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
10. | 0. | vote |
---|
1. | voter | myday |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
11. | 0. | vote |
---|
1. | voter | river-island |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
12. | 0. | vote |
---|
1. | voter | cryptonator |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
13. | 0. | vote |
---|
1. | voter | qwasert |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 10 |
---|
|
---|
|
---|
14. | 0. | vote |
---|
1. | voter | cryptohustler |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
15. | 0. | vote |
---|
1. | voter | numpypython |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
16. | 0. | vote |
---|
1. | voter | rashbash |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
17. | 0. | vote |
---|
1. | voter | cryptowarrior88 |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 50 |
---|
|
---|
|
---|
18. | 0. | vote |
---|
1. | voter | jhermanbeans |
---|
author | enaksis |
---|
permlink | bitrust-simple-easy-secure-cryptocurrency-insurance-platform |
---|
weight | 5 |
---|
|
---|
|
---|
19. | 0. | vote |
---|
1. | voter | boatymcboatface |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
20. | 0. | vote |
---|
1. | voter | fatmanc1970 |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
21. | 0. | vote |
---|
1. | voter | rossco99 |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
22. | 0. | vote |
---|
1. | voter | theshell |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
23. | 0. | vote |
---|
1. | voter | sotura |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
24. | 0. | vote |
---|
1. | voter | nimble |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 1,100 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f44a5146e5bf5d865e5e7b2b6794c4a322e6f95456ede174f0ce6ee7cec3df2ed5488a3c7279b16f70cffe70c07d701ebab5b72806b8a84af60005954a76f56bd |
---|
|
---|
transaction_id | 09af5121e188a185142ee53724d454b0405a0dea |
---|
block_num | 21,167,238 |
---|
transaction_num | 19 |
---|
|
---|
20. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"oldbutgold","following":"nohelygarrido","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2067ae5f9796151f91282e8d8f1c03205b1b17284d25cbbbcd1d4ec80e1b083a156eea70305fe51c5f28bc1969fb7d4173dafb8f36e71f88eced5b6efe5e55b498 |
---|
|
---|
transaction_id | ba454d948c3b97e603538b168d549e86a7fa6255 |
---|
block_num | 21,167,238 |
---|
transaction_num | 20 |
---|
|
---|
21. | ref_block_num | 64,642 |
---|
ref_block_prefix | 578,740,549 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | stbrians |
---|
author | dzued |
---|
permlink | our-lord-and-savior-jesus-christ-illustrated-by-dzued |
---|
weight | 100 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f4a13cb5f4a3e600aecefeed151f4143cb611e24f8cd93fe6f236f01c2d291fff73d308bc4cf858095309f5f9cc9ffcaa15158284f40fa778129b9e7bd196683c |
---|
|
---|
transaction_id | 3a09aed36baf73f4941861313e64a95fb15539e3 |
---|
block_num | 21,167,238 |
---|
transaction_num | 21 |
---|
|
---|
22. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | coolbot |
---|
author | chotho |
---|
permlink | inspirational-quotes-5 |
---|
weight | 7,692 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f1747f016d0dee209210768fe3fba7084b6bdc549a18c6c0688f8f0705c2f1e654146481dff6608b20aa83bab3e890f45c2c89c469979171aff26c240f3c7228c |
---|
|
---|
transaction_id | b05558327a721a041415457b8ec9e16ae13e3e0a |
---|
block_num | 21,167,238 |
---|
transaction_num | 22 |
---|
|
---|
23. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slujanco","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 204f4bcb2102cda746e7cecdc320819967cc7bbfed2f6bb32df534fe28e4408dbb3e2cd015b3b413f22b7dfda497d7f0cc6a2074a35b1a987d04a024d18c829250 |
---|
|
---|
transaction_id | cc8676851fb48ee89fe0fc6a0be6e246ae5fb410 |
---|
block_num | 21,167,238 |
---|
transaction_num | 23 |
---|
|
---|
24. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | chotho |
---|
parent_permlink | inspirational-quotes-5 |
---|
author | coolbot |
---|
permlink | re-chotho-inspirational-quotes-5-20180331t212303155z |
---|
title | re-chotho-inspirational-quotes-5-20180331t212303155z |
---|
body | "How Cool!
You got a 76.92% upvote from @coolbot courtesy of @chotho!
Help us grow, [delegate today!](https://steembottracker.com/delegation.html?delegatee=coolbot&amount)
" |
---|
json_metadata | {"app":"postpromoter/1.8.7"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20658638e54dca28a56f2e3b9d4b5e18a9f9c3f2419b7de7d4d62ef881cd149f1e38a473eb8795d072d520288d0137de5c1bb9ae26b8a7e443faec36e9e1b8234e |
---|
|
---|
transaction_id | 3bce4dbabb7a0b35d7fb0d5c406831da679a8b1c |
---|
block_num | 21,167,238 |
---|
transaction_num | 24 |
---|
|
---|
25. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"artcity","following":"iamshaly","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f1a68ee34441a9c649f5dae542e0506eb905c5263933b4abab7af5d994eac715d327ec9ebc763126b8b0170f9623c29021964d8f8a06244084b24a41e070f8cc6 |
---|
|
---|
transaction_id | 3a943b69546145349fbc1c5caf3a889a3a057ffd |
---|
block_num | 21,167,238 |
---|
transaction_num | 25 |
---|
|
---|
26. | ref_block_num | 64,643 |
---|
ref_block_prefix | 591,183,565 |
---|
expiration | 2018-03-31 21:24:00 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | lovemice88 |
---|
author | dune69 |
---|
permlink | the-bold-chested-crimson-bird-the-bullfinch |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20775b606dff68bf904ba285e46c1006320f8435187890529c3d68d32953dbb53152fb396a16182a520f27a7d87e16e04de280190f79297fc44950cfb05fd585a1 |
---|
|
---|
transaction_id | 63235f4c4ccc8325d6ed2d064831c53afdd0ecae |
---|
block_num | 21,167,238 |
---|
transaction_num | 26 |
---|
|
---|
27. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slukas210","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2075dbec2cd87646386f41629a9c8dfb122301a12a7965f4b08af2ce5f2b7442f57ce86fdf2c5008d7980a209ad6687400a222042a64f0cdfb6b5a58cf1f881593 |
---|
|
---|
transaction_id | d85f211e37c28356f7ad6eafc2af397337f7c889 |
---|
block_num | 21,167,238 |
---|
transaction_num | 27 |
---|
|
---|
28. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"oldbutgold","following":"nohelys","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f7c7db64f8fedb9294709ca807e2bc9dcbb78242a571a7ebf9713a1d0ec9a7d0451723f7adca0b9df6c0a4d4acf3d4d00c102d3d2f95bac2cd91517525ec4b501 |
---|
|
---|
transaction_id | 944b81677a7220cdb793177e6e160e7b7de13205 |
---|
block_num | 21,167,238 |
---|
transaction_num | 28 |
---|
|
---|
29. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slumach","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f7d9efc7f8536ea3b8f5017b2e22ab7457a492926b0b2cc8fdb592daada4ba2167003daca24fb51ea8bf73f849f98452afbd3018a5a65c99a8f1205dc728ed263 |
---|
|
---|
transaction_id | b358532a2a5eccc9dcd3f324bc1da26d1a5424fb |
---|
block_num | 21,167,238 |
---|
transaction_num | 29 |
---|
|
---|
30. | ref_block_num | 64,622 |
---|
ref_block_prefix | 2,382,807,422 |
---|
expiration | 2018-03-31 21:32:57 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | cyclope |
---|
author | jhelbich |
---|
permlink | colorchallenge-or-saturdayindigo-or-luna-moon |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20271cc0a4eee9afdec7592ba3c1730e6a6e603a8fdb5545978b39f1e0372e78c56182c85521d563cf1ed52b2315d51b8c788ef6f4f726fd094302c31a4ae0f2cf |
---|
|
---|
transaction_id | 3c8276db56d13cd15b4def625a0cc0cec05aa5e0 |
---|
block_num | 21,167,238 |
---|
transaction_num | 30 |
---|
|
---|
31. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | kundanchhabra |
---|
parent_permlink | re-atmosblack-embodied-wisdom-20180331t203150217z |
---|
author | atmosblack |
---|
permlink | re-kundanchhabra-re-atmosblack-embodied-wisdom-20180331t212245469z |
---|
title | "" |
---|
body | "Well, this is not my idea, but Richard and his Onedoorland crew in the US have been doing this for quite some time. The GKs are overlaid with the zodiac signs - so every planet is also in a certain GK at a moment - if you know where the planets are, you also know in which GK they are. " |
---|
json_metadata | {"tags":["spirituality"],"community":"busy","app":"busy/2.4.0"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 203526eabf6880375f56200c7a4949a802e84bca91f974d10ee56e317d10ccdb971fe00c099d6bc2d06554c2584fe0acfa0e5738a9a9a964182749e6378c68c46f |
---|
|
---|
transaction_id | 060cf08b04e4ec572870d6c349ebaa90b9afc4c3 |
---|
block_num | 21,167,238 |
---|
transaction_num | 31 |
---|
|
---|
32. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | jerrybanfield |
---|
author | danielhime |
---|
permlink | sky-trees-and-moon-story-jupiter-the-ufo |
---|
weight | 334 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f6eba048e3693986234c3cb577fef61a209ef9f80f1e865064e594af134a136d0719fffa45d0050ac682dfbfa0d611e60ec61a1fa8ded3708d0daa03aa31aa352 |
---|
|
---|
transaction_id | 04830bf086835e9c4db938e4459d5960410f7556 |
---|
block_num | 21,167,238 |
---|
transaction_num | 32 |
---|
|
---|
33. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"gametoken","following":"jasgonzo","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 204beb3c7c5cd7be4e6e625d7928fdaded3a5e6c598c707ee89fd04f84f3fe434279458a56123b8774d584d4ad32484bb77c6ef7750b682c5439d435f458198327 |
---|
|
---|
transaction_id | 96afea99df1a201a7385fc8996645c027b401236 |
---|
block_num | 21,167,238 |
---|
transaction_num | 33 |
---|
|
---|
34. | ref_block_num | 64,644 |
---|
ref_block_prefix | 938,624,624 |
---|
expiration | 2018-03-31 21:23:30 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | thecryptofiend |
---|
author | ezzy |
---|
permlink | awesome-times-in-rotterdam-with-exyle-2018-03-31-20-51-39 |
---|
weight | 2,500 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20115e7424d4250935b1666377b42ed39c239fde6c7c54302b9bda36ef94deed3813ecef6b0df650114c50b88d48ef85bb46354a433ec6920677c5560a4f1ada0f |
---|
|
---|
transaction_id | 3f2b792424f81c15a1ba4681ced23bcc48763e4e |
---|
block_num | 21,167,238 |
---|
transaction_num | 34 |
---|
|
---|
35. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"sly2310","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2073254d36a24facb538f9315566138924c813f24b393d29e86a552a558d83226b58474e404111f7f71f8388d65358d5e10caff0c51118e32f772666282172c3f1 |
---|
|
---|
transaction_id | e04a7efb9d4738f83b7a23f7066d6f782523be2b |
---|
block_num | 21,167,238 |
---|
transaction_num | 35 |
---|
|
---|
36. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"oldbutgold","following":"nohemile","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20392ba067c3b96a37d97d75c18800a91db92ecaa6f4f50616469e6ba5dc020cf602fa972c27a2d35825a138afbc9095bad1705003a596e39c1e29231ca015acdd |
---|
|
---|
transaction_id | f69caadd726b6d6f69ac279bf48117de4ff3e093 |
---|
block_num | 21,167,238 |
---|
transaction_num | 36 |
---|
|
---|
37. | ref_block_num | 64,642 |
---|
ref_block_prefix | 578,740,549 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | bobiecayao |
---|
author | dzued |
---|
permlink | our-lord-and-savior-jesus-christ-illustrated-by-dzued |
---|
weight | 100 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f2d07f5a6bede12de3e78fbf3cc132e7626948e82025924ce073ec500c1daba31340ef7d093dfddfc47e9ecde92cacd9654c21e91a7bc7e2ecf015ddaa4a3e30a |
---|
|
---|
transaction_id | 932a84aeb630a58cf77d0d447c962d14616d158a |
---|
block_num | 21,167,238 |
---|
transaction_num | 37 |
---|
|
---|
38. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"adenijiadeshina","following":"seorajrim","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f3b9c76094f356bae6236bd6123509861a3bc2dff53dae8c563f6f95634ddb22c4107644d1899e942edeb60fe8ad4b02a00bcaed95494d792b58f912f72f947a4 |
---|
|
---|
transaction_id | 659c87432e348cb260f64c339217a237a6df16af |
---|
block_num | 21,167,238 |
---|
transaction_num | 38 |
---|
|
---|
39. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"artcity","following":"iamshamroz","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2061b46b349444f1cfec16df74d960581270920a4e2853ce5e188268a1311153ba08252c9214e76dae04e1b43176baf08584bd43683e11a1955790481a143e55fa |
---|
|
---|
transaction_id | d02d656b52f6e511b0f72a0624530bd42f12a0c4 |
---|
block_num | 21,167,238 |
---|
transaction_num | 39 |
---|
|
---|
40. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slybo","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f0d0e2cbbf596be715bd7ec9be19317b9b59a6c7708fb3b34855ede0c006dd2e7074dc8a66e327759197bbcc20f0cd03d823846826fcf6dc6458c69526b8b6d4c |
---|
|
---|
transaction_id | 28f72a1b9c8db93f910c7ae48d72d743044e828c |
---|
block_num | 21,167,238 |
---|
transaction_num | 40 |
---|
|
---|
41. | ref_block_num | 64,645 |
---|
ref_block_prefix | 32,000,980 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | cheneats |
---|
author | bearded-benjamin |
---|
permlink | adc123df-3527-11e8-9747-0242ac110002 |
---|
weight | 1,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 205ea3476b7b2e3f17c5860058ede448db4b33ad2c9026319abeab9b967edca5cf77c432262d2f507b4d304bbe3ad81ffc212aebc3f8e79642e4af4ef236a95e0b |
---|
|
---|
transaction_id | b5e39a68bdd93986635ca3fae6f509bb979a7b63 |
---|
block_num | 21,167,238 |
---|
transaction_num | 41 |
---|
|
---|
42. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | riccardo47 |
---|
author | elixbaba |
---|
permlink | re-riccardo47-re-hille-re-elixbaba-moves-that-can-save-ladies-from-been-rapped-20180331t212133322z |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f00b7c52231af800fff68b9bb100dccc79d7fc5afbcf0335ef84d1c956fa34da33f5ce2ccb00c18117c1c413c855a8d8a59a539b5f0560b9c55c1c09876751b7e |
---|
|
---|
transaction_id | 6bd708f3c5f78270a6cfb69d02b8e8f89b8de80f |
---|
block_num | 21,167,238 |
---|
transaction_num | 42 |
---|
|
---|
43. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"artcity","following":"iamshomodavies","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f748c57f9b040ae11d1e5a85fc36408e75dbda32c60133ea062c00e250fafb4821b545c670ee8fae265284583d3a356f2df4a8d9bee1ea9d10fc9c5d82f44e183 |
---|
|
---|
transaction_id | 827ac5c92b5410e60906f8bf6a500dbaa64359c8 |
---|
block_num | 21,167,238 |
---|
transaction_num | 43 |
---|
|
---|
44. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slycat007","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20373130332793bfb6b05755595123a02c0b05137b876f38869a8dcfa85ac1eba65452b78f6ab48c795427e34d12985803a73b0ce07abf853621a72ac1160d6279 |
---|
|
---|
transaction_id | 6673f6db638e179a5ba53d665f385e0999a9d594 |
---|
block_num | 21,167,238 |
---|
transaction_num | 44 |
---|
|
---|
45. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | claim_reward_balance |
---|
1. | account | tilenpirih |
---|
reward_hive | 0.000 HIVE |
---|
reward_hbd | 0.000 HBD |
---|
reward_vests | 2.039735 VESTS |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f7b4fd73f0908a7079cae3fe37b3a193ccfdd61b25cc34c5ada932359bbedf1680d1833265a0c1d83b256b665ef3db4df3ea77f12446b608b6bbf8f234f112d6c |
---|
|
---|
transaction_id | 042781fe324ad15b1f2d594bf5d5268135b460b8 |
---|
block_num | 21,167,238 |
---|
transaction_num | 45 |
---|
|
---|
46. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | haejin |
---|
author | haejin |
---|
permlink | litecoin-ltc-bull-flag-pattern-could-be-complete |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f1c6c5521478e966016529c15ccc9d87291ccae202b96ffaa8183f47bba6784625d5222063c0f0c8c4c90a80011e6ffc33f18eaf4a565e089b74395f4166e61d6 |
---|
|
---|
transaction_id | d655e3a87777379b118a0ffd4b6ba4da6e9339d9 |
---|
block_num | 21,167,238 |
---|
transaction_num | 46 |
---|
|
---|
47. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:00 |
---|
operations | 0. | 0. | transfer |
---|
1. | from | rebeccafl |
---|
to | burlarj |
---|
amount | 0.100 HBD |
---|
memo | "thanks for participating." |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 206ff141c33e2a4ae65b0e3a075507844385c24c5effcc31312f08ef51f5a8d3ab3c4b9d423e4633c994c69a1673c4f3385e7e8c67c3d007f83e6750f350a60614 |
---|
|
---|
transaction_id | 2d45e612a8982bf9d6f1296385e9ac12e171178f |
---|
block_num | 21,167,238 |
---|
transaction_num | 47 |
---|
|
---|
48. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slyde","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 201f84ccd45b7105d48a5c78115a5c50c4e0f39640d5d40ab2e494409ba5ec20127f71b7389e0ac2778d4f191979d7905734f7ccfc2b9263d5de0a92abb64a01b2 |
---|
|
---|
transaction_id | aa86e74278f60121695f7e4011b6fb5814467374 |
---|
block_num | 21,167,238 |
---|
transaction_num | 48 |
---|
|
---|
49. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | brittuf |
---|
parent_permlink | etherstocks-net-1st-parnership-and-new-mini-game-sneak-peek-sbd-giveaway |
---|
author | cryptodapps |
---|
permlink | re-brittuf-etherstocks-net-1st-parnership-and-new-mini-game-sneak-peek-sbd-giveaway-20180331t212303600z |
---|
title | "" |
---|
body | "Wow yesterday Coffee stock was less than 1 ethereum, today it has a new name and is over 20 ethereum and rising! Good work by a great team!" |
---|
json_metadata | {"tags":["etherstocks"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 200e0acb170d0bea989ca6aa27dd83b228d13ea052d866d0c8957710ddfe1a9667640bd8f4d19a71a13f413f224cfe119cfdb7db7bd5021ffa027d61bd0c2c2094 |
---|
|
---|
transaction_id | 57127f5b3f224570dd7e8d3e68e1563cdbb38953 |
---|
block_num | 21,167,238 |
---|
transaction_num | 49 |
---|
|
---|
50. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | for91days |
---|
parent_permlink | off-the-beaten-path-in-lisbon-the-neighborhood-of-alvalade |
---|
author | soyrosa |
---|
permlink | re-for91days-off-the-beaten-path-in-lisbon-the-neighborhood-of-alvalade-20180331t212304360z |
---|
title | "" |
---|
body | "I often like those places 'without real sights', since you get a taste of 'real Lisbon' or whatever city you're staying. My first time in Lisbon was far off the beaten track too and especially restaurants get better once you skip the main roads (although I've never eaten a bad thing in Lisbon! Omnomnom!)
And ohhh Lisbonese Pastelarias <3 Pasteis everywhere!" |
---|
json_metadata | {"tags":["lisbon"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 207cc469b91e2d6792e7fa21618d62efd4672cd80dde06330a6873ba8c107ce63677a3345bb1e6b305622286ab5f45d1f3b3ff866455b6c962d72aa94705e8f6a9 |
---|
|
---|
transaction_id | 6715cc783c7e650fb24fcf155bfe33304b2ee8f1 |
---|
block_num | 21,167,238 |
---|
transaction_num | 50 |
---|
|
---|
51. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"hichemfetoui","following":"a56","what":[]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 207f689e351fd1a99e4f40b084c2359c997aa3e65a1c275a4b83abea2b9d1f349d5c495769f21bc6c5b0417746196018a0da73aeb4955ed76181192b03b1243fb0 |
---|
|
---|
transaction_id | a7ba012662d155d5419633e5034b59aa951d2f13 |
---|
block_num | 21,167,238 |
---|
transaction_num | 51 |
---|
|
---|
52. | ref_block_num | 64,622 |
---|
ref_block_prefix | 2,382,807,422 |
---|
expiration | 2018-03-31 21:32:57 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | gooola |
---|
author | habibur81 |
---|
permlink | re-steemitboard-steemitboard-notify-habibur81-20180319t171721061z |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f2be4f9d57e4b31edbf56f5c0345fc740be39043b472a601b2f83a8f05ae63f767b034fbe91ee59bdcb1ed4af62dbf64ba74b64ff80bac9f85f3fc92c0b0eee67 |
---|
|
---|
transaction_id | 7c2da49306e31b5baa4f8459f6ae57c2d44eaa5a |
---|
block_num | 21,167,238 |
---|
transaction_num | 52 |
---|
|
---|
53. | ref_block_num | 64,642 |
---|
ref_block_prefix | 578,740,549 |
---|
expiration | 2018-03-31 21:24:03 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | medical-hall |
---|
author | yusfriadi |
---|
permlink | diskusi-steemit-sambil-ngopi |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 202f14843a84965598539a0544c5fdb7600dd467c7600bffe55259e8974d39ade20578669425a89e3196e60cfbcdf49271a7ca58eb57f1cf94049831bcb9e69b05 |
---|
|
---|
transaction_id | da380d1ea2fb867a74500814aadc1a741f1f1175 |
---|
block_num | 21,167,238 |
---|
transaction_num | 53 |
---|
|
---|
54. | ref_block_num | 64,623 |
---|
ref_block_prefix | 57,449,358 |
---|
expiration | 2018-03-31 21:33:03 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"getup","following":"slylmn","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2021bd671e8780383eeebd53d3fb7a025b4a5d6724482628d5e2a5b0d5a50e13123fe87123774f662c72483659296de2a932da03eb57a1064987f6b48c4c197216 |
---|
|
---|
transaction_id | 703dc1a5d70e9f8e0ea67e0de43694ec16fd769a |
---|
block_num | 21,167,238 |
---|
transaction_num | 54 |
---|
|
---|
|
---|