<div class="center">  </div> Today I would like to take a moment to explain the current structure of an EOS.IO transaction so that developers can better understand the concurrency model. Below is a JSON representation of a transaction that will transfer **currency** from **sam** to **alice**. In this case, **currency**, **sam**, and **alice** are all account names; however, they are used in different ways. ``` { "refBlockNum": "12", "refBlockPrefix": "2792049106", "expiration": "2015-05-15T14:29:01", "scope": [ "alice", "sam" ], "messages": [ { "code": "currency", "type": "transfer", "recipients": [ "sam", "alice" ], "authorization": [ { "account": "sam", "permission": "active" } ], "data": "a34a59dcc8000000c9251a0000000000501a00000000000008454f53000000000568656c6c6f" } ], "signatures": [] } ``` When serialized to binary with a single signature, this transaction is about 160 bytes in size which is slightly larger than a Steem transfer which is about 120 bytes or a BitShares transfer which is about 94 bytes. Much of the extra size comes from having to explicitly specify *recipients*, *authorization*, and *scope* which collectively add 51 bytes to the message. ### TaPoS - Transactions as Proof of Stake Those of you familiar with Steem & BitShares will recognize the first 3 fields of the transaction; they remain unchanged. These fields are used by TaPoS (Transactions as Proof of Stake) and ensure that this transaction can only be included after the referenced block and before the expiration. ### Scope The next field, "scope", is new to EOS.IO and specifies the range of data that may be read and/or written to. If a message attempts to read or write data outside of scope then the transaction will fail. Transactions can be processed in parallel so long as there is no overlap in their scope. A key innovation of the EOS.IO software is that *scope* and *code* are two entirely separate concepts. You will notice that the **currency** contract is not referenced in the *scope* even though we are executing a transfer using the **currency** contract's code. ### Messages A transaction can have one or more messages that must be applied in order and atomically (all succeed or all fail). In this case there is exactly one message, so lets look closer at the message: #### code: Every message must specify which code it will be executing, in this case the currency contract's code will be executing resulting in the following method being called: ``` currency::apply_currency_transfer(data) ``` #### type: The type field defines the type of message (and implicitly the format of *data*). From an object oriented programming perspective you could view type as a *method* "name" on the "currency" *class*. In this example the *type* is "transfer" and hence explains the naming of the method being called: ``` ${namespace}::apply_${code}_${type}( data ) ``` In case the "namespace" is the **currency** contract; however, this same method `apply_currency_transfer` may also be called in other namespaces. #### recipients: In addition to calling `currency::apply_currency_transfer(data)`, the method `apply_currency_transfer(data)` will also be called for each recipient listed. For example, the following methods would be called sequentially in this order: ``` currency::apply_currency_transfer(data) alice::apply_currency_transfer(data) sam::apply_currency_transfer(data) ``` <br/> The notation `account::` specifies the contract which implements the method. **alice** and **sam** may choose to not implement this method if they don't have any special logic to perform when `currency::apply_currency_transfer` is executed. However, if **sam** was an exchange, then **sam** would probably want to process deposits and withdraws when ever a currency transfer is made. The person who generates the transaction can add any number of recipients (provided they all execute quickly enough). In addition some contracts can require that certain parties be notified. In the case of **currency** both the sender and receiver are required to be notified. You can see how this is [specified in the currency contract](https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L25). ``` void apply_currency_transfer() { const auto& transfer = currentMessage<Transfer>(); requireNotice( transfer.to, transfer.from ); ... } ``` #### authorization: Each message may require authorization from one or more accounts. In Steem and BitShares the required authorization is implicitly defined based on the message type; however, with EOS.IO the message must explicitly define the authorization that is provided. The EOS.IO system will automatically verify that the transaction has been signed by all of the necessary signatures to grant the specified authorization. In this case the message is indicating that it must be signed by **sam**'s **active** permission level. The **currency** code will verify that **sam**'s authorization was provided. You can view this check in the [example currency contract](https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L26). ``` void apply_currency_transfer() { const auto& transfer = currentMessage<Transfer>(); requireNotice( transfer.to, transfer.from ); requireAuth( transfer.from ); ... } ``` #### data: Every contract can define it's own data format. Without the ABI the data can only be interpreted as a hexadecimal data; however, the **currency** contract defines the format of *data* to be a **Transfer** struct: ``` struct Transfer { AccountName from; AccountName to; uint64_t amount = 0; }; ``` With this definition in hand we can convert the binary blob to something similar to: ``` { "from" : "sam", "to": "alice", "amount": 100 } ``` ## Scheduling Now that we understand the structure of an EOS.IO transaction, we can look at the structure of an EOS.IO block. Each block is divided into *cycles* which are executed sequentially. Within each cycle there are any number of threads that execute in parallel. The trick is to ensure that no two threads contain transactions with intersecting scopes. A block can be declared invalid without reference to any external data if there is any scope overlap among the threads within a single cycle. ## Conclusion The single biggest challenge to parallel execution is ensuring the same data is not being accessed by two threads at the same time. Unlike traditional parallel programming, it is not possible to use locks around memory access because the the resulting execution would necessarily be non-deterministic and potentially break consensus. Even if locks were possible, they would be undesirable because heavy use of locks can degrade performance below that of single threaded execution. The alternative to locking at the time data is accessed, is to lock at the time execution is scheduled. From this perspective, the **scope** field defines the accounts a transaction wishes to acquire a lock on. The scheduler (aka block producer) ensures no two threads attempt to grab the same lock at the same time. With this transaction structure and scheduling it is possible to dramatically deconflict memory access and increase opportunities for parallel execution. Unlike other platforms the separation of code (currency contract) from data (account storage) enables a separation of locking requirements. If the currency contract and its data were bundled then every transfer would have to lock the currency contract and all transfers would be limited by single threaded throughput. But because the transfer message only has to lock on the sender and receiver's data the currency contract is no longer the bottleneck. Removing the currency contract from being a bottleneck is incredibly important when you consider an exchange contract. Every time there is a deposit or withdraw from the exchange the currency contract and the exchange contract get forced into the same thread. If both of these contracts are heavily used then it will degrade the performance of all currency and all exchange users. Under the EOS.IO model two users can transfer without worrying about the sequential (single threaded) throughput of any other accounts/contracts than those involved in the transfer.
author | dan |
---|---|
permlink | eos-developer-s-log-stardate-201707-9 |
category | eos |
json_metadata | {"tags":["eos","developerslog"],"image":["https://steemitimages.com/DQmZWjRzX696igR6tq7QEgGfQeMdHVfJTgfWrqzzD8R9mVt/image.png"],"links":["https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L25","https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L26"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-09 18:45:51 |
last_update | 2017-07-09 18:48:21 |
depth | 0 |
children | 104 |
last_payout | 2017-07-16 18:45:51 |
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 | 8,515 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 7,898,893 |
net_rshares | 186,882,873,189,496 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 4,896,848,994 | 1% | ||
dan | 0 | 172,201,424,898,705 | 100% | ||
wackou | 0 | 4,264,518,857,232 | 40% | ||
xeldal | 0 | 63,072,045,792 | 0.4% | ||
liondani | 0 | 978,176,550,259 | 100% | ||
steem-id | 0 | 5,965,377,492 | 1% | ||
benjojo | 0 | 114,950,456,530 | 100% | ||
pnc | 0 | 3,555,818,738 | 1% | ||
chryspano | 0 | 767,022,093,978 | 100% | ||
sandwich | 0 | 46,313,288,373 | 100% | ||
ppitonak | 0 | 9,138,950,822 | 100% | ||
max-infeld | 0 | 9,013,092,430 | 100% | ||
teamsteem | 0 | 188,101,338,098 | 1% | ||
oaldamster | 0 | 196,037,546,233 | 100% | ||
kevinwong | 0 | 2,117,805,711,930 | 100% | ||
treeleaves | 0 | 919,548,859 | 1% | ||
marc-fa-schiwo | 0 | 1,109,994,457 | 100% | ||
cm-steem | 0 | 200,759,728,991 | 100% | ||
pascal-amanfo | 0 | 1,316,521,232 | 100% | ||
hedge-x | 0 | 379,631,182,742 | 100% | ||
pangur-ban | 0 | 3,898,332,790 | 100% | ||
ola-haukland | 0 | 23,356,040,298 | 100% | ||
menace.coin | 0 | 2,854,459,886 | 100% | ||
omarb | 0 | 436,442,017,187 | 100% | ||
tee-em | 0 | 34,791,829,125 | 100% | ||
mauricemikkers | 0 | 47,543,551,096 | 100% | ||
angusleung100 | 0 | 1,419,938,808 | 100% | ||
freedomengineer | 0 | 140,186,593,645 | 100% | ||
superfreek | 0 | 3,513,114,493 | 100% | ||
nadejde | 0 | 9,122,602,317 | 100% | ||
phanie90 | 0 | 1,369,293,729 | 100% | ||
lauralemons | 0 | 424,909,959 | 0.5% | ||
kakradetome | 0 | 1,613,284,718 | 25% | ||
robrigo | 0 | 252,443,014,735 | 100% | ||
ffane | 0 | 515,092,916 | 100% | ||
chamviet | 0 | 1,725,201,793 | 100% | ||
cultura.bitcoin | 0 | 65,533,501 | 100% | ||
bartcant | 0 | 3,963,896,997 | 100% | ||
alkemix | 0 | 8,427,271,901 | 100% | ||
ausbitbank | 0 | 161,737,987,674 | 1% | ||
incomemonthly | 0 | 9,969,070,000 | 50% | ||
bunix | 0 | 8,813,688,779 | 100% | ||
igster | 0 | 24,520,159,164 | 15% | ||
sephiroth | 0 | 737,576,117,243 | 100% | ||
stomatolog2 | 0 | 93,518,229 | 100% | ||
benjiberigan | 0 | 12,510,001,142 | 100% | ||
stimmedmarine | 0 | 3,757,481,051 | 100% | ||
bitcoiner | 0 | 3,207,834,689 | 1% | ||
arconite | 0 | 7,731,884,651 | 50% | ||
stea90 | 0 | 678,359,665 | 100% | ||
sompitonov | 0 | 14,114,053,238 | 100% | ||
warofcraft | 0 | 174,851,229,062 | 50% | ||
tikal | 0 | 0 | 0% | ||
bhavnapatel68 | 0 | 6,047,231,808 | 5% | ||
psums | 0 | 244,961,421 | 100% | ||
bitcalm | 0 | 103,231,329 | 100% | ||
lamech-m | 0 | 199,562,366 | 1% | ||
kebek | 0 | -111,198,174 | -100% | ||
themonetaryfew | 0 | 483,877,878,160 | 100% | ||
runridefly | 0 | 5,527,366,404 | 1% | ||
barrydutton | 0 | 55,821,214,422 | 10% | ||
titusfrost | 0 | 78,848,644,741 | 100% | ||
kyusho | 0 | 9,677,584,896 | 5% | ||
allyouneedtoknow | 0 | 711,048,526 | 0.6% | ||
positivesteem | 0 | 15,361,687,677 | 100% | ||
freebornangel | 0 | 2,734,662,166 | 4% | ||
background58 | 0 | 104,480,598 | 100% | ||
cbarry10 | 0 | 82,044,745 | 100% | ||
ancapwarren | 0 | 1,500,816,301 | 25% | ||
luzcypher | 0 | 89,763,329,537 | 100% | ||
bosjaya | 0 | 128,832,450 | 60% | ||
anasz | 0 | 13,092,320,025 | 100% | ||
p0o | 0 | 286,515,118,383 | 100% | ||
steemtruth | 0 | 122,569,377,644 | 50% | ||
simonjay | 0 | 32,680,545,740 | 30% | ||
steemjobs | 0 | 257,337,397 | 50% | ||
groundbreaker | 0 | 1,603,978,962 | 95% | ||
tomino | 0 | 1,188,168,309 | 1% | ||
blhz | 0 | 5,977,733,397 | 100% | ||
black-eye | 0 | 310,126,816 | 100% | ||
jmehta | 0 | 1,164,808,870 | 100% | ||
khairil | 0 | 508,364,489 | 100% | ||
muhtadiaremi | 0 | 471,968,382 | 100% | ||
nigelmarkdias | 0 | 829,935,384 | 1% | ||
edgarstudio | 0 | 8,739,664,814 | 100% | ||
jumaidafajar | 0 | 1,254,467,442 | 1% | ||
belidged | 0 | 3,414,634,258 | 100% | ||
rinatot | 0 | 2,034,591,400 | 100% | ||
hexdek16 | 0 | 1,841,056,102 | 100% | ||
obito | 0 | 1,550,596,641 | 100% | ||
dragon40 | 0 | 2,035,944,706 | 10% | ||
vandalizmrecordz | 0 | 2,118,333,232 | 100% | ||
aleph | 0 | 1,528,753,162 | 100% | ||
fajarsdq | 0 | 322,036,460 | 100% | ||
lifelovelifting | 0 | 1,315,844,140 | 30% | ||
davidcurwain | 0 | 290,236,447 | 100% | ||
ryanthegecko | 0 | 5,050,637,451 | 30% | ||
loosechange | 0 | 1,102,904,449 | 100% | ||
sprachbund | 0 | 741,612,529 | 100% | ||
kaelam-uk | 0 | 4,060,167,757 | 100% | ||
ejemai | 0 | 1,394,084,764 | 100% | ||
moneymustacheman | 0 | 987,278,617 | 100% | ||
theghost1980 | 0 | 28,580,228,666 | 86% | ||
samuelpaddy | 0 | 718,666,116 | 100% | ||
kiran27 | 0 | 964,169,757 | 100% | ||
mirzasaputra | 0 | 213,476,276 | 100% | ||
cyfi | 0 | 10,544,327,771 | 100% | ||
mursin | 0 | 1,340,372,119 | 100% | ||
carbunco10 | 0 | 584,350,546 | 100% | ||
funkit | 0 | 19,630,532,147 | 100% | ||
msbalestamon | 0 | 991,881,593 | 100% | ||
jamesc1 | 0 | 788,889,460,235 | 100% | ||
lawrenceho84 | 0 | 203,818,291,494 | 100% | ||
leviarcoin | 0 | 5,318,836,317 | 100% | ||
rahmadi | 0 | 1,219,308,487 | 100% | ||
dapu | 0 | 599,593,100 | 100% | ||
taspingo | 0 | 3,079,609,765 | 100% | ||
awesomianist | 0 | 223,663,223 | 0.1% | ||
altccy | 0 | 104,464,380,410 | 100% | ||
zamzamiali | 0 | 211,255,600 | 100% | ||
richguy | 0 | 103,955,299,810 | 100% | ||
sirryg | 0 | 621,119,027 | 100% | ||
synapse | 0 | 8,312,066,948 | 100% | ||
ophelion | 0 | 197,313,032 | 1% | ||
aarkay | 0 | 1,394,709,792 | 100% | ||
coinhub | 0 | 1,108,711,653 | 100% | ||
foways | 0 | 9,803,935,228 | 100% | ||
endthefed2017 | 0 | 70,817,763 | 10% | ||
sacred-agent | 0 | 8,720,932,327 | 11% | ||
ajain | 0 | 6,142,252,018 | 100% | ||
charlesnegron | 0 | 2,825,090,561 | 100% | ||
adnefina | 0 | 6,061,478,001 | 100% | ||
jermain | 0 | 4,208,796,438 | 100% | ||
alimiami | 0 | 605,806,500 | 100% | ||
me-do | 0 | 218,340,943 | 1% | ||
altcointrends | 0 | 3,467,799,241 | 5% | ||
brucebrownftw | 0 | 18,294,569,122 | 100% | ||
gatmi | 0 | 3,195,157,192 | 100% | ||
renantg | 0 | 5,628,682,828 | 100% | ||
zacharius | 0 | 6,548,726,174 | 100% | ||
thethreehugs | 0 | 0 | 100% | ||
zeitspringer | 0 | 6,061,456,895 | 100% | ||
sportsdesk | 0 | 525,627,639 | 100% | ||
oenophile | 0 | 1,537,849,942 | 100% | ||
lgfurmanczyk | 0 | 7,802,530,162 | 100% | ||
beekeyyy | 0 | 621,340,000 | 100% | ||
sevenstars | 0 | 3,316,013,360 | 100% | ||
shaunf | 0 | 165,342,596 | 100% | ||
diogogomes | 0 | 2,980,944,920 | 100% | ||
wavemaster | 0 | 1,967,902,397 | 100% | ||
rajdharma | 0 | 1,191,849,656 | 100% | ||
alex-icey | 0 | 619,189,647 | 100% | ||
happychau123 | 0 | 7,096,562,208 | 100% | ||
natsabari | 0 | 621,340,000 | 100% | ||
maikegrell | 0 | 612,019,900 | 100% | ||
solarparadise | 0 | 558,535,670 | 100% | ||
scottland | 0 | 897,847,426 | 100% | ||
auliaturrahman | 0 | 64,544,068 | 100% | ||
nealwalters | 0 | 4,773,471,724 | 100% | ||
rayandoelimi | 0 | 599,593,100 | 100% | ||
dinasapitri | 0 | 2,266,051,860 | 100% | ||
philipkoon | 0 | 6,587,066,704 | 100% | ||
zeteticmindset | 0 | 1,769,445,852 | 10% | ||
bluerabbit | 0 | 2,218,985,335 | 100% | ||
dizhmur | 0 | -3,159,222,884 | -100% | ||
redsmock | 0 | 773,817,006 | 100% | ||
rundskop | 0 | 632,255,702 | 100% | ||
ghipnon | 0 | 4,762,616,311 | 100% | ||
choboscientist | 0 | 1,304,889,862 | 100% | ||
tajnost | 0 | 0 | 100% | ||
mythocurrency | 0 | 96,398,051 | 100% | ||
robertvogt | 0 | 2,539,001,940 | 100% | ||
klen.civil | 0 | 350,371,827 | 100% | ||
anonfolderall | 0 | 422,681,481 | 15% | ||
dominiklederer | 0 | 1,562,434,908 | 100% | ||
adeelsiddiqui | 0 | 1,289,451,347 | 100% | ||
earthalliance | 0 | 1,161,411,874 | 100% | ||
tothesea | 0 | 1,283,079,337 | 100% | ||
moneymaster | 0 | 1,365,771,734 | 100% | ||
jeffreylikeyou | 0 | 186,065,427 | 100% | ||
folderall.net | 0 | 435,159,670 | 15% | ||
bc-barrakunta | 0 | 1,086,867,561 | 100% | ||
solehmustakim | 0 | 768,853,565 | 100% | ||
ganymede | 0 | 2,188,250,384 | 90% | ||
cryptopanda | 0 | 1,283,623,169 | 100% | ||
drcephas | 0 | 1,073,654,804 | 100% | ||
obeg | 0 | 1,264,438,529 | 100% | ||
samuelwealth | 0 | 1,325,521,317 | 100% | ||
bewe | 0 | 217,093,421 | 100% | ||
slavix | 0 | 164,367,041,052 | 100% | ||
amristeem | 0 | 1,597,357,344 | 100% | ||
siddm96 | 0 | 418,390,925 | 100% | ||
janpolasek | 0 | 1,160,707,546 | 100% | ||
bitsbetrippin | 0 | 7,919,246,570 | 100% | ||
davebrewer | 0 | 51,402,603,155 | 65% | ||
lancesminer | 0 | 1,073,730,830 | 100% | ||
janny | 0 | 1,168,045,799 | 100% | ||
nkbs | 0 | 900,670,273 | 100% | ||
joverxabri | 0 | 566,492,493 | 100% | ||
markfitzgerald | 0 | 1,293,003,008 | 15.79% | ||
ericrumor | 0 | 5,075,425,554 | 100% | ||
agusdiansyah | 0 | 799,077,692 | 100% | ||
kingst | 0 | 742,271,770 | 100% | ||
tezmel | 0 | 0 | 0% | ||
bdmel | 0 | 1,161,450,372 | 100% | ||
sam999 | 0 | 1,169,645,818 | 100% | ||
liuke96player | 0 | 296,679,045 | 100% | ||
traderr | 0 | 675,773,923 | 100% | ||
samjd | 0 | 1,102,731,790 | 100% | ||
dosycuarto | 0 | 1,347,543,604 | 100% | ||
kim-taylor | 0 | 1,165,048,645 | 100% | ||
bobrice | 0 | 1,143,292,378 | 100% | ||
sidkey | 0 | 291,375,298 | 100% | ||
chitnaingoo | 0 | 80,800,767 | 100% | ||
dobro88888888 | 0 | 80,357,604 | 100% | ||
gingyptian | 0 | 2,645,868,991 | 100% | ||
greencornermedia | 0 | 1,143,331,045 | 100% | ||
greatsam | 0 | 1,304,576,068 | 100% | ||
ajohn | 0 | 429,647,147 | 100% | ||
azlansugihen | 0 | 1,151,113,208 | 100% | ||
mpotter | 0 | 1,082,713,254 | 100% | ||
cryptowolf | 0 | 738,575,640 | 100% | ||
yeah-science | 0 | 311,115,461 | 100% | ||
kevbot | 0 | 5,539,634,209 | 26% | ||
bewajijohnson | 0 | 894,753,078 | 100% | ||
whiteboard | 0 | 1,166,326,059 | 100% | ||
sayedmachfudz | 0 | 1,175,840,165 | 100% | ||
ricardovieira | 0 | 104,462,817 | 100% | ||
frost04 | 0 | 27,093,277,584 | 100% | ||
loslagardi | 0 | 1,076,527,490 | 100% | ||
shareme | 0 | 1,096,858,886 | 100% | ||
nalang | 0 | 1,139,591,843 | 100% | ||
uzair12 | 0 | 1,137,483,103 | 100% | ||
horsepower | 0 | 5,242,259,022 | 100% | ||
solas | 0 | 1,261,046,380 | 100% | ||
steemvotes | 0 | 78,119,828 | 100% | ||
irfansardar | 0 | 1,155,928,740 | 100% | ||
imrantaj | 0 | 997,533,642 | 100% | ||
steeleminer | 0 | 862,020,644 | 100% | ||
skjones57 | 0 | 116,069,607 | 10% | ||
emmyato | 0 | 1,160,695,549 | 100% | ||
sbrys | 0 | 1,209,042,252 | 100% | ||
outlier | 0 | 1,143,285,023 | 100% | ||
bentleycapital | 0 | 1,562,562,030 | 100% | ||
wintermute | 0 | 1,085,249,944 | 100% | ||
fahrullah | 0 | 61,787,277 | 100% | ||
jvdotsls | 0 | 917,495,238 | 100% | ||
joseburgos | 0 | 841,502,497 | 100% | ||
spiritualartist | 0 | 1,269,094,888 | 100% | ||
kult300 | 0 | 1,172,767,143 | 100% | ||
prashant | 0 | 515,073,687 | 100% | ||
midgeteg | 0 | 0 | 0% | ||
glory65 | 0 | 974,982,128 | 100% | ||
witus777 | 0 | 730,190,188 | 100% | ||
kizzonia | 0 | 1,160,692,964 | 100% | ||
grimmjoww578 | 0 | 1,120,268,231 | 100% | ||
leobliss | 0 | 404,777,743 | 100% | ||
maruharraca | 0 | 815,004,770 | 100% | ||
bboybz | 0 | 5,959,114,516 | 100% | ||
joedirt | 0 | 559,344,207 | 100% | ||
tinawangboston | 0 | 855,181,514 | 100% | ||
observer2002 | 0 | 1,160,816,689 | 100% | ||
krytonika | 0 | 228,633,499 | 100% | ||
haywizzy | 0 | 1,160,692,579 | 100% | ||
crypto-ta | 0 | 1,231,966,430 | 100% | ||
i0x | 0 | 721,142,195 | 100% | ||
chasdabigone | 0 | 1,137,477,769 | 100% | ||
timlechner | 0 | 1,157,595,005 | 100% | ||
masterbroker | 0 | 1,160,691,252 | 100% | ||
jekisatria | 0 | 1,019,786,537 | 100% | ||
wilbor8 | 0 | 809,183,860 | 100% | ||
nahidshirazi | 0 | 969,176,856 | 100% | ||
gpic | 0 | 1,022,315,535 | 100% | ||
outhori5ed | 0 | 721,613,409 | 100% | ||
marwa | 0 | 1,141,490,150 | 100% | ||
cameliad | 0 | 638,493,700 | 100% | ||
mountrock | 0 | 323,342,891 | 100% | ||
naqeebnajub | 0 | 974,979,589 | 100% | ||
frag | 0 | 751,405,300 | 100% | ||
papercutbut | 0 | 1,085,245,069 | 100% | ||
branimirbence | 0 | 1,120,065,764 | 100% | ||
colmanlamkh | 0 | 876,886,903 | 100% | ||
iamtama | 0 | 1,160,731,085 | 100% | ||
tsteem | 0 | 899,534,380 | 100% | ||
qadrisafriza | 0 | 296,334,415 | 100% | ||
jealson | 0 | 941,047,593 | 100% | ||
nileshdudhane | 0 | 783,632,826 | 100% | ||
mohamandanif | 0 | 528,113,517 | 100% | ||
yellowkersie | 0 | 909,944,236 | 100% | ||
bangmul | 0 | 836,278,292 | 100% | ||
etoraken | 0 | 1,143,277,636 | 100% | ||
masbro | 0 | 1,120,063,777 | 100% | ||
jadusab | 0 | 52,230,943 | 100% | ||
jbencomo | 0 | 1,085,242,749 | 100% | ||
bostonkreme | 0 | 1,160,686,941 | 100% | ||
flygoing | 0 | 1,160,686,453 | 100% | ||
jaialai32 | 0 | 1,160,686,387 | 100% | ||
atmauphillips | 0 | 116,068,618 | 10% | ||
sinon | 0 | 1,009,796,574 | 100% | ||
ahsansaeed | 0 | 161,717,739 | 50% | ||
shilai | 0 | 1,050,420,273 | 100% | ||
smartell | 0 | 1,160,685,301 | 100% | ||
tomasg | 0 | 261,154,122 | 100% | ||
martdesing | 0 | 1,099,778,287 | 100% | ||
atz | 0 | 697,068,593 | 60.74% | ||
inversio | 0 | 998,189,027 | 100% | ||
doncute | 0 | 0 | 0% | ||
sweetcharity705 | 0 | 528,149,264 | 100% | ||
hrvojek | 0 | 1,137,471,098 | 100% | ||
ezeikpe33 | 0 | 690,607,433 | 100% | ||
damyt | 0 | 452,666,930 | 100% | ||
summaiyyah | 0 | 1,079,434,415 | 100% | ||
lazytrades | 0 | 972,623,103 | 100% | ||
tektao.tips | 0 | 319,187,281 | 100% | ||
deepakd | 0 | 1,143,270,050 | 100% | ||
jaey-designs | 0 | 1,160,680,219 | 100% | ||
r0bbntheh00d | 0 | 957,629,411 | 100% | ||
teukuarmia | 0 | 458,468,673 | 100% | ||
kingolop | 0 | 1,137,466,580 | 100% | ||
riefky | 0 | 1,143,269,979 | 100% | ||
vladabejta | 0 | 342,400,650 | 100% | ||
merigosofficial | 0 | 1,137,466,539 | 100% | ||
thecryptogirl | 0 | 1,038,808,726 | 100% | ||
finessecapital | 0 | 969,167,890 | 100% | ||
zeynalov29 | 0 | 179,905,409 | 100% | ||
lavant | 0 | 690,604,630 | 100% | ||
sharavovasweet | 0 | 771,852,220 | 100% | ||
bedanand | 0 | 1,143,269,827 | 100% | ||
jaywon | 0 | 754,442,008 | 100% | ||
yobelprez27 | 0 | 1,056,218,810 | 100% | ||
arief2207 | 0 | 1,160,679,991 | 100% | ||
puppylove5731 | 0 | 1,137,466,388 | 100% | ||
dssb | 0 | 1,073,628,988 | 100% | ||
virtualcopyright | 0 | 1,160,679,969 | 100% | ||
jayendjr | 0 | 1,009,791,527 | 100% | ||
carolinanivelo | 0 | 1,160,679,901 | 100% | ||
marzensteem | 0 | 52,230,593 | 34.86% | ||
geovanny118 | 0 | 1,038,808,457 | 100% | ||
thegeneral-x97 | 0 | 1,160,679,778 | 100% | ||
jetmirm | 0 | 690,604,465 | 100% | ||
byteguru | 0 | 0 | 0% | ||
taintedblood | 0 | 156,691,768 | 100% | ||
the-oven | 0 | 1,015,594,796 | 100% | ||
badsha | 0 | 951,757,406 | 100% | ||
cskates | 0 | 731,228,249 | 100% | ||
desertgreening | 0 | 0 | 0% | ||
ugetfunded | 0 | 795,065,629 | 100% | ||
theking007 | 0 | 516,502,488 | 100% | ||
jakemore | 0 | 110,264,574 | 100% | ||
javier0802 | 0 | 1,096,842,325 | 100% | ||
taushifrrrr | 0 | 1,160,679,701 | 100% | ||
my60gb | 0 | 1,160,679,666 | 100% | ||
heyller12 | 0 | 1,033,004,893 | 100% | ||
andrem | 0 | 1,096,842,268 | 100% | ||
geneeverett | 0 | 824,082,546 | 100% | ||
evanslaterel | 0 | 922,740,283 | 100% | ||
nitinshelke | 0 | 0 | 100% | ||
manzoorahmad | 0 | 0 | 0% | ||
mahfuz | 0 | 934,347,026 | 100% | ||
sarabhai | 0 | 295,973,276 | 100% | ||
myintmyataung | 0 | 441,058,215 | 100% | ||
h8rry | 0 | 1,160,679,505 | 100% | ||
eagle84 | 0 | 435,254,792 | 100% | ||
adanjr | 0 | 792,472,749 | 100% | ||
born2win | 0 | 81,247,560 | 100% | ||
sureshgajera | 0 | 690,604,243 | 100% | ||
krishna08 | 0 | 400,434,389 | 100% | ||
icbalarifin | 0 | 969,167,288 | 100% | ||
jamiuolanrewaju | 0 | 1,085,235,192 | 100% | ||
whitethunder | 0 | 1,159,134,061 | 100% | ||
snowy1nl | 0 | 1,149,072,524 | 100% | ||
rathin | 0 | 510,698,897 | 100% | ||
sameerkumar | 0 | 667,390,569 | 100% | ||
rexbas | 0 | 568,732,832 | 100% | ||
neerajadd | 0 | 1,096,841,867 | 100% | ||
lildiss | 0 | 1,137,465,614 | 100% | ||
danish.siddiqui | 0 | 1,160,679,195 | 100% | ||
saqibshayan37 | 0 | 0 | 0% | ||
saveron23 | 0 | 800,868,630 | 100% | ||
kaustubh | 0 | 1,160,679,128 | 100% | ||
hkjn | 0 | 5,196,385,926 | 100% | ||
rytocrypto | 0 | 1,160,679,086 | 100% | ||
amaru | 0 | 1,073,628,151 | 100% | ||
shah1236 | 0 | 1,021,397,573 | 100% | ||
theofilos13 | 0 | 586,268,224 | 100% | ||
aaronaugustine | 0 | 1,154,875,646 | 100% | ||
mufty233 | 0 | 510,698,735 | 100% | ||
pollyfoxy21 | 0 | 1,050,414,437 | 100% | ||
munzil | 0 | 957,560,116 | 88% | ||
wildmagic | 0 | 220,528,996 | 100% | ||
maulanaramadhany | 0 | 1,067,824,581 | 100% | ||
elissa-eh | 0 | 0 | 0% | ||
philloverton | 0 | 1,160,678,878 | 100% | ||
mauidw | 0 | 1,160,678,831 | 100% | ||
elegente | 0 | 1,062,021,089 | 100% | ||
talgat01 | 0 | 1,137,465,187 | 100% | ||
nuggenator | 0 | 1,120,054,980 | 100% | ||
sirdre | 0 | 1,160,678,733 | 100% | ||
justtryit | 0 | 1,120,054,927 | 100% | ||
flybendor | 0 | 974,970,085 | 100% | ||
mitko.kalenderov | 0 | 1,160,678,649 | 100% | ||
jrcar | 0 | 1,160,678,521 | 100% | ||
carlostt28 | 0 | 0 | 0% | ||
groximus | 0 | 1,143,268,286 | 100% | ||
daiiat | 0 | 969,166,503 | 100% | ||
kreezel | 0 | 1,160,678,418 | 100% | ||
grishelgut | 0 | 591,945,985 | 100% | ||
kerp | 0 | 916,935,926 | 100% | ||
anmlo | 0 | 1,160,678,351 | 100% | ||
kimsunho | 0 | 661,586,645 | 100% | ||
mukhsin | 0 | 1,102,644,401 | 100% | ||
diadl6270 | 0 | 1,255,729,395 | 100% | ||
debauchery | 0 | 1,160,678,174 | 100% | ||
shahmaqsood | 0 | 986,576,447 | 100% | ||
silver987 | 0 | 1,160,678,106 | 100% | ||
ajaysteemit01 | 0 | 876,311,967 | 100% | ||
jaysmile | 0 | 1,160,678,091 | 100% | ||
jefkedeeend | 0 | 969,166,142 | 100% | ||
andrewlabudzki | 0 | 916,935,625 | 100% | ||
coingamer | 0 | 1,160,677,969 | 100% | ||
santertainment | 0 | 626,766,089 | 100% | ||
holadeivi | 0 | 1,073,627,055 | 100% | ||
satiam725 | 0 | 609,355,893 | 100% | ||
daexx | 0 | 1,160,677,800 | 100% | ||
cryptoindex | 0 | 1,160,677,765 | 100% | ||
elliotf1 | 0 | 1,108,447,214 | 100% | ||
adrianborgo | 0 | 725,423,526 | 100% | ||
srrm | 0 | 1,137,463,972 | 100% | ||
bolivarariasp | 0 | 1,137,463,890 | 100% | ||
tonystark47 | 0 | 1,137,463,298 | 100% | ||
mantishands | 0 | 1,085,232,835 | 100% | ||
dragoonkite | 0 | 1,160,676,735 | 100% | ||
alejandropm | 0 | 1,079,429,306 | 100% | ||
eggsome | 0 | 1,096,839,421 | 100% | ||
saifshourov2380 | 0 | 1,160,676,448 | 100% | ||
ibokamil | 0 | 1,009,788,143 | 100% | ||
afdaljee | 0 | 748,635,981 | 100% | ||
hajilalo | 0 | 969,164,286 | 100% | ||
callmelann | 0 | 1,160,675,788 | 100% | ||
academix87 | 0 | 1,073,625,104 | 100% | ||
alligatooo | 0 | 226,331,772 | 100% | ||
growlifeculture | 0 | 969,164,239 | 100% | ||
kaligroup | 0 | 661,585,138 | 100% | ||
sohaghossain | 0 | 969,164,193 | 100% | ||
mdkamruzzaman | 0 | 1,009,787,825 | 100% | ||
rajib1234 | 0 | 1,050,411,461 | 100% | ||
wildhamlet | 0 | 1,003,984,416 | 100% | ||
pradipkumarjana | 0 | 1,056,213,544 | 100% | ||
morebeans | 0 | 696,403,997 | 100% | ||
rizkirz | 0 | 0 | 100% | ||
hayat | 0 | 0 | 100% | ||
aza.rnglab | 0 | 0 | 100% | ||
globalgrandma | 0 | 0 | 100% | ||
cryptowatchdogs | 0 | 0 | 100% | ||
jungch98 | 0 | 0 | 100% | ||
novacryptoltd | 0 | 0 | 100% | ||
tmhoang | 0 | 0 | 100% | ||
thelostkey | 0 | 0 | 100% | ||
eos.arabia | 0 | 0 | 100% |
Its TRUE.....
author | aaronaugustine |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t020546612z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 02:05:51 |
last_update | 2017-07-10 02:05:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 02:05:51 |
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 | 13 |
author_reputation | 27,297,453,080 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,934,966 |
net_rshares | 0 |
If `requireAuth( transfer.from );` is defined in currency contract, how will an exchange contract modify it to be able to process withdrawals?
author | abit |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170716t085608827z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-16 08:56:06 |
last_update | 2017-07-16 08:56:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-23 08:56:06 |
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 | 142 |
author_reputation | 141,171,499,037,785 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,650,901 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
haji | 0 | 0 | 100% |
What happens if sam is evil and implements a `sam::apply_currency_transfer(data)` that never returns?
author | almost-digital |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t191302338z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:13:03 |
last_update | 2017-07-09 19:13:03 |
depth | 1 |
children | 7 |
last_payout | 2017-07-16 19:13:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.225 HBD |
curator_payout_value | 0.402 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 12,829,718,661,429 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,901,565 |
net_rshares | 419,004,181,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
transisto | 0 | 409,244,025,613 | 2.17% | ||
steemit1919 | 0 | 709,325,427 | 100% | ||
steeleminer | 0 | 844,428,386 | 100% | ||
bboybz | 0 | 5,612,287,746 | 100% | ||
jamiuolanrewaju | 0 | 1,027,201,224 | 100% | ||
theofilos13 | 0 | 887,919,478 | 100% | ||
morebeans | 0 | 678,993,898 | 100% |
An transaction that cannot execute in a couple of milliseconds is abandoned and never included in a block.
author | dan |
---|---|
permlink | re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t203201447z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 20:32:00 |
last_update | 2017-07-09 20:32:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-16 20:32:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,909,383 |
net_rshares | 2,992,790,484 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,188,543,828 | 1% | ||
aleph | 0 | 1,670,768,483 | 100% | ||
taintedblood | 0 | 133,478,173 | 100% |
That depends on how much EOS sam buys. If he bought the entire supply of EOS, he could freeze the network until all the witnesses abandoned him. The previous holders of EOS could all thank him for the massive piles of cash he gave them, and then fork the network with sam excluded. If he only has a small stake in EOS, his code should execute briefly (proportional to his stake) on the witness nodes and then be abandoned with minimal inconvenience to anyone.
author | troglodactyl |
---|---|
permlink | re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t192759179z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:28:00 |
last_update | 2017-07-09 19:29:51 |
depth | 2 |
children | 5 |
last_payout | 2017-07-16 19:28:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 462 |
author_reputation | 5,089,817,438,884 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,903,060 |
net_rshares | 4,003,940,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonuzi | 0 | 2,866,468,216 | 100% | ||
eikr | 0 | 0 | 100% | ||
flygoing | 0 | 1,137,472,724 | 100% |
I was thinking more along the lines of that he could block any transfers involving him, but I reread that part and it seems the sender could just exclude him from the `recipients` list and still have the transfer go through?
author | almost-digital |
---|---|
permlink | re-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t195153392z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:51:54 |
last_update | 2017-07-09 19:51:54 |
depth | 3 |
children | 2 |
last_payout | 2017-07-16 19:51:54 |
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 | 224 |
author_reputation | 12,829,718,661,429 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,905,574 |
net_rshares | 0 |
Very nice answer !
author | eikr |
---|---|
permlink | re-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20171028t212606575z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-28 21:26:06 |
last_update | 2017-10-28 21:26:06 |
depth | 3 |
children | 0 |
last_payout | 2017-11-04 21:26:06 |
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 | 184,848,194 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,819,293 |
net_rshares | 0 |
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFVRDSU9IYoBFbGZ2NbhYUVCG807y3WUBKMpIO4DFm5mm79cz3
author | jonuzi |
---|---|
permlink | re-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170710t190448760z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFVRDSU9IYoBFbGZ2NbhYUVCG807y3WUBKMpIO4DFm5mm79cz3"],"app":"steemit/0.1"} |
created | 2017-07-10 19:04:51 |
last_update | 2017-07-10 19:04:51 |
depth | 3 |
children | 0 |
last_payout | 2017-07-17 19:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.027 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | -125,243,823,771 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,020,348 |
net_rshares | 8,137,934,123 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blend | 0 | 1,884,738,891 | 100% | ||
miki1 | 0 | 3,445,829,453 | 100% | ||
jonuzi | 0 | 2,807,365,779 | 100% |
Fantastic
author | anandpoddar27 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t14176736z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 08:47:09 | ||||||
last_update | 2017-07-10 08:47:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 08:47:09 | ||||||
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 | 59,937,536 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,963,606 | ||||||
net_rshares | 0 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anandpoddar27 | 0 | 0 | 100% |
Wow, thanks for this post. How can i start to develop in Eos?
author | anett-and-robby | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017723t19167746z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-23 17:16:12 | ||||||
last_update | 2017-07-23 17:16:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-30 17:16: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 | 61 | ||||||
author_reputation | 1,679,248,503,198 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 9,438,836 | ||||||
net_rshares | 0 |
Really a great work i have seen so far. Thank u for the post.
author | annaaa | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017711t02541763z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 19:25:51 | ||||||
last_update | 2017-07-10 19:25:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 19:25:51 | ||||||
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 | 61 | ||||||
author_reputation | 668,978,028,941 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 8,022,316 | ||||||
net_rshares | 0 |
So what is the exact date of the EOS Blockchain Public Beta? Anyone know?
author | apple64 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170712t064127761z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-12 06:41:18 |
last_update | 2017-07-12 06:41:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-19 06:41:18 |
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 | 73 |
author_reputation | -134,873,855,056 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,196,789 |
net_rshares | 0 |
Congratulations @dan! Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170709) in the following category: * Pending payout - Ranked 1 with $ 1259,69
author | arcange |
---|---|
permlink | re-eos-developer-s-log-stardate-201707-9-20170709t163615000z |
category | eos |
json_metadata | "" |
created | 2017-07-10 14:35:18 |
last_update | 2017-07-10 14:35:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 14:35:18 |
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 | 203 |
author_reputation | 1,148,264,652,823,817 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,992,608 |
net_rshares | 0 |
Good post
author | baidarusramli | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017712t102726160z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-12 03:27:48 | ||||||
last_update | 2017-07-12 03:27:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-19 03:27: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 | 9 | ||||||
author_reputation | 41,435,744,382 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 8,183,256 | ||||||
net_rshares | 0 |
Amazing work Dan! I know a lot of people say the technology is unproven but with you at the helm you provide the confidence we need in the success of EOS. The project is exciting and many of us are willing to see this project through. Keep up the great work!
author | banglasteve |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t223837466z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 22:38:39 |
last_update | 2017-07-09 22:38:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 22:38: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 | 258 |
author_reputation | 199,151,483,882 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,920,000 |
net_rshares | 1,267,986,450 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
earthalliance | 0 | 1,051,077,746 | 100% | ||
krytonika | 0 | 216,908,704 | 100% |
Dan you are great. I feel I haz the dumbz every time I read one of your posts LOL. Have a good week my man. Ironically I wrote a post today again about Poloniex and their nonsense, I think it is my best one yet with balance and fun and facts.... I honestly thought about you the whole time I was writing that post, which took me about 2 hrs.
author | barrydutton |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t193518306z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:35:15 |
last_update | 2017-07-09 19:35:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:35:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.993 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 348 |
author_reputation | 333,942,309,404,197 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,903,850 |
net_rshares | 256,502,624,773 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
barrydutton | 0 | 253,056,172,047 | 48% | ||
ferybagy | 0 | 1,455,888,317 | 100% | ||
theofilos13 | 0 | 870,509,292 | 100% | ||
philloverton | 0 | 1,120,055,117 | 100% |
This is a very good article! Still surprise what decent byte size Steem has!
author | beekeyyy | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t05432281z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 04:54:36 | ||||||
last_update | 2017-07-10 04:54:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 04:54:36 | ||||||
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 | 76 | ||||||
author_reputation | 1,379,838,600,065 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,947,210 | ||||||
net_rshares | 0 |
La verdad a mi parecer, ayudo de mucho, porque no soy el ΓΊnico que busca este tipo de cosas.
author | bolivarariasp |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t230734278z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 23:01:27 |
last_update | 2017-07-10 23:01:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 23:01:27 |
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 | 92 |
author_reputation | 0 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,041,184 |
net_rshares | 0 |
Congratulations! You have been chosen to appear on "[Who to Follow Daily](https://steemit.com/wtf/@cem/who-to-follow-wtf-daily-goals)". Thank you for adding such value to the Steemit community. Steem on! <center>https://steemitimages.com/0x0/https://steemitimages.com/DQmQbfquy5pNwKSEV6NPejNR7ZbUsRLXrdsW89sjkMiLuGS/wtf.jpg</center>
author | cem |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t200115997z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmQbfquy5pNwKSEV6NPejNR7ZbUsRLXrdsW89sjkMiLuGS/wtf.jpg"],"links":["https://steemit.com/wtf/@cem/who-to-follow-wtf-daily-goals"],"app":"steemit/0.1"} |
created | 2017-07-10 20:01:18 |
last_update | 2017-07-10 20:01:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 20:01:18 |
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 | 333 |
author_reputation | 3,199,586,095,687 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,025,838 |
net_rshares | 0 |
I made the right choice investing on EOS,this is what brought me on Steem.
author | cocokoala | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t304807z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-09 19:05:09 | ||||||
last_update | 2017-07-09 19:05:09 | ||||||
depth | 1 | ||||||
children | 4 | ||||||
last_payout | 2017-07-16 19:05:09 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.970 HBD | ||||||
curator_payout_value | 0.233 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 74 | ||||||
author_reputation | 23,289,697,464 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,900,767 | ||||||
net_rshares | 321,934,599,067 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,188,168,309 | 1% | ||
akasurreal | 0 | 294,532,334,372 | 100% | ||
kryptokayden | 0 | 23,814,344,979 | 100% | ||
earthalliance | 0 | 1,120,762,458 | 100% | ||
krytonika | 0 | 222,771,102 | 100% | ||
cocokoala | 0 | 1,056,217,847 | 100% |
Which do you believe in more?
author | avilsd |
---|---|
permlink | re-cocokoala-re-dan-2017710t304807z-20170711t221155905z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 22:11:57 |
last_update | 2017-07-11 22:11:57 |
depth | 2 |
children | 3 |
last_payout | 2017-07-18 22:11:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.092 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 20,163,046,179,161 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,160,744 |
net_rshares | 30,535,968,507 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
avilsd | 0 | 30,535,968,507 | 100% |
I have faith in EOS and I have just discovered Steemit so it's really hard to decide at this point. But steemit is freaking awesome!
author | cocokoala |
---|---|
permlink | re-avilsd-re-cocokoala-re-dan-2017710t304807z-20170713t090629433z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-13 09:06:39 |
last_update | 2017-07-13 09:06:39 |
depth | 3 |
children | 2 |
last_payout | 2017-07-20 09:06: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 | 132 |
author_reputation | 23,289,697,464 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,319,984 |
net_rshares | 0 |
great work
author | creativephoto |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t230030064z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 23:00:30 |
last_update | 2017-07-09 23:00:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 23:00:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.027 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 5,256,635,233,634 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,921,664 |
net_rshares | 7,308,186,168 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
creativephoto | 0 | 7,308,186,168 | 100% |
Way to go @Dan. We wil be cheering you!
author | cryptoman01 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t083452212z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-10 08:34:54 |
last_update | 2017-07-10 08:34:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 08:34:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.121 HBD |
curator_payout_value | 0.038 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 3,776,351,483,665 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,962,816 |
net_rshares | 43,939,482,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
frost04 | 0 | 30,587,258,046 | 100% | ||
cryptoman01 | 0 | 9,038,735,112 | 100% | ||
ladydiana | 0 | 4,313,489,800 | 100% |
Should we expect to see another social media like steemit built on the EOS platform in the near future?
author | cryptonfused |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t232552415z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 23:26:00 |
last_update | 2017-07-11 23:26:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 23:26:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 253,937,837,335 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,166,412 |
net_rshares | 0 |
Thanks for share @dan , although I do not really understand, because I am still a new user in this steemit.
author | dinasapitri |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t195430422z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-09 19:54:39 |
last_update | 2017-07-09 19:54:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:54: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 | 107 |
author_reputation | 1,907,131,509,076 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,905,851 |
net_rshares | 0 |
Thanks for the positive post. Retweet.
author | dobro88888888 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t185321783z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:53:24 |
last_update | 2017-07-09 18:53:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 18:53: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 | 38 |
author_reputation | 418,242,269,128 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,585 |
net_rshares | 0 |
Nice one thanks
author | doncute | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t9429705z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 08:04:33 | ||||||
last_update | 2017-07-10 08:04:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 08:04: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 | 15 | ||||||
author_reputation | 46,173,848,282 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,960,820 | ||||||
net_rshares | 1,050,419,842 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
doncute | 0 | 1,050,419,842 | 100% |
Thank you @dan, it was a very clear explanation. You made me think about getting in, altough it was not in my roadmap!
author | dssb |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t220643729z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-09 22:06:57 |
last_update | 2017-07-09 22:06:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 22:06:57 |
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 | 118 |
author_reputation | 290,011,252,844 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,917,519 |
net_rshares | 0 |
Why thank you kindly Mr. @dan. I admire your knowledge and work.
author | elegente |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t184913502z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-09 18:49:12 |
last_update | 2017-07-09 18:49:12 |
depth | 1 |
children | 8 |
last_payout | 2017-07-16 18:49: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 | 65 |
author_reputation | -273,943,619,793 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,202 |
net_rshares | -52,095,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 0 | 0% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Why I am shocked...I have been downvoted to this. I'm quite offended. I ask for your reasoning behind this please.
author | elegente |
---|---|
permlink | re-elegente-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185440028z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:54:39 |
last_update | 2017-07-09 18:54:39 |
depth | 2 |
children | 7 |
last_payout | 2017-07-16 18:54:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.424 HBD |
curator_payout_value | 0.141 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | -273,943,619,793 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,722 |
net_rshares | 145,505,962,938 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 145,505,962,938 | 100% |
After examining your other comments it appears your comments are generic and likely generated by a bot. If I made a mistake I apologize. I am just trying to do my best to combat the flood of spam bots.
author | dan |
---|---|
permlink | re-elegente-re-elegente-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185630720z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:56:30 |
last_update | 2017-07-09 18:56:30 |
depth | 3 |
children | 6 |
last_payout | 2017-07-16 18:56:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 202 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,911 |
net_rshares | 8,762,407,620 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ppitonak | 0 | 8,634,732,846 | 100% | ||
taintedblood | 0 | 127,674,774 | 100% |
Sir, may I ask why my previous reply was flagged? I left a sincere reply regarding this article.
author | elegente |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t185719557z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:57:18 |
last_update | 2017-07-09 18:57:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 18:57:18 |
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 | 97 |
author_reputation | -273,943,619,793 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,991 |
net_rshares | 0 |
Hello Dan. Pleased to meet you. First, thank you for the amazing platform. I check up on your feed from time to time to get the latest news on Steemit. I admit most of it is above my knowledge level, but I like to learn. Since signing up to Steemit in February I've really enjoyed my time here and have learned a lot, not just about Steemit itself but also about crypto-currencies in general. One thing I did not expect though, and surprised me the most about Steemit, was how much I'd learn about myself and the world around me. This in turn has lead to fundamental changes in my life. I won't spam your comments here with it but I recently wrote a post in which I thank the Steemit community and also outline the positive impact it's had on my life. It's a great testament to your creation and I'd be happy to link you to if you'd like a read. Sorry if this is a bit off topic here but I just wanted to take this opportunity to thank you for everything you've given us so far. Thanks again.. @fortified
author | fortified |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t113930900z |
category | eos |
json_metadata | {"tags":["eos"],"users":["fortified"],"app":"steemit/0.1"} |
created | 2017-07-10 11:39:36 |
last_update | 2017-07-10 11:39:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 11:39:36 |
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 | 1,014 |
author_reputation | 38,014,334,194,654 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,976,459 |
net_rshares | 0 |
Parallel Execution seems very intricate. Good luck @dan keep up the good work!
author | frost04 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t083301028z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-10 08:33:03 |
last_update | 2017-07-10 08:33:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 08:33:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.142 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 3,645,772,569,932 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,962,702 |
net_rshares | 40,438,695,846 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
earthalliance | 0 | 1,097,534,221 | 100% | ||
frost04 | 0 | 26,504,293,289 | 100% | ||
cryptoman01 | 0 | 8,760,620,475 | 100% | ||
ladydiana | 0 | 4,076,247,861 | 100% |
Good information. keep them coming.
author | groximus |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t035915867z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 03:59:12 |
last_update | 2017-07-11 03:59:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 03:59: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 | 35 |
author_reputation | 30,638,843,559 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,062,933 |
net_rshares | 0 |
Good post thanks for sharing
author | hamzaoui |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t192057615z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:21:00 |
last_update | 2017-07-09 19:21:00 |
depth | 1 |
children | 1 |
last_payout | 2017-07-16 19:21:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.203 HBD |
curator_payout_value | 0.067 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 2,667,249,998,202 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,902,382 |
net_rshares | 70,180,150,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
booster | 0 | 70,180,150,849 | 0.13% |
<p>This comment has received a 0.14 % upvote from @booster thanks to: @hamzaoui.</p>
author | booster |
---|---|
permlink | re-hamzaoui-re-dan-eos-developer-s-log-stardate-201707-9-20170709t192057615z-20170713t131208353z |
category | eos |
json_metadata | {"tags":["eos-developer-s-log-stardate-201707-9"],"app":"drotto/0.0.1"} |
created | 2017-07-13 13:12:24 |
last_update | 2017-07-13 13:12:24 |
depth | 2 |
children | 0 |
last_payout | 2017-07-20 13:12: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 | 85 |
author_reputation | 68,767,115,776,562 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,338,865 |
net_rshares | 0 |
good to know. although it still is technical for me, I think I can try and find my way around
author | i0x |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t183453658z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 18:32:03 |
last_update | 2017-07-11 18:32:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 18:32: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 | 93 |
author_reputation | 39,001,786,104,442 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,140,454 |
net_rshares | 0 |
really nice work, seems like fastest transcriptional option it has.
author | inversio |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t035115328z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 03:51:15 |
last_update | 2017-07-10 03:51:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 03:51:15 |
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 | 67 |
author_reputation | 4,192,028,785 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,942,548 |
net_rshares | 0 |
good!
author | isjw84 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t035210242z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 03:52:12 |
last_update | 2017-07-11 03:52:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 03:52:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 602,433,574,545 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,062,440 |
net_rshares | 12,682,102,993 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
isjw84 | 0 | 12,682,102,993 | 100% |
Thank you for **EOS** dan... πππππ
author | jaey-designs | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t10323150z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 09:32:15 | ||||||
last_update | 2017-07-10 09:32:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 09:32:15 | ||||||
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 | 34 | ||||||
author_reputation | 1,441,125,362 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,966,827 | ||||||
net_rshares | 0 |
This would really help we developers. Thnx
author | jamiuolanrewaju |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t172428126z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 17:24:30 |
last_update | 2017-07-10 17:24:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 17:24:30 |
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 | 42 |
author_reputation | 1,210,726,178 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,010,321 |
net_rshares | 0 |
Thanks for postingοΌ
author | joythewanderer |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t190929344z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 19:09:27 |
last_update | 2017-07-11 19:09:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 19:09:27 |
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 | 19 |
author_reputation | 1,916,082,145,948,706 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,144,379 |
net_rshares | 0 |
i like your post.
author | jrcar |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t232659370z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 23:27:39 |
last_update | 2017-07-09 23:27:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 23:27: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 | 17 |
author_reputation | 100,536,619 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,923,573 |
net_rshares | 0 |
That looks like the basics of making cryptos ......does they apply the ordinary action like paypal or skrill transaction??
author | kamuru | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t2236456z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 19:36:12 | ||||||
last_update | 2017-07-10 19:36:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 19:36: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 | 122 | ||||||
author_reputation | 17,763,397,869 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 8,023,349 | ||||||
net_rshares | 0 |
I only have 1, uno EOS.
author | kevbot |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t184724340z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:47:27 |
last_update | 2017-07-09 18:47:27 |
depth | 1 |
children | 2 |
last_payout | 2017-07-16 18:47:27 |
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 | 23 |
author_reputation | 3,453,478,685,569 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,037 |
net_rshares | -1,722,066,344,921 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,722,014,248,987 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
@dan @blacklist-a shocked to be flagged for this. this is just unfair and unjust. makes me really sad to be a user on the platform and get such negative feedback.
author | kevbot |
---|---|
permlink | re-kevbot-re-dan-eos-developer-s-log-stardate-201707-9-20170709t235826180z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan","blacklist-a"],"app":"steemit/0.1"} |
created | 2017-07-09 23:58:27 |
last_update | 2017-07-10 00:06:42 |
depth | 2 |
children | 1 |
last_payout | 2017-07-16 23:58:27 |
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 | 163 |
author_reputation | 3,453,478,685,569 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,925,655 |
net_rshares | 0 |
why? now you have duo flags added to your uno EOS
author | liondani |
---|---|
permlink | re-kevbot-re-kevbot-re-dan-eos-developer-s-log-stardate-201707-9-20170712t200709158z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-12 20:07:09 |
last_update | 2017-07-12 20:07:09 |
depth | 3 |
children | 0 |
last_payout | 2017-07-19 20:07:09 |
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 | 49 |
author_reputation | 95,095,146,236,111 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,264,069 |
net_rshares | 0 |
hey @dan, i dont know why you downvoted my comment. :O, it made me lose rep, i support your channel ,work and everything you post, but that was a little disappointing to be on the blacklist. I didn't think it was very nice. all i stated was i have 1 eos :O, which is true. Been using steem for a short time period and have been an avid user since. I didn't know what i said was inappropriate. sorry if i offended you in any way ..., i'll continue to support your work even so.
author | kevbot |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t235037451z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1","users":["dan"]} |
created | 2017-07-09 23:50:36 |
last_update | 2017-07-10 01:14:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 23:50:36 |
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 | 477 |
author_reputation | 3,453,478,685,569 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,925,148 |
net_rshares | 0 |
Very very well written and your understanding of EOS makes it much easier to relay all of its components using terms that the rest of the Steemit Community can understand - and make investing decisions more on EOS properties rather than trend graphs that have no rump or dump reasoning
author | krytonika |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t082913830z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 08:29:15 |
last_update | 2017-07-10 08:29:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 08:29:15 |
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 | 285 |
author_reputation | 3,220,032,340,024 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,962,477 |
net_rshares | 0 |
Thank you very much for this good explanation. Very on point. Easy to understand even for me as a new one.
author | kult300 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t215302270z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 21:53:03 |
last_update | 2017-07-11 21:53:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 21:53: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 | 106 |
author_reputation | 1,579,272,192,934 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,159,050 |
net_rshares | 0 |
Thanks for keeping us updated! :) Nice to have someone who cares for quality content! Keep it up
author | lazytrades |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t164356711z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 16:44:03 |
last_update | 2017-07-10 16:44:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 16:44: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 | 96 |
author_reputation | 244,799,552,984 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,006,015 |
net_rshares | 0 |
Awesome work. I really admire your work
author | leobliss |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t224710570z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 22:47:21 |
last_update | 2017-07-09 22:47:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 22:47: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 | 39 |
author_reputation | 527,644,989,697 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,920,717 |
net_rshares | 0 |
Nice developer log :D
author | midgeteg |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t184725749z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:47:21 |
last_update | 2017-07-09 18:47:21 |
depth | 1 |
children | 2 |
last_payout | 2017-07-16 18:47: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 | 21 |
author_reputation | 12,200,224,632,808 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,029 |
net_rshares | 0 |
something tells me you didn't read it in less than 2 minutes.
author | dan |
---|---|
permlink | re-midgeteg-re-dan-eos-developer-s-log-stardate-201707-9-20170709t184915711z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:49:15 |
last_update | 2017-07-09 18:49:15 |
depth | 2 |
children | 1 |
last_payout | 2017-07-16 18:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.639 HBD |
curator_payout_value | 0.835 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,208 |
net_rshares | 890,501,915,445 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ppitonak | 0 | 8,823,814,587 | 100% | ||
bitacer | 0 | 878,893,438,141 | 100% | ||
tomino | 0 | 1,188,543,828 | 1% | ||
adrianscott | 0 | 1,474,247,514 | 100% | ||
taintedblood | 0 | 121,871,375 | 100% |
I skimmed over it, I dont know much about logs
author | midgeteg |
---|---|
permlink | re-dan-re-midgeteg-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185122848z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:51:18 |
last_update | 2017-07-09 18:51:42 |
depth | 3 |
children | 0 |
last_payout | 2017-07-16 18:51:18 |
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 | 47 |
author_reputation | 12,200,224,632,808 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,401 |
net_rshares | 0 |
Hi dan hru bro? See my page and see post if you like it support me plz https://steemit.com/brain/@mohsen/craniotomy
author | mohsen |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t202040510z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/brain/@mohsen/craniotomy"],"app":"steemit/0.1"} |
created | 2017-07-09 20:20:45 |
last_update | 2017-07-09 20:20:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 20:20:45 |
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 | 117 |
author_reputation | 8,272,757,067 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,908,326 |
net_rshares | -1,721,665,518,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,722,014,248,987 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% | ||
glennmcgarry | 0 | 400,826,072 | 100% |
thanx for this post ! but i have really no clue what this is about :) Sorry, SteemON http://i.imgur.com/SBl0MCK.gif
author | moneymaster |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t220417191z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://i.imgur.com/SBl0MCK.gif"],"app":"steemit/0.1"} |
created | 2017-07-09 22:04:18 |
last_update | 2017-07-09 22:05:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 22:04:18 |
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 | 117 |
author_reputation | 197,148,008,589 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,917,269 |
net_rshares | 1,789,980,152 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
carbunco10 | 0 | 629,300,588 | 100% | ||
adx99 | 0 | 1,160,679,564 | 100% |
Hey, good luck on your journey in our fine community! I'll follow your account to see how you doing :). Please follow me @nakedchef89.
author | nakedchef89 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t143904819z |
category | eos |
json_metadata | {"tags":["eos"],"users":["nakedchef89"],"app":"steemit/0.1"} |
created | 2017-07-10 14:39:24 |
last_update | 2017-07-10 14:39:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 14:39: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 | 134 |
author_reputation | 778,084,211,374 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,993,015 |
net_rshares | 0 |
Nice post :D I just bought EOS today waiting for my token :D
author | naphy |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t004321627z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 00:44:30 |
last_update | 2017-07-10 00:44:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 00:44:30 |
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 | 60 |
author_reputation | 187,303,073 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,928,872 |
net_rshares | 0 |
Good
author | neerajadd |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170711t081346068z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-11 08:13:57 |
last_update | 2017-07-11 08:13:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 08:13:57 |
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 | 146,858,026 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,081,089 |
net_rshares | 0 |
This makes so much sense now! Thank you so much!
author | oddreality |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t153354439z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 15:33:54 |
last_update | 2017-07-10 15:33:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 15:33:54 |
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 | 256,299,405,521 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,998,751 |
net_rshares | 0 |
Great post Dan
author | outhori5ed |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t201529729z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 20:15:33 |
last_update | 2017-07-09 20:15:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 20:15: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 | 14 |
author_reputation | 39,356,239,578,011 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,907,807 |
net_rshares | 0 |
Dan, thank you, you brought me in programming world. I am value so much that I was early involved with BitShares, because I was introduced to your talks and writings about what technology can do. It was like some catalyst for me, I started to learn programming, two years latter I left my sales job and became full time web developer. It was great gift, no appreciation of token will compare with acquired ability to earn money with your own brain. In the end, stake in crypto not so important, price could decline for years, but skills is much more tengible. Human mind creating these systems to serve humanity, we should not be slaves to them by depending on price of the token. I hope someday I could contribute code to projects like STEEM, BitShares or even EOS.
author | pal |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t203046380z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 20:30:48 |
last_update | 2017-07-10 20:30:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 20:30:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 12.538 HBD |
curator_payout_value | 1.527 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 766 |
author_reputation | 12,055,554,235,183 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,028,655 |
net_rshares | 3,977,807,983,117 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
liondani | 0 | 957,903,461,135 | 100% | ||
nikolai | 0 | 625,706,669,335 | 100% | ||
pal | 0 | 1,469,754,041,252 | 100% | ||
billbutler | 0 | 913,197,398,724 | 100% | ||
tomino | 0 | 1,188,543,828 | 1% | ||
bhikkhu | 0 | 0 | 100% | ||
cryptonfused | 0 | 679,530,028 | 100% | ||
tajnost | 0 | 0 | 100% | ||
earthalliance | 0 | 1,143,990,696 | 100% | ||
shareme | 0 | 1,160,697,234 | 100% | ||
shuke0327 | 0 | 1,240,655,194 | 100% | ||
bboybz | 0 | 5,832,995,691 | 100% |
I'm not allowed to purchase, because of US-IP? Can you help me understand this please?
author | paradise-found |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170716t033441455z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-16 03:34:45 |
last_update | 2017-07-16 03:34:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-23 03:34:45 |
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 | 81,653,004,863,007 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,632,767 |
net_rshares | 0 |
dont lose the time , check this https://steemit.com/profit/@rayandoelimi/you-wanna-earn-money-check-this
author | rayandoelimi |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t193314654z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/profit/@rayandoelimi/you-wanna-earn-money-check-this"],"app":"steemit/0.1"} |
created | 2017-07-09 19:33:12 |
last_update | 2017-07-09 19:33:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:33: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 | 106 |
author_reputation | -26,332,894,253 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,903,640 |
net_rshares | -1,721,661,162,044 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,722,014,248,987 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% | ||
glennmcgarry | 0 | 405,182,877 | 100% |
I have no doubt that EOS should take centre stage in cryptocurrency discussion in a few years to come for obvious reasons. Unlike bitcoin, EOS is a product of years of experience. @dan has successfully pulled off a number of project that are individually a success. Steem and bitshare are obvious success story of a man' s vission. I can bet that EOS will be a standard for anything crypto in the next 5 years. That said, I want to bring @dan attention to the current EOS Token ICO. Many of us who are not vast in blockchain cannot dare to participate in the sale for obvious reasons. The procedure for participation is so complex for an average investor. I really feel something needs to be done because alot of people have been waiting for this ICO, so so seeing it passing by like this just for not having enough technical knowledge to buy is not good. This should be the people's coin so make it accessible to the people. Thank you.
author | richguy | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t95543285z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 08:56:18 | ||||||
last_update | 2017-07-10 09:00:24 | ||||||
depth | 1 | ||||||
children | 4 | ||||||
last_payout | 2017-07-17 08:56:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.227 HBD | ||||||
curator_payout_value | 0.171 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 945 | ||||||
author_reputation | 3,799,890,794,265 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,964,256 | ||||||
net_rshares | 399,958,406,809 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 101,163,078,613 | 0.1% | ||
bitcoiner | 0 | 3,213,474,113 | 0.1% | ||
mysteem | 0 | 84,101,800 | 1% | ||
tikal | 0 | 149,403,232,883 | 100% | ||
demo | 0 | 161,960,468 | 1% | ||
feruz | 0 | 1,520,016,803 | 1% | ||
esteemapp | 0 | 964,412,183 | 1% | ||
bounties | 0 | 172,459,561 | 1% | ||
steempoll | 0 | 167,409,841 | 1% | ||
tipping | 0 | 152,143,059 | 1% | ||
ienrikex | 0 | 63,762,949 | 0.1% | ||
richguy | 0 | 118,190,387,013 | 100% | ||
thecrazygm | 0 | 260,992,458 | 0.1% | ||
ophelion | 0 | 98,657,963 | 0.1% | ||
yourhelper | 0 | 23,222,254,674 | 100% | ||
flygoing | 0 | 1,120,062,428 | 100% | ||
globalgrandma | 0 | 0 | 100% |
For this exact reason i only buy on exchanges, bought a few days ago at $3, ouch hahaha :-) Thanks for the comment.
author | bitminter |
---|---|
permlink | re-richguy-re-dan-2017710t95543285z-20170710t150556875z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 15:05:57 |
last_update | 2017-07-10 15:05:57 |
depth | 2 |
children | 1 |
last_payout | 2017-07-17 15:05:57 |
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 | 9,160,739,287,278 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,995,931 |
net_rshares | 0 |
Which exchange did you buy from
author | richguy |
---|---|
permlink | re-bitminter-re-richguy-re-dan-2017710t95543285z-20170712t083110876z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-12 08:31:12 |
last_update | 2017-07-12 08:31:12 |
depth | 3 |
children | 0 |
last_payout | 2017-07-19 08:31:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.383 HBD |
curator_payout_value | 0.125 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 3,799,890,794,265 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,203,917 |
net_rshares | 142,451,190,846 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richguy | 0 | 114,716,308,325 | 100% | ||
yourhelper | 0 | 27,734,882,521 | 100% |
EOS is an upgraded like an ugrade to blockchain tech . Lets be clear here: Bitcoin, was built on the ingenious blockchain tech. Bitcoin is what led the way for more innovation and every other variation of the blockchain. To imply that bitcoin is not a product of years of experience is misleading. Ps you can buy tokens after ICO. If EOS delivers in its promises and based on activity and consistent update report from @dan , it is most probable that it will. If it does, the future value of EOS tokens can increase significantly. In that case; purchasing it on exchanges early may prove to be just as profitable in the nxt 3 to 4 years.
author | cryptonfused |
---|---|
permlink | re-richguy-re-dan-2017710t95543285z-20170711t234126731z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-11 23:41:36 |
last_update | 2017-07-11 23:41:36 |
depth | 2 |
children | 0 |
last_payout | 2017-07-18 23:41:36 |
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 | 641 |
author_reputation | 253,937,837,335 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,167,479 |
net_rshares | 0 |
Here is a steemit link on how to participate https://steemit.com/eos/@thimom/how-to-use-myetherwallet-for-the-eos-ico
author | shareme |
---|---|
permlink | re-richguy-re-dan-2017710t95543285z-20170712t001224793z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@thimom/how-to-use-myetherwallet-for-the-eos-ico"],"app":"steemit/0.1"} |
created | 2017-07-12 00:12:27 |
last_update | 2017-07-12 00:12:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-19 00:12:27 |
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 | 117 |
author_reputation | 2,000,226,178 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,169,634 |
net_rshares | 1,143,286,776 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shareme | 0 | 1,143,286,776 | 100% |
Interesting ! opening my eyes!
author | robjc |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t180235713z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 18:02:36 |
last_update | 2017-07-10 18:02:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 18:02:36 |
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 | 30 |
author_reputation | 111,919,402,387 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,014,353 |
net_rshares | 142,854,666 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robjc | 0 | 142,854,666 | 100% |
really good work dan..
author | sam999 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t210112294z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 21:01:12 |
last_update | 2017-07-09 21:01:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 21:01: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 | 22 |
author_reputation | 825,781,129 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,911,925 |
net_rshares | 0 |
I have to read this multiple times to understand this.but overall the scheme looks very similar to OOPS concept. "The alternative to locking at the time data is accessed, is to lock at the time execution is scheduled". How does the scheduler keep track of the lock used inside the program..Does it look for any specific "lock or synchronization object" tags and make sure threads sharing them are not accessing them simultaneously ...May be the threads are of same priority, otherwise wouldnt this cause deadlocks?
author | sanees |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t143003428z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 14:30:03 |
last_update | 2017-07-10 14:30:03 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 14:30: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 | 515 |
author_reputation | 2,019,131,877,450 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,992,035 |
net_rshares | 0 |
I realize lot of information is available in github.Will read up the documents and provide any comments and concerns we have.My team started out with Ethereum.But scalability and parallelism offered by EOS is very intriguing. For now exploring both
author | sanees |
---|---|
permlink | re-sanees-re-dan-eos-developer-s-log-stardate-201707-9-20170710t144729665z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 14:47:30 |
last_update | 2017-07-10 14:47:30 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 14:47:30 |
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 | 248 |
author_reputation | 2,019,131,877,450 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,993,983 |
net_rshares | 0 |
Fantastic Dan the Man!!
author | savymenke |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t213635024z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 21:36:36 |
last_update | 2017-07-10 21:36:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 21:36:36 |
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 | 23 |
author_reputation | 49,871,005,929 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,034,626 |
net_rshares | 0 |
Really a great work
author | shahmaqsood |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t070104736z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 07:01:09 |
last_update | 2017-07-10 07:01:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 07:01:09 |
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 | 19 |
author_reputation | 7,593,476,043 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,956,343 |
net_rshares | 0 |
I admire this model. Very innovative.
author | sirdre |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t190858126z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:09:00 |
last_update | 2017-07-09 19:09:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:09:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 531,967,805 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,901,173 |
net_rshares | 0 |
I am Dutch, but most of this is double dutch to me. I think it's great that you are updating the community on a very regular basis. Keep up the good work, i am following the project with much interest.
author | snowy1nl |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t200433272z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 20:04:33 |
last_update | 2017-07-09 20:04:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 20:04: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 | 201 |
author_reputation | 64,493,522,241 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,906,751 |
net_rshares | 1,188,543,828 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,188,543,828 | 1% |
You like soccer? Do you like to watch soccer on tv? Do you have football fans? Do not miss the most updated football news every day just @soccer.news, do not forget to follow @soccer.news for the latest and updated soccer news https://steemit.com/@soccer.news
author | soccer.news | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017713t34756394z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-12 20:48:03 | ||||||
last_update | 2017-07-12 20:48:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-19 20:48: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 | 261 | ||||||
author_reputation | -704,944,498,022 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 8,267,854 | ||||||
net_rshares | -47,363,140,374,267 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -47,363,088,278,333 | -28% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Ouch you lost 1200 dollars!! Steemit you need improve their system.
author | spicydavid2500 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t031726327z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 03:17:24 |
last_update | 2017-07-10 03:17:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 03:17: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 | 68 |
author_reputation | 10,013,398,604 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,939,984 |
net_rshares | 0 |
Congratulations @dan! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@dan) Your post got the highest payout on one day Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dan-20170711t012327000z |
category | eos |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-11 01:23:27 |
last_update | 2017-07-11 01:23:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 01:23:27 |
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 | 695 |
author_reputation | 38,975,615,169,260 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,051,576 |
net_rshares | 0 |
Nice breakdown! Keep steeming!
author | td4me80 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t194204393z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:42:03 |
last_update | 2017-07-09 19:42:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:42: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 | 30 |
author_reputation | 144,781,602,494 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,904,558 |
net_rshares | 0 |
Please votes me. Because my steem power is low that's why i couldn't poat on steemit. Please votes me follow me. Please......
author | theking007 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t153208661z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 15:32:18 |
last_update | 2017-07-10 15:32:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 15:32:18 |
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 | 126 |
author_reputation | -110,782,265,319 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,998,621 |
net_rshares | -1,722,346,215,146 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,722,294,119,212 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Please votes me. Because my steem power is low that's why i couldn't poat on steemit. Please votes me follow me. Please......
author | theking007 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t153305898z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 15:33:21 |
last_update | 2017-07-10 15:33:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 15:33: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 | 126 |
author_reputation | -110,782,265,319 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,998,715 |
net_rshares | -1,722,346,215,146 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,722,294,119,212 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
It's really hard to understand what Dan has brought in the community and how much improvement will come in the next months because of him. Thank you for the EOS, Dan!
author | theofilos13 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t205518072z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 20:55:21 |
last_update | 2017-07-09 20:55:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 20:55: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 | 167 |
author_reputation | 10,190,612,711 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,911,441 |
net_rshares | 4,258,857,687 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,188,168,309 | 1% | ||
earthalliance | 0 | 1,074,305,983 | 100% | ||
enforcer2k | 0 | 1,143,284,289 | 100% | ||
theofilos13 | 0 | 853,099,106 | 100% |
Great post DanππΌ, definitely a bright future for Eos in my opinion.
author | timcrypto |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t185050469z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:50:51 |
last_update | 2017-07-09 18:50:51 |
depth | 1 |
children | 1 |
last_payout | 2017-07-16 18:50:51 |
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 | 67 |
author_reputation | 68,635,880,449 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,347 |
net_rshares | 0 |
It's an absolutely brilliant post.
author | elegente |
---|---|
permlink | re-timcrypto-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185226074z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 18:52:24 |
last_update | 2017-07-09 18:52:24 |
depth | 2 |
children | 0 |
last_payout | 2017-07-16 18:52: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 | 34 |
author_reputation | -273,943,619,793 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,899,502 |
net_rshares | 1,120,072,831 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shareme | 0 | 1,120,072,831 | 100% |
Hello @dan... im beginner in steemit and I still do not know about digital currency. And some time I see your post on my homepage about eos, what is eos? thank you!
author | tsteem | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-2017710t215951326z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-10 14:59:54 | ||||||
last_update | 2017-07-10 14:59:54 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-17 14:59:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.018 HBD | ||||||
curator_payout_value | 0.005 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 164 | ||||||
author_reputation | 70,082,700,195 | ||||||
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,995,258 | ||||||
net_rshares | 7,463,505,063 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pigeons | 0 | 7,463,505,063 | 100% |
Really a great work i have seen so far.keep continue ur gd work
author | tushar2017 |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t191603284z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 19:18:33 |
last_update | 2017-07-09 19:18:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 19:18:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.107 HBD |
curator_payout_value | 1.649 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 34,782,979,669 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,902,124 |
net_rshares | 1,737,417,229,353 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 1,722,014,248,987 | 1% | ||
alimiami | 0 | 593,379,700 | 100% | ||
sam999 | 0 | 1,146,252,901 | 100% | ||
enforcer2k | 0 | 1,160,694,710 | 100% | ||
bboybz | 0 | 5,706,876,865 | 100% | ||
blockdoc | 0 | 1,160,680,252 | 100% | ||
sameerkumar | 0 | 649,980,380 | 100% | ||
tushar2017 | 0 | 789,261,867 | 100% | ||
theofilos13 | 0 | 905,329,664 | 100% | ||
philloverton | 0 | 1,137,465,300 | 100% | ||
flybendor | 0 | 992,380,265 | 100% | ||
naphy | 0 | 1,160,678,462 | 100% |
Hey Dan please check out our steem art wallet. Let us know your thoughts!
author | vinylshopus |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170709t223800180z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 22:38:00 |
last_update | 2017-07-09 22:38:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 22:38:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 15,341,962,940 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,919,953 |
net_rshares | 0 |
Interesting code
author | wavemaster |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170710t014231586z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-10 01:42:36 |
last_update | 2017-07-10 01:42:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 01:42:36 |
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 | 16 |
author_reputation | 102,708,627,411 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,933,201 |
net_rshares | 0 |
https://www.youtube.com/watch?v=S-fY1exdbao&t=676s @dan This architecture is same as AWS LAMBDA. Pay how much you use.I found serverless computating architecture may helps devs save some time to reinvent wheels.
author | williambatu |
---|---|
permlink | re-dan-eos-developer-s-log-stardate-201707-9-20170712t161224138z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"image":["https://img.youtube.com/vi/S-fY1exdbao/0.jpg"],"links":["https://www.youtube.com/watch?v=S-fY1exdbao&t=676s"],"app":"steemit/0.1"} |
created | 2017-07-12 16:12:24 |
last_update | 2017-07-12 16:12:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-19 16:12:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.504 HBD |
curator_payout_value | 0.832 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 211 |
author_reputation | 14,069,419,248 |
root_title | "EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,241,113 |
net_rshares | 899,305,369,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
billbutler | 0 | 898,144,694,349 | 100% | ||
chem1cal | 0 | 0 | 100% | ||
williambatu | 0 | 1,160,675,540 | 100% |