<center> (Image Source : [Pixabay](https://cdn.pixabay.com/photo/2013/07/12/13/50/smiley-147407_960_720.png))</center> 有没有好奇steemauto,steemrewarding的自动点赞是怎么实现的? 想不想自己写个属于自己的点赞程序? 其实理解原理这些点赞程序是很容易写的 steeemjs提供了一个点赞的function: ~~~ steem.broadcast.vote(postingKey, account, author, permlink, weight, function(err, result) { console.log(err, result); }); ~~~ 只需填入相应的信息点赞程序就完成了。比如: ~~~ steem.broadcast.vote("发帖密钥", "账号", "ericet", "krwp-9zgk9bfvin", 10000, function(err, result) { console.log(err, result); }); ~~~ 好了,点赞程序写完了。运行后会自动给我的帖子:https://steempeak.com/cn/@ericet/krwp-9zgk9bfvin 点个满赞。 是不是很简单?但是没啥实际用处。下面来添加一些功能,比如看到有新帖就自动点赞 在[上一篇](https://steempeak.com/cn/@ericet/js-nddsi4obip)里介绍过一个function:steem.api.streamTransactions。这个function会实时查看发布到区块链上的操作。 加上这个function和点赞的function就可以给所有新帖自动点赞了。 ~~~ const steem = require("steem"); const steemid = 'steemid'; const postingKey = 'postingKey'; start(); function start() { steem.api.streamTransactions("head", function(err, result) { if (result && !err) { let txType = result.operations[0][0]; let txData = result.operations[0][1]; if (txType == "comment" && txData.parent_author == '') { upvote(txData.author,txData.permlink); } } else { console.log("Error found", err); start(); } }); } function upvote(author,permlink){ steem.broadcast.vote(postingKey, steemid, author, permlink, 10000, function(err, result) { console.log(err, result); }); } ~~~ 再加个新功能,点赞后自动留言: ~~~ const steem = require("steem"); const steemid = 'steemid'; const postingKey = 'postingKey'; start(); function start() { steem.api.streamTransactions("head", function(err, result) { if (result && !err) { let txType = result.operations[0][0]; let txData = result.operations[0][1]; if (txType == "comment" && txData.parent_author == '') { upvote(txData.author,txData.permlink); reply(author,permlink); } } else { console.log("Error found", err); start(); } }); } function upvote(author,permlink){ steem.broadcast.vote(postingKey, steemid, author, permlink, 10000, function(err, result) { console.log(err, result); }); } function reply(author,permlink){ const timeStr = new Date().toISOString().replace(/[^a-zA-Z0-9]+/g, ''); const newParentPermlink = txData.parent_permlink.replace(/(-\d{8}t\d{9}z)/g, ''); var replyPermlink = 're-' + txData.author.replace(/\./g, '') + '-' + txData.permlink + '-' + new Date().toISOString().replace(/-|:|\./g, '').toLowerCase(); steem.broadcast.comment( postingKey, author, permlink, steemid, replyPermlink , "", "HELLO!", '{"app":"test"}', function(err, result) { console.log(err, result); }); } ~~~ 运行后,会自动点赞新帖并且给予“HELLO”的回复。 **特别说明,这个程序没有考虑任何点赞时机和调整点赞比例,如果你真要运行这个程序,做好VP被抽干,回复被踩,没有任何审查收益的心理准备。** 这个程序只作为参考,你可以调整一下点赞比例,点赞时机后会是一个不错的赚审查机器人。
author | ericet | ||||||
---|---|---|---|---|---|---|---|
permlink | js | ||||||
category | cn | ||||||
json_metadata | {"tags":["cn","cn-reader","whalepower","cn-stem","steem-guides","steemstem","cn-programming","build-it","esteem","esteem-cn","palnet","zzan","mediaofficials","actnearn","marlians","neoxian","lassecash","upfundme","sct","sct-cn","sct-freeboard"],"image":["https://files.steempeak.com/file/steempeak/ericet/tR4dcIIc-image.png"],"links":["https://cdn.pixabay.com/photo/2013/07/12/13/50/smiley-147407_960_720.png","https://steempeak.com/cn/@ericet/krwp-9zgk9bfvin","https://steempeak.com/cn/@ericet/js-nddsi4obip"],"app":"esteem/2.2.1-mobile","format":"markdown","community":"esteemapp"} | ||||||
created | 2019-09-16 14:18:30 | ||||||
last_update | 2019-09-16 14:18:30 | ||||||
depth | 0 | ||||||
children | 11 | ||||||
last_payout | 2019-09-23 14:18:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 2.979 HBD | ||||||
curator_payout_value | 3.262 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 3,147 | ||||||
author_reputation | 195,650,625,080,393 | ||||||
root_title | 怎么用JS写个自动点赞程序? | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 90,632,373 | ||||||
net_rshares | 18,096,578,122,345 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 124,866,512,858 | 1.94% | ||
lafona-miner | 0 | 1,752,498,604,676 | 30% | ||
tombstone | 0 | 234,800,387,646 | 1.16% | ||
delegate.lafona | 0 | 753,151,646,732 | 30% | ||
chris4210 | 0 | 21,045,359,332 | 3.24% | ||
justtryme90 | 0 | 1,090,901,545,900 | 30% | ||
eric-boucher | 0 | 12,176,483,936 | 3.24% | ||
thecryptodrive | 0 | 271,802,347,846 | 15% | ||
anwenbaumeister | 0 | 329,854,159 | 6.48% | ||
mammasitta | 0 | 216,783,198 | 0.05% | ||
good-karma | 0 | 82,511,246,155 | 8% | ||
cabi5boh | 0 | 426,065,263 | 50% | ||
raymondspeaks | 0 | 197,476,515 | 3.24% | ||
fundurian | 0 | 45,650,228,730 | 94% | ||
blueorgy | 0 | 14,763,168,306 | 4.86% | ||
mysteem | 0 | 254,140,117 | 8% | ||
lemooljiang | 0 | 339,614,051,634 | 51% | ||
ace108 | 0 | 190,308,484,573 | 8% | ||
psygambler | 0 | 392,784,531 | 3.24% | ||
lemouth | 0 | 195,636,813,510 | 30% | ||
demo | 0 | 311,254,926 | 8% | ||
tumutanzi | 0 | 36,464,613,330 | 16.28% | ||
charlie777pt | 0 | 7,714,872,209 | 5% | ||
rwilday | 0 | 37,462,300 | 100% | ||
lamouthe | 0 | 1,653,947,181 | 30% | ||
holoz0r | 0 | 2,249,506,774 | 0.64% | ||
lk666 | 0 | 2,029,956,080 | 3.24% | ||
feruz | 0 | 793,378,281 | 8% | ||
cleateles | 0 | 68,772,479 | 5% | ||
justyy | 0 | 361,958,614,460 | 14.23% | ||
curie | 0 | 2,140,271,014,411 | 6.48% | ||
techslut | 0 | 26,839,347,524 | 6% | ||
hendrikdegrote | 0 | 90,932,467,495 | 6.48% | ||
vact | 0 | 131,715,243,598 | 6.48% | ||
steemstem | 0 | 1,366,871,119,232 | 30% | ||
dashfit | 0 | 664,890,765 | 3.24% | ||
bukiland | 0 | 405,439,488 | 3.6% | ||
oleg326756 | 0 | 368,123,925 | 1.29% | ||
bring | 0 | 4,374,471,738 | 100% | ||
gangstayid | 0 | 170,920,292 | 3.24% | ||
esteemapp | 0 | 1,715,942,149,949 | 8% | ||
vodonik | 0 | 150,126,010 | 9.9% | ||
adialam | 0 | 92,261,966 | 4% | ||
dna-replication | 0 | 8,532,157,618 | 30% | ||
dimitrisp | 0 | 1,472,872,945 | 5% | ||
gmedley | 0 | 1,339,378,855 | 3.24% | ||
coldhair | 0 | 15,290,731,274 | 16.28% | ||
daniel.dalo | 0 | 184,683,946 | 3.24% | ||
goldkeys | 0 | 108,847,368 | 3.24% | ||
getrichordie | 0 | 240,947,627 | 3.24% | ||
thatsweeneyguy | 0 | 90,464,268 | 3.24% | ||
szokerobert | 0 | 199,686,029 | 1.29% | ||
htliao | 0 | 45,221,767,104 | 30% | ||
bloom | 0 | 99,741,356,396 | 30% | ||
arnel | 0 | 879,533,829 | 3.24% | ||
bitrocker2020 | 0 | 2,864,776,365 | 0.32% | ||
cryptoemperor | 0 | 11,349,073,114 | 30% | ||
jiujitsu | 0 | 5,927,280,836 | 3.24% | ||
jassennessaj | 0 | 31,097,756,917 | 50% | ||
lekang | 0 | 922,016,742 | 3.24% | ||
nuagnorab | 0 | 2,975,534,108 | 37.5% | ||
helo | 0 | 4,903,073,756 | 15% | ||
samminator | 0 | 14,600,756,570 | 15% | ||
wishmaiden | 0 | 95,279,330 | 5% | ||
bizventurer | 0 | 23,265,053,789 | 100% | ||
zerotoone | 0 | 747,641,491 | 3.24% | ||
locikll | 0 | 5,605,237,609 | 12.96% | ||
kjaeger | 0 | 68,621,233 | 50% | ||
mahdiyari | 0 | 33,603,028,715 | 15% | ||
marylaw | 0 | 43,824,277,141 | 100% | ||
lorenzor | 0 | 5,752,361,820 | 50% | ||
aboutyourbiz | 0 | 1,323,706,779 | 6.48% | ||
shenchensucc | 0 | 12,708,722,310 | 32.56% | ||
giuato | 0 | 152,568,289 | 3.24% | ||
alexander.alexis | 0 | 17,858,766,543 | 30% | ||
howtostartablog | 0 | 119,366,327 | 0.64% | ||
jayna | 0 | 1,031,610,743 | 0.97% | ||
suesa | 0 | 57,386,431,191 | 25% | ||
cryptokrieg | 0 | 1,540,775,184 | 6.48% | ||
rival | 0 | 2,953,992,199 | 2% | ||
tensor | 0 | 2,801,549,864 | 3.24% | ||
riche-gould | 0 | 115,583,901 | 3.24% | ||
zacherybinx | 0 | 145,773,213 | 6.48% | ||
destrudo | 0 | 15,278,487 | 15% | ||
hardikv | 0 | 118,967,359 | 0.5% | ||
fnux | 0 | 219,329,823 | 3.24% | ||
makrotheblack | 0 | 178,377,207 | 3.24% | ||
ludmila.kyriakou | 0 | 934,527,214 | 9% | ||
flatman | 0 | 142,540,907 | 6.48% | ||
fancybrothers | 0 | 937,933,804 | 9% | ||
samest | 0 | 92,258,113 | 7.5% | ||
analealsuarez | 0 | 290,903,384 | 50% | ||
allcapsonezero | 0 | 680,072,954 | 3.24% | ||
minnowbooster | 0 | 1,763,583,813,355 | 10% | ||
felt.buzz | 0 | 1,745,764,911 | 1.62% | ||
howo | 0 | 206,752,825,186 | 15% | ||
tsoldovieri | 0 | 2,214,370,128 | 15% | ||
neumannsalva | 0 | 1,434,613,256 | 3.24% | ||
wargof | 0 | 204,092,605 | 10% | ||
stayoutoftherz | 0 | 16,858,404,890 | 1.94% | ||
abigail-dantes | 0 | 555,201,083,518 | 30% | ||
phogyan | 0 | 181,738,895 | 3.24% | ||
zonguin | 0 | 1,861,274,270 | 7.5% | ||
prapanth | 0 | 926,632,246 | 3.24% | ||
alexzicky | 0 | 9,843,932,315 | 7.5% | ||
mountain.phil28 | 0 | 3,600,893,195 | 25% | ||
jasonbu | 0 | 12,131,833,120 | 25% | ||
opheliapoe | 0 | 90,130,834 | 3.24% | ||
coolbuddy | 0 | 0 | 1% | ||
tuoficinavirtual | 0 | 96,739,756 | 25% | ||
tanyaschutte | 0 | 129,085,007 | 3% | ||
jiangchen | 0 | 17,495,220,037 | 100% | ||
iamphysical | 0 | 14,985,139,519 | 90% | ||
zest | 0 | 469,752,225 | 15% | ||
felixrodriguez | 0 | 972,338,026 | 15% | ||
garudi | 0 | 150,038,691 | 6.48% | ||
revo | 0 | 6,709,272,984 | 6.48% | ||
azulear | 0 | 1,477,056,166 | 100% | ||
felicenavidad | 0 | 1,895,621,504 | 50% | ||
silviu93 | 0 | 4,634,292,139 | 15% | ||
psicoluigi | 0 | 334,043,425 | 50% | ||
honeysara | 0 | 280,429,473 | 1.62% | ||
mrspointm | 0 | 17,391,365,014 | 43% | ||
liumei | 0 | 4,307,370,989 | 37.5% | ||
bboyady | 0 | 385,773,035 | 2% | ||
waiyee422 | 0 | 1,023,465,795 | 16.28% | ||
dakeshi | 0 | 2,745,042,892 | 15% | ||
massivevibration | 0 | 3,648,315,676 | 5% | ||
accelerator | 0 | 6,424,754,024 | 0.36% | ||
eurodale | 0 | 308,273,712 | 3.24% | ||
cooknbake | 0 | 95,757,075 | 1.29% | ||
clweeks | 0 | 284,989,603 | 3.88% | ||
irishcoffee | 0 | 81,636,877 | 30% | ||
yellowbird | 0 | 23,714,832,171 | 100% | ||
joshman | 0 | 4,280,361,267 | 0.25% | ||
davidke20 | 0 | 6,329,932,878 | 4% | ||
rosatravels | 0 | 2,901,441,490 | 20% | ||
damzxyno | 0 | 91,121,628 | 6% | ||
superbing | 0 | 1,087,797,510 | 7.47% | ||
dokter-purnama | 0 | 426,677,108 | 3.24% | ||
erikkun28 | 0 | 0 | 1% | ||
cryptononymous | 0 | 785,454,822 | 3.24% | ||
minloulou | 0 | 4,610,072,436 | 30% | ||
dailystats | 0 | 3,161,100,031 | 7.42% | ||
nicejob | 0 | 86,106,851 | 22.5% | ||
buttcoins | 0 | 4,932,793,300 | 1.29% | ||
markmorbidity | 0 | 174,987,138 | 3.24% | ||
cryptocurrencyhk | 0 | 295,850,966 | 20% | ||
esteem.app | 0 | 1,698,931,629 | 8% | ||
joancabz | 0 | 8,798,781,296 | 100% | ||
peaceandwar | 0 | 1,015,718,968 | 3.24% | ||
enzor | 0 | 471,799,826 | 15% | ||
joendegz | 0 | 460,019,907 | 3.24% | ||
lindalex | 0 | 152,269,354 | 16.28% | ||
carloserp-2000 | 0 | 32,018,578,024 | 100% | ||
lays | 0 | 17,004,349,121 | 3.24% | ||
gra | 0 | 2,670,906,963 | 30% | ||
kimxinfo | 0 | 21,416,976,653 | 40% | ||
jianan | 0 | 19,583,004,536 | 37.5% | ||
imisstheoldkanye | 0 | 2,933,629,015 | 1% | ||
huatanzhang | 0 | 492,921,313 | 30% | ||
bluefinstudios | 0 | 673,868,799 | 1.62% | ||
aalok | 0 | 138,821,097 | 26% | ||
windowglass | 0 | 18,746,160,701 | 30% | ||
cnbuddy | 0 | 492,451,837,695 | 32.56% | ||
nileelily | 0 | 560,367,943 | 16.28% | ||
chann | 0 | 6,137,928,508 | 22% | ||
nicole-st | 0 | 663,632,302 | 3.24% | ||
teukurival | 0 | 129,564,539 | 3.24% | ||
drmake | 0 | 3,523,138,154 | 3.24% | ||
smitop | 0 | 1,783,390,455 | 100% | ||
anxin | 0 | 150,945,614 | 8.05% | ||
aboutcoolscience | 0 | 73,865,245,871 | 18% | ||
pechichemena | 0 | 223,745,234 | 1.29% | ||
amestyj | 0 | 4,422,426,150 | 100% | ||
imcesca | 0 | 13,561,234,995 | 15% | ||
sandracarrascal | 0 | 163,655,597 | 100% | ||
bitinvdig0 | 0 | 796,355,326 | 24% | ||
sireh | 0 | 154,171,230 | 0.64% | ||
itchyfeetdonica | 0 | 4,934,597,865 | 1.29% | ||
xanderslee | 0 | 331,025,015 | 6.48% | ||
brutledge | 0 | 288,211,368 | 3.24% | ||
egotheist | 0 | 387,358,552 | 3% | ||
gerel | 0 | 147,142,244 | 3.24% | ||
kenadis | 0 | 7,397,451,168 | 30% | ||
machroezar | 0 | 148,539,687 | 4% | ||
maticpecovnik | 0 | 4,496,755,531 | 12% | ||
steempsych | 0 | 7,979,150,079 | 30% | ||
robotics101 | 0 | 2,595,869,965 | 30% | ||
tristan-muller | 0 | 145,297,991 | 30% | ||
mcyusuf | 0 | 1,584,619,135 | 15% | ||
auleo | 0 | 46,472,981,355 | 85% | ||
gentleshaid | 0 | 4,114,283,857 | 10% | ||
thescubageek | 0 | 334,944,169 | 3.24% | ||
fejiro | 0 | 346,514,469 | 15% | ||
cheva | 0 | 4,491,302,489 | 75% | ||
nunesso | 0 | 150,736,940 | 50% | ||
danaedwards | 0 | 617,609,843 | 6.48% | ||
ivymalifred | 0 | 1,019,840,164 | 50% | ||
sco | 0 | 29,287,111,841 | 30% | ||
adetola | 0 | 119,660,218 | 30% | ||
douglimarbalzan | 0 | 340,113,772 | 100% | ||
ennyta | 0 | 906,796,380 | 50% | ||
rharphelle | 0 | 100,266,400 | 25% | ||
gordon92 | 0 | 407,357,771 | 3.24% | ||
bitcoinportugal | 0 | 497,965,350 | 50% | ||
stahlberg | 0 | 1,419,900,899 | 3.24% | ||
gabrielatravels | 0 | 358,196,782 | 1.62% | ||
cordeta | 0 | 137,882,070 | 3.24% | ||
ooairbb | 0 | 168,029,140 | 100% | ||
reizak | 0 | 526,599,275 | 2.59% | ||
vjap55 | 0 | 850,112,125 | 100% | ||
zlatkamrs | 0 | 358,807,987 | 6.15% | ||
monie | 0 | 425,906,397 | 100% | ||
eliaschess333 | 0 | 11,135,711,103 | 50% | ||
shoganaii | 0 | 458,238,970 | 15% | ||
darkiche | 0 | 140,095,708 | 15% | ||
ydavgonzalez | 0 | 501,445,307 | 5% | ||
payger | 0 | 220,424,920 | 3.24% | ||
intrepidphotos | 0 | 410,060,364,428 | 15% | ||
langford | 0 | 552,238,523 | 30% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
hijosdelhombre | 0 | 5,808,799,341 | 7.5% | ||
jlmol7 | 0 | 81,955,922 | 30% | ||
shinedojo | 0 | 754,870,104 | 6.48% | ||
fragmentarion | 0 | 7,890,459,274 | 25% | ||
gaming.yer | 0 | 399,335,915 | 100% | ||
bennettitalia | 0 | 458,709,208 | 1.62% | ||
christianyocte | 0 | 76,048,575 | 0.64% | ||
suesa-random | 0 | 13,323,623,450 | 50% | ||
giornalista | 0 | 152,749,083 | 4.5% | ||
steem-familia | 0 | 397,991,120 | 100% | ||
lacher-prise | 0 | 91,099,372 | 15% | ||
terrylovejoy | 0 | 4,960,081,163 | 12% | ||
talli-art | 0 | 88,628,795 | 6.48% | ||
jcalero | 0 | 237,145,491 | 6.48% | ||
onin91 | 0 | 153,734,913 | 30% | ||
olajidekehinde | 0 | 147,733,682 | 15% | ||
real2josh | 0 | 254,703,927 | 15% | ||
steepup | 0 | 727,022,215 | 12% | ||
gribouille | 0 | 1,089,147,463 | 30% | ||
debbietiyan | 0 | 126,115,495 | 3.24% | ||
adanbalzan | 0 | 288,107,083 | 100% | ||
traviseric | 0 | 224,407,937 | 50% | ||
john371911 | 0 | 169,641,975,753 | 70% | ||
woolfe19861008 | 0 | 123,296,082 | 8.05% | ||
yrmaleza | 0 | 361,008,314 | 50% | ||
stemng | 0 | 9,973,942,022 | 15% | ||
mininthecity | 0 | 319,215,492 | 5.18% | ||
edprivat | 0 | 164,522,742 | 0.1% | ||
grizzle | 0 | 295,786,657 | 1% | ||
josalarcon2 | 0 | 409,588,528 | 6.48% | ||
ideas-abstractas | 0 | 381,629,566 | 6.48% | ||
mondodidave73 | 0 | 70,818,843 | 4.5% | ||
kingabesh | 0 | 551,771,999 | 15% | ||
evangelista.yova | 0 | 391,569,051 | 100% | ||
miguelangel2801 | 0 | 768,683,316 | 50% | ||
dailychina | 0 | 2,946,845,610 | 7.45% | ||
didic | 0 | 10,319,561,167 | 20% | ||
niko3d | 0 | 264,822,384 | 3.24% | ||
jenniferjulieth | 0 | 333,961,460 | 100% | ||
operahoser | 0 | 566,306,388 | 0.97% | ||
cadawg | 0 | 812,785,858 | 0.64% | ||
emiliomoron | 0 | 6,602,971,127 | 50% | ||
nostalgic1212 | 0 | 23,368,084,867 | 31% | ||
galam | 0 | 142,066,363 | 10.5% | ||
dexterdev | 0 | 864,141,334 | 15% | ||
intellihandling | 0 | 1,237,053,922 | 50% | ||
oghie | 0 | 868,148,179 | 50% | ||
sisygoboom | 0 | 10,828,078,774 | 6.48% | ||
geopolis | 0 | 1,978,855,850 | 30% | ||
ajfernandez | 0 | 262,528,892 | 100% | ||
dongfengman | 0 | 791,390,498 | 8.05% | ||
ameliabartlett | 0 | 120,196,596 | 0.97% | ||
madefrance | 0 | 1,349,630,303 | 3.24% | ||
robertbira | 0 | 3,205,417,898 | 7.5% | ||
the.chiomz | 0 | 86,016,401 | 8.25% | ||
teekingtv | 0 | 526,821,646 | 7.5% | ||
alexdory | 0 | 15,801,875,006 | 15% | ||
beladro | 0 | 69,098,009 | 3.24% | ||
vegan.niinja | 0 | 393,957,784 | 3.24% | ||
cyprianj | 0 | 702,205,192 | 15% | ||
shentrading | 0 | 2,032,986,359 | 29.3% | ||
francostem | 0 | 4,151,818,289 | 30% | ||
ivan-g | 0 | 847,820,860 | 3.24% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
caseygrimley | 0 | 227,970,912 | 3.24% | ||
giovaabbatichio | 0 | 469,554,005 | 6.48% | ||
croctopus | 0 | 1,417,103,432 | 100% | ||
zipporah | 0 | 2,044,705,167 | 1.29% | ||
steemizm | 0 | 588,110,038 | 100% | ||
also.einstein | 0 | 3,206,192,960 | 100% | ||
ingmarvin | 0 | 346,168,725 | 100% | ||
joelagbo | 0 | 193,630,445 | 7.5% | ||
emmanuel293 | 0 | 103,833,861 | 25% | ||
cryptofuwealth | 0 | 93,279,413 | 11% | ||
ethanlee | 0 | 189,314,864 | 6.51% | ||
kothy | 0 | 95,035,721 | 3.24% | ||
norwegianbikeman | 0 | 168,758,462 | 3.24% | ||
alix96 | 0 | 287,910,061 | 100% | ||
ambitiouslife | 0 | 376,569,566 | 3.24% | ||
positiveninja | 0 | 1,012,024,230 | 3.24% | ||
davinci.witness | 0 | 104,249,126,606 | 30% | ||
satren | 0 | 23,350,577,277 | 10% | ||
kymio | 0 | 512,690,602 | 3.75% | ||
ericet | 0 | 52,497,802,518 | 100% | ||
phaazer1 | 0 | 70,776,382 | 3.24% | ||
tomastonyperez | 0 | 15,126,313,613 | 50% | ||
bil.prag | 0 | 298,058,654 | 0.32% | ||
jingis07 | 0 | 157,871,921 | 3.24% | ||
elvigia | 0 | 10,661,931,585 | 50% | ||
scoora82 | 0 | 0 | 24% | ||
sanderjansenart | 0 | 372,062,305 | 0.64% | ||
sereze | 0 | 260,515,789 | 3.24% | ||
juli1 | 0 | 259,615,429 | 74% | ||
lesmouths-travel | 0 | 1,539,855,559 | 19.5% | ||
aellly | 0 | 1,145,499,245 | 2% | ||
stmdev | 0 | 142,367,718 | 1% | ||
dera123 | 0 | 10,866,806,536 | 10% | ||
cjunros | 0 | 218,643,234 | 3.24% | ||
mini-zephalexia | 0 | 409,827,130 | 6.4% | ||
markko | 0 | 10,987,286 | 50% | ||
jsxchemistry | 0 | 109,444,155 | 6.48% | ||
luiscd8a | 0 | 98,970,950 | 80% | ||
c0wtschpotato | 0 | 475,827,479 | 3.24% | ||
chuuuckie | 0 | 400,105,734 | 0.81% | ||
de-stem | 0 | 12,079,242,082 | 29.7% | ||
elsll | 0 | 148,326,675 | 6.48% | ||
geadriana | 0 | 193,004,693 | 3.88% | ||
elpdl | 0 | 413,073,191 | 100% | ||
serylt | 0 | 3,863,254,267 | 29.4% | ||
bavi | 0 | 249,257,338 | 3.24% | ||
spaghettiscience | 0 | 11,701,582,680 | 15% | ||
josedelacruz | 0 | 6,472,898,238 | 50% | ||
joseangelvs | 0 | 880,754,877 | 100% | ||
dearw | 0 | 3,613,959,404 | 3.24% | ||
mariusfebruary | 0 | 231,768,122,508 | 1.94% | ||
outtheshellvlog | 0 | 864,864,222 | 3.24% | ||
majapesi | 0 | 245,455,250 | 50% | ||
kendallron | 0 | 78,086,577 | 6.48% | ||
menoski | 0 | 1,156,723,080 | 7.5% | ||
erickyoussif | 0 | 332,713,560 | 100% | ||
andrewma | 0 | 8,254,190,049 | 50% | ||
michaelwrites | 0 | 369,424,131 | 15% | ||
indigoocean | 0 | 5,849,705,119 | 3.24% | ||
phage93 | 0 | 4,394,705,104 | 7.5% | ||
apteacher | 0 | 108,025,413 | 1.29% | ||
deholt | 0 | 1,262,885,324 | 25.5% | ||
plgonzalezrx8 | 0 | 87,116,009 | 3.24% | ||
softmetal | 0 | 11,120,482,383 | 20% | ||
davinci.polyglot | 0 | 244,127,200 | 30% | ||
ogrish2011 | 0 | 128,299,474 | 100% | ||
romeskie | 0 | 748,461,227 | 3.24% | ||
liuzg | 0 | 6,385,692,776 | 30% | ||
musicvoter | 0 | 4,803,502,666 | 1% | ||
venzam | 0 | 80,247,712 | 3.24% | ||
cryptomaniacsgr | 0 | 334,252,884 | 3% | ||
goodway | 0 | 228,465,804 | 1% | ||
ntowl | 0 | 226,911,820 | 1.94% | ||
nigerian-yogagal | 0 | 157,756,062 | 3.24% | ||
anomalogy | 0 | 334,312,079 | 4.86% | ||
stevenwood | 0 | 73,603,671 | 1.29% | ||
temitayo-pelumi | 0 | 2,314,933,564 | 30% | ||
hmayak | 0 | 3,308,621,884 | 37.5% | ||
qberryfarms | 0 | 107,143,785 | 3.24% | ||
andrick | 0 | 819,902,572 | 50% | ||
archisteem | 0 | 3,602,917,295 | 7.5% | ||
sweet-jenny8 | 0 | 1,545,955,360 | 8.03% | ||
yusvelasquez | 0 | 1,585,498,620 | 50% | ||
shookriya | 0 | 121,366,587 | 1.43% | ||
doctor-cog-diss | 0 | 1,112,925,177 | 30% | ||
davinci.times | 0 | 5,708,989,163 | 30% | ||
alexworld | 0 | 408,925,006 | 25% | ||
gracelbm | 0 | 163,000,866 | 3.24% | ||
marcuz | 0 | 691,943,836 | 15% | ||
frost1903 | 0 | 14,759,277 | 50% | ||
pgr | 0 | 2,071,321,387 | 100% | ||
itastem | 0 | 12,692,243,312 | 30% | ||
ronbong | 0 | 835,739,480 | 37.5% | ||
acont | 0 | 1,511,917,432 | 50% | ||
china-mobile | 0 | 130,177,275 | 10% | ||
niouton | 0 | 283,442,667 | 1.29% | ||
elimao | 0 | 339,773,881 | 100% | ||
schroders | 0 | 2,437,488,785 | 1.94% | ||
anaestrada12 | 0 | 9,860,874,918 | 100% | ||
sagesigma | 0 | 239,163,285 | 1% | ||
robertyan | 0 | 4,727,492,873 | 45% | ||
hardaeborla | 0 | 234,091,501 | 3.24% | ||
xiaoyuanwmm | 0 | 1,057,881,094 | 100% | ||
yorgermadison | 0 | 274,151,130 | 100% | ||
alexjunior | 0 | 250,732,200 | 100% | ||
alamin33 | 0 | 318,336,351 | 0.97% | ||
digital.mine | 0 | 184,746,138,167 | 20% | ||
somegaming | 0 | 161,518,873 | 6.48% | ||
davinci.art | 0 | 630,884,255 | 30% | ||
naomipangolin | 0 | 115,552,328 | 3.24% | ||
moneybaby | 0 | 2,003,538,830 | 5% | ||
cryptocopy | 0 | 74,113,902 | 3.24% | ||
urme33 | 0 | 71,923,245 | 1% | ||
antunez25 | 0 | 339,699,319 | 100% | ||
haf67 | 0 | 301,010,022 | 100% | ||
chavas | 0 | 368,170,360 | 100% | ||
reconstitution | 0 | 267,315,079 | 6.48% | ||
longer | 0 | 585,627,480 | 50% | ||
blewitt | 0 | 6,327,846,156 | 0.45% | ||
sbi6 | 0 | 98,358,779,735 | 31.22% | ||
kafupraise | 0 | 103,268,744 | 34% | ||
biomimi | 0 | 185,736,010 | 40% | ||
ibk-gabriel | 0 | 207,802,976 | 15% | ||
drsensor | 0 | 2,078,889,519 | 24% | ||
lulucy | 0 | 314,439,732 | 100% | ||
wanggang | 0 | 330,934,715 | 6.51% | ||
hhtb | 0 | 279,688,576 | 3.24% | ||
fiveguys | 0 | 570,946,261 | 100% | ||
fernando.lubezki | 0 | 109,627,247 | 5.83% | ||
marcoy2j | 0 | 470,427,881 | 32.56% | ||
ilovecryptopl | 0 | 933,400,547 | 5.18% | ||
purelyscience | 0 | 201,447,392 | 15% | ||
eglinson | 0 | 258,394,670 | 100% | ||
rokairforce | 0 | 3,085,759,364 | 100% | ||
uzcateguiazambra | 0 | 354,293,773 | 100% | ||
yomismosoy | 0 | 577,155,180 | 50% | ||
ashfaaaq | 0 | 75,772,310 | 3.24% | ||
casiloko | 0 | 236,012,822 | 50% | ||
ubaldonet | 0 | 8,129,157,620 | 65% | ||
shine.wong | 0 | 3,047,028,931 | 75% | ||
asmeira | 0 | 407,211,509 | 100% | ||
garrillo | 0 | 264,663,988 | 100% | ||
lillywilton | 0 | 623,426,730 | 20% | ||
steam.erotic | 0 | 230,870,482 | 15% | ||
call-me-howie | 0 | 76,033,166 | 3.24% | ||
laiyuehta | 0 | 139,453,857 | 5.77% | ||
hansmast | 0 | 493,555,990 | 3.24% | ||
turtlegraphics | 0 | 655,423,172 | 7.36% | ||
sunai | 0 | 9,393,294,497 | 45% | ||
deividluchi | 0 | 79,523,811 | 3.24% | ||
wstanley226 | 0 | 61,768,969 | 50% | ||
gpcx86 | 0 | 108,748,365 | 2% | ||
amart29 | 0 | 1,603,120,090 | 10% | ||
reinaseq | 0 | 5,705,068,001 | 100% | ||
dronegraphica | 0 | 860,211,077 | 3.24% | ||
honeycup-waters | 0 | 143,013,580 | 3.24% | ||
yaelg | 0 | 2,550,685,899 | 5% | ||
pvinny69 | 0 | 398,676,245 | 3.24% | ||
kylealex | 0 | 4,538,352,708 | 10% | ||
stooner | 0 | 205,806,353 | 50% | ||
circlepoint | 0 | 616,814,592 | 100% | ||
davinci.pay | 0 | 3,664,936,409 | 15% | ||
pfernandezpetit | 0 | 277,072,883 | 100% | ||
mgarrillogonzale | 0 | 315,309,231 | 100% | ||
rubenp | 0 | 465,063,954 | 100% | ||
jeferc | 0 | 423,151,535 | 100% | ||
danlipert | 0 | 96,348,663 | 3.24% | ||
julian2013 | 0 | 9,610,882,078 | 15% | ||
evelaurie | 0 | 75,561,007 | 30% | ||
yalehazlitt | 0 | 75,409,245 | 30% | ||
bunnymandy | 0 | 529,737,243 | 100% | ||
shadown99 | 0 | 112,573,094 | 3.24% | ||
loveforlove | 0 | 2,706,851,370 | 30% | ||
fran.frey | 0 | 3,896,166,400 | 50% | ||
perpetuum-lynx | 0 | 662,886,017 | 29.4% | ||
edwardchan | 0 | 2,054,232,536 | 100% | ||
jrevilla | 0 | 81,877,551 | 50% | ||
changxiu | 0 | 1,216,169,258 | 16.28% | ||
annaabi | 0 | 624,161,728 | 3.24% | ||
sampraise | 0 | 2,127,171,625 | 75% | ||
wongmanman | 0 | 1,006,047,931 | 100% | ||
emperorhassy | 0 | 948,884,968 | 15% | ||
smartkid809 | 0 | 71,883,874 | 32% | ||
diyanti86 | 0 | 72,545,949 | 3.24% | ||
moniroy | 0 | 108,335,252 | 50% | ||
davinci.vote | 0 | 319,128,691 | 30% | ||
skorup87 | 0 | 21,322,599 | 12% | ||
trang | 0 | 660,144,842 | 3.24% | ||
stem-espanol | 0 | 62,709,506,751 | 100% | ||
praditya | 0 | 2,810,610,344 | 24% | ||
laissez-faire | 0 | 18,429,929 | 100% | ||
kissfirer | 0 | 76,938,788 | 10% | ||
yashshah991 | 0 | 61,524,845 | 50% | ||
aleestra | 0 | 2,159,790,176 | 80% | ||
palasatenea | 0 | 482,803,163 | 3.24% | ||
rhethypo | 0 | 329,194,840 | 3.24% | ||
knightbjj | 0 | 310,857,891 | 4.86% | ||
predict-crypto | 0 | 167,023,535 | 0.12% | ||
the.success.club | 0 | 1,642,152,813 | 3.24% | ||
macoolette | 0 | 23,232,619,848 | 3.24% | ||
javier.dejuan | 0 | 6,897,914,298 | 30% | ||
bernardwest | 0 | 541,801,077 | 12.96% | ||
annepink | 0 | 14,584,207,086 | 50% | ||
witnesstools | 0 | 630,566,273 | 7.36% | ||
pzky9614 | 0 | 82,197,182 | 16.28% | ||
cherryzz | 0 | 6,031,407,693 | 37.5% | ||
faithfullwills | 0 | 63,285,053 | 85% | ||
dna-polymerase | 0 | 129,579,009 | 30% | ||
dna-ligase | 0 | 129,578,980 | 30% | ||
dna-helicase | 0 | 129,578,965 | 30% | ||
dna-primase | 0 | 129,559,218 | 30% | ||
sliding-clamp | 0 | 129,579,093 | 30% | ||
clamp-loader | 0 | 129,579,027 | 30% | ||
dna-gyrase | 0 | 129,578,985 | 30% | ||
rna-polymerase | 0 | 129,579,094 | 30% | ||
ribosome | 0 | 129,578,981 | 30% | ||
teemike | 0 | 81,115,618 | 7.5% | ||
hirally | 0 | 339,703,455 | 100% | ||
emynb | 0 | 256,105,301 | 100% | ||
scienze | 0 | 7,847,075,547 | 15% | ||
scienza | 0 | 7,925,332,160 | 15% | ||
teamcn-shop | 0 | 2,216,490,813 | 7.5% | ||
cryptorunway | 0 | 58,996,029 | 50% | ||
thoor | 0 | 68,836,908 | 20% | ||
desikaamukkahani | 0 | 146,909,313 | 6.48% | ||
reverseacid | 0 | 477,272,441 | 3.24% | ||
giulyfarci52 | 0 | 1,652,513,616 | 50% | ||
ilovecoding | 0 | 625,344,077 | 7.36% | ||
andydream | 0 | 91,808,956 | 3.24% | ||
zeldacroft | 0 | 72,946,916 | 3.24% | ||
alom8 | 0 | 96,199,558 | 3.24% | ||
nmcdougal94 | 0 | 218,209,976 | 1.29% | ||
raoufwilly | 0 | 83,063,294 | 1.94% | ||
deadcountry | 0 | 125,059,248 | 3.24% | ||
photo-it | 0 | 125,576,598 | 15% | ||
alvin0617 | 0 | 562,901,312 | 3.24% | ||
solarphasing | 0 | 141,431,469 | 2% | ||
akireuna | 0 | 8,636,051,269 | 15% | ||
the-rhapsodist | 0 | 17,096,160,773 | 15% | ||
cowpatty | 0 | 84,522,636 | 3.24% | ||
stem.witness | 0 | 25,761,190,866 | 30% | ||
sanjib000 | 0 | 0 | 99% | ||
empressteemah | 0 | 1,376,689,759 | 15% | ||
hdu | 0 | 3,996,907,784 | 0.91% | ||
reconspam | 0 | 76,160,943 | 6.48% | ||
bott | 0 | 0 | 100% | ||
steemfuckeos | 0 | 394,471,985 | 7.36% | ||
alex-hm | 0 | 806,799,129 | 50% | ||
wilmer14molina | 0 | 1,085,649,219 | 50% | ||
zerofive | 0 | 474,603,348 | 75% | ||
eugenialobo | 0 | 387,950,245 | 100% | ||
ballesteroj | 0 | 278,823,440 | 100% | ||
jcmontilva | 0 | 356,437,361 | 100% | ||
rodriguezr | 0 | 296,600,055 | 100% | ||
marbely20 | 0 | 334,524,184 | 100% | ||
moyam | 0 | 405,847,797 | 100% | ||
emilycg | 0 | 291,894,722 | 100% | ||
darys | 0 | 357,732,766 | 100% | ||
sibaja | 0 | 363,592,455 | 100% | ||
balcej | 0 | 405,794,914 | 100% | ||
lmanjarres | 0 | 345,562,011 | 100% | ||
anaka | 0 | 406,669,438 | 100% | ||
benhurg | 0 | 413,970,620 | 100% | ||
judisa | 0 | 407,164,960 | 100% | ||
juddarivv | 0 | 405,847,123 | 100% | ||
mariamo | 0 | 315,329,473 | 100% | ||
kimmorales | 0 | 350,090,827 | 100% | ||
loraine25 | 0 | 334,213,037 | 100% | ||
aristotle.team | 0 | 6,103,106,236 | 10% | ||
kingnosa | 0 | 71,120,934 | 50% | ||
ss25648 | 0 | 93,684,883 | 16.28% | ||
neolinkhati | 0 | 10,226,327 | 10% | ||
morningshine | 0 | 7,770,850,425 | 37.5% | ||
jtm.support | 0 | 2,224,442,650 | 30% | ||
flodor | 0 | 170,018,255 | 10% | ||
cn-activity | 0 | 10,561,692,758 | 75% | ||
travisung | 0 | 17,594,280,925 | 3.24% | ||
cameravisual | 0 | 29,245,092,447 | 50% | ||
moneybabe | 0 | 69,263,401 | 50% | ||
crowdwitness | 0 | 14,538,594,166 | 15% | ||
amin-ove | 0 | 98,773,175 | 50% | ||
bunchtale | 0 | 43,479,491 | 25% | ||
hairgistix | 0 | 3,079,838,726 | 3.24% | ||
goodcontentbot | 0 | 48,575,388 | 50% | ||
huilco | 0 | 377,366,140 | 100% | ||
hanyseek | 0 | 54,355,757 | 50% | ||
khairulzaman | 0 | 258,881,306 | 5% | ||
herculean | 0 | 69,866,547 | 50% | ||
pulleyhead | 0 | 347,304,848 | 6.48% | ||
cooperfelix | 0 | 4,592,957,517 | 15% | ||
booster.rooster | 0 | 0 | 100% | ||
mia-cc | 0 | 1,306,957,368 | 100% | ||
allthetimer | 0 | 63,703,460 | 98% | ||
peter-bot | 0 | 2,956,312,040 | 100% | ||
monsuta | 0 | 228,618,329 | 100% | ||
sternekoechin | 0 | 69,229,993 | 10% | ||
alexgamer | 0 | 106,977,408 | 50% | ||
bluemaskman | 0 | 460,089,815 | 3.24% | ||
donasys | 0 | 44,328,757 | 50% | ||
breakout101 | 0 | 745,956,495 | 3.24% | ||
mtfmohammad | 0 | 110,043,588 | 25% | ||
igame | 0 | 375,775,773 | 24.75% | ||
chrisluke | 0 | 202,715,081 | 26% | ||
newton666 | 0 | 477,288,299 | 15% | ||
joannar | 0 | 115,430,655 | 25% | ||
pflanzenlilly | 0 | 234,775,941 | 50% | ||
sapphire.app | 0 | 0 | 50% | ||
hashzone91 | 0 | 110,200,487 | 3.24% | ||
sumotori | 0 | 975,028,919 | 75% | ||
naturalproducts | 0 | 124,102,912,868 | 25% | ||
alexmonster | 0 | 110,489,758 | 50% | ||
smdragon | 0 | 110,918,890 | 50% | ||
gutenmorganism | 0 | 897,643,340 | 50% | ||
theinspiration | 0 | 404,531,585 | 100% | ||
faberleggenda | 0 | 395,679,063 | 100% | ||
epic4chris | 0 | 543,434,759 | 100% | ||
mohaaking | 0 | 151,548,834 | 50% | ||
gustavoagt | 0 | 263,743,031 | 97% | ||
tina3721 | 0 | 1,541,761,220 | 16.28% | ||
brendanweinhold | 0 | 0 | 1.73% | ||
vaccinusveritas | 0 | 3,419,411,535 | 50% | ||
celine-robichaud | 0 | 22,808,616 | 24% | ||
coredump | 0 | 0 | 3% | ||
epicdice | 0 | 20,577,683,418 | 1.94% | ||
bitcoingodmode | 0 | 82,371,673 | 24% | ||
c3r34lk1ll3r | 0 | 118,688,828 | 6.48% | ||
maclevis | 0 | 116,046,578 | 3.24% | ||
thetechspot | 0 | 243,251,744 | 26% | ||
suman156 | 0 | 29,708,799 | 10% | ||
deeanndmathews | 0 | 407,787,020 | 3.24% | ||
steem-guides | 0 | 357,706,413 | 100% | ||
iran12 | 0 | 0 | 5% | ||
sembdelgado | 0 | 116,440,332 | 50% | ||
jcarvoting | 0 | 1,332,057,846 | 50% | ||
llh0519 | 0 | 1,025,319,734 | 37.5% | ||
hector.rodriguez | 0 | 0 | 100% | ||
juliantabaresph | 0 | 182,031,714 | 6.48% | ||
btcmillennial | 0 | 260,968,851,091 | 100% | ||
yarak | 0 | 209,023,291 | 100% | ||
kgame | 0 | 7,177,272,848 | 100% | ||
jackfitzgerald | 0 | 234,440,485 | 50% | ||
mojunwei | 0 | 101,794,935 | 26.04% | ||
ying82 | 0 | 2,241,443,780 | 100% | ||
afarina46 | 0 | 807,329,393 | 15% | ||
reitsportdokus | 0 | 53,820,050 | 3.24% | ||
sct.tom | 0 | 6,559,669,364 | 30% | ||
sct.biz | 0 | 21,795,142,755 | 100% | ||
metsamafia | 0 | 76,591,561 | 3.24% | ||
koei | 0 | 1,208,414,000 | 45% | ||
hugyo | 0 | 364,997,821 | 100% | ||
teamcn-sct | 0 | 233,516,698 | 75% | ||
map10k | 0 | 4,015,031,307 | 1.27% | ||
yysb | 0 | 2,405,890,717 | 100% | ||
inaction | 0 | 2,536,353,629 | 100% | ||
crimcrim | 0 | 408,840,946 | 50% | ||
sct.teamcn | 0 | 366,131,392 | 75% | ||
ggsggr | 0 | 107,397,400 | 4.53% | ||
psyo | 0 | 103,590,591 | 3.24% | ||
dera123pal | 0 | 4,245,692 | 25% | ||
dontdieinternet | 0 | 168,326,340 | 3.24% | ||
zzan.co14 | 0 | 747,076,818 | 100% | ||
zzan.co16 | 0 | 362,801,120 | 100% | ||
zzan.co17 | 0 | 214,677,312 | 40% | ||
cn-sct | 0 | 61,408,832,024 | 100% | ||
sumd | 0 | 148,020,872 | 100% | ||
hertz.actn | 0 | 652,687,646 | 100% | ||
cn-mot | 0 | 1,341,757,334 | 100% | ||
cn-marlians | 0 | 37,925,980,464 | 100% | ||
hykwf678233 | 0 | 638,441,994 | 100% | ||
liambu | 0 | 693,666,161 | 12.5% | ||
gggjj | 0 | 1,557,899,742 | 50% | ||
poppie-schultz | 0 | 108,398,048 | 10% | ||
abh12345.marlian | 0 | 0 | 5.03% | ||
cn-actnearn | 0 | 1,096,491,283 | 100% | ||
abh12345.neox | 0 | 0 | 5.03% | ||
sbi-tokens | 0 | 18,551,054 | 1.73% | ||
tuerca | 0 | 150,107,543 | 25% | ||
ericetchen | 0 | 2,220,370,871 | 2.36% | ||
fantail | 0 | 1,776,059,622 | 100% | ||
mk-marlians-tkn | 0 | 412,939,524 | 14.58% | ||
arm27312 | 0 | 48,591,111 | 50% | ||
trevorlp97 | 0 | 557,081,925 | 50% | ||
thewhitelist | 0 | 99,035,413 | 5% | ||
brumar | 0 | 275,174,727 | 100% | ||
steem.consultant | 0 | 146,836,103 | 1.29% | ||
anonymousman1 | 0 | 2,052,562,255 | 50% | ||
build-it.curator | 0 | 397,771,569,449 | 99% | ||
annzhao | 0 | 1,539,023,542 | 100% | ||
joshmania | 0 | 13,463,703,730 | 29.7% | ||
steemstem-trig | 0 | 2,326,157,157 | 30% | ||
cn-build | 0 | 0 | 0% |
Hi, @ericet! Thank you for using the #build-it tag. This post has been rewarded by @build-it.curator with BUILD tokens in the form of an upvote. [Build-it](https://www.build-it.io/trending) is a new tribe on the steem blockchain that serves as a central hub for DIY contents on steemit. We encourage steemians to post their DIY articles via our [website.](https://www.build-it.io/trending) Have a question? Join us on [Discord](https://discord.gg/XW5ER8E) and [telegram](https://t.me/build_it_diy) This project is run and supported by our witness [@gulfwaves.net](https://steempeak.com/@gulfwaves.net). If you like what we do, [vote for us as a witness](https://steemconnect.com/sign/account-witness-vote?witness=gulfwaves.net&approve=1) on the steem blockchain.
author | build-it.assist |
---|---|
permlink | pxyx9v |
category | cn |
json_metadata | {"tags":["cn","build-it"],"users":["ericet","build-it.curator"],"links":["https://www.build-it.io/trending","https://discord.gg/XW5ER8E","https://t.me/build_it_diy","https://steempeak.com/@gulfwaves.net","https://steemconnect.com/sign/account-witness-vote?witness=gulfwaves.net&approve=1"],"app":"buildit/0.1"} |
created | 2019-09-17 09:05:57 |
last_update | 2019-09-17 09:05:57 |
depth | 1 |
children | 1 |
last_payout | 2019-09-24 09: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 | 766 |
author_reputation | 216,046,753,962 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,658,330 |
net_rshares | 0 |
author | ericet |
---|---|
permlink | re-build-itassist-pxz7p7 |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.16.1"} |
created | 2019-09-17 12:51:06 |
last_update | 2019-09-17 12:51:06 |
depth | 2 |
children | 0 |
last_payout | 2019-09-24 12:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 195,650,625,080,393 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,663,176 |
net_rshares | 111,090,447,698 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 110,415,796,601 | 24.55% | ||
cn-build | 0 | 674,651,097 | 100% |
你那里天气如何?新人吗?[《steemit指南》](http://steemh.org/)拿一份吧,以免迷路; 另外一定要去 @team-cn 的新手村看看,超级热闹的大家庭。倘若你想让我隐形,请回复“取消”。
author | cnbuddy |
---|---|
permlink | re-ericet-js-20190916t144340745z |
category | cn |
json_metadata | "" |
created | 2019-09-16 14:43:42 |
last_update | 2019-09-16 14:43:42 |
depth | 1 |
children | 0 |
last_payout | 2019-09-23 14:43: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 | 105 |
author_reputation | -1,449,160,991,441 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,633,095 |
net_rshares | 0 |
Thanks for using **eSteem**! <br>Your post has been voted as a part of [eSteem encouragement program](https://steemit.com/esteem/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! Install [Android](https://play.google.com/store/apps/details?id=app.esteem.mobile.android), [iOS](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1451896376&mt=8) Mobile app or [Windows, Mac, Linux](https://github.com/esteemapp/esteem-surfer/releases) Surfer app, if you haven't already!<br>Learn more: https://esteem.app <br>Join our discord: https://discord.gg/8eHupPq
author | esteemapp |
---|---|
permlink | re-2019916t1626363z |
category | cn |
json_metadata | {"tags":["esteem"],"app":"esteem/2.0-welcome","format":"markdown+html","community":"esteem.app"} |
created | 2019-09-16 14:26:36 |
last_update | 2019-09-16 14:26:36 |
depth | 1 |
children | 0 |
last_payout | 2019-09-23 14:26: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 | 601 |
author_reputation | 420,443,679,514,793 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,632,595 |
net_rshares | 0 |
加油!@ericet, 来自鸽子在Marlians的支持。
author | inaction |
---|---|
permlink | re-js-20190916t143626z |
category | cn |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2019-09-16 14:36:27 |
last_update | 2019-09-16 14:36:27 |
depth | 1 |
children | 0 |
last_payout | 2019-09-23 14:36: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 | 30 |
author_reputation | 98,894,156,169 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,632,899 |
net_rshares | 2,545,578 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 2,545,578 | 10% |
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center> <br/> </div> This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @curie and @minnowbooster.<br /> If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br /> Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
author | steemstem |
---|---|
permlink | re-ericet-js-20190918t200321455z |
category | cn |
json_metadata | {"app":"bloguable-bot"} |
created | 2019-09-18 20:03:33 |
last_update | 2019-09-18 20:03:33 |
depth | 1 |
children | 0 |
last_payout | 2019-09-25 20:03: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 | 1,050 |
author_reputation | 262,017,435,115,313 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,708,434 |
net_rshares | 0 |
加油!村长
author | wherein |
---|---|
permlink | pxyd6i |
category | cn |
json_metadata | {"tags":["cn","palnet","zzan","mediaofficials","actnearn","marlians","neoxian","lassecash","upfundme","sct","sct-cn","sct-freeboard"],"app":"steemcn/0.1"} |
created | 2019-09-17 01:51:54 |
last_update | 2019-09-17 01:51:54 |
depth | 1 |
children | 1 |
last_payout | 2019-09-24 01: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 | 5 |
author_reputation | 57,671,186,137,282 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,649,508 |
net_rshares | 24,383,847 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 24,383,847 | 10% |
谢谢 Posted using [Partiko iOS](https://partiko.app/referral/ericet)
author | ericet |
---|---|
permlink | ericet-re-wherein-pxyd6i-20190917t015548823z |
category | cn |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-09-17 01:55:48 |
last_update | 2019-09-17 01:55:48 |
depth | 2 |
children | 0 |
last_payout | 2019-09-24 01:55: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 | 67 |
author_reputation | 195,650,625,080,393 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,649,577 |
net_rshares | 692,371,411 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 692,371,411 | 100% |
程序就是 天书 😳
author | yellowbird |
---|---|
permlink | yellowbird-re-ericet-js-20190916t142650485z |
category | cn |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-16 14:26:51 |
last_update | 2019-09-16 14:27:06 |
depth | 1 |
children | 1 |
last_payout | 2019-09-23 14:26: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 | 9 |
author_reputation | 117,611,750,601,828 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,632,603 |
net_rshares | 14,093,595 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 14,093,595 | 19% |
其实和学外语一样,知道基本语法就可以写了。
author | ericet |
---|---|
permlink | re-yellowbird-pxxi3u |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.16.1"} |
created | 2019-09-16 14:40:42 |
last_update | 2019-09-16 14:40:42 |
depth | 2 |
children | 0 |
last_payout | 2019-09-23 14:40: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 | 21 |
author_reputation | 195,650,625,080,393 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,633,019 |
net_rshares | 117,086,733 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 117,086,733 | 100% |
加油!@ericet 鸽子在mediaofficials支持你。
author | yysb |
---|---|
permlink | re-js-20190916t143833z |
category | cn |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2019-09-16 14:38:33 |
last_update | 2019-09-16 14:38:33 |
depth | 1 |
children | 0 |
last_payout | 2019-09-23 14:38: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 | 33 |
author_reputation | 96,341,621,268 |
root_title | 怎么用JS写个自动点赞程序? |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,632,956 |
net_rshares | 2,593,749 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cn-build | 0 | 2,593,749 | 10% |