 How much are delegators earning on their investment in bid-bots? The Steem blockchain has most of the data needed to make the calculations so let’s follow the numbers! But not so fast. First, we need some definitions and some code. Any Steem account can delegate its Steem Power to another one and undelegate anytime with no previous notice. The account that delegates is the <b>delegator</b> and the account that receives the delegated funds is the <b>delegatee</b>. There is no credit risk for the delegator as she does not depend on the delegatee’s actions to get her money (Steem Power) back. It takes 7 days to get the undelegated funds back in the delegator’s account so delegators have some incentive to not undelegate so often. In this short-term credit market, the delegated funds are the bid-bot’s debt. It is common for bid-bots to pay interest on their debt every day. This reduces how much a delegator would not receive if a bid-bot were to default on its interest payments. The query to get all delegations ever made to one bid-bot account (see previous posts to learn about getting and processing the Steem blockchain info) is: ```` bidbot <- 'your_favorite_bid_bot' sqltxt <- paste("SELECT * FROM TxDelegateVestingShares WHERE delegatee IN ('",bidbot,"')",sep="") delegations_to_bot <- data.table(dbGetQuery(conn, sqltxt)) ```` <ul> To calculate the monthly end-of-period delegation balances for each delegator we use a procedure discussed in https://busy.org/@verodato/building-delegation-time-series. The next step is to estimate the interest payments to delegators. If the bid-bot sends transfers that are not interest payments to its delegators and does not label each type of transfer accordingly, we risk taking other expenses as interest payments. The list of all accounts that have delegated to the bid-bot is found by: ```` delegators <- unique(delegations_to_bot[,list(to=delegator)]) delegators[,isdelegator := 'yes'] ```` <ul> To get all the transfers from the bid-bot account to other accounts we prepare the following query: ```` sqltxt <- paste("SELECT [from],[to],amount,amount_symbol,memo,timestamp,type FROM TxTransfers (NOLOCK) WHERE [from] IN ('",bot,"')",sep="") transfers_out <- data.table(dbGetQuery(conn, sqltxt)) ```` <ul> Merge the “delegators” table obtained above with the “transfers_out” table, so that we can check which transfers from the bid-bot were directed to the delegators' accounts: ```` setkey(transfers_out,to) setkey(delegators,to) transfers_out <- delegators[transfers_out] transfers_out[,isdelegator := ifelse(is.na(isdelegator),'no',isdelegator)] interest_payments <- transfers_out[isdelegator=='yes',list(int_usd=sum(usd)),by=list(delegator=to,year,month)] ```` <ul> Merge the "delegation_balances" table with the "interest_payments" table and find how the monthly interest payments are related to the monthly amounts delegated. The “mrr” column is the monthly rate of return on the investment on the bid-bot and the “arr” column shows the annualized rate of return: ```` setkey(delegation_balances,delegator,year,month) setkey(interest_payments,delegator,year,month) cash_flow <- merge(interest_payments,delegation_balances) cash_flow_monthly <- cash_flow[delegation_usd > 0,list(interest_usd=round(sum(interest_usd)),delegation_usd=round(sum(delegation_usd))),keyby=list(year,month)] cash_flow_monthly[,mrr := round(100*interest_usd/delegation_usd,4)] cash_flow_monthly[,arr := round(100*(((1+(mrr/100))^12)-1),4)] ```` <ul> Now we need a bid-bot to test our code. At the moment of writing, the highest bid-bot vote value in the https://steembottracker.com page is the @postpromoter one, so we’re going to use it. The table below shows the results. Interest payments and delegations were converted to USD using historic SBD and STEEM coinmarketcap prices (https://coinmarketcap.com/currencies/steem/historical-data/). The annualized rate of return of the postpromoter bid-bot to its delegators has oscillated around a downward trend and reached its minimum value of 24% in June 2018. The total delegated to the bid-bot quickly reached more than USD 10 million in February 2018. The interest payments, after nearing USD 300.000 in the first two months of 2018, went down with the crashing cryptocurrencies prices of the following months, bringing down the rate of return with them. 
