I have been building a blockchain parser for my [Steem Fundamental Analysis](https://steemit.com/money/@furion/steem-btc-fundamental-analysis-1-why-is-the-price-tanking) project, and I thought it would be a good idea to document my findings. **If you're a developer and you'd like to build an app on top of Steem/Steemit, this guide is for you.** ## Setting up your node First, we need to setup a node. There are plenty of guides and tools (for [Docker](https://steemit.com/steem/@teego/docker-steem-images-are-updated-to-version-0-12-2), [Ubuntu](https://steemit.com/steemit/@kilrathi/project-bullfrog-system), [Windows](https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-miner-s-guide-part-2)) on steemit on how to do that, so I won't repeat myself here. **To get access to all the API's, modify your `config.ini` to have the following values:** ``` enable-plugin = witness account_history tags follow market_history public-api = database_api login_api network_broadcast_api follow_api market_history_api ``` Also, you should remove `miner` and `witness` fields. We aren't interested in mining, just running a node. **Now you can run steemd:** ``` ./steemd --rpc-endpoint ``` The `--rpc-endpoint` will setup a websocket endpoint at `ws://127.0.0.1:8090`. You should be able to connect to it from your favorite programming language (Python, JavaScript, etc.), or by using a tool such as [wssh](https://github.com/progrium/wssh). ------- If you're using Python, then I suggest the awesome [python-steemlib](https://github.com/xeroc/python-steemlib) by @xeroc. You can connect to the RPC like so: ``` from steemapi.steemnoderpc import SteemNodeRPC rpc = SteemNodeRPC("ws://127.0.0.1:8090", "", "") ``` ------- ## Analyzing the Blockchain Now that we have a node running, and we are connected to it, we can issue commands. In this tutorial, we will be using the following RPC commands: ``` get_block() get_dynamic_global_properties() ``` Again, the RPC is available for us at `ws://localhost:9080`. ---------- The full list of commands is available here (scroll to the bottom): https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp ---------- In order to get a block from the blockchain, we want to call a RPC command called `get_block`, which takes just one argument: Block ID. Block ID is just a number, anywhere between 0 and the current block ID. Each new block has an ID at an increment of 1. You can find out what the current block ID is by looking at `steemd` output: ``` 651068ms th_a application.cpp:439 handle_block ] Got 1 transactions from network on block 3695832 ``` Or by asking `steemd` via RPC: ``` props = rpc.get_dynamic_global_properties() last_confirmed_block = props['last_irreversible_block_num'] ``` **So to traverse the entire blockchain, from start to finish, we would do something like this:** ``` props = rpc.get_dynamic_global_properties() current_block = 0 last_confirmed_block = props['last_irreversible_block_num'] while current_block < last_confirmed_block: current_block += 1 print("Processing block %d" % current_block) block = rpc.get_block(current_block) pprint(block) ``` Now lets look at what `get_block` gives us. If we call `rpc.get_block(3332318)`, we get a block `3332318` in a `json` format, that looks like this: ``` {'extensions': [], 'previous': '0032d8dd7fef5c0eafd7667805134effb9ef21e9', 'timestamp': '2016-07-19T13:29:15', 'transaction_merkle_root': '5be8c3f95a29253153e911fd079528ad8216958a', 'transactions': [{'expiration': '2016-07-19T13:29:24', 'extensions': [], 'operations': [['vote', {'author': 'beowulfoflegend', 'permlink': 'how-steemit-self-polices-content', 'voter': 'jills', 'weight': 10000}]], 'ref_block_num': 55512, 'ref_block_prefix': 2485993294, 'signatures': ['20196c89f5e2ca58da3377a30ee08782df59dbd4b72db40ec3348f3417ff653fa84cf684748853e8ea43363c747c74b4ff015626ef9e2b2e902e0ee98a80195336']}, {'expiration': '2016-07-19T13:30:10', 'extensions': [], 'operations': [['comment', {'author': 'weenis', 'body': 'This is Amazing! Upvoted! \n', 'json_metadata': '', 'parent_author': 'begstreets', 'parent_permlink': 'abstractions-no-1', 'permlink': 'abstractions-no-1', 'title': ''}]], 'ref_block_num': 55516, 'ref_block_prefix': 765250389, 'signatures': ['1f7711cfc441bbc5e6df16d7b73ea7d4ea7d7a40a3c3a1fd857d67b50b30c139d06f742e5fd15a68f2109469c977a12c50abab81632b8a4ba5e328c5048290153b']}, ], 'witness': 'riverhead', 'witness_signature': '1f4236f6a0ff79ab2ff9a190162aeb25b5e1509ca44df8803c8091a2abcfe2022f733eb77c15ec8265a1b1d0d2226038b3259db9ebe17b871bcbf3be0dee605bc9'} ``` We are mostly interested in `transactions` and `operations`. Transactions contains a list of `operations`, which are basically all the events that happened on the blockchain within the 3 second period included in the block. ## Operation Types Currently, the Steem blockchain contains the following operations: - comment, delete_comment, vote - account_create, account_update, request_account_recovery, recover_account - limit_order_create, limit_order_cancel - transfer, transfer_to_vesting, withdraw_vesting, convert - pow, feed_publish, witness_update, account_witness_vote - custom, custom_json ### Blog Posts, Comments and Votes This is a blog post: ``` =====> comment {'author': 'rozu15', 'body': 'content omited becuse it breaks my post', 'json_metadata': '{"tags":["trump"],"links":["https://twitter.com/realDonaldTrump/status/755254384062263296"]}', 'parent_author': '', 'parent_permlink': 'trump', 'permlink': 'us-election-melania-trump-plagiarised-michelle-obama', 'title': "US election: Melania Trump 'plagiarised' Michelle Obama"} ``` This is a comment. It has empty `title`: ``` =====> comment {'author': 'densmirnov', 'body': 'nice nickname', 'json_metadata': '{"tags":["steem"]}', 'parent_author': 'steemiscrap', 'parent_permlink': 're-cryptorune-steem-dollar-poloniex-pump-is-a-arbitrage-goldmine-20160719t133438897z', 'permlink': 're-steemiscrap-re-cryptorune-steem-dollar-poloniex-pump-is-a-arbitrage-goldmine-20160719t133602671z', 'title': ''} ``` The comment has been deleted: ``` =====> delete_comment {'author': 'densmirnov', 'permlink': 're-cryptorune-re-densmirnov-re-cryptorune-steem-dollar-poloniex-pump-is-a-arbitrage-goldmine-20160719t133207807z'} ``` The comment has received a vote: ``` =====> vote {'author': 'kain-jc', 'permlink': 'a-meditation-on-love', 'voter': 'cantinhodatete', 'weight': 10000} ``` If we divide the weight by `100`, we get the % of the vote. For instance, a full upvote is `100%`. The full downvote is `-100%`. Half the upvote is `50%`. ### Account Features Account has been created: ``` =====> account_create {'active': {'account_auths': [], 'key_auths': [['STM7huHJRrqHE6FDNHJEsUYNNKuQKBfr4iS3xwgyGzXDurbiCRx2V', 1]], 'weight_threshold': 1}, 'creator': 'steem', 'fee': '5.000 STEEM', 'json_metadata': '', 'memo_key': 'STM7R3iScNyQCytvB8EcRdEYLfJCGp3UkyNm7Mt4c9BE1ZoUTdazw', 'new_account_name': 'saripdol', 'owner': {'account_auths': [], 'key_auths': [['STM8XzPFfu3yCujJiSbgdJvKm69LMcm1ckocuvoSaaWRmPRzfH7jr', 1]], 'weight_threshold': 1}, 'posting': {'account_auths': [], 'key_auths': [['STM8KKqZufL2PM7V9dHeSW8KpN4wWs8cGaiQsz7FCrPohX1ZkfPvv', 1]], 'weight_threshold': 1}} ``` Account has been updated: ``` =====> account_update {'account': 'signaltonoise', 'active': {'account_auths': [], 'key_auths': [['STM83ihutAefZSHCJRXLHiRnji8VhQHcouMJc6xGtaLW6PCARXiDa', 1]], 'weight_threshold': 1}, 'json_metadata': '', 'memo_key': 'STM81hFsfm2csFyPYDCdwjuGJX33EB2Dx6rG74AfFgStu9C6PvzMd', 'owner': {'account_auths': [], 'key_auths': [['STM8fcgjrpKbVLHyy3RKnQGx3dhYEdY7bKhbv3FaML5ooK8PpdJaR', 1]], 'weight_threshold': 1}, 'posting': {'account_auths': [], 'key_auths': [['STM75QK5e69SAuMzVtJqGex3HcaqrPcxpXgxb72WxbUJn2apRX7KX', 1]], 'weight_threshold': 1}} ``` ### Transfers, Vesting, Conversions A transfer of `SBD` or `STEEM` from one account to another. ``` =====> transfer {'amount': '34.428 SBD', 'from': 'thisischris225', 'memo': 'ee1d91d4036200c7', 'to': 'poloniex'} ``` Someone has powered-up: ``` =====> transfer_to_vesting {'amount': '11.789 STEEM', 'from': 'leksimus', 'to': 'leksimus'} ``` Someone has powered-down: ``` =====> withdraw_vesting {'account': 'giveandtake1', 'vesting_shares': '1184211.402324 VESTS'} ``` Someone placed a conversion order: ``` =====> convert {'amount': '0.158 SBD', 'owner': 'jamessmith', 'requestid': 1468935121} ``` This order executes 7 days after its initiated, and takes the 7 day average price as the execution basis. It is useful for placing a big order in the internal market without moving it too much. ### Mining, Witnesses Finding a pow (mining): ``` =====> pow {'block_id': '0032d98aaa917775f98859c3235f43286479e1b7', 'nonce': '6342739805603833088', 'props': {'account_creation_fee': '0.001 STEEM', 'maximum_block_size': 131072, 'sbd_interest_rate': 1000}, 'work': {'input': '507906ad12f0d3bc57f636849dc117c5c970e79f0411e7e07459f78c09b350a0', 'signature': '209c919b436563ae30171356cb7fcb6677794c9cbf163c695d3ce56841a9c86f1d06ab7f4b28c4c493a5d951664b32b7fb76714b30e49c8035bf12c520b1c6c3df', 'work': '0000000350c2f2cae73dab00d1c2a1e2fafbf22e1e2fe0bb2a0a4e3a69c3b976', 'worker': 'STM574Rx1dML1K8Mi9Uz42yWDYAr6ymrxC723HR1YX81Jqk7MSaRT'}, 'worker_account': 'redrockmining'} ``` Witness changes its settings: ``` =====> witness_update {'block_signing_key': 'STM7yFmwPSKUP7FCV7Ut9Aev5cwfDzJZixcreS1U3ha36XG47ZpqT', 'fee': '0.000 STEEM', 'owner': 'anyx', 'props': {'account_creation_fee': '2.600 STEEM', 'maximum_block_size': 131072, 'sbd_interest_rate': 1000}, 'url': 'https://steemit.com/witness-category/@anyx/hello-from-anyx'} ``` Witness publishes new market rates: ``` =====> feed_publish {'exchange_rate': {'base': '4.100 SBD', 'quote': '1.000 STEEM'}, 'publisher': 'steemed'} ``` ### Trading Place internal market order: ``` =====> limit_order_create {'amount_to_sell': '94.000 STEEM', 'expiration': '2016-07-19T16:10:40', 'fill_or_kill': False, 'min_to_receive': '260.000 SBD', 'orderid': 94, 'owner': 'ledzeppelin'} ``` Cancel internal market order: ``` =====> limit_order_cancel {'orderid': 1468934907, 'owner': 'fabio'} ``` ### Account Sundry Voting for a witness: ``` =====> account_witness_vote {'account': 'leontyashka', 'approve': True, 'witness': 'arhag'} ``` Initiating account recovery: ``` =====> request_account_recovery {'account_to_recover': 'stan', 'extensions': [], 'new_owner_authority': {'account_auths': [], 'key_auths': [['STM53xgdjGJ26QEF8qUbGsxguRBQU1UMqLKTT3LJ2ysgsLdr3zJk2', 1]], 'weight_threshold': 1}, 'recovery_account': 'steem'} ``` Account recovery complete: ``` =====> recover_account {'account_to_recover': 'val', 'extensions': [], 'new_owner_authority': {'account_auths': [], 'key_auths': [['STM7igHgvdVmUJFJadc56d3wuk28xPo9NV4qQLhsHBzmpiQvTq2Pe', 1]], 'weight_threshold': 1}, 'recent_owner_authority': {'account_auths': [], 'key_auths': [['STM4wo7NZSUY86RDmaZrQuhuAybyCNSEfnpN2fHmKX7V4mQtPrsuK', 1]], 'weight_threshold': 1}} ``` ### Custom Custom json currently only supports the follow plugin. More features to come in the future. ``` =====> custom_json {'id': 'follow', 'json': '{"follower":"manugbr93","following":"natenvos","what":["blog"]}', 'required_auths': [], 'required_posting_auths': ['manugbr93']} ``` `what` can be either `"blog","posts"`, `"blog"`, `"posts"` or `""`. I suspect `""` means unfollow. I do not know what is the difference between `blog` and `posts` however. An finally, this mysterious `custom` operation: ``` =====> custom {'data': '046162696408637563697374696d03c6278df998dd7cf0bac77dc3af89debf1f628eebbe9e86daa9762b7590630218023560f4ac629975cda967a694a07ebea5d912fcc31bf732aca9908ec9c04d603850ae00e0fd3705003f8ea76c2073f7cac9ce38f97dd8d32ba5df47adbea29c29758d776467ce16f055a5095563', 'id': 777, 'required_auths': ['abid']} ``` @jl777 thinks its an encrypted private message. ## Example: Parsing the Blockchain Suppose we want to find out how many followers we have, and get the list of people whom are following us. Here is how we can parse each block, only looking for `custom_json` operations to find out: ``` from steemapi.steemnoderpc import SteemNodeRPC rpc = SteemNodeRPC("ws://127.0.0.1:8090", "", "") MY_USERNAME = "furion" props = rpc.get_dynamic_global_properties() current_block = 0 last_confirmed_block = props['last_irreversible_block_num'] while current_block < last_confirmed_block: current_block += 1 block = rpc.get_block(current_block) if "transactions" in block: for tx in block["transactions"]: for opObj in tx["operations"]: #: Each operation is an array of the form #: [type, {data}] op_type = opObj[0] op = opObj[1] if op_type == "custom_json" and op['id'] == "follow": j = json.loads(op['json']) if j['following'] == MY_USERNAME: follower_count += 1 print("%s is following my %s, I have %d followers now." % ( j["follower"], j['what'], follower_count )) ``` I only have 8 followers, which makes me sad: ``` kilrathi is following my ['blog'], I have 1 followers now. cloveandcinnamon is following my ['blog'], I have 2 followers now. dcsignals is following my ['blog'], I have 3 followers now. jerome-colley is following my ['blog'], I have 4 followers now. mihserf is following my ['blog'], I have 5 followers now. shaheer001 is following my ['blog'], I have 6 followers now. helikopterben is following my ['blog'], I have 7 followers now. carmasleeper is following my ['blog'], I have 8 followers now. ``` So if you liked this guide, and you'd like to see more, you know what to do. ---------  Thank you for making awesome apps for Steem. I hope you have found my guide useful. #steem #dev #steemit-dev #development #programming #python
author | furion |
---|---|
permlink | developers-guide-to-steem-s-blockchain |
category | steem |
json_metadata | {"tags":["steem","steem-dev","blockchain","steemit","learntocode"],"image":["http://i.imgur.com/PPplpRq.jpg"]} |
created | 2016-08-01 13:14:33 |
last_update | 2016-08-01 13:14:33 |
depth | 0 |
children | 43 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2,209.849 HBD |
curator_payout_value | 550.838 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15,405 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,072 |
net_rshares | 123,369,207,583,442 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 31,655,932,066,917 | 100% | ||
rainman | 0 | 17,070,165,103,985 | 100% | ||
berniesanders | 0 | 30,349,644,457,000 | 100% | ||
wackou | 0 | 6,014,431,562,152 | 100% | ||
hr1 | 0 | 2,310,287,524,790 | 100% | ||
justin | 0 | 522,779,654,952 | 100% | ||
silver | 0 | 1,621,577,085,260 | 100% | ||
silversteem | 0 | 4,024,079,748,811 | 100% | ||
svk | 0 | 167,869,242,360 | 100% | ||
nextgencrypto | 0 | 4,310,810,444,090 | 100% | ||
liondani | 0 | 900,931,457,194 | 100% | ||
theoretical | 0 | 258,057,140,900 | 100% | ||
complexring | 0 | 2,264,197,835,880 | 100% | ||
chloe | 0 | 3,810,066,814 | 100% | ||
jen | 0 | 3,816,133,617 | 100% | ||
danknugs | 0 | 29,570,764,194 | 100% | ||
steemservices | 0 | 242,275,894,114 | 100% | ||
steemservices1 | 0 | 13,387,569,657 | 100% | ||
witness.svk | 0 | 5,156,619,285,547 | 100% | ||
steemservices3 | 0 | 5,534,030,579 | 100% | ||
aizensou | 0 | 24,255,101,071 | 100% | ||
steemservices5 | 0 | 6,471,406,426 | 100% | ||
kelly | 0 | 80,659,344 | 100% | ||
bentley | 0 | 11,229,536,645 | 100% | ||
smooth.witness | 0 | 4,926,443,602,893 | 100% | ||
grumlin | 0 | 374,563,245 | 100% | ||
sophia | 0 | 661,781,952 | 100% | ||
fbsvk | 0 | 8,538,512,040 | 100% | ||
spectral | 0 | 305,013,619,403 | 100% | ||
jchch | 0 | 89,144,910,631 | 100% | ||
edgeland | 0 | 77,235,228,118 | 100% | ||
noisy | 0 | 34,093,644,659 | 100% | ||
kaj-huisman | 0 | 492,636,527 | 100% | ||
hipster | 0 | 1,011,757,367,460 | 100% | ||
cryptogee | 0 | 442,350,068,071 | 100% | ||
gekko | 0 | 1,006,774,006 | 100% | ||
cryptoctopus | 0 | 1,606,839,533,808 | 100% | ||
hannixx42 | 0 | 50,639,042,412 | 100% | ||
alenevaa | 0 | 2,314,859,297 | 100% | ||
kevinwong | 0 | 400,428,399,251 | 100% | ||
murh | 0 | 1,045,256,796 | 11.33% | ||
mughat | 0 | 18,814,224,076 | 100% | ||
dke | 0 | 402,198,293 | 100% | ||
ranko-k | 0 | 44,627,713,877 | 100% | ||
cyber | 0 | 366,388,600,483 | 100% | ||
billbutler | 0 | 241,069,858,208 | 100% | ||
satoshifund | 0 | 3,895,803,964,634 | 100% | ||
taoteh1221 | 0 | 309,249,748,477 | 100% | ||
faddat | 0 | 62,534,308,105 | 100% | ||
imyao | 0 | 2,106,072,085 | 100% | ||
brandonp | 0 | 43,851,563,418 | 100% | ||
kingofchaos | 0 | 6,085,778,055 | 100% | ||
menace.coin | 0 | 699,040,970 | 100% | ||
geoffrey | 0 | 26,463,939,452 | 100% | ||
lukestokes | 0 | 198,343,045,483 | 100% | ||
honeythief | 0 | 43,028,103,105 | 100% | ||
zantel555 | 0 | 54,554,360,831 | 100% | ||
jparty | 0 | 17,752,585,128 | 100% | ||
angusleung100 | 0 | 5,571,227,006 | 100% | ||
allyourbase | 0 | 1,153,201,586 | 100% | ||
fuck.off | 0 | 1,365,483,523 | 100% | ||
iloveporn | 0 | 3,189,314,603 | 100% | ||
the.bot | 0 | 2,179,424,735 | 100% | ||
johnbradshaw | 0 | 3,287,379,324 | 100% | ||
clement | 0 | 35,183,745,350 | 100% | ||
the.whale | 0 | 2,705,086,382 | 100% | ||
bacchist | 0 | 31,679,617,660 | 100% | ||
ydm6669 | 0 | 3,445,440,900 | 100% | ||
teego | 0 | 1,515,016,881 | 100% | ||
unicornfarts | 0 | 2,563,247,916 | 100% | ||
zer0sum | 0 | 2,412,060,318 | 100% | ||
discombobulated | 0 | 65,519,628,512 | 100% | ||
mstang83 | 0 | 249,593,396 | 100% | ||
robrigo | 0 | 29,341,996,555 | 100% | ||
cmtzco | 0 | 9,180,731,487 | 100% | ||
vote | 0 | 2,705,415,115 | 100% | ||
stranger27 | 0 | 1,474,592,731 | 100% | ||
auxon | 0 | 9,262,961,760 | 100% | ||
jackkang | 0 | 2,036,371,963 | 100% | ||
kissmybutt | 0 | 1,851,260,291 | 100% | ||
sonsy | 0 | 24,080,132,381 | 100% | ||
r4fken | 0 | 17,402,309,753 | 100% | ||
mikemiziner | 0 | 68,741,237,512 | 100% | ||
rxhector | 0 | 289,823,509 | 100% | ||
jay4u | 0 | 3,784,162,301 | 100% | ||
leonalicious | 0 | 243,354,768 | 100% | ||
gatoso | 0 | 3,532,434,383 | 100% | ||
furion | 0 | 15,737,205,648 | 100% | ||
busser | 0 | 271,945,222 | 100% | ||
barbara2 | 0 | 614,903,674 | 100% | ||
ch0c0latechip | 0 | 622,243,069 | 100% | ||
doge4lyf | 0 | 570,755,483 | 100% | ||
vi1son | 0 | 618,187,206 | 100% | ||
knircky | 0 | 86,096,095,233 | 100% | ||
gandamx | 0 | 235,996,872 | 100% | ||
etherdesign | 0 | 244,513,819 | 100% | ||
ardina | 0 | 154,125,642 | 100% | ||
w4lterwyte | 0 | 28,330,795,149 | 100% | ||
jesta | 0 | 65,502,104,294 | 100% | ||
yuridan | 0 | 205,780,317 | 100% | ||
paco | 0 | 123,493,662,856 | 100% | ||
lioliomir | 0 | 263,006,633 | 100% | ||
kaptainkrayola | 0 | 10,047,345,037 | 100% | ||
juvyjabian | 0 | 231,437,902 | 100% | ||
bycz | 0 | 7,993,288,426 | 100% | ||
stephencurry | 0 | 76,420,374,769 | 100% | ||
artakan | 0 | 13,987,832,506 | 100% | ||
artific | 0 | 6,924,494,931 | 100% | ||
middelthun | 0 | 8,106,804,456 | 100% | ||
fiver | 0 | 259,316,020 | 100% | ||
jsteck | 0 | 752,996,419 | 100% | ||
imp3 | 0 | 1,623,323,340 | 100% | ||
fiona777 | 0 | 229,736,964 | 100% | ||
lenar79 | 0 | 214,910,233 | 100% | ||
blueorgy | 0 | 136,509,002,447 | 100% | ||
magz8716 | 0 | 8,067,251,083 | 100% | ||
heimindanger | 0 | 3,193,406,864 | 100% | ||
mxjxn | 0 | 122,836,714 | 100% | ||
cryptobro | 0 | 6,693,372,928 | 100% | ||
animus | 0 | 93,922,718 | 100% | ||
exitmass | 0 | 9,628,370,611 | 100% | ||
liberosist | 0 | 50,638,121,991 | 100% | ||
quigonjinn | 0 | 53,739,508 | 100% | ||
sauravrungta | 0 | 2,594,871,667 | 100% | ||
vapekings14 | 0 | 4,193,310,445 | 100% | ||
armen7777 | 0 | 105,229,561 | 100% | ||
grand96 | 0 | 125,252,614 | 100% | ||
neroru | 0 | 4,788,746,295 | 100% | ||
jl777 | 0 | 90,692,976,938 | 100% | ||
meteor78 | 0 | 159,463,767 | 100% | ||
james212 | 0 | 761,872,033,436 | 100% | ||
yarly4 | 0 | 155,770,817 | 100% | ||
ben.zimmerman | 0 | 9,200,429,740 | 100% | ||
raymonjohnstone | 0 | 0 | 100% | ||
masterinvestor | 0 | 4,825,140,446 | 100% | ||
fleuri | 0 | 0 | 100% | ||
johnsmith | 0 | 54,981,455,887 | 100% | ||
grin | 0 | 114,213,797 | 100% | ||
cire81 | 0 | 2,513,464 | 100% | ||
natedogg | 0 | 226,199,122 | 100% | ||
yarly12 | 0 | 67,395,603 | 100% | ||
fnait | 0 | 576,311,403 | 100% | ||
keepcalmand | 0 | 575,812,964 | 100% | ||
celebr1ty | 0 | 14,990,640,550 | 100% | ||
bkkshadow | 0 | 2,212,219,759 | 100% | ||
rznag | 0 | 8,471,681,063 | 100% | ||
angielb | 0 | 267,549,558 | 100% | ||
bullionstackers | 0 | 79,657,697 | 100% | ||
jillstein2016 | 0 | 1,142,200,271 | 100% | ||
loum | 0 | 134,857,507 | 100% | ||
andreynoch | 0 | 1,428,655,991 | 100% | ||
alekschm | 0 | 33,114,272 | 100% | ||
auxonoxua | 0 | 46,381,400 | 100% | ||
thegodfather | 0 | 18,085,497 | 100% | ||
thedon | 0 | 473,022,748 | 100% | ||
allasyummyfood | 0 | 49,324,742,512 | 100% | ||
cryptoninja | 0 | 2,855,986,770 | 100% | ||
kalimor | 0 | 289,761,779 | 100% | ||
sindibober | 0 | 1,270,828 | 0% | ||
lianbing | 0 | 4,651,900,514 | 100% | ||
thisisbenbrick | 0 | 33,714,864,448 | 100% | ||
fairider1 | 0 | 31,933,211 | 100% | ||
ekitcho | 0 | 122,707,308 | 100% | ||
nonlinearone | 0 | 15,636,359,274 | 100% | ||
ciao | 0 | 16,462,452 | 100% | ||
denhod | 0 | 63,001,466 | 100% | ||
thebotkiller | 0 | 5,290,175,435 | 100% | ||
bennierex | 0 | 0 | 100% | ||
ccbison | 0 | 59,214,073 | 100% | ||
theconnoisseur | 0 | 149,760,536 | 100% | ||
steemo | 0 | 2,464,443 | 100% | ||
steema | 0 | 2,458,086 | 100% | ||
mammon | 0 | 7,816,436 | 100% | ||
confucius | 0 | 9,698,941 | 100% | ||
borran | 0 | 8,394,585,055 | 100% | ||
jupiter.zeus | 0 | 52,582,158 | 100% | ||
bledarus | 0 | 1,179,305,430 | 100% | ||
psums | 0 | 51,441,898 | 100% | ||
blakemscurr | 0 | 62,190,793 | 100% | ||
bitcalm | 0 | 834,933,004 | 100% | ||
nomorealex | 0 | 12,436,963,413 | 100% | ||
steemulate | 0 | 214,705,734 | 100% | ||
oldas | 0 | 25,018,050 | 100% | ||
stylo | 0 | 19,774,601 | 0% | ||
jarvis | 0 | 9,965,405 | 100% | ||
matrixdweller | 0 | 58,066,512 | 100% | ||
dmozzy | 0 | 8,303,111,326 | 100% | ||
assistant | 0 | 7,251,455 | 100% | ||
hhcwebmaster | 0 | 76,319,998 | 100% | ||
thecurator | 0 | 77,508,935 | 100% | ||
michelnilles | 0 | 35,477,489 | 100% | ||
lanto | 0 | 43,378,233 | 100% | ||
grosu20 | 0 | 26,400,404 | 100% | ||
hanzdolo | 0 | 61,124,618 | 100% | ||
chanbam | 0 | 52,921,228 | 100% | ||
mata | 0 | 62,402,880 | 100% | ||
abarefootpoet | 0 | 65,969,936 | 100% | ||
dispenser | 0 | 47,561,294 | 100% | ||
cryptomental | 0 | 59,294,522 | 100% | ||
cryptosolitaire | 0 | 47,335,046 | 100% | ||
tolik8080 | 0 | 52,055,182 | 100% | ||
clinkambr | 0 | 54,400,899 | 100% | ||
johanherman | 0 | 59,989,087 | 100% | ||
someguy123 | 0 | 922,416,687 | 100% | ||
bgains | 0 | 54,834,935 | 100% | ||
anomaly | 0 | 304,387,311 | 100% | ||
dropahead | 0 | 0 | 10% | ||
gutzofter | 0 | 0 | 100% | ||
birdinc | 0 | 0 | 100% | ||
dnjsgkr11 | 0 | 0 | 100% | ||
bhmcintosh | 0 | 0 | 100% | ||
valencra | 0 | 0 | 100% | ||
slavix | 0 | 0 | 100% | ||
francoisl | 0 | 0 | 100% | ||
sevlom777 | 0 | 0 | 100% | ||
dkdaniz | 0 | 0 | 100% | ||
adigiovanni | 0 | 0 | 100% | ||
easyvideos | 0 | 0 | 100% | ||
cryptobills | 0 | 0 | 100% | ||
qb3 | 0 | 0 | 100% | ||
discutio | 0 | 0 | 100% |
Great article, @furion. Thank you so much. So, I have to use the comment operation if I want to publish a new blog post on my blog. Is it correct?
author | adigiovanni |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20170909t144012569z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"],"app":"steemit/0.1"} |
created | 2017-09-09 14:40:12 |
last_update | 2017-09-09 14:40:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-16 14:40:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 146 |
author_reputation | 598,536,527,134 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,362,335 |
net_rshares | 0 |
Great stuff, Im not a developer but this post has so much value to everyone :) Thanks!
author | allasyummyfood |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t135113112z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:51:12 |
last_update | 2016-08-01 13:51:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 283,763,839,951,286 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,744 |
net_rshares | 0 |
That is going to be very usefull ... I also have put up a guide to create your own local steemit website, you can find it here (https://steemit.com/steemit/@artakan/how-to-build-your-own-steemit-com-website) and it's on line here [https://my-steemit.com]([https://my-steemit.com) It can be usefull when this happens http://i.imgur.com/PBlQbot.png like now for example ;-)
author | artakan |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t152948154z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@artakan/how-to-build-your-own-steemit-com-website"]} |
created | 2016-08-01 15:29:45 |
last_update | 2016-08-01 15:29:45 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 374 |
author_reputation | 2,351,335,125,519 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 536,790 |
net_rshares | -210,495,818 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemulate | 0 | -210,495,818 | -100% |
Wow! This post has a lot of useful information for someone wanting to get into developing apps for this platform. Thanks for putting this together!
author | bhmcintosh |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20170724t011052254z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-07-24 01:10:54 |
last_update | 2017-07-24 01:10:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-31 01:10:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 1,010,551,044,583 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,475,806 |
net_rshares | 10,334,469,008 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bhmcintosh | 0 | 10,334,469,008 | 100% |
Is this Python 2 or 3?
author | cmtzco |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t141259242z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 14:12:24 |
last_update | 2016-08-01 14:12:24 |
depth | 1 |
children | 2 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 1,876,603,009,707 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 535,227 |
net_rshares | 58,788,197 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
southbaybits | 0 | 58,788,197 | 100% |
Just noticed the library being used is Python3 :( Any idea why there are only Python3 libraries/apis being made?
author | cmtzco |
---|---|
permlink | re-cmtzco-re-furion-developers-guide-to-steem-s-blockchain-20160801t172706094z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 17:26:33 |
last_update | 2016-08-01 17:26:33 |
depth | 2 |
children | 1 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 1,876,603,009,707 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 539,697 |
net_rshares | 0 |
Because after 10 years, everyone's (finally!) moving to Python 3.
author | theoretical |
---|---|
permlink | re-cmtzco-re-cmtzco-re-furion-developers-guide-to-steem-s-blockchain-20160802t003338038z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-02 00:33:36 |
last_update | 2016-08-02 00:33:36 |
depth | 3 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 30,164,760,525,645 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 548,750 |
net_rshares | 0 |
author | cryptobro |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t133920389z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:39:21 |
last_update | 2016-08-01 13:39:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 912,384,027,106 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,498 |
net_rshares | 21,812,129,633 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 15,023,634,964 | 100% | ||
gandamx | 0 | 226,364,347 | 100% | ||
cryptobro | 0 | 6,562,130,322 | 100% |
The article goes right into the details! Thanks!
author | cryptomental |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t213543080z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 21:35:42 |
last_update | 2016-08-01 21:35:42 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 6,756,831,217,523 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 545,648 |
net_rshares | 0 |
cool
author | cyntechtic |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20170626t114756435z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-26 11:48:21 |
last_update | 2017-06-26 11:48:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-03 11:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 96,530,407,832 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,167,670 |
net_rshares | 1,875,814,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cyntechtic | 0 | 1,875,814,982 | 100% |
πgreat post.. @furion
author | dispenser |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t202636539z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"]} |
created | 2016-08-01 20:26:33 |
last_update | 2016-08-01 20:26:33 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | -193,047,649,580 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 544,129 |
net_rshares | 0 |
This is how to delete a post or comment programmatically ```BASH curl http://127.0.0.1:8093 --data '{"jsonrpc": "2.0", "method": "sign_transaction", "params": [{"operations": [ ["delete_comment", {"author": "username", "permlink": "re-to-some-timestamp-z", "required_posting_auths": ["username"]}] ] }, true], "id": 1}' ```
author | dropahead |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20171024t200840703z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-10-24 20:08:39 |
last_update | 2017-10-24 20:08:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-31 20:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 324 |
author_reputation | 7,410,936,083,975 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,478,622 |
net_rshares | 0 |
great effort !!! @furion :))
author | fiver |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t145417879z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"]} |
created | 2016-08-01 14:54:21 |
last_update | 2016-08-01 14:54:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 64,779,302,725 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 536,074 |
net_rshares | 0 |
nice @furion i follow you 8]
author | gekko |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t151547600z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"]} |
created | 2016-08-01 15:15:48 |
last_update | 2016-08-01 15:15:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 1,185,517,433,922 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 536,528 |
net_rshares | 1,006,774,006 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gekko | 0 | 1,006,774,006 | 100% |
Awesome write up! This clears up a few things I have been tinkering with. Keep up the good work.
author | kaptainkrayola |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t141830868z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 14:18:30 |
last_update | 2016-08-01 14:18:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 2,518,560,260,114 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 535,356 |
net_rshares | 9,850,338,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kaptainkrayola | 0 | 9,850,338,272 | 100% |
Nice one @furion. Thank you!
author | kingofchaos |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t144943197z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 14:49:42 |
last_update | 2016-08-01 14:49:42 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 3,281,336,908,288 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 535,984 |
net_rshares | 0 |
author | knircky |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t133049086z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:30:48 |
last_update | 2016-08-01 13:30:48 |
depth | 1 |
children | 1 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 212,905,587,244,262 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,350 |
net_rshares | 15,610,977,037 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 15,379,796,427 | 100% | ||
gandamx | 0 | 231,180,610 | 100% |
author | furion |
---|---|
permlink | re-knircky-re-furion-developers-guide-to-steem-s-blockchain-20160801t133329913z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:33:30 |
last_update | 2016-08-01 13:33:30 |
depth | 2 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,401 |
net_rshares | 15,607,704,906 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 15,381,340,559 | 100% | ||
gandamx | 0 | 226,364,347 | 100% |
I'm not smart enough to make heads or tails of it, but I can see this will be invaluable for developers. :)
author | liberosist |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t133937536z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:39:39 |
last_update | 2016-08-01 13:39:39 |
depth | 1 |
children | 2 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 177,167,275,265,899 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,506 |
net_rshares | 15,612,521,169 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 15,381,340,559 | 100% | ||
gandamx | 0 | 231,180,610 | 100% |
Thank you liberosist. Its actually really simple, just a lot of information. I wanted to make it convenient for all devs who want a 1 stop guide.
author | furion |
---|---|
permlink | re-liberosist-re-furion-developers-guide-to-steem-s-blockchain-20160801t134254410z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:42:54 |
last_update | 2016-08-01 13:42:54 |
depth | 2 |
children | 1 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,577 |
net_rshares | 231,180,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gandamx | 0 | 231,180,610 | 100% |
I know. It's just that I'm programming illiterate. So it's all Greek to me. :)
author | liberosist |
---|---|
permlink | re-furion-re-liberosist-re-furion-developers-guide-to-steem-s-blockchain-20160801t134503277z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:45:06 |
last_update | 2016-08-01 13:45:06 |
depth | 3 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 177,167,275,265,899 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,633 |
net_rshares | 0 |
nice post
author | licdocarlos |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t204144955z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 20:41:39 |
last_update | 2016-08-01 20:41:39 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 3,495,916,151 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 544,473 |
net_rshares | 0 |
Hello, please check out my idea on getting more posts rewarded: https://steemit.com/steemit/@lorddominik007/my-thoughts-on-steemit-an-idea-to-help-great-posts-be-recognized
author | lorddominik007 |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t201316539z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@lorddominik007/my-thoughts-on-steemit-an-idea-to-help-great-posts-be-recognized"]} |
created | 2016-08-01 20:13:15 |
last_update | 2016-08-01 20:13:15 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 7,636,603,703,350 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 543,798 |
net_rshares | -210,495,818 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemulate | 0 | -210,495,818 | -100% | ||
revo | 0 | 0 | -100% |
There is just one thing I didn't entirely get, if I run my own node, would it pull the blockchain from seed and make local copy of it or start over? Is this an isolated development environment I can use without risking creating real posts and spending real money? Otherwise, thanks for good posts.
author | marekn |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20180330t013121900z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-03-30 01:31:24 |
last_update | 2018-03-30 01:31:24 |
depth | 1 |
children | 0 |
last_payout | 2018-04-06 01:31:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 298 |
author_reputation | 0 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 47,371,637 |
net_rshares | 0 |
Thanks @furion for the comprehensive guide. You have a typo in the port number: `Again, the RPC is available for us at ws://localhost:9080` should be 8090 I believe
author | mata |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160802t034431826z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"]} |
created | 2016-08-02 03:44:30 |
last_update | 2016-08-02 03:44:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 299,439,555,653 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 551,472 |
net_rshares | 0 |
Bookmarking, thanks! $b.programming $b.code $b.steem
author | nonlinearone |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160811t132525634z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-11 13:25:45 |
last_update | 2016-08-11 13:25:45 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 32,682,086,388,813 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 745,179 |
net_rshares | 0 |
Two thumbs Way up!
author | paco |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t134839100z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:43:54 |
last_update | 2016-08-01 13:43:54 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 19,355,236,534,559 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,605 |
net_rshares | 0 |
Fantastic. Thank you!
author | revo |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20170801t102150447z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-08-01 10:21:48 |
last_update | 2017-08-01 10:21:48 |
depth | 1 |
children | 0 |
last_payout | 2017-08-08 10:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 13,099,225,944,898 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,407,438 |
net_rshares | 0 |
i followed , i might be ditching one of my two jobs so i can play with steemd/cli too
author | rxhector |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t182358450z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 18:23:57 |
last_update | 2016-08-01 18:23:57 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 20,310,242,279,674 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 541,079 |
net_rshares | 0 |
> limit_order_create, limit_order_cancel How does one see executions?
author | smooth |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t134419900z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:44:21 |
last_update | 2016-08-01 13:44:21 |
depth | 1 |
children | 11 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.159 HBD |
curator_payout_value | 0.044 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 253,602,537,834,068 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,620 |
net_rshares | 273,664,845,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theoretical | 0 | 258,057,140,900 | 100% | ||
furion | 0 | 15,381,340,559 | 100% | ||
gandamx | 0 | 226,364,347 | 100% |
This is a very good question. I think it may be under `transfers`. I am looking into it now. I've just re-run the script, and it looks like I missed 1 operation type : ``` =====> set_withdraw_vesting_route {'auto_vest': False, 'from_account': 'steemroller', 'percent': 100, 'to_account': 'itsascam'} ```
author | furion |
---|---|
permlink | re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t135214526z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:52:15 |
last_update | 2016-08-01 13:52:15 |
depth | 2 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 307 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,765 |
net_rshares | 15,023,634,964 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 15,023,634,964 | 100% |
Ok, I tried exchanging $0.26 SBD into steem and back, and this is the only thing I got from the blockchain: Buying Steem: ``` =====> limit_order_create {'amount_to_sell': '0.286 SBD', 'expiration': '1969-12-31T23:59:59', 'fill_or_kill': False, 'min_to_receive': '0.100 STEEM', 'orderid': 1470060094, 'owner': 'furion'} ``` Selling Steem: ``` =====> limit_order_create {'amount_to_sell': '0.100 STEEM', 'expiration': '1969-12-31T23:59:59', 'fill_or_kill': False, 'min_to_receive': '0.274 SBD', 'orderid': 1470060340, 'owner': 'furion'} ``` So I dug deeper, and I found out, that `steemd` does not handle exchange data. To get the exchange data, one needs to to interact with `cli_wallet`'s RPC, not the `steemd`. If you use [python-steemlib](https://github.com/xeroc/python-steemlib), the trade history can be obtained like so: ``` class Config(): wallet_host = "localhost" wallet_port = 8091 witness_url = "wss://steemit.com/wstmp2" account = "smooth" wallet_rpc = SteemExchange(Config) wallet_rpc.returnTradeHistory() ```
author | furion |
---|---|
permlink | re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t141630034z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/xeroc/python-steemlib"]} |
created | 2016-08-01 14:16:30 |
last_update | 2016-08-01 14:16:45 |
depth | 2 |
children | 3 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,132 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 535,315 |
net_rshares | 70,203,681,963 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ydm6669 | 0 | 3,373,660,881 | 100% | ||
discombobulated | 0 | 66,830,021,082 | 100% |
πnice article @furion
author | meteor78 |
---|---|
permlink | re-furion-re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t183153738z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"]} |
created | 2016-08-01 18:31:57 |
last_update | 2016-08-01 18:31:57 |
depth | 3 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 184,361,553,890 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 541,270 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aneilpatel | 0 | 0 | 100% |
Check the get_account_history for your account instead of using get_block and you will see virtual ops for filled orders.
author | theoretical |
---|---|
permlink | re-furion-re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t185430888z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 18:54:30 |
last_update | 2016-08-01 18:54:30 |
depth | 3 |
children | 1 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 30,164,760,525,645 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 541,733 |
net_rshares | 0 |
there is a fill_order event in the array returned by get_history: sprintf(url,"http://127.0.0.1:8090"); sprintf(params,"{\"id\":%llu,\"method\":\"get_account_history\",\"params\":[\"%s\", %d, %d]}", fill_order ({"current_owner":"enki","current_orderid":3402053187,"current_pays":"19.613 SBD","open_owner":"taker","open_orderid":1469136521,"open_pays":"5.792 STEEM"}) it shows both orderids and how much was filled
author | jl777 |
---|---|
permlink | re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t152412886z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://127.0.0.1:8090"]} |
created | 2016-08-01 15:24:12 |
last_update | 2016-08-01 15:24:12 |
depth | 2 |
children | 2 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 429 |
author_reputation | 14,988,697,980,664 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 536,698 |
net_rshares | 0 |
I really need to fix my steemd/cli_wallet install, I'm missing out on all the good stuff.
author | furion |
---|---|
permlink | re-jl777-re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t153224300z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 15:32:24 |
last_update | 2016-08-01 15:32:24 |
depth | 3 |
children | 1 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 536,840 |
net_rshares | 0 |
Account history for an account has virtual operations for orders filled by that account. Currently the only way to see virtual ops is in account history, but I'm thinking of adding an event interface for them one of these days and writing a plugin to expose them over an API.
author | theoretical |
---|---|
permlink | re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t185018296z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 18:50:18 |
last_update | 2016-08-01 18:50:18 |
depth | 2 |
children | 2 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.203 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 30,164,760,525,645 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 541,652 |
net_rshares | 271,666,523,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theoretical | 0 | 258,057,140,900 | 100% | ||
furion | 0 | 13,609,382,904 | 100% |
I've looked into `steem_cli` RPC call `get_account_history`, and this is what I get from executing an order: 1.) Placing an order ``` ======> limit_order_create {'amount_to_sell': '8.700 SBD', 'expiration': '1969-12-31T23:59:59', 'fill_or_kill': False, 'min_to_receive': '3.000 STEEM', 'orderid': 1469778670, 'owner': 'furion'} ``` . 2.) Order being filled (it was not filled at once, hence the two separate fills): ``` ======> fill_order {'current_orderid': 162741016, 'current_owner': 'enki', 'current_pays': '2.141 STEEM', 'open_orderid': 1469778670, 'open_owner': 'furion', 'open_pays': '6.208 SBD'} ======> fill_order {'current_orderid': 951953610, 'current_owner': 'enki', 'current_pays': '0.859 STEEM', 'open_orderid': 1469778670, 'open_owner': 'furion', 'open_pays': '2.492 SBD'} ``` Thank you @theoretical for pointing this out. I've learned so much today :)
author | furion |
---|---|
permlink | re-theoretical-re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160801t201535751z |
category | steem |
json_metadata | {"tags":["steem"],"users":["theoretical"]} |
created | 2016-08-01 20:15:36 |
last_update | 2016-08-01 20:16:06 |
depth | 3 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 885 |
author_reputation | 116,503,940,714,958 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 543,851 |
net_rshares | 0 |
That would be spendid
author | smooth |
---|---|
permlink | re-theoretical-re-smooth-re-furion-developers-guide-to-steem-s-blockchain-20160803t213712800z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-03 21:37:12 |
last_update | 2016-08-03 21:37:12 |
depth | 3 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 253,602,537,834,068 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 589,710 |
net_rshares | 0 |
Hi @furion thanks for the informative post. I'm a developer looking into getting started with building Steem apps on sidechains. Could you also provide a brief tutorial on that? Thanks :D
author | valencra |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20170605t020903837z |
category | steem |
json_metadata | {"tags":["steem"],"users":["furion"],"app":"steemit/0.1"} |
created | 2017-06-05 02:09:03 |
last_update | 2017-06-05 02:09:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-12 02:09:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 188 |
author_reputation | 574,688,804,394 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,189,614 |
net_rshares | 711,044,127 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valencra | 0 | 711,044,127 | 100% |
Thanks for the invaluable post, bookmarked for when I do set up myself a node :)
author | ydm6669 |
---|---|
permlink | re-furion-developers-guide-to-steem-s-blockchain-20160801t134759771z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 13:47:51 |
last_update | 2016-08-01 13:47:51 |
depth | 1 |
children | 0 |
last_payout | 2016-09-01 04:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 1,393,256,421,572 |
root_title | "Developers Guide to Steem's Blockchain" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 534,690 |
net_rshares | 18,986,182,050 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ydm6669 | 0 | 3,373,660,881 | 100% | ||
furion | 0 | 15,381,340,559 | 100% | ||
gandamx | 0 | 231,180,610 | 100% |