author | verodato |
---|---|
permlink | the-return-of-the-bid-bot |
category | steem |
json_metadata | {"tags":["steem","cryptocurrency","blockchain","finance","investing"],"links":["https://busy.org/@verodato/building-delegation-time-series","https://steembottracker.com","https://coinmarketcap.com/currencies/steem/historical-data/"],"app":"steemit/0.1","format":"markdown","users":["postpromoter"],"image":["https://cdn.steemitimages.com/DQmNVtCdH3TykxqR159KSmVrMKzdn7L8jaDtDTG7yqYwjbJ/image.png","https://cdn.steemitimages.com/DQmVai51TzczqSRaCTdAUAVQGTuyzxryJHXbLt5t71xzknY/image.png"]} |
created | 2018-07-04 12:02:12 |
last_update | 2018-07-04 16:06:12 |
depth | 0 |
children | 29 |
last_payout | 2018-07-11 12:02:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 203.731 HBD |
curator_payout_value | 63.237 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,542 |
author_reputation | 18,143,558,301,797 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,377,354 |
net_rshares | 113,516,311,704,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 11,744,457,616 | 26.74% | ||
framelalife | 0 | 50,954,755 | 26.74% | ||
tim-rumford | 0 | 103,123,091 | 26.74% | ||
grey580 | 0 | 24,024,205,437 | 26.74% | ||
biglipsmama | 0 | 631,415,961 | 26.74% | ||
cloh76 | 0 | 15,445,500,995 | 26.74% | ||
arcange | 0 | 13,403,450,600 | 2% | ||
fiveboringgames | 0 | 9,992,278,230 | 26.74% | ||
raphaelle | 0 | 960,324,114 | 2% | ||
emilhoch | 0 | 761,885,310 | 50% | ||
jasonmiller2134 | 0 | 116,823,982 | 26.74% | ||
transhuman | 0 | 2,707,779,479 | 26.74% | ||
zentat | 0 | 127,842,094 | 26.74% | ||
sethlinson | 0 | 609,034,201 | 26.74% | ||
jimjam1210 | 0 | 2,620,980,032 | 26.74% | ||
kralizec | 0 | 8,344,823,065 | 26.74% | ||
allyouneedtoknow | 0 | 31,715,297,332 | 26.74% | ||
dickdeepdog | 0 | 14,493,059,794 | 26.74% | ||
forever-gala | 0 | 3,733,818,395 | 26.74% | ||
drakmin | 0 | 11,553,491,990 | 26.74% | ||
geggi632 | 0 | 76,133,047 | 26.74% | ||
sqube | 0 | 839,492,218 | 26.74% | ||
walhallo777 | 0 | 11,112,502,544 | 26.74% | ||
steemcollator | 0 | 12,458,668,680 | 26.74% | ||
wilbur | 0 | 12,340,796,927 | 26.74% | ||
spurious-claims | 0 | 772,837,825 | 26.74% | ||
digitalfirehose | 0 | 19,858,797,072 | 100% | ||
marcosespes1 | 0 | 1,105,355,918 | 26.74% | ||
deaconlee | 0 | 9,058,032,019 | 26.74% | ||
da-dawn | 0 | 2,854,402,802 | 100% | ||
elgeko | 0 | 96,799,655,809 | 26.74% | ||
eaposztrof | 0 | 716,399,554 | 26.74% | ||
zephyraijunzo | 0 | 86,333,672,480 | 100% | ||
qxl | 0 | 970,002,400 | 26.74% | ||
markkujantunen | 0 | 17,012,714,059 | 17% | ||
abso | 0 | 212,057,790 | 26.74% | ||
inity | 0 | 317,091,347 | 100% | ||
nicnicy | 0 | 2,729,008,063 | 26.74% | ||
businesswri | 0 | 608,373,233 | 26.74% | ||
treebuilder | 0 | 3,068,629,969 | 26.74% | ||
freebornsociety | 0 | 466,216,237 | 1% | ||
brains1ck | 0 | 425,666,159 | 26.74% | ||
nuad01 | 0 | 239,571,786 | 26.74% | ||
evesick | 0 | 714,808,730 | 26.74% | ||
mrright | 0 | 3,694,952,294 | 26.74% | ||
lanceman | 0 | 2,407,281,518 | 26.74% | ||
olgavdovskikh | 0 | 167,232,820 | 26.74% | ||
frankydoodle | 0 | 2,577,407,432 | 26.74% | ||
itchykitten | 0 | 3,565,959,415 | 26.74% | ||
kishan | 0 | 224,654,600 | 26.74% | ||
vannfrik | 0 | 10,384,139,930 | 26.74% | ||
joklahoma | 0 | 9,137,628,509 | 26.74% | ||
vizualsamuri | 0 | 5,779,690,131 | 26.74% | ||
kingyus | 0 | 216,749,581 | 26.74% | ||
shawnfishbit | 0 | 66,489,884 | 26.74% | ||
opinizeunltd | 0 | 5,494,545,332 | 26.74% | ||
agoric.systems | 0 | 315,514,669 | 26.74% | ||
realcodysimon | 0 | 2,785,478,301 | 26.74% | ||
urs | 0 | 14,384,608,028 | 26.74% | ||
senor | 0 | 513,499,434 | 26.74% | ||
mikegun | 0 | 5,413,560,824 | 26.74% | ||
epikcoin | 0 | 295,639,830 | 26.74% | ||
diogogomes | 0 | 417,557,656 | 72% | ||
deemarshall | 0 | 5,627,765,465 | 26.74% | ||
abdulrehman | 0 | 127,169,280 | 26.74% | ||
natra | 0 | 9,243,829,300 | 26.74% | ||
wishmaiden | 0 | 643,733,166 | 26.74% | ||
cldgrf | 0 | 153,049,140 | 26.74% | ||
benniebanana | 0 | 81,105,580 | 26.74% | ||
booster | 0 | 8,539,321,372,907 | 20.74% | ||
ragnartheking | 0 | 101,960,304 | 26.74% | ||
hausbau | 0 | 235,973,922 | 26.74% | ||
kenhudoy | 0 | 2,359,236,419 | 26.74% | ||
mustafeez | 0 | 162,116,478 | 26.74% | ||
zaiyn | 0 | 262,152,314 | 26.74% | ||
mohsan0073 | 0 | 2,171,850,558 | 26.74% | ||
chingpherd | 0 | 1,423,286,180 | 26.74% | ||
satfit | 0 | 89,467,656 | 26.74% | ||
agr8buzz | 0 | 7,666,395,371 | 26.74% | ||
philip.willemse | 0 | 161,753,455 | 26.74% | ||
funfacts | 0 | 63,085,619 | 26.74% | ||
iamnotageek | 0 | 1,014,108,085 | 26.74% | ||
cryptojake | 0 | 685,890,922 | 26.74% | ||
rest100 | 0 | 16,908,632,414 | 26.74% | ||
bien | 0 | 664,698,823 | 26.74% | ||
crypto2day | 0 | 14,202,229,524 | 26.74% | ||
mrslauren | 0 | 14,950,334,707 | 26.74% | ||
oregonpop | 0 | 38,089,539,610 | 26.74% | ||
onza | 0 | 318,760,345 | 26.74% | ||
reborn99 | 0 | 161,767,643 | 26.74% | ||
animapaddy | 0 | 162,193,916 | 26.74% | ||
hope-on-fire | 0 | 1,272,270,855 | 100% | ||
mezmerizer9 | 0 | 162,207,678 | 26.74% | ||
abenike | 0 | 459,583,632 | 26.74% | ||
appreciator | 0 | 20,229,306,651,644 | 17.3% | ||
helmirenggrik | 0 | 56,122,500 | 26.74% | ||
mmagreat | 0 | 606,747,973 | 26.74% | ||
thelifestyler | 0 | 1,585,085,535 | 26.74% | ||
kyawsantun | 0 | 1,295,777,372 | 26.74% | ||
ladyrednails | 0 | 3,086,367,061 | 26.74% | ||
madcool | 0 | 53,367,428 | 26.74% | ||
mamata | 0 | 161,401,402 | 26.74% | ||
ronnybat | 0 | 161,897,281 | 26.74% | ||
ahmad.rezk | 0 | 161,753,455 | 26.74% | ||
omrii | 0 | 161,713,232 | 26.74% | ||
jonasthomas | 0 | 197,066,707 | 26.74% | ||
amlehtnewo | 0 | 161,753,455 | 26.74% | ||
showtime | 0 | 232,701,782 | 26.74% | ||
pickled | 0 | 2,511,785,069 | 26.74% | ||
finesse203 | 0 | 661,753,945 | 26.74% | ||
tonimarco | 0 | 10,358,904,342 | 26.74% | ||
steemdrivingman | 0 | 442,819,423 | 26.74% | ||
aek081969 | 0 | 230,149,850 | 26.74% | ||
iliketoast | 0 | 92,229,630 | 26.74% | ||
tomtom87 | 0 | 161,401,402 | 26.74% | ||
hellmerlin | 0 | 162,133,296 | 26.74% | ||
youngfuego | 0 | 66,561,563 | 26.74% | ||
andysmancave | 0 | 313,685,254 | 26.74% | ||
treasuregnome | 0 | 2,791,937,114 | 26.74% | ||
frontrunner | 0 | 10,907,654,432 | 26.74% | ||
cifer | 0 | 6,616,655,377 | 12% | ||
mustafa4101996 | 0 | 149,545,647 | 26.74% | ||
maxbullion | 0 | 48,229,338,417 | 26.74% | ||
skyhooks | 0 | 1,443,762,187 | 26.74% | ||
upvoted | 0 | 116,125,452 | 26.74% | ||
ketikasharma | 0 | 158,322,940 | 26.74% | ||
dorthmaen | 0 | 273,624,602 | 26.74% | ||
gellany | 0 | 161,401,402 | 26.74% | ||
bakhtiarzehri | 0 | 345,296,952 | 26.74% | ||
ganandoenbtc | 0 | 163,081,554 | 26.74% | ||
eosint | 0 | 304,050,964 | 26.74% | ||
voltsrage | 0 | 162,044,053 | 26.74% | ||
roshanlal2017 | 0 | 391,655,618 | 100% | ||
joulia | 0 | 159,686,368 | 26.74% | ||
mightywarrior | 0 | 76,150,683 | 26.74% | ||
jgr33nwood | 0 | 189,639,226 | 26.74% | ||
saadithya | 0 | 53,857,042 | 26.74% | ||
tastytrade | 0 | 161,979,490 | 26.74% | ||
buildawhale | 0 | 16,731,416,065,367 | 22.21% | ||
merosalah | 0 | 54,772,188 | 26.74% | ||
ravenrillay | 0 | 161,979,490 | 26.74% | ||
jim-borasso-band | 0 | 161,401,402 | 26.74% | ||
benjy87 | 0 | 229,189,736 | 26.74% | ||
belgarath | 0 | 8,639,129,416 | 26.74% | ||
alidervash | 0 | 313,170,464 | 26.74% | ||
kimph | 0 | 108,894,470 | 26.74% | ||
nakedtrader | 0 | 65,055,165 | 26.74% | ||
jovial-grace | 0 | 8,088,408,777 | 26.74% | ||
teenovision | 0 | 37,388,779,357 | 100% | ||
zuhrareza | 0 | 155,536,052 | 26.74% | ||
phuresh | 0 | 102,209,986 | 26.74% | ||
videogeek | 0 | 400,617,311 | 26.74% | ||
s10 | 0 | 230,051,371 | 26.74% | ||
derkon | 0 | 5,723,138,892 | 26.74% | ||
andesilesteem | 0 | 301,450,317 | 100% | ||
da-primate | 0 | 162,034,197 | 26.74% | ||
teo-nyx | 0 | 84,047,567,473 | 100% | ||
hillstech | 0 | 161,446,413 | 26.74% | ||
amanda46536 | 0 | 154,050,792 | 26.74% | ||
rksumanthraju | 0 | 202,628,929 | 26.74% | ||
melvinlumacad | 0 | 1,073,534,985 | 26.74% | ||
travelingdiva | 0 | 162,152,737 | 26.74% | ||
rashidsahi | 0 | 326,017,345 | 100% | ||
earningbot | 0 | 149,182,418 | 26.74% | ||
happyclappy | 0 | 162,428,742 | 26.74% | ||
ianfreeman | 0 | 165,588,671 | 26.74% | ||
chucknasty | 0 | 159,078,467 | 26.74% | ||
curiositybot | 0 | 5,216,469,743 | 26.74% | ||
arunavabiswas | 0 | 162,167,327 | 26.74% | ||
tujan | 0 | 153,730,649 | 26.74% | ||
lawyerup | 0 | 5,616,335,554 | 26.74% | ||
liberta | 0 | 601,783,880 | 26.74% | ||
jfkenndy | 0 | 1,064,189,888 | 26.74% | ||
smartsteem | 0 | 25,452,327,325,412 | 25.42% | ||
embomb701 | 0 | 15,464,283,341 | 26.74% | ||
rikip94 | 0 | 95,516,917 | 26.74% | ||
bjjworldtraveler | 0 | 5,454,507,152 | 26.74% | ||
ant884 | 0 | 5,810,425,619 | 26.74% | ||
pushup | 0 | 503,615,397,210 | 21.31% | ||
th3voter | 0 | 110,756,161,219 | 28.45% | ||
silasdavid | 0 | 252,121,212 | 26.74% | ||
cryptoclick | 0 | 2,592,616,461 | 26.74% | ||
sopra | 0 | 174,695,393 | 100% | ||
crypt0boy | 0 | 162,065,775 | 26.74% | ||
futuredigicoin | 0 | 124,777,132 | 26.74% | ||
genya.kharitonov | 0 | 161,979,490 | 26.74% | ||
co-op.blogs | 0 | 161,979,490 | 26.74% | ||
emas-jiujitsu | 0 | 5,710,183,059 | 26.74% | ||
eaglespirit | 0 | 18,674,998,876 | 26.74% | ||
freemon | 0 | 155,663,663 | 26.74% | ||
billibong | 0 | 130,059,999 | 26.74% | ||
sahertanveer | 0 | 161,798,735 | 26.74% | ||
minestein | 0 | 528,901,350 | 100% | ||
vlasmp | 0 | 162,375,191 | 26.74% | ||
r351574nc3 | 0 | 1,050,940,388 | 3% | ||
kofibeatz | 0 | 402,631,089 | 26.74% | ||
upmewhale | 0 | 7,132,054,580,916 | 17.48% | ||
znnuksfe | 0 | 1,036,477,926 | 50% | ||
graytor | 0 | 171,607,335 | 26.74% | ||
ceyksparrow | 0 | 161,935,684 | 26.74% | ||
shares | 0 | 115,820,230,914 | 19.92% | ||
mercurybot | 0 | 354,453,711,671 | 12.4% | ||
protomar | 0 | 152,547,665 | 26.74% | ||
verodato | 0 | 323,521,644,170 | 100% | ||
vivianka | 0 | 233,932,354 | 26.74% | ||
mirabdullah | 0 | 161,929,925 | 26.74% | ||
dashdipak | 0 | 161,753,455 | 26.74% | ||
stonechaisson | 0 | 161,821,850 | 26.74% | ||
aylan | 0 | 1,804,078,567 | 26.74% | ||
tuts | 0 | 182,708,103 | 100% | ||
zulbahri | 0 | 295,658,377 | 26.74% | ||
mysearchisover | 0 | 4,580,362,914 | 10% | ||
btcbaby | 0 | 161,927,596 | 26.74% | ||
uxmanqaxim | 0 | 142,026,830 | 26.74% | ||
enkel | 0 | 162,249,017 | 26.74% | ||
ozywashere | 0 | 800,312,426 | 26.74% | ||
osere | 0 | 161,442,881 | 26.74% | ||
brunoaco91 | 0 | 161,972,813 | 26.74% | ||
thaha1 | 0 | 341,805,244 | 26.74% | ||
hamza77 | 0 | 162,271,162 | 26.74% | ||
jguzman394 | 0 | 299,802,400 | 26.74% | ||
fantomcee | 0 | 161,738,901 | 26.74% | ||
historyfromworld | 0 | 162,261,532 | 26.74% | ||
mickeyvera | 0 | 127,251,607 | 26.74% | ||
zulama28 | 0 | 152,486,393 | 26.74% | ||
salty-mcgriddles | 0 | 1,247,712,853 | 3% | ||
hafizalam5556 | 0 | 161,685,192 | 26.74% | ||
minnowbootcamp | 0 | 9,006,697,258 | 26.74% | ||
redlambo | 0 | 154,853,639,329 | 27.64% | ||
eddy4king | 0 | 161,486,052 | 26.74% | ||
bitmycoin | 0 | 546,318,843 | 26.74% | ||
nova-nazirah | 0 | 152,401,939 | 26.74% | ||
kurtringimages | 0 | 158,450,399 | 26.74% | ||
brupvoter | 0 | 252,019,701,761 | 6.7% | ||
stephanieangel | 0 | 152,851,126 | 26.74% | ||
sabarniati.aceh | 0 | 161,366,725 | 26.74% | ||
alfanso | 0 | 555,475,779,617 | 19.64% | ||
inciter | 0 | 573,607,297,431 | 17.75% | ||
therising | 0 | 6,763,840,474,520 | 16.5% | ||
scandinaviaguide | 0 | 1,274,750,816 | 26.74% | ||
eloniy | 0 | 208,640,853 | 26.74% | ||
nauman944 | 0 | 161,713,232 | 26.74% | ||
ocxie | 0 | 136,453,565 | 26.74% | ||
battlemountain2k | 0 | 5,606,543,444 | 26.74% | ||
instaforex | 0 | 610,222,168 | 100% | ||
promobot | 0 | 23,978,472,332,780 | 66.26% | ||
thebot | 0 | 417,715,161,912 | 23.09% | ||
zappl-lottery | 0 | 256,486,834 | 26.74% | ||
ilikeit | 0 | 4,811,853,535 | 50% | ||
manfaluthi | 0 | 151,931,270 | 26.74% | ||
tehmi | 0 | 158,422,237 | 26.74% | ||
photobomber | 0 | 155,999,305 | 26.74% | ||
gmlgang | 0 | 85,366,322 | 100% | ||
malia88 | 0 | 610,303,363 | 100% | ||
aungmyinthu | 0 | 161,892,805 | 26.74% | ||
djarumsuper | 0 | 264,978,304 | 100% | ||
kolxoznik0 | 0 | 610,140,963 | 100% | ||
dementei | 0 | 610,262,794 | 100% | ||
enrag | 0 | 610,150,552 | 100% | ||
maikl960 | 0 | 610,140,970 | 100% | ||
socpublic | 0 | 610,100,382 | 100% | ||
vika09 | 0 | 610,343,983 | 100% | ||
loft505 | 0 | 610,262,769 | 100% | ||
rozaaceh | 0 | 101,086,247 | 100% | ||
devidkoperfild | 0 | 610,100,379 | 100% | ||
yarondrei | 0 | 610,140,980 | 100% | ||
jemissongordon | 0 | 610,262,770 | 100% | ||
shancarpe | 0 | 610,100,364 | 100% | ||
borndead03 | 0 | 610,303,359 | 100% | ||
boyarovkostya | 0 | 610,303,373 | 100% | ||
ivan.gotovin | 0 | 610,100,376 | 100% | ||
taisa.gallery | 0 | 161,612,735 | 26.74% | ||
merleeyq | 0 | 161,365,828 | 26.74% | ||
ekas | 0 | 444,125,568 | 100% | ||
sergeidurov | 0 | 610,262,770 | 100% | ||
bitcoinmarketss | 0 | 151,680,079 | 26.74% | ||
vas30 | 0 | 610,181,597 | 100% | ||
hlebova1009 | 0 | 610,303,392 | 100% | ||
antonova2030 | 0 | 610,181,570 | 100% | ||
vlad33 | 0 | 610,140,969 | 100% | ||
sergoivika | 0 | 610,222,176 | 100% | ||
ilia013v | 0 | 610,181,579 | 100% | ||
blackberry777 | 0 | 610,100,373 | 100% | ||
varikoz | 0 | 610,262,798 | 100% | ||
moreone | 0 | 610,181,578 | 100% | ||
dima.nurgaliev | 0 | 610,343,974 | 100% | ||
childse15 | 0 | 610,181,573 | 100% | ||
browan4ik | 0 | 610,140,960 | 100% | ||
felicjann | 0 | 610,181,568 | 100% | ||
baejz | 0 | 610,181,568 | 100% | ||
hackettm21 | 0 | 610,140,968 | 100% | ||
kosheliuk | 0 | 610,181,573 | 100% | ||
mlgcrypto | 0 | 3,366,847,620 | 26.74% | ||
minasyanahit85 | 0 | 610,100,362 | 100% | ||
xachatryank | 0 | 610,262,780 | 100% | ||
garikpetrosyan | 0 | 610,140,988 | 100% | ||
calmsteem | 0 | 542,126,946 | 100% | ||
arithmatic | 0 | 152,551,389 | 26.74% | ||
gnoori | 0 | 161,990,571 | 26.74% | ||
ruralcapsule | 0 | 609,329,489 | 100% | ||
monkbulimia | 0 | 609,329,489 | 100% | ||
marzullo | 0 | 4,239,449,489 | 100% | ||
sentanu74 | 0 | 3,519,895,719 | 20% | ||
inwas797 | 0 | 186,546,359 | 100% | ||
hexagoncanadian | 0 | 609,329,489 | 100% | ||
bolttrite | 0 | 609,329,489 | 100% | ||
milkyteammate | 0 | 609,329,489 | 100% | ||
satoshi.blog | 0 | 1,202,385,580 | 100% | ||
yzmoney | 0 | 430,681,259 | 100% | ||
heapimport | 0 | 609,329,489 | 100% | ||
hobnobholing | 0 | 609,329,489 | 100% | ||
recentlyimply | 0 | 609,329,489 | 100% | ||
abalonegrateful | 0 | 609,326,088 | 100% | ||
coinsicy | 0 | 609,326,088 | 100% | ||
crystaleur | 0 | 609,326,088 | 100% | ||
haircuttogether | 0 | 609,326,088 | 100% | ||
freeboarddavit | 0 | 609,326,088 | 100% | ||
alonecatdisc | 0 | 609,326,088 | 100% | ||
magicagree | 0 | 609,326,088 | 100% | ||
facedwrapped | 0 | 609,326,088 | 100% | ||
magichive | 0 | 609,326,088 | 100% | ||
crayoncamera | 0 | 609,326,088 | 100% | ||
fogmonkey | 0 | 609,326,088 | 100% | ||
sleddergirl | 0 | 609,326,088 | 100% | ||
pyroxenebattery | 0 | 609,326,088 | 100% | ||
recognizedesert | 0 | 609,326,088 | 100% | ||
chutneyethanoic | 0 | 609,326,088 | 100% | ||
bubblyhexes | 0 | 609,326,088 | 100% | ||
muddygrey | 0 | 609,326,088 | 100% | ||
lipspin | 0 | 609,326,088 | 100% | ||
lotgreasy | 0 | 609,326,088 | 100% | ||
lividbouncy | 0 | 609,326,088 | 100% | ||
mischiefrunner | 0 | 609,326,088 | 100% | ||
goldbeastly | 0 | 609,326,088 | 100% | ||
molarwherever | 0 | 609,326,088 | 100% | ||
cameramalt | 0 | 609,326,088 | 100% | ||
xebeclist | 0 | 609,326,088 | 100% | ||
boardsdew | 0 | 609,326,088 | 100% | ||
ocelotmultiply | 0 | 609,326,088 | 100% | ||
dumpobeisant | 0 | 609,326,088 | 100% | ||
blandstatics | 0 | 609,326,088 | 100% | ||
bohrbowling | 0 | 609,326,088 | 100% | ||
dashlone | 0 | 609,326,088 | 100% | ||
rydbergactinium | 0 | 609,326,088 | 100% | ||
grouseunhelpful | 0 | 609,326,088 | 100% | ||
zombieprivilege | 0 | 609,326,088 | 100% | ||
loathsomemaps | 0 | 609,326,088 | 100% | ||
rootscheese | 0 | 609,326,088 | 100% | ||
blazarpastebin | 0 | 609,326,088 | 100% | ||
infusedbatter | 0 | 609,326,088 | 100% | ||
chubbycircle | 0 | 609,326,088 | 100% | ||
blueberryeither | 0 | 609,326,088 | 100% | ||
petqrcode | 0 | 609,326,088 | 100% | ||
marcatounique | 0 | 609,326,088 | 100% | ||
huskyelectron | 0 | 609,326,088 | 100% | ||
scotsmenmixin | 0 | 609,326,088 | 100% | ||
hallfirst | 0 | 609,326,088 | 100% | ||
listlabcoat | 0 | 609,326,088 | 100% | ||
unequaledpelite | 0 | 609,326,088 | 100% | ||
corneahang | 0 | 609,326,088 | 100% | ||
flatschowder | 0 | 609,326,088 | 100% | ||
yolofussy | 0 | 609,326,088 | 100% | ||
riemannevening | 0 | 609,326,088 | 100% | ||
scalarquestion | 0 | 609,326,088 | 100% | ||
doorpedal | 0 | 609,326,088 | 100% | ||
pzaytsev88 | 0 | 609,326,088 | 100% | ||
asamarin88 | 0 | 609,326,088 | 100% | ||
okapitonov88 | 0 | 609,326,088 | 100% | ||
aefimov88 | 0 | 609,326,088 | 100% | ||
alexkorban93 | 0 | 609,326,088 | 100% | ||
anryper | 0 | 609,326,088 | 100% | ||
ozueva8 | 0 | 609,326,088 | 100% | ||
sryimin88ik | 0 | 609,326,088 | 100% | ||
rlazarev88w | 0 | 609,326,088 | 100% | ||
ykapitonov | 0 | 609,326,088 | 100% | ||
akudrin88 | 0 | 609,326,088 | 100% | ||
nbusurev | 0 | 609,326,088 | 100% | ||
vzuev88 | 0 | 609,326,088 | 100% | ||
asavin88 | 0 | 609,326,088 | 100% | ||
gulyaev13 | 0 | 609,326,088 | 100% | ||
ibogosov | 0 | 609,326,088 | 100% | ||
shukinsanechek | 0 | 609,326,088 | 100% | ||
ethnow | 0 | 11,581,782,164 | 26.74% | ||
javiermurillo | 0 | 210,162,387 | 100% | ||
gnomba | 0 | 262,277,835 | 100% | ||
alex-steem-it | 0 | 192,061,876 | 100% | ||
a-bot | 0 | 246,607,238,946 | 19.9% | ||
shubhamkalra56 | 0 | 214,929,223 | 100% | ||
toblarone | 0 | 280,270,504 | 100% | ||
guillermo18 | 0 | 301,587,660 | 100% | ||
bitcoinhodlr | 0 | 274,808,799 | 100% | ||
bernard4ve | 0 | 325,949,436 | 100% | ||
saikathussain | 0 | 201,090,034 | 100% | ||
asher18 | 0 | 76,147,667 | 100% | ||
smulu | 0 | 307,652,824 | 100% | ||
dipika17 | 0 | 417,072,726 | 100% | ||
jaypoi25 | 0 | 240,554,405 | 100% | ||
massielcarolina | 0 | 243,547,855 | 100% | ||
bit.curious | 0 | 4,765,876,227 | 100% | ||
infospace | 0 | 596,234,070 | 100% | ||
aitov | 0 | 255,725,248 | 100% | ||
farhankhan4321 | 0 | 398,806,767 | 100% | ||
nasir988 | 0 | 362,265,714 | 100% | ||
clitusdsouza | 0 | 480,988,598 | 100% | ||
smile-kevin | 0 | 608,839,820 | 100% | ||
borissenko | 0 | 149,164,148 | 100% | ||
jalvarezgw | 0 | 0 | 100% |
Congratulations @verodato! Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180704) in the following category: * Pending payout - Ranked 7 with $ 284,11
author | arcange |
---|---|
permlink | re-the-return-of-the-bid-bot-20180704t180328000z |
category | steem |
json_metadata | "" |
created | 2018-07-05 16:13:03 |
last_update | 2018-07-05 16:13:03 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 16:13: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 | 216 |
author_reputation | 1,146,606,639,109,506 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,545,009 |
net_rshares | 0 |
Very well written article, definitely gave me some insight to returns etc. I'm new here so this article was a great source of information!
author | bit.curious |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t224156852z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 22:41:54 |
last_update | 2018-07-05 22:41:54 |
depth | 1 |
children | 1 |
last_payout | 2018-07-12 22:41:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.499 HBD |
curator_payout_value | 0.166 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 5,959,221,185,375 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,581,797 |
net_rshares | 335,670,418,410 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 335,670,418,410 | 100% |
Best Cryptocurrency Trade Bot HaasOnline (SUPER PROFITABLE!!!) Features: - 20 different signals - Safety insurance - Trade without losses - Trade any altcoin - Auto-buy on pump and auto-sell on dump - ... and more! Options: - Trade Bot - Arbitrage Bot - Order Bot Exchanges supported: - Bitfinex - Bitstamp - BitTrex - BTC-E - CEX.IO - Huobi - Kraken - Poloniex - ... and much more! Also we decided to give away 3 months of the "Advanced" plan for free for everyone who installs new version from June 29 to July 10. Grab your gift right now! <a href="https://www.haasoniine.com">haasonline.com</a> 
author | presimrapun1977 |
---|---|
permlink | re-bitcurious-re-verodato-the-return-of-the-bid-bot-20180706t095149562z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmTE57cne8wcssNSboK88RtmxSdTqoLis3V9MtTD9SdkE9/trade.jpg"],"links":["https://www.haasoniine.com"],"app":"steemit/0.1"} |
created | 2018-07-06 09:51:51 |
last_update | 2018-07-06 09:51:51 |
depth | 2 |
children | 0 |
last_payout | 2018-07-13 09:51: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 | 706 |
author_reputation | -92,090,597,627 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,636,782 |
net_rshares | 0 |
<p>This post has received a 20.75 % upvote from @booster thanks to: @verodato.</p>
author | booster |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180704t234454459z |
category | steem |
json_metadata | {"tags":["steem"],"app":"drotto/0.0.5pre3"} |
created | 2018-07-04 23:44:54 |
last_update | 2018-07-04 23:44:54 |
depth | 1 |
children | 0 |
last_payout | 2018-07-11 23:44: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 | 83 |
author_reputation | 68,767,115,776,562 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,449,770 |
net_rshares | 0 |
You got a 6.70% upvote from @brupvoter courtesy of @verodato!
author | brupvoter |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180704t122559257z |
category | steem |
json_metadata | {"app":"postpromoter/2.0.0"} |
created | 2018-07-04 12:25:57 |
last_update | 2018-07-04 12:25:57 |
depth | 1 |
children | 0 |
last_payout | 2018-07-11 12:25: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 | 62 |
author_reputation | 13,657,314,846,422 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,379,993 |
net_rshares | 0 |
Very detailed analysis, thanks a lot. Was looking for this analysis already on the net, but did not find anything. Hopefully things will turn back around and return will reach its high back again.
author | bumshak |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180706t060003639z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-06 06:00:03 |
last_update | 2018-07-06 06:00:03 |
depth | 1 |
children | 0 |
last_payout | 2018-07-13 06:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.362 HBD |
curator_payout_value | 0.119 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 2,244,477,323,774 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,615,556 |
net_rshares | 242,631,967,262 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 242,631,967,262 | 100% |
Nice work. Hard pressed to get 11% from your friendly bank. The big telling analysis is when the degradation curve brings the returns below bank rates.
author | carrinm |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180704t130713687z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-04 13:07:15 |
last_update | 2018-07-04 13:07:15 |
depth | 1 |
children | 1 |
last_payout | 2018-07-11 13:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.727 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 367,289,880,001,556 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,384,663 |
net_rshares | 322,903,777,964 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 320,286,427,728 | 100% | ||
mysearchisover | 0 | 2,617,350,236 | 5% |
Hi, @carrinm, there was an error in the conversion of delegations from VESTS to USD in the first version of this post. Sorry. Getting 24% from your friendly bank is going to be tough!
author | verodato |
---|---|
permlink | re-carrinm-re-verodato-the-return-of-the-bid-bot-20180704t160942046z |
category | steem |
json_metadata | {"tags":["steem"],"users":["carrinm"],"app":"steemit/0.1"} |
created | 2018-07-04 16:09:42 |
last_update | 2018-07-04 16:09:42 |
depth | 2 |
children | 0 |
last_payout | 2018-07-11 16:09:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.277 HBD |
curator_payout_value | 0.091 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 18,143,558,301,797 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,406,960 |
net_rshares | 161,517,415,314 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 161,517,415,314 | 100% |
Couldnt happen to a nicer group of folks.
author | freebornangel |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t023104345z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 02:31:09 |
last_update | 2018-07-05 02:31:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 02:31: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 | 41 |
author_reputation | 171,005,551,503,977 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,462,717 |
net_rshares | 7,966,701,409 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
church-of-piglet | 0 | 7,966,701,409 | 100% |
Ok, so I get $.04 from posting every day. and from a bot I get $5.00. What do you think I should do. I can put in hours to write and get nothing. or put in nothing and get money. Money that goes to help people who need.
author | henry-gant |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t024911720z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 02:49:12 |
last_update | 2018-07-05 02:49:12 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 02: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 | 225 |
author_reputation | 4,019,656,283,055 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,464,167 |
net_rshares | 0 |
 Best Cryptocurrency Trade Bot HaasOnline (SUPER PROFITABLE!!!) Features: - 20 different signals - Safety insurance - Trade without losses - Trade any altcoin - Auto-buy on pump and auto-sell on dump - ... and more! Options: - Trade Bot - Arbitrage Bot - Order Bot Exchanges supported: - Bitfinex - Bitstamp - BitTrex - BTC-E - CEX.IO - Huobi - Kraken - Poloniex - ... and much more! Also we decided to give away 3 months of the "Advanced" plan for free for everyone who installs new version from June 29 to July 10. Grab your gift right now! https://www.haasoniine.com
author | hitbitwow |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t213112431z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmaNLgrKME1SJk2oLB8vhtA2EXfTKaVUavknVSNWuew3Ea/photo_2018-06-30_21-58-09.jpg"],"links":["https://www.haasoniine.com"],"app":"steemit/0.1"} |
created | 2018-07-05 21:31:18 |
last_update | 2018-07-05 21:31:18 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 21:31: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 | 717 |
author_reputation | -92,401,537,257 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,576,287 |
net_rshares | 0 |
Can someone explain to me why does the APR% return increases with increase in value of STEEM. This would imply that the circulation/creation of STU increases with increase in value , doesn't this mean it gets highly inflated as the price goes up? and subsequently creating a downward price pressure on STEEM Price. quite similar to how the US government keeps printing more money when they need to. https://media.giphy.com/media/3o6Ztah2Jo4BQReDIs/giphy.gif >sorry not an economist ...
author | itstime |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t042518237z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://media.giphy.com/media/3o6Ztah2Jo4BQReDIs/giphy.gif"],"app":"steemit/0.1"} |
created | 2018-07-05 04:25:45 |
last_update | 2018-07-05 04:25:45 |
depth | 1 |
children | 3 |
last_payout | 2018-07-12 04:25: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 | 489 |
author_reputation | 9,875,271,178,952 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,472,456 |
net_rshares | 0 |
Actually it was because of the runup in SBD, not STEEM. The reward functions adjust for changes in STEEM price (using witness price feeds). There is no similar compensation for changes in SBD premium (SBD price in excess of $1 floor).
author | josephsavage |
---|---|
permlink | re-itstime-re-verodato-the-return-of-the-bid-bot-20180725t000040355z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-25 00:00:42 |
last_update | 2018-07-25 00:00:42 |
depth | 2 |
children | 2 |
last_payout | 2018-08-01 00:00:42 |
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 | 234 |
author_reputation | 40,260,007,396,591 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,869,773 |
net_rshares | 5,021,066,342 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itstime | 0 | 5,021,066,342 | 100% |
But whenever there is bull run SBD prices will run up...
author | itstime |
---|---|
permlink | re-josephsavage-re-itstime-re-verodato-the-return-of-the-bid-bot-20180725t035956596z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-25 04:00:48 |
last_update | 2018-07-25 04:00:48 |
depth | 3 |
children | 1 |
last_payout | 2018-08-01 04:00: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 | 56 |
author_reputation | 9,875,271,178,952 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,887,460 |
net_rshares | 0 |
Your post is nice
author | monir47 |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180707t141507820z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-07 14:15:21 |
last_update | 2018-07-07 14:15:21 |
depth | 1 |
children | 0 |
last_payout | 2018-07-14 14:15: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 | 17 |
author_reputation | 157,862,761 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,785,857 |
net_rshares | 0 |
You have some very nice skills! I have been noticing the ROI's dropping on http://isteemd.com/ There is also minnowbooster where people can delegate. https://www.minnowbooster.net/market?direction=asc&sort=effective_price
author | mysearchisover |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180704t142719779z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://isteemd.com/","https://www.minnowbooster.net/market?direction=asc&sort=effective_price"],"app":"steemit/0.1"} |
created | 2018-07-04 14:27:21 |
last_update | 2018-07-04 14:27:21 |
depth | 1 |
children | 1 |
last_payout | 2018-07-11 14:27:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.680 HBD |
curator_payout_value | 0.221 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 224 |
author_reputation | 106,037,311,868,398 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,394,215 |
net_rshares | 390,172,089,727 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
whatsup | 0 | 25,733,882,820 | 9% | ||
verodato | 0 | 321,904,035,949 | 100% | ||
mysearchisover | 0 | 42,534,170,958 | 100% |
Thanks! Great to know about http://isteemd.com/ !
author | verodato |
---|---|
permlink | re-mysearchisover-re-verodato-the-return-of-the-bid-bot-20180704t161430580z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://isteemd.com/"],"app":"steemit/0.1"} |
created | 2018-07-04 16:14:30 |
last_update | 2018-07-04 16:14:30 |
depth | 2 |
children | 0 |
last_payout | 2018-07-11 16:14:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.362 HBD |
curator_payout_value | 0.118 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 18,143,558,301,797 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,407,521 |
net_rshares | 209,644,306,694 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 165,147,020,153 | 100% | ||
mysearchisover | 0 | 44,497,286,541 | 100% |
@verodato informative for me
author | rashidsahi |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180706t091026428z |
category | steem |
json_metadata | {"tags":["steem"],"users":["verodato"],"app":"steemit/0.1"} |
created | 2018-07-06 09:10:30 |
last_update | 2018-07-06 09:10:30 |
depth | 1 |
children | 0 |
last_payout | 2018-07-13 09:10: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 | 28 |
author_reputation | 4,964,461,894 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,632,815 |
net_rshares | 0 |
You got a 27.64% upvote from @redlambo courtesy of @verodato! Make sure to use tag #redlambo to be considered for the curation post!
author | redlambo |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180704t122510772z |
category | steem |
json_metadata | {"app":"postpromoter/1.9.2"} |
created | 2018-07-04 12:25:09 |
last_update | 2018-07-04 12:25:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-11 12:25: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 | 133 |
author_reputation | 123,143,757,359 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,379,897 |
net_rshares | 0 |
Hello verodato sir,You have provided an image to your blog by very good ideas. Which is the praise of the people. I also hope to write a blog like you and be as good as you like. Please help me.
author | roshanlal2017 |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t193124662z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 19:31:30 |
last_update | 2018-07-05 19:31:30 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 19:31: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 | 194 |
author_reputation | 37,213,845,809 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,566,131 |
net_rshares | 0 |
those are some nice skills. you have me motivated to do some experimenting with steem blockchain queries too. profits have declined for sure but they are still better than the alternative investment options. i have faith in steem.
author | sarah249 |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180706t045347827z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-06 04:53:48 |
last_update | 2018-07-06 04:53:48 |
depth | 1 |
children | 0 |
last_payout | 2018-07-13 04:53:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.355 HBD |
curator_payout_value | 0.118 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 627,414,456,840 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,609,872 |
net_rshares | 238,992,487,753 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verodato | 0 | 238,992,487,753 | 100% |
This post has received a 19.92% UpGoat from @shares. Send at least 0.1 SBD to @shares with a post link in the memo field. Interested to earn daily? Delegate Steem Power to receive 95% payout rewards. Use this link https://on.king.net/shares to delegate SP to @Shares. Join us at [https://steemchat.com/](https://steemchat.com/) discord chat. Support my owner. Please vote [@Yehey as Witness](https://on.king.net/witness) - simply click and vote.
author | shares |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t003750533z |
category | steem |
json_metadata | {"app":"postpromoter/1.8.9"} |
created | 2018-07-05 00:37:51 |
last_update | 2018-07-05 00:37:51 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 00:37: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 | 448 |
author_reputation | 3,918,810,970,357 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,453,827 |
net_rshares | 0 |
you're doing great i like you information thanks to sharing with us
author | sujon05 |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t140819327z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 14:08:24 |
last_update | 2018-07-05 14:08:24 |
depth | 1 |
children | 1 |
last_payout | 2018-07-12 14:08: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 | 67 |
author_reputation | -63,904,414,981 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,530,454 |
net_rshares | 0 |
<em>You're doing great i Like you information thanks To sharing with us </em> <sup>- sujon05</sup> --- <sup><sup><em>I'm a bot. I detect haiku.</em></sup></sup>
author | haikubot |
---|---|
permlink | 20180705t140831108z |
category | steem |
json_metadata | {"tags":["test"],"app":"steemjs/examples"} |
created | 2018-07-05 14:08:30 |
last_update | 2018-07-05 14:08:30 |
depth | 2 |
children | 0 |
last_payout | 2018-07-12 14:08: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 | 266 |
author_reputation | 1,821,968,927,944 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,530,466 |
net_rshares | 0 |
Excellent news
author | teenovision |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t052011266z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-05 05:20:12 |
last_update | 2018-07-05 05:20:12 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 05:20: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 | 14 |
author_reputation | 1,282,682,099,259 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,477,047 |
net_rshares | 0 |
You got a 28.45% upvote from @th3voter thanks to: @verodato! <br> <img src="https://res.cloudinary.com/demo/image/upload/fl_lossy,q_30/w_350/w_300,c_fit,l_text:arial_30_stroke:You%20got%20a%2028.45%25%20upvote%20from%20@th3voter%20thanks%20to:%20@verodato.,co_blue,bo_5px_solid_yellow/fl_lossy/kitten_fighting.gif"> Image Source *cloudinary.com* --- *This post has upvoted from @th3voter !For more information, [click here](https://steemit.com/@th3voter)!* --- You can earn daily profit by delegating SP to our bot, 100% of earnings paid out to delegators. To do so, click below: [30SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=30%20SP), [50SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=50%20SP), [100SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=100%20SP), [250SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=250%20SP), [500SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=500%20SP), [1000SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=1000%20SP), [5000SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=5000%20SP), [10000SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegatee=th3voter&vesting_shares=10000%20SP), [Custom Amount](https://steembottracker.com/delegation.html?delegatee=th3voter) Make sure you have at least 15 SP left on your account.
author | th3voter |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t013441417z |
category | steem |
json_metadata | {"app":"postpromoter/2.0.0"} |
created | 2018-07-05 01:34:42 |
last_update | 2018-07-05 01:34:42 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 01:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.200 HBD |
curator_payout_value | 0.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,584 |
author_reputation | 3,944,933,863,738 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,458,147 |
net_rshares | 124,441,219,679 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 148,093,814 | 1% | ||
th3voter | 0 | 44,795,191,760 | 12% | ||
penghuren | 0 | 157,027,248 | 2.5% | ||
arhersost | 0 | 79,340,906,857 | 60% |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/verodato__the-return-of-the-bid-bot.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-the-return-of-the-bid-bot-20180704t124247 |
category | steem |
json_metadata | "" |
created | 2018-07-04 12:42:48 |
last_update | 2018-07-04 12:42:48 |
depth | 1 |
children | 0 |
last_payout | 2018-07-11 12:42: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 | 345 |
author_reputation | -4,535,154,553,995 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,381,827 |
net_rshares | 0 |
You got a 17.48% upvote from @upmewhale courtesy of @verodato! Earn 100% earning payout by delegating SP to @upmewhale. Visit http://www.upmewhale.com for details!
author | upmewhale |
---|---|
permlink | re-verodato-the-return-of-the-bid-bot-20180705t020610922z |
category | steem |
json_metadata | {"app":"postpromoter/2.0.0"} |
created | 2018-07-05 02:06:12 |
last_update | 2018-07-05 02:06:12 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 02:06: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 | 165 |
author_reputation | 28,704,887,249,463 |
root_title | "The return of the bid-bot" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,460,737 |
net_rshares | 0 |