<div class="text-justify"> This is in response to @timcliff's <a href="https://steemit.com/steem/@timcliff/steem-developer-bounty-1500-steem-multisignature-transaction-guide-details-inside">bounty post</a> and @crokkon's <a href="https://steemit.com/utopian-io/@crokkon/steem-multi-signature-transaction-guide-for-beem-python-1546636997324">initial solution</a>. While Crokkon's solution is a good one and he got there first, I think it has some usability issues that are fairly easily resolved, so I thought I would write them up. This tutorial requires the tools Beem and Beempy by @holger80, for which installation instructions can be found <a href="https://beem.readthedocs.io/en/latest/installation.html">here</a>. <h2>Setting up our multiauth account</h2> Beempy makes this surprisingly easy. We need to have the active key for the target account imported into the wallet, but then we can do this easily from the command line with the ```allow``` command, which takes several arguments. The generic form of the command is: ```allow -a [Target account] --permissions [Permission] --weight [Weight] --threshold [Threshold] [Authorized account or public key]``` I used the heron-themed accounts I have, with @green-heron the account being saddled with multi-sig permissions. The goal was to have two accounts with 25% weight, and five accounts with 10% weight, with a final required weight of 40%. ``` beempy allow -a green-heron --permission active --weight 25 tcpolymath beempy allow -a green-heron --permission active --weight 25 herons-unlimited beempy allow -a green-heron --permission active --weight 10 great-blue-heron beempy allow -a green-heron --permission active --weight 10 night-heron beempy allow -a green-heron --permission active --weight 10 goliath-heron beempy allow -a green-heron --permission active --weight 10 snowy-egret beempy allow -a green-heron --permission active --weight 10 --threshold 40 whistling-heron ``` Saving the threshold value for last is necessary because we're using the active key and also setting it to multi-auth; if we set the threshold beforehand we'll have to either import the owner key for the account or set up a multi-auth transaction in order to make the new authorizations. This isn't necessary for setting up multi-auth on the posting key, which can be done simply by removing the "--permission active" option from the commands. <h2>Using our multi-auth account to send transfers algorithmically</h2> Here we do need Beem's transaction builder, but we can be fairly simple about it. First we load the required functions, initialize the Steem instance, and begin a transaction: ``` from beem import Steem from beem.transactionbuilder import TransactionBuilder from beembase.operations import Transfer stm=Steem() tx = TransactionBuilder(steem_instance=stm) ``` Then we build our basic transfer transaction and add it to the transaction object, which Beem makes very easy and self-explanatory: ``` transfer={"from": "green-heron", "to": "tcpolymath", "amount": "1 STEEM", "memo": "multisig transaction example"} tx.appendOps(Transfer(transfer)) ``` After this, we need to get the signatures, and sign the transaction. If we have them all available in our Beem wallet this is again very simple: ``` tx.appendSigner('herons-unlimited', 'active') tx.appendSigner('great-blue-heron', 'active') tx.appendSigner('night-heron', 'active') ``` As long as we're signing things algorithmically, where the same program would be attaching all of the signatures - say, for instance, we're a front end collecting signatures from the users - this method works well even when we pass the transaction object ```tx``` throughout our program and sign it at different times. It is possible to pass the transaction manually between humans in different locations extremely clumsily by exporting the signed transaction as a JSON and having each person sign it individually, but practically it's hard to see a real-life application for that process. It would be easier to spin up a simple web front end to get the necessary signatures than to do the manual process more than about three times. However we've acquired the necessary signatures, once we have them we simply sign and broadcast the transaction: ``` tx.sign() tx.broadcast() ``` And then we're done. It's actually surprisingly easy. You can see my example transaction <a href="https://steemd.com/tx/f23e160ab8596b1f7df7050d345fcb0cf6a58274">here</a>. </div> <center></center>
author | tcpolymath |
---|---|
permlink | make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder |
category | steem |
json_metadata | {"community":"busy","app":"steemit/0.1","format":"markdown","tags":["steem","steemdev","multisig","busy"],"users":["timcliff","crokkon","holger80","green-heron"],"links":["https://steemit.com/steem/@timcliff/steem-developer-bounty-1500-steem-multisignature-transaction-guide-details-inside","https://steemit.com/utopian-io/@crokkon/steem-multi-signature-transaction-guide-for-beem-python-1546636997324","https://beem.readthedocs.io/en/latest/installation.html","https://steemd.com/tx/f23e160ab8596b1f7df7050d345fcb0cf6a58274"],"image":["https://cdn.steemitimages.com/DQmVJ2rJuhqEmhknNUjqyTWJ6w7SRQoWekDZtJMzWym9u25/Steem.png"]} |
created | 2019-01-04 23:05:15 |
last_update | 2019-01-04 23:09:51 |
depth | 0 |
children | 10 |
last_payout | 2019-01-11 23:05:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 58.382 HBD |
curator_payout_value | 19.038 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,591 |
author_reputation | 72,516,729,960,969 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,885,754 |
net_rshares | 143,932,447,257,284 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ajvest | 0 | 122,706,942,351 | 90% | ||
simba | 0 | 121,623,151,615 | 90% | ||
bhokor | 0 | 9,423,699,178 | 90% | ||
chris4210 | 0 | 523,378,862,787 | 90% | ||
makishart | 0 | 99,812,570,674 | 90% | ||
tshering-tamang | 0 | 173,063,126,994 | 90% | ||
nenad-ristic | 0 | 40,542,027,385 | 90% | ||
atomrigs | 0 | 975,946,514,629 | 90% | ||
dedmatvey | 0 | 12,205,418 | 90% | ||
jademont | 0 | 392,858,108,017 | 90% | ||
gugnik | 0 | 0 | 90% | ||
dan-atstarlite | 0 | 920,579,110,327 | 90% | ||
thecryptofiend | 0 | 99,330,140,934 | 90% | ||
writewords | 0 | 6,222,825,902 | 90% | ||
thecryptodrive | 0 | 404,376,865,604 | 90% | ||
will-zewe | 0 | 1,457,540,248 | 90% | ||
peter-parker | 0 | 168,493,676,653 | 90% | ||
ola-haukland | 0 | 21,078,802,733 | 90% | ||
g-dubs | 0 | 45,238,823,614 | 90% | ||
foma17 | 0 | 709,816,977 | 90% | ||
sean-king | 0 | 5,933,338,281,840 | 90% | ||
albertogm | 0 | 4,735,306,871 | 90% | ||
tim-rumford | 0 | 300,229,366 | 90% | ||
mammasitta | 0 | 273,487,280 | 0.05% | ||
mauricemikkers | 0 | 955,552,809 | 90% | ||
angusleung100 | 0 | 132,285,258 | 90% | ||
jonnyrevolution | 0 | 76,402,853,476 | 90% | ||
gtg | 0 | 1,858,022,990,894 | 25% | ||
claraking | 0 | 207,154,509,580 | 90% | ||
bitbarrie | 0 | 29,349,116,906 | 90% | ||
daan | 0 | 2,673,074,696 | 3% | ||
expanse | 0 | 3,167,356,257 | 90% | ||
hitmeasap | 0 | 11,923,351,371 | 33% | ||
btcshare7 | 0 | 386,218,859 | 90% | ||
okkiedot | 0 | 76,623,346,718 | 90% | ||
vi1son | 0 | 137,480,991,572 | 90% | ||
ausbitbank | 0 | 1,470,853,259,791 | 100% | ||
gikitiki | 0 | 36,367,584,983 | 90% | ||
blockchainbilly | 0 | 10,605,992,688 | 90% | ||
cloh76 | 0 | 58,706,128,406 | 90% | ||
nepalipahad | 0 | 15,866,736,831 | 90% | ||
toxonaut | 0 | 482,186,742 | 90% | ||
incomemonthly | 0 | 30,617,157,880 | 90% | ||
thelindvall | 0 | 159,013,234,866 | 90% | ||
edrivegom | 0 | 9,721,669,109 | 90% | ||
donatello | 0 | 44,184,056,193 | 90% | ||
juvyjabian | 0 | 6,100,771,684 | 90% | ||
jza | 0 | 61,256,444,041 | 90% | ||
luisucv34 | 0 | 889,503,074 | 90% | ||
inertia | 0 | 1,354,989,871,920 | 100% | ||
arcange | 0 | 25,759,591,863 | 3% | ||
bronsedi | 0 | 12,279,503,370 | 90% | ||
shawnamawna | 0 | 54,531,077,858 | 90% | ||
fiveboringgames | 0 | 770,789,993 | 90% | ||
fiona777 | 0 | 261,839,501 | 90% | ||
iamwne | 0 | 291,504,578 | 90% | ||
coininstant | 0 | 25,717,822,088 | 90% | ||
calaber24p | 0 | 74,017,182,380 | 90% | ||
xpilar | 0 | 1,010,901,201,095 | 90% | ||
thylbom | 0 | 145,303,753 | 90% | ||
pcste | 0 | 12,298,460,436 | 90% | ||
bola | 0 | 46,009,666,766 | 90% | ||
sauravrungta | 0 | 969,755,649,626 | 90% | ||
tokyodude | 0 | 34,564,668,035 | 90% | ||
steemed-open | 0 | 619,599,924,839 | 90% | ||
jedau | 0 | 111,721,675,264 | 90% | ||
ajay555 | 0 | 28,190,418,730 | 90% | ||
raphaelle | 0 | 1,479,997,831 | 3% | ||
alsprinting | 0 | 13,254,636,803 | 90% | ||
moon32walker | 0 | 20,364,403,827 | 90% | ||
stea90 | 0 | 124,655,833,160 | 90% | ||
daynewright | 0 | 8,268,467,861 | 90% | ||
krabgat | 0 | 77,088,668,956 | 90% | ||
kooshikoo | 0 | 156,267,781 | 90% | ||
team-leibniz | 0 | 193,835,496,648 | 90% | ||
brianphobos | 0 | 380,673,818,825 | 90% | ||
kenjiby | 0 | 16,752,544,805 | 90% | ||
famunger | 0 | 222,249,584,445 | 90% | ||
sulev | 0 | 13,935,078,825 | 90% | ||
jed78 | 0 | 12,262,953,074 | 90% | ||
rainbowdash | 0 | 1,157,834,410 | 90% | ||
musicsteem | 0 | 2,117,858,601 | 90% | ||
kdtkaren | 0 | 1,799,737,571 | 90% | ||
kview | 0 | 334,997,270,440 | 90% | ||
germansailor | 0 | 84,916,361,189 | 90% | ||
sabine-reichert | 0 | 36,937,409,410 | 90% | ||
themagus | 0 | 152,559,635,711 | 90% | ||
brian-rhodes | 0 | 200,263,366,258 | 90% | ||
veerprit | 0 | 1,983,336,717 | 90% | ||
sirwinchester | 0 | 165,279,304,026 | 90% | ||
vladikras | 0 | 2,155,454,534 | 90% | ||
kpine | 0 | 22,235,561,367,175 | 90% | ||
olegw | 0 | 16,759,091,682 | 90% | ||
zivile | 0 | 112,060,408 | 90% | ||
kiddarko | 0 | 114,233,986,750 | 90% | ||
borran | 0 | 172,492,939,734 | 90% | ||
mr-meteorologist | 0 | 166,081,963 | 90% | ||
rivalhw | 0 | 1,695,733,471,783 | 90% | ||
thewhitewolf | 0 | 1,569,139,910 | 90% | ||
stylo | 0 | 5,841,813,249 | 90% | ||
thegoldencookie | 0 | 84,785,575,660 | 90% | ||
johnvibes | 0 | 16,355,337,018 | 90% | ||
elamental | 0 | 259,613,891 | 1% | ||
dgarsan | 0 | 2,021,349,430 | 90% | ||
the-reginald | 0 | 230,835,939 | 90% | ||
telos | 0 | 43,082,600,723 | 90% | ||
protegeaa | 0 | 470,070,164,083 | 90% | ||
jaredcwillis | 0 | 368,447,530 | 90% | ||
vegeta | 0 | 883,865,110 | 90% | ||
jimmco | 0 | 17,818,075,027 | 90% | ||
andrewawerdna | 0 | 388,543,459 | 90% | ||
generation.easy | 0 | 80,365,021,693 | 90% | ||
erikaharris | 0 | 377,911,984,395 | 90% | ||
anarcho-andrei | 0 | 145,525,881 | 0.9% | ||
nomadnessie | 0 | 336,809,279 | 90% | ||
sature | 0 | 57,661,884,287 | 90% | ||
inchonbitcoin | 0 | 0 | 90% | ||
pery | 0 | 11,052,094,150 | 90% | ||
seedsofliberty | 0 | 7,934,128,743 | 90% | ||
carrinm | 0 | 635,852,561,421 | 90% | ||
uwelang | 0 | 1,205,382,021,648 | 90% | ||
yzomri | 0 | 280,029,584 | 90% | ||
perspective | 0 | 354,787,226 | 90% | ||
jrhughes | 0 | 20,312,559,845 | 90% | ||
jimbobbill | 0 | 26,749,290,814 | 90% | ||
cornerstone | 0 | 1,200,397,744,407 | 90% | ||
masonmiler | 0 | 60,183,757,232 | 90% | ||
kyusho | 0 | 1,035,796,749 | 90% | ||
nubchai | 0 | 7,893,145,321 | 90% | ||
benjamin.still | 0 | 12,683,528,659 | 90% | ||
edgarsart | 0 | 10,908,774,099 | 90% | ||
maarnio | 0 | 285,376,454,655 | 90% | ||
scottsantens | 0 | 2,349,939,666 | 90% | ||
robcubbon | 0 | 3,017,268,393 | 90% | ||
jeff-kubitz | 0 | 10,731,304,340 | 90% | ||
geke | 0 | 41,891,490,712 | 90% | ||
boxcarblue | 0 | 217,061,891,260 | 90% | ||
votehumanity | 0 | 92,002,637 | 45% | ||
mikkolyytinen | 0 | 13,524,691,350 | 90% | ||
saamychristen | 0 | 7,629,282,427 | 90% | ||
szoftfst | 0 | 142,244,782 | 90% | ||
luup | 0 | 5,570,319,450 | 90% | ||
pickoum | 0 | 24,883,734,276 | 90% | ||
arama | 0 | 947,675,980,986 | 90% | ||
lellabird60 | 0 | 49,863,568,234 | 90% | ||
lonilush | 0 | 94,044,851 | 90% | ||
clayboyn | 0 | 5,405,361,709 | 7% | ||
koskl | 0 | 1,505,927,120 | 90% | ||
ancapwarren | 0 | 20,935,503,579 | 90% | ||
lloyddavis | 0 | 21,491,952,886 | 90% | ||
faded-gravity | 0 | 345,610,208 | 90% | ||
aksinya | 0 | 78,034,532,498 | 90% | ||
timbot606 | 0 | 16,200,155,164 | 90% | ||
vetvso | 0 | 234,202,987 | 90% | ||
bmwrider | 0 | 44,745,243,267 | 90% | ||
eforucom | 0 | 21,889,652,144 | 1% | ||
stacee | 0 | 7,526,051,069 | 90% | ||
mikepicker | 0 | 16,616,389,812 | 90% | ||
inspiring | 0 | 6,287,041,444 | 90% | ||
makis84 | 0 | 99,730,279 | 90% | ||
rishi556 | 0 | 1,271,527,846 | 18.75% | ||
busy.pay | 0 | 298,315,917,230 | 1.45% | ||
aldentan | 0 | 41,940,499,349 | 90% | ||
mitchelljaworski | 0 | 19,629,980,217 | 90% | ||
freiheit50 | 0 | 118,935,369,470 | 90% | ||
viktorcapulet | 0 | 655,799,233 | 90% | ||
steemtruth | 0 | 28,747,414,659 | 90% | ||
onthax | 0 | 158,569,402 | 90% | ||
dgiors | 0 | 183,539,196,506 | 90% | ||
pilgrimtraveler | 0 | 79,495,422,597 | 90% | ||
michelleh82 | 0 | 66,040,777,784 | 90% | ||
wakeupsheeps | 0 | 2,070,988,207 | 90% | ||
elumni | 0 | 3,041,087,584 | 90% | ||
superstar | 0 | 354,549,413,830 | 90% | ||
steem-meme | 0 | 248,787,960 | 90% | ||
revostrike | 0 | 522,157,772 | 90% | ||
k-syusteem | 0 | 646,389,976 | 22.5% | ||
steemsportsfund | 0 | 238,772,913,019 | 90% | ||
sunscape | 0 | 57,167,648,152 | 90% | ||
mkdouglas | 0 | 1,141,922,492 | 90% | ||
anicasteem | 0 | 0 | 90% | ||
rach | 0 | 3,832,405,855 | 100% | ||
arfa | 0 | 17,015,085,619 | 90% | ||
dashfit | 0 | 8,655,840,835 | 45% | ||
mokluc | 0 | 1,930,198,047 | 90% | ||
ebryans | 0 | 1,122,882,432 | 90% | ||
bukiland | 0 | 1,480,794,281 | 0.73% | ||
daniel.errey | 0 | 92,632,387,154 | 90% | ||
starrkravenmaf | 0 | 3,211,361,732 | 90% | ||
garvofe | 0 | 1,717,670,505 | 90% | ||
innafanz | 0 | 570,293,545 | 90% | ||
amadeus | 0 | 10,493,737,470 | 90% | ||
steemit-health | 0 | 1,359,642,848 | 90% | ||
djvidov | 0 | 133,914,337 | 90% | ||
fmatinata | 0 | 14,265,500,639 | 90% | ||
joyandhappiness | 0 | 605,605,363 | 90% | ||
johngentry | 0 | 3,832,226,533 | 90% | ||
edb | 0 | 19,643,299,843 | 90% | ||
steemvoter | 0 | 11,064,567,838 | 90% | ||
cih | 0 | 249,513,762 | 90% | ||
demartini | 0 | 1,515,717,782 | 90% | ||
ethnoly | 0 | 14,774,715,627 | 90% | ||
floridagypsy | 0 | 47,712,944,242 | 90% | ||
grildrig | 0 | 9,162,880,956 | 90% | ||
spaceginger | 0 | 30,180,905,802 | 90% | ||
hopehuggs | 0 | 7,054,828,327 | 90% | ||
apsu | 0 | 64,358,162,359 | 90% | ||
teamhumble | 0 | 68,336,287,788 | 90% | ||
dayleeo | 0 | 48,104,591,685 | 90% | ||
sellergenius | 0 | 3,223,032,305 | 90% | ||
bigtakosensei | 0 | 9,970,664,397 | 90% | ||
ethandsmith | 0 | 330,620,515,851 | 90% | ||
vcelier | 0 | 5,221,336,945,979 | 90% | ||
mallorcaman | 0 | 187,404,447 | 90% | ||
saleg25 | 0 | 5,943,841,355 | 90% | ||
aidancloquell | 0 | 8,171,153 | 90% | ||
gabrielmrpr | 0 | 12,146,060,407 | 90% | ||
dragon40 | 0 | 21,513,873,762 | 90% | ||
geordieprepper | 0 | 7,962,923,780 | 90% | ||
mariana85 | 0 | 2,495,610,089 | 90% | ||
sebastianjago | 0 | 555,980,761,506 | 90% | ||
galinamaximova | 0 | 6,516,169 | 90% | ||
zkalemiss | 0 | 15,076,537,837 | 90% | ||
kristy1 | 0 | 19,640,403,708 | 90% | ||
mytechcrunch | 0 | 488,788,630 | 90% | ||
dovetail | 0 | 3,537,643,290 | 90% | ||
steembot-general | 0 | 277,538,971 | 90% | ||
elizacheng | 0 | 10,858,399,612 | 90% | ||
rafelchato | 0 | 254,741,586 | 90% | ||
steembot-colonel | 0 | 53,590,041 | 90% | ||
steembot-soldier | 0 | 166,194,387 | 90% | ||
themadgoat | 0 | 5,037,224,766 | 90% | ||
theghost1980 | 0 | 3,855,730,884 | 90% | ||
honusurf | 0 | 18,745,758,788 | 90% | ||
stefan.steynberg | 0 | 2,788,961,682 | 90% | ||
playman | 0 | 201,381,409 | 90% | ||
goodvibrations | 0 | 700,180,816,337 | 90% | ||
healingherb | 0 | 137,252,594 | 90% | ||
maninayton | 0 | 47,839,590,810 | 90% | ||
gomatthew | 0 | 27,443,332,582 | 90% | ||
marcelbraendle | 0 | 20,393,446,678 | 90% | ||
markperandin | 0 | 129,520,348 | 90% | ||
lances | 0 | 10,461,804,071 | 90% | ||
kbeller | 0 | 350,521,185,204 | 90% | ||
gmedley | 0 | 14,546,224,777 | 90% | ||
evimeria | 0 | 9,386,537,171 | 90% | ||
teammo | 0 | 16,609,394,988 | 90% | ||
sjmstem | 0 | 1,634,514,833,157 | 90% | ||
anwarabdullah | 0 | 1,317,013,761 | 90% | ||
lordkalki8 | 0 | 329,081,895 | 90% | ||
frocush | 0 | 132,918,315 | 90% | ||
zeuss11 | 0 | 43,955,771,913 | 90% | ||
honeybeee | 0 | 91,765,391,645 | 90% | ||
diracdnb | 0 | 14,818,725 | 90% | ||
r2cornell | 0 | 764,172,141,166 | 90% | ||
kam.ila | 0 | 199,121,005,592 | 90% | ||
fronttowardenemy | 0 | 36,514,533,459 | 90% | ||
ghostwriter82 | 0 | 74,351,928,924 | 90% | ||
harleymechanix | 0 | 5,835,817,724 | 90% | ||
calvinadamus | 0 | 8,637,707,660 | 90% | ||
ilovedietcoke | 0 | 18,570,652,895 | 90% | ||
nasgu | 0 | 279,646,234,152 | 90% | ||
flatearth | 0 | 29,578,879,095 | 90% | ||
ganjafarmer | 0 | 767,060,033 | 40% | ||
destinysaid | 0 | 486,088,291,726 | 90% | ||
raftingmagazine | 0 | 187,677,255 | 90% | ||
leviarcoin | 0 | 151,924,076 | 90% | ||
gmichelbkk | 0 | 20,764,456,687 | 90% | ||
thomasgutierrez | 0 | 2,423,944,892 | 90% | ||
iamsgr | 0 | 10,741,658,454 | 90% | ||
soo.chong163 | 0 | 41,544,999,022 | 90% | ||
bitcoinandcoffee | 0 | 1,573,267,914 | 90% | ||
austinsandersco | 0 | 953,325,422 | 90% | ||
michelios | 0 | 44,345,652,588 | 90% | ||
randykrafft | 0 | 51,664,152,915 | 90% | ||
almvide | 0 | 29,241,339,370 | 90% | ||
ananuaremere | 0 | 141,968,282,214 | 90% | ||
detlev | 0 | 192,618,785,501 | 90% | ||
jakechalmers | 0 | 223,877,590 | 90% | ||
domenicthomas | 0 | 493,775,719 | 90% | ||
indiandigitizer | 0 | 134,961,218 | 90% | ||
marxrab | 0 | 73,854,987,551 | 90% | ||
suorbe | 0 | 338,999,764 | 90% | ||
honeychum | 0 | 17,231,937,969 | 90% | ||
joebloggs67 | 0 | 21,803,200,944 | 90% | ||
liberty-minded | 0 | 55,116,948,351 | 90% | ||
usammiismi | 0 | 5,551,887,185 | 90% | ||
florio | 0 | 9,281,906,512 | 90% | ||
rolf.bakker | 0 | 10,811,547,022 | 90% | ||
aaagent | 0 | 386,239,416 | 90% | ||
lanceman | 0 | 5,058,404,468 | 90% | ||
gurunayak | 0 | 459,150,390 | 90% | ||
gordonovich | 0 | 84,495,432 | 90% | ||
tremendospercy | 0 | 110,553,384,691 | 90% | ||
rerez | 0 | 18,697,736,492 | 90% | ||
federacion45 | 0 | 66,920,056,384 | 90% | ||
stargarden | 0 | 5,128,293,307 | 90% | ||
foways | 0 | 312,365,888 | 45% | ||
gindor | 0 | 76,064,913,350 | 90% | ||
tamsguitar | 0 | 31,337,422,887 | 90% | ||
reconnectnature | 0 | 80,013,088,625 | 90% | ||
heastbistdeppad | 0 | 10,072,898,157 | 90% | ||
popponayashelly | 0 | 123,089,436 | 90% | ||
investlimestone | 0 | 54,979,297,802 | 90% | ||
raffael | 0 | 465,639,283 | 90% | ||
epicdesigns | 0 | 13,449,310,080 | 90% | ||
spoylerbg | 0 | 47,959,835,689 | 90% | ||
beckenbauer | 0 | 44,487,588,364 | 90% | ||
cryptocurator | 0 | 44,447,382,154 | 20% | ||
nenio | 0 | 63,168,029,160 | 90% | ||
surfyogi | 0 | 1,275,789,861,738 | 90% | ||
milopepper | 0 | 1,161,692,091 | 90% | ||
hope777 | 0 | 5,105,647,468 | 90% | ||
adriansky | 0 | 105,207,761,734 | 90% | ||
nrajesh | 0 | 19,373,338,519 | 90% | ||
bargolis | 0 | 12,833,973,370 | 90% | ||
shawnfishbit | 0 | 19,481,447 | 90% | ||
forykw | 0 | 196,736,797,373 | 90% | ||
eggmeister | 0 | 24,422,533,719 | 90% | ||
dbzfan4awhile | 0 | 497,589,058 | 90% | ||
jraysteem | 0 | 5,532,988,819 | 90% | ||
cryptocat | 0 | 197,783,369 | 90% | ||
kingtate | 0 | 1,157,525,665 | 90% | ||
iveta | 0 | 5,120,186,815 | 90% | ||
unlockrs | 0 | 3,408,489,920 | 90% | ||
indiantraveller | 0 | 372,288,120 | 90% | ||
davydd.evans | 0 | 9,013,117,272 | 90% | ||
cryptastic | 0 | 25,375,733,690 | 90% | ||
aurimo | 0 | 6,270,290,770 | 90% | ||
nybble | 0 | 492,669,053 | 90% | ||
agrostis | 0 | 59,818,749,948 | 90% | ||
jagged | 0 | 511,312,672 | 90% | ||
cabbagepatch | 0 | 45,677,750,871 | 90% | ||
shellyduncan | 0 | 128,157,528,144 | 90% | ||
bhmcintosh | 0 | 314,462,523 | 90% | ||
doqstrader | 0 | 643,830,806 | 90% | ||
world-travel-pro | 0 | 211,003,532,915 | 90% | ||
dinoo | 0 | 236,667,679 | 90% | ||
rt395 | 0 | 20,374,786,625 | 90% | ||
sneakgeekz | 0 | 52,578,567,173 | 90% | ||
voghera | 0 | 22,708,210,546 | 90% | ||
jkkim | 0 | 642,703,210 | 90% | ||
ebejammin | 0 | 5,390,591,549 | 90% | ||
mal402 | 0 | 636,932,566 | 90% | ||
onsomewavyshit | 0 | 12,591,551,500 | 90% | ||
dabeckster | 0 | 21,304,382,003 | 90% | ||
gohba.handcrafts | 0 | 82,595,684,048 | 90% | ||
arqetype | 0 | 1,133,864,175 | 90% | ||
nicolicreer | 0 | 85,051,947 | 90% | ||
swelker101 | 0 | 120,148,331,057 | 90% | ||
daumantas | 0 | 24,473,075,777 | 90% | ||
ericarthurblair | 0 | 43,793,717,082 | 90% | ||
steemit.nemesis | 0 | 48,225,774,611 | 90% | ||
costopher | 0 | 31,204,359,996 | 90% | ||
goodaytraders | 0 | 139,196,451 | 90% | ||
sportsdesk | 0 | 455,048,141 | 90% | ||
bluejack7 | 0 | 140,621,719 | 90% | ||
jassennessaj | 0 | 25,987,012,950 | 5% | ||
alokchitri | 0 | 27,674,740,542 | 90% | ||
qwasert | 0 | 202,093,713 | 90% | ||
catboy | 0 | 495,709,109 | 90% | ||
kubbyelizabeth | 0 | 71,395,595,586 | 90% | ||
joechiappetta | 0 | 101,186,240,829 | 90% | ||
scandinavianlife | 0 | 6,682,275,517 | 90% | ||
coffeetime | 0 | 39,923,599,551 | 90% | ||
landern | 0 | 19,312,887,329 | 90% | ||
rahulyadav | 0 | 341,314,180 | 90% | ||
thinksalot | 0 | 133,133,181 | 90% | ||
altportal | 0 | 168,276,961 | 90% | ||
jeffreytong | 0 | 1,833,851,230 | 90% | ||
tizswa | 0 | 261,193,587,690 | 90% | ||
jimsparkle | 0 | 515,422,794 | 90% | ||
happychau123 | 0 | 5,129,552,540 | 90% | ||
krypto101 | 0 | 485,692,165 | 90% | ||
shikika | 0 | 151,767,771,393 | 90% | ||
revelim | 0 | 64,990,776,627 | 90% | ||
artwithflo | 0 | 44,715,760,428 | 90% | ||
dreamcity | 0 | 1,163,438,474 | 90% | ||
ekavieka | 0 | 38,350,405,371 | 90% | ||
freethink | 0 | 24,084,120,639 | 90% | ||
berlinmoonlight | 0 | 488,222,836 | 90% | ||
brandocrypto | 0 | 16,759,621,818 | 90% | ||
efsane | 0 | 678,260,729 | 90% | ||
paulyaces76 | 0 | 164,007,115 | 90% | ||
cryptohustler | 0 | 29,211,339,251 | 90% | ||
kontora | 0 | 70,534,849,039 | 90% | ||
goofyu | 0 | 19,780,788,474 | 90% | ||
eqko | 0 | 84,553,722,754 | 90% | ||
masterthematrix | 0 | 57,032,200,910 | 90% | ||
cecicastor | 0 | 58,015,401,090 | 90% | ||
somethingsubtle | 0 | 23,495,490,888 | 90% | ||
amiramnoam | 0 | 214,972,579,702 | 90% | ||
drwom | 0 | 2,688,386,497 | 90% | ||
shirish5 | 0 | 195,246,543 | 90% | ||
arrliinn | 0 | 20,690,932,028 | 90% | ||
abishai | 0 | 858,963,896 | 90% | ||
michaelwilshaw | 0 | 29,011,659,068 | 90% | ||
deismac | 0 | 1,139,985,739 | 90% | ||
justaboutart | 0 | 16,232,849,654 | 90% | ||
kemal13 | 0 | 20,256,809,578 | 90% | ||
ligit | 0 | 9,154,742,778 | 90% | ||
whiessl | 0 | 0 | 90% | ||
testing123 | 0 | 563,774,687,913 | 90% | ||
evoman1 | 0 | 170,440,177 | 90% | ||
jockey | 0 | 13,041,662,950 | 90% | ||
ilbarone623 | 0 | 28,046,658,449 | 90% | ||
marty-art | 0 | 31,352,685,476 | 90% | ||
cstrimel | 0 | 20,710,594,447 | 90% | ||
thetimminator | 0 | 3,460,763,837 | 90% | ||
breshepard | 0 | 173,253,413 | 90% | ||
jetiknight | 0 | 8,670,388,870 | 90% | ||
carlosd15 | 0 | 6,698,360,224 | 90% | ||
diggerdugg | 0 | 8,762,319,074 | 90% | ||
amarie | 0 | 20,697,664,510 | 90% | ||
burnedpixel | 0 | 26,510,461,964 | 90% | ||
djluka14 | 0 | 44,208,601,538 | 90% | ||
aaronli | 0 | 42,960,226,055 | 90% | ||
danielrkaufmann | 0 | 376,617,511 | 90% | ||
kwakumax | 0 | 18,382,983,511 | 90% | ||
irishabstainer | 0 | 426,222,466 | 90% | ||
tastetwist | 0 | 569,229,917 | 90% | ||
crimsonclad | 0 | 25,844,270,731 | 6% | ||
welovegaming | 0 | 994,321,087 | 90% | ||
pennsif | 0 | 25,035,899,152 | 12% | ||
soymanu | 0 | 310,197,698 | 90% | ||
chicosonico | 0 | 511,253,145 | 90% | ||
gokulnk | 0 | 22,581,962,204 | 90% | ||
beatitudes8 | 0 | 9,197,643,600 | 90% | ||
raizel | 0 | 37,756,063,762 | 90% | ||
j-vo | 0 | 4,370,376,448 | 90% | ||
boyelleq | 0 | 5,310,583,943 | 90% | ||
shenchensucc | 0 | 5,306,864,335 | 90% | ||
steemblake | 0 | 25,261,184,013 | 90% | ||
predictor2100 | 0 | 169,949,062 | 90% | ||
myday | 0 | 183,204,540 | 90% | ||
ikaputri3 | 0 | 29,849,415,187 | 90% | ||
digitalking | 0 | 14,867,414,786 | 90% | ||
mcsamm | 0 | 14,284,846,482 | 90% | ||
giorgiomarino | 0 | 10,648,439,717 | 90% | ||
jonmagnusson | 0 | 138,950,758 | 0.5% | ||
xxcynicalkidxx | 0 | 331,377,798 | 90% | ||
walkinharmony | 0 | 38,628,986,697 | 90% | ||
mamadini | 0 | 41,829,384,099 | 90% | ||
jayna | 0 | 143,894,352 | 0.45% | ||
offoodandart | 0 | 142,454,270,961 | 90% | ||
johnthompson | 0 | 4,781,567,391 | 90% | ||
tzap90 | 0 | 12,378,159,955 | 90% | ||
progressivechef | 0 | 98,828,792,443 | 90% | ||
mitchiesfoodrace | 0 | 32,431,286,791 | 90% | ||
gpenco | 0 | 12,107,122,507 | 90% | ||
saunter | 0 | 45,893,383,754 | 90% | ||
erangvee | 0 | 6,722,829,291 | 90% | ||
mirhimayun | 0 | 1,149,805,679 | 90% | ||
zneeke | 0 | 13,825,583,341 | 90% | ||
lifeartist | 0 | 163,382,526 | 90% | ||
lewis831 | 0 | 3,597,290,819 | 90% | ||
grapthar | 0 | 45,740,365,715 | 90% | ||
asterix87 | 0 | 12,668,366,645 | 90% | ||
diabolika | 0 | 83,730,133,897 | 90% | ||
admyrer | 0 | 4,777,488,794 | 90% | ||
nezbong | 0 | 39,765,449,003 | 90% | ||
nicolaepavelean | 0 | 6,322,370,818 | 90% | ||
mrrifat1 | 0 | 130,012,620 | 90% | ||
affiedalfayed | 0 | 10,870,967,050 | 90% | ||
heypapalegend | 0 | 8,711,438,506 | 90% | ||
truth-be-told | 0 | 37,004,550,752 | 90% | ||
swedishdragon | 0 | 119,256,331,987 | 90% | ||
sidibeat | 0 | 2,539,890,395 | 90% | ||
kuenok | 0 | 8,089,137,986 | 90% | ||
valderrama | 0 | 17,106,850,595 | 90% | ||
tyvain | 0 | 18,363,928,268 | 90% | ||
bulleric | 0 | 1,272,388,651 | 90% | ||
cryptopet | 0 | 198,554,983 | 90% | ||
cryptokraze | 0 | 8,374,258,675 | 90% | ||
brandyb | 0 | 19,187,604,461 | 90% | ||
ulfr | 0 | 557,294,727,475 | 90% | ||
wayness12 | 0 | 281,975,742 | 90% | ||
clemdane | 0 | 22,344,924,498 | 90% | ||
frost04 | 0 | 98,247,632,226 | 100% | ||
whynotdoit | 0 | 1,688,072,693 | 90% | ||
achlord | 0 | 1,225,250,363 | 90% | ||
plumey | 0 | 20,567,453,594 | 90% | ||
st3llar | 0 | 13,772,251,733 | 90% | ||
raili | 0 | 13,546,572,878 | 90% | ||
summertooth | 0 | 44,981,216,011 | 90% | ||
jefflombardo | 0 | 758,089,902 | 90% | ||
cryptoman01 | 0 | 343,103,068 | 100% | ||
vallesleoruther | 0 | 64,097,767,400 | 90% | ||
joeblack1 | 0 | 1,252,887,183 | 90% | ||
lisaocampo | 0 | 138,264,611,409 | 100% | ||
discordiant | 0 | 1,441,958,056 | 6% | ||
cedpete389 | 0 | 15,697,234,958 | 90% | ||
pastbastard | 0 | 3,375,850,964 | 90% | ||
chron | 0 | 21,674,974,784 | 90% | ||
prosirius | 0 | 24,270,488,659 | 90% | ||
breakthrough | 0 | 29,947,387,739 | 90% | ||
yenipaola | 0 | 10,196,593,152 | 90% | ||
giosou | 0 | 16,977,380,177 | 90% | ||
tweeprise | 0 | 478,035,136 | 90% | ||
stefanmoe | 0 | 9,157,267,225 | 90% | ||
alexhudson | 0 | 165,882,323 | 90% | ||
redfishpillar | 0 | 39,375,910,647 | 90% | ||
mfconcept | 0 | 36,758,986,129 | 90% | ||
masteranibal | 0 | 231,499,108 | 90% | ||
that1consultant | 0 | 222,300,809 | 90% | ||
kkraze | 0 | 613,285,489 | 90% | ||
drotto | 0 | 6,125,528,417 | 1.56% | ||
karencarrens | 0 | 30,682,114,428 | 90% | ||
fivefiveeleven | 0 | 18,829,105,681 | 90% | ||
uzdc | 0 | 137,688,486 | 90% | ||
sweetieprincess | 0 | 57,671,789,171 | 90% | ||
steemmeupscotty | 0 | 163,018,920,610 | 90% | ||
jaredwood | 0 | 131,890,534 | 90% | ||
amymya | 0 | 83,532,294 | 0.3% | ||
patricksanlin | 0 | 100,926,951,231 | 90% | ||
ratticus | 0 | 40,091,341,492 | 90% | ||
neuromancer | 0 | 3,931,020,037 | 90% | ||
steemitbc | 0 | 6,841,951,935 | 90% | ||
nyinyiwin | 0 | 22,502,957,246 | 90% | ||
fiftysixnorth | 0 | 19,118,490,910 | 90% | ||
owenwat | 0 | 7,922,795,558 | 90% | ||
simonsayz | 0 | 18,624,341,256 | 90% | ||
inquiringtimes | 0 | 26,594,055,813 | 90% | ||
ralph-rennoldson | 0 | 7,684,145,058 | 3% | ||
kestutisgarys | 0 | 0 | 90% | ||
thorthur22 | 0 | 131,585,707,355 | 90% | ||
kona | 0 | 7,223,824,819 | 90% | ||
toxichustle | 0 | 22,465,908,206 | 90% | ||
mrliga | 0 | 18,878,138,135 | 90% | ||
dijital | 0 | 38,124,045,105 | 90% | ||
joe.nobel | 0 | 20,444,300,180 | 90% | ||
jonasthomas | 0 | 654,955,929 | 90% | ||
angela.ghkh | 0 | 168,396,812 | 90% | ||
mandrea | 0 | 143,152,889 | 90% | ||
junvebbei | 0 | 10,059,594,465 | 90% | ||
glitterbooster | 0 | 20,626,636,178 | 90% | ||
powpow420 | 0 | 474,278,796 | 20% | ||
tfame3865 | 0 | 27,127,013,591 | 90% | ||
piyushkansal | 0 | 16,364,840,019 | 90% | ||
clumsysilverdad | 0 | 132,980,205,584 | 90% | ||
smyle | 0 | 10,922,418,351 | 90% | ||
cuttie1979 | 0 | 501,800,053,131 | 90% | ||
jasonbu | 0 | 75,228,496,347 | 90% | ||
bikash-tutor | 0 | 13,150,208,885 | 90% | ||
pretzelgirlsandy | 0 | 43,215,842,597 | 90% | ||
nathenial | 0 | 9,353,806,109 | 90% | ||
linebacker | 0 | 198,137,131 | 90% | ||
deluge | 0 | 13,850,465,543 | 90% | ||
redrica | 0 | 364,649,676 | 0.66% | ||
kunani | 0 | 147,508,904 | 90% | ||
vikar | 0 | 870,829,969 | 90% | ||
foovler | 0 | 11,579,288,354 | 90% | ||
pepskaram | 0 | 19,949,199,054 | 90% | ||
cschrader | 0 | 399,402,429 | 90% | ||
hassanabid | 0 | 10,141,390,563 | 90% | ||
unrared | 0 | 63,808,580,102 | 90% | ||
anandhh | 0 | 11,920,014,780 | 90% | ||
agusscout | 0 | 354,980,869 | 45% | ||
jiangchen | 0 | 11,616,445,932 | 90% | ||
crypto.hype | 0 | 28,256,962,950 | 90% | ||
cifer | 0 | 916,016,677 | 12% | ||
minismallholding | 0 | 8,354,913,936 | 20% | ||
jasonshick | 0 | 341,598,269,557 | 90% | ||
johnwjr7 | 0 | 18,462,922,804 | 90% | ||
boomshikha | 0 | 12,408,948,513 | 90% | ||
hendrikcrause | 0 | 1,235,390,193 | 90% | ||
tagsplanet | 0 | 7,822,266,026 | 90% | ||
bl0ckchained125 | 0 | 1,389,532,448 | 90% | ||
steemit-foodie | 0 | 18,352,581,770 | 90% | ||
chandrayunita | 0 | 1,574,635,244 | 45% | ||
dante01 | 0 | 16,145,629,133 | 90% | ||
chrisdavidphoto | 0 | 44,334,350,250 | 90% | ||
ashleypeat | 0 | 162,290,402 | 90% | ||
ayobami99 | 0 | 17,974,104,038 | 90% | ||
asperger-kids | 0 | 21,668,900,215 | 90% | ||
autofreak | 0 | 10,057,318,919 | 90% | ||
webresultat | 0 | 5,777,376,239 | 90% | ||
ffodie | 0 | 473,910,111 | 90% | ||
emonemolover | 0 | 171,494,746 | 90% | ||
unknown-one | 0 | 231,493,165 | 90% | ||
felander | 0 | 119,706,637,144 | 90% | ||
jokossita | 0 | 4,961,378,879 | 90% | ||
razack-pulo | 0 | 167,741,723,828 | 90% | ||
cryptoeagle | 0 | 10,709,141,131 | 90% | ||
unomas | 0 | 18,992,065,724 | 90% | ||
techblogger | 0 | 86,843,948,993 | 90% | ||
sportsgeek | 0 | 9,207,584,518 | 90% | ||
wisekricket | 0 | 475,071,849 | 45% | ||
yandot | 0 | 16,804,038,679 | 90% | ||
allizz | 0 | 25,893,449,987 | 90% | ||
lebron2016 | 0 | 2,352,847,841 | 90% | ||
pele23 | 0 | 3,320,192,716 | 4% | ||
kimzwarch | 0 | 23,876,562,401 | 22.5% | ||
randyw | 0 | 13,429,331,222 | 90% | ||
dcrypto | 0 | 13,640,367 | 90% | ||
cklai | 0 | 661,282,528 | 25% | ||
redwood419 | 0 | 37,008,811,964 | 90% | ||
peacefulpatriot | 0 | 760,622,477 | 90% | ||
shawkr13 | 0 | 2,079,916,523 | 90% | ||
moderndayhippie | 0 | 33,778,998,043 | 90% | ||
jadabug | 0 | 982,758,575 | 1% | ||
waiyee422 | 0 | 5,777,674,534 | 90% | ||
massivevibration | 0 | 59,868,099,644 | 90% | ||
crokkon | 0 | 86,017,262,286 | 100% | ||
soul-thru-da-ink | 0 | 0 | 90% | ||
libertymarlow | 0 | 1,297,331,662 | 90% | ||
nyarlathotep | 0 | 16,212,846,503 | 50% | ||
braini | 0 | 26,104,351,870 | 90% | ||
wholeself-in | 0 | 15,374,424,273 | 100% | ||
fernowl13 | 0 | 20,387,925,157 | 90% | ||
cryptoprofessor | 0 | 16,379,954,234 | 90% | ||
trevorpetrie | 0 | 308,801,795 | 3% | ||
serkagan | 0 | 4,637,813,643 | 90% | ||
landonator | 0 | 8,117,961,627 | 90% | ||
zaiageist | 0 | 32,964,616,878 | 90% | ||
tradersharpe | 0 | 10,498,153,436 | 90% | ||
topbro | 0 | 373,717,242 | 90% | ||
rusinho027 | 0 | 1,469,420,659 | 90% | ||
theresteemer | 0 | 45,385,078,078 | 90% | ||
arrihan | 0 | 19,383,240,109 | 90% | ||
bestlife | 0 | 40,992,422,071 | 90% | ||
djei.art22 | 0 | 1,021,440,978 | 90% | ||
bssman | 0 | 26,906,593,410 | 90% | ||
karlin | 0 | 38,757,508,573 | 90% | ||
michaelmorcos | 0 | 24,999,791,101 | 90% | ||
mikeaga888 | 0 | 177,383,512 | 90% | ||
ambmicheal | 0 | 9,187,179,759 | 90% | ||
revisesociology | 0 | 278,730,407,083 | 90% | ||
joshpeterson | 0 | 6,120,520,197 | 90% | ||
doodlebear | 0 | 0 | 90% | ||
espoem | 0 | 17,468,006,223 | 10% | ||
authorofthings | 0 | 7,828,865,966 | 90% | ||
prettyrose | 0 | 6,599,756,466 | 90% | ||
sandalphon | 0 | 442,930,392,047 | 90% | ||
honolulu | 0 | 37,257,345,162 | 90% | ||
yabapmatt | 0 | 4,206,486,341,715 | 100% | ||
anothersteemer | 0 | 36,903,964,541 | 90% | ||
nishikanth | 0 | 134,948,197 | 90% | ||
omra-sky | 0 | 18,358,552,726 | 90% | ||
pkalra | 0 | 2,945,497,975 | 90% | ||
ennosan | 0 | 12,547,759,987 | 90% | ||
bigdizzle91 | 0 | 29,800,971,538 | 90% | ||
cryptoandzen | 0 | 19,332,293,872 | 90% | ||
toocurious | 0 | 29,832,213,649 | 90% | ||
aldoman-75 | 0 | 9,068,557,503 | 90% | ||
hkniazi | 0 | 86,180,885 | 90% | ||
movieperminute | 0 | 32,750,628,174 | 90% | ||
hogansch | 0 | 7,212,856,846 | 90% | ||
andywong31 | 0 | 105,838,761,647 | 90% | ||
calvinwilliams | 0 | 209,339,143 | 90% | ||
esaug | 0 | 2,043,318,041 | 90% | ||
triniton | 0 | 12,724,207,023 | 90% | ||
pierlave | 0 | 3,258,603,516 | 90% | ||
f3nix | 0 | 8,005,851,709 | 90% | ||
bwar | 0 | 2,119,338,463 | 90% | ||
steemit-bot | 0 | 435,755,191 | 90% | ||
ufxpression | 0 | 8,822,499,248 | 90% | ||
vfxness | 0 | 10,808,139 | 90% | ||
bartosz546 | 0 | 3,826,535,036 | 90% | ||
hungrybanana | 0 | 668,772,368 | 90% | ||
svashta | 0 | 9,448,592,141 | 90% | ||
steembirds | 0 | 47,587,218,966 | 90% | ||
as-i-see-it | 0 | 9,016,796,793 | 90% | ||
pataty69 | 0 | 30,253,304,948 | 90% | ||
spacecadet1 | 0 | 2,292,231,462 | 90% | ||
donwhale | 0 | 12,907,045,359 | 90% | ||
spencervogel | 0 | 33,229,627,127 | 90% | ||
yourfinesight | 0 | 7,427,679,877 | 90% | ||
winniex | 0 | 30,166,807,889 | 90% | ||
stonergirls | 0 | 270,641,032 | 40% | ||
lifecruiser | 0 | 7,707,310,510 | 90% | ||
mrrifat | 0 | 221,887,860 | 45% | ||
alvinauh | 0 | 15,365,171,012 | 90% | ||
katamori | 0 | 6,949,759,782 | 90% | ||
altertrader | 0 | 442,907,626 | 90% | ||
natachayacinthe1 | 0 | 37,716,641,925 | 90% | ||
weavingwords | 0 | 48,444,435,077 | 90% | ||
coretan | 0 | 11,739,226,763 | 90% | ||
nat5an | 0 | 2,707,200,849 | 90% | ||
michaeljn | 0 | 15,578,539,988 | 90% | ||
lays | 0 | 449,341,897,288 | 90% | ||
learnandteach01 | 0 | 594,584,441 | 58.5% | ||
csbegu | 0 | 14,187,520,599 | 90% | ||
ashleykalila | 0 | 2,495,835,089 | 90% | ||
panamapilgrim | 0 | 380,723,214 | 100% | ||
nitro.live | 0 | 235,317,872 | 90% | ||
socent | 0 | 589,600,416 | 15% | ||
wolfje | 0 | 5,285,112,820 | 90% | ||
toffer | 0 | 23,886,940,168 | 90% | ||
axeman | 0 | 29,356,204,524 | 90% | ||
thecentrestage | 0 | 5,271,561,826 | 90% | ||
twirlspin | 0 | 70,657,451 | 20% | ||
sho-t | 0 | 36,525,606,823 | 90% | ||
muzakirpb | 0 | 4,978,474,366 | 90% | ||
mgood | 0 | 9,691,343,080 | 90% | ||
lordnigel | 0 | 9,686,523,577 | 90% | ||
arnavlavan | 0 | 3,268,223,745 | 90% | ||
chann | 0 | 16,879,539,035 | 90% | ||
jury.online | 0 | 165,600,073 | 90% | ||
votebank | 0 | 51,012,484,309 | 90% | ||
marvel1206 | 0 | 6,734,979,981 | 45% | ||
jmurphy074 | 0 | 0 | 90% | ||
travoved | 0 | 9,905,266,584 | 90% | ||
mikenero | 0 | 4,602,856,825 | 90% | ||
smitop | 0 | 3,794,848,573 | 100% | ||
lovelydevil | 0 | 1,360,271,466 | 90% | ||
jutdagut | 0 | 519,864,442 | 90% | ||
camendes70 | 0 | 4,520,351,390 | 90% | ||
bestgift | 0 | 1,390,450,226 | 90% | ||
pechichemena | 0 | 132,498,643 | 0.6% | ||
steemsports-ita | 0 | 19,344,999,860 | 90% | ||
earthnation | 0 | 38,284,758,149 | 90% | ||
tosuccess | 0 | 1,619,900,736 | 90% | ||
alkhairate | 0 | 137,331,343 | 90% | ||
bestgood1 | 0 | 229,974,344 | 90% | ||
helmibireuen | 0 | 9,144,336,899 | 90% | ||
engineeringsteem | 0 | 21,107,383,412 | 90% | ||
josephsavage | 0 | 17,612,242,434 | 90% | ||
taryn0221 | 0 | 454,580,851 | 90% | ||
percygeorge | 0 | 6,834,041,653 | 90% | ||
itchyfeetdonica | 0 | 21,366,683,591 | 15% | ||
ein | 0 | 175,849,753 | 90% | ||
helpie | 0 | 47,719,049,106 | 3% | ||
elderson | 0 | 10,238,552,274 | 20% | ||
matthewwarn | 0 | 64,061,551,448 | 90% | ||
rynergy | 0 | 175,135,627,957 | 90% | ||
salvao | 0 | 4,229,383,115 | 90% | ||
rlt47 | 0 | 101,963,209 | 90% | ||
aceofthegrove | 0 | 8,485,144,435 | 90% | ||
brianturner | 0 | 23,869,168,196 | 90% | ||
shai-hulud | 0 | 622,053,762 | 5% | ||
steemusa | 0 | 882,734,445 | 10% | ||
sneakyninja | 0 | 5,366,663,248 | 90% | ||
markaustin | 0 | 343,566,041 | 5% | ||
luisferchav | 0 | 71,371,053 | 1.5% | ||
askmee | 0 | 1,354,248,542 | 90% | ||
duane.dos | 0 | 5,096,895,808 | 90% | ||
nikonmarshall | 0 | 7,936,477,742 | 90% | ||
creatovert | 0 | 284,414,357 | 90% | ||
steembasicincome | 0 | 1,195,113,893,578 | 21.69% | ||
takeone | 0 | 141,372,347 | 90% | ||
ormus | 0 | 131,274,496 | 90% | ||
cryptogem | 0 | 3,141,847,428 | 90% | ||
fourfourfun | 0 | 20,516,626,402 | 90% | ||
datristan | 0 | 10,274,794,781 | 90% | ||
jerseynash | 0 | 112,732,399,306 | 90% | ||
consciousangel7 | 0 | 9,485,518,924 | 90% | ||
nelkeljdm | 0 | 34,643,185,556 | 90% | ||
magmadrome26 | 0 | 26,337,146,905 | 90% | ||
cabernet | 0 | 11,476,747,844 | 90% | ||
massimoc23 | 0 | 10,175,128,624 | 90% | ||
daltono | 0 | 160,141,661,781 | 90% | ||
groovekeeper | 0 | 19,399,287,464 | 90% | ||
carsonroscoe | 0 | 35,801,766,855 | 90% | ||
stahlberg | 0 | 33,924,879,796 | 90% | ||
datascience | 0 | 347,291,496 | 90% | ||
marou27 | 0 | 6,885,017,605 | 90% | ||
moroccantoughts | 0 | 10,882,366,596 | 90% | ||
insideoutlet | 0 | 977,290,752 | 5% | ||
yoo1900 | 0 | 14,657,056,508,715 | 83.4% | ||
drtarts | 0 | 4,771,376,353 | 90% | ||
mountainjewel | 0 | 177,535,876,890 | 90% | ||
kathybell | 0 | 7,922,858,600 | 90% | ||
positivibes | 0 | 19,499,227,292 | 90% | ||
joshbillings | 0 | 18,126,764,016 | 90% | ||
gamsam | 0 | 236,745,535 | 0.09% | ||
irisworld | 0 | 949,528,751 | 90% | ||
ismailkah | 0 | 24,657,134,423 | 90% | ||
triviastreak | 0 | 76,998,002,814 | 90% | ||
ohmylove | 0 | 340,948,072 | 90% | ||
echoatmajaputra | 0 | 70,048,835 | 45% | ||
tryskele | 0 | 1,193,173,125 | 10% | ||
epan35 | 0 | 280,621,872,143 | 90% | ||
pharmacy-jinni | 0 | 22,740,319,919 | 90% | ||
bejaunt | 0 | 11,980,500,047 | 90% | ||
soyrosa | 0 | 189,693,366,329 | 100% | ||
seandeanayao | 0 | 28,973,440,910 | 90% | ||
ghaisan | 0 | 221,687,788 | 45% | ||
sittishabir | 0 | 887,511,186 | 45% | ||
zacharylutes | 0 | 189,820,008 | 90% | ||
eddieboo | 0 | 331,857,736 | 90% | ||
inspiration101 | 0 | 204,474,385 | 45% | ||
iamfo | 0 | 224,282,058 | 45% | ||
dedyrendra | 0 | 934,445,062 | 45% | ||
yunidf | 0 | 193,145,938 | 45% | ||
yallapapi | 0 | 23,924,059,446 | 90% | ||
jerrywjl | 0 | 349,204,148 | 90% | ||
grizzle | 0 | 238,659,422 | 1% | ||
charlemajne | 0 | 489,441,548 | 90% | ||
timmylace | 0 | 139,324,222 | 90% | ||
lunaticpandora | 0 | 545,332,954 | 1.2% | ||
nilfanif | 0 | 8,894,877,293 | 90% | ||
silentscreamer | 0 | 326,841,512 | 1.5% | ||
didic | 0 | 80,001,650,994 | 90% | ||
cryptosludge | 0 | 1,183,399,011 | 90% | ||
claret | 0 | 4,694,858,900 | 90% | ||
yasu | 0 | 297,395,753,968 | 90% | ||
energyaddict22 | 0 | 609,701,419 | 1% | ||
mastergerund | 0 | 1,266,043,016 | 25% | ||
myintlwinsoe | 0 | 15,809,763,404 | 90% | ||
mcmusic | 0 | 270,836,515 | 45% | ||
turingtest | 0 | 253,372,399 | 50% | ||
mikehamm | 0 | 25,628,856,707 | 90% | ||
abolitionistjay | 0 | 15,699,944,872 | 90% | ||
warmcracklesound | 0 | 1,268,670,828 | 90% | ||
mylichie | 0 | 10,213,539,578 | 100% | ||
beenathinkin | 0 | 100,772,247 | 25% | ||
verhp11 | 0 | 117,598,725 | 1% | ||
preciousimo | 0 | 269,526,903 | 45% | ||
dr-frankenstein | 0 | 4,794,656,316 | 90% | ||
maggy7419 | 0 | 306,682,945 | 100% | ||
lymepoet | 0 | 15,428,094,256 | 90% | ||
archet | 0 | 1,579,044,138 | 90% | ||
steembalkan | 0 | 156,761,390 | 90% | ||
solenn | 0 | 10,928,251,884 | 90% | ||
calaberplays | 0 | 35,062,864,625 | 90% | ||
richmanoloriegbe | 0 | 142,037,459 | 45% | ||
blinkybill | 0 | 22,868,599,508 | 90% | ||
siomarasalmeron | 0 | 136,685,051 | 1.5% | ||
yeni | 0 | 660,806,368 | 45% | ||
dreday20 | 0 | 0 | 90% | ||
forgottendreams | 0 | 100,977,356 | 25% | ||
fikar22 | 0 | 130,144,511 | 22.5% | ||
hendrimirza | 0 | 1,062,819,147 | 45% | ||
jonnyla08 | 0 | 23,578,800,142 | 90% | ||
silversupplement | 0 | 602,393,680 | 90% | ||
mrbloom | 0 | 247,544,497 | 90% | ||
mindszai | 0 | 313,834,462 | 45% | ||
cryptoburner | 0 | 375,982,287,620 | 90% | ||
mohsen63 | 0 | 18,305,221,528 | 90% | ||
foxyspirit | 0 | 92,829,692 | 0.6% | ||
kymio | 0 | 2,794,667,264 | 25% | ||
sles | 0 | 8,738,627,099 | 90% | ||
movingman | 0 | 18,557,150,878 | 90% | ||
dmaniac | 0 | 1,632,632,642 | 90% | ||
lovlu2 | 0 | 86,096,248 | 90% | ||
saidqautsar | 0 | 153,122,521 | 45% | ||
amico | 0 | 384,351,627,829 | 90% | ||
postnice | 0 | 385,680,851 | 90% | ||
siratl | 0 | 14,130,716,385 | 90% | ||
beleg | 0 | 27,022,278,213 | 90% | ||
patso | 0 | 3,682,045,111 | 90% | ||
bil.prag | 0 | 1,957,708,041 | 4.5% | ||
jauharialz | 0 | 612,503,672 | 90% | ||
kutrulaju | 0 | 623,885,663 | 45% | ||
rjrudillas14 | 0 | 330,828,630 | 90% | ||
smokeynagata | 0 | 5,532,042,419 | 90% | ||
agusriandi | 0 | 220,758,924 | 45% | ||
biggy-ewu | 0 | 159,218,728 | 90% | ||
drowkeudrow | 0 | 292,909,121 | 45% | ||
tidylive | 0 | 1,833,114,992 | 90% | ||
beekerst | 0 | 2,173,846,852 | 90% | ||
tobaloidee | 0 | 36,476,608,823 | 90% | ||
derangedvisions | 0 | 93,528,184 | 0.75% | ||
digitalmind | 0 | 10,868,069,977 | 90% | ||
virtaco300cc | 0 | 257,457,469 | 45% | ||
misbahjuli | 0 | 493,775,719 | 90% | ||
steem-rescue | 0 | 275,544,941 | 45% | ||
khayziljoy | 0 | 66,962,153 | 100% | ||
zaim4d1 | 0 | 739,805,164 | 81% | ||
jalaluddinmusa | 0 | 1,020,854,808 | 90% | ||
sblue | 0 | 824,302,406 | 90% | ||
arrahman90 | 0 | 238,671,838 | 45% | ||
wolf09 | 0 | 3,410,014,522 | 90% | ||
odinsplayground | 0 | 16,397,875,613 | 90% | ||
photofan | 0 | 171,653,598 | 100% | ||
slickshot | 0 | 24,235,010,886 | 100% | ||
sirpicsalot | 0 | 276,392,754 | 100% | ||
mu1stu | 0 | 157,430,811 | 90% | ||
dreimaldad | 0 | 74,186,352,058 | 90% | ||
yassine2014 | 0 | 430,330,811 | 90% | ||
rextylerblunt | 0 | 143,515,890 | 45% | ||
hiddenblade | 0 | 120,117,347 | 1.5% | ||
asapers | 0 | 12,278,935,009 | 50% | ||
danielwooddesign | 0 | 337,400,112 | 90% | ||
qurator-tier-0 | 0 | 3,699,249,808 | 7.5% | ||
lstack | 0 | 22,064,390,447 | 90% | ||
winnerchris | 0 | 70,855,150 | 20% | ||
galakdroneuh | 0 | 221,887,860 | 45% | ||
andrewharland | 0 | 32,622,461,826 | 90% | ||
roxso | 0 | 219,989,565 | 45% | ||
enlighted | 0 | 464,676,257 | 90% | ||
selavinia | 0 | 570,122,731 | 100% | ||
midnight-snack | 0 | 39,749,297,384 | 90% | ||
zakaria14 | 0 | 141,022,146 | 45% | ||
heruwahyudi | 0 | 221,887,860 | 45% | ||
mldav | 0 | 221,887,860 | 45% | ||
alhidayat | 0 | 475,971,400 | 45% | ||
unlimitedorizons | 0 | 4,133,965,962 | 45% | ||
cecyle | 0 | 178,143,710 | 45% | ||
apteacher | 0 | 10,245,937,492 | 90% | ||
kara65 | 0 | 5,533,328,902 | 90% | ||
solominer | 0 | 428,490,409 | 1.5% | ||
jonas.inuk | 0 | 3,901,542,389 | 90% | ||
sfa | 0 | 615,016,509 | 90% | ||
musicvoter | 0 | 3,325,690,012 | 1% | ||
aresheir | 0 | 191,694,173 | 40% | ||
crypto.piotr | 0 | 55,109,212,333 | 90% | ||
holsturr | 0 | 25,772,526 | 90% | ||
muhibpaya2 | 0 | 87,350,843 | 25% | ||
gumbotrader | 0 | 148,270,824 | 90% | ||
archisteem | 0 | 29,774,964,243 | 50% | ||
ingapete | 0 | 26,213,465,244 | 90% | ||
darrenclaxton | 0 | 15,704,094,742 | 90% | ||
musicvoter2 | 0 | 70,574,366 | 10% | ||
digitaldreamer | 0 | 345,002,540 | 100% | ||
sanne | 0 | 325,364,351 | 90% | ||
atacapella | 0 | 1,447,633,406 | 90% | ||
thegridzom | 0 | 11,022,397,164 | 90% | ||
bullsvsbears | 0 | 2,821,218,996 | 45% | ||
frejafri | 0 | 483,164,235 | 5% | ||
elangzone | 0 | 85,943,930 | 22.5% | ||
zharifa | 0 | 92,671,704 | 25% | ||
swisswitness | 0 | 18,729,912,929 | 90% | ||
greenunion | 0 | 482,207,372 | 40% | ||
clearbluecrypto | 0 | 37,766,955,444 | 90% | ||
lousapphire | 0 | 377,513,851 | 90% | ||
alpaca11 | 0 | 1,266,861,191 | 90% | ||
imtase | 0 | 8,344,898,401 | 90% | ||
achim03 | 0 | 21,540,189,171 | 90% | ||
bulma | 0 | 221,887,860 | 45% | ||
echovalormma | 0 | 436,991,281 | 40% | ||
sitapak | 0 | 221,790,221 | 45% | ||
femseen | 0 | 195,862,487 | 45% | ||
uglyogreh | 0 | 547,988,190 | 100% | ||
xlbooster | 0 | 221,408,135 | 45% | ||
steemspeed | 0 | 210,605,997 | 45% | ||
resteemvoter | 0 | 401,646,494 | 90% | ||
blewitt | 0 | 1,204,878,362 | 0.3% | ||
rikanurrizki | 0 | 586,221,251 | 45% | ||
fadliloways | 0 | 86,427,278 | 22.5% | ||
emmywell | 0 | 71,439,995 | 45% | ||
unmesh | 0 | 144,932,428 | 45% | ||
martinphoto | 0 | 96,129,707,244 | 90% | ||
bibirider | 0 | 27,622,077,993 | 90% | ||
whyken | 0 | 147,235,160 | 45% | ||
mauerpark | 0 | 16,132,800,384 | 90% | ||
technoguy | 0 | 222,610,403 | 45% | ||
rtick | 0 | 222,816,919 | 45% | ||
mandra | 0 | 221,371,967 | 45% | ||
portalbireuen | 0 | 178,847,851 | 45% | ||
thedailysneak | 0 | 8,686,845,792 | 12.5% | ||
ocdb | 0 | 39,904,027,005,367 | 52.34% | ||
baiboua | 0 | 41,329,194,264 | 90% | ||
boukdir | 0 | 113,757,903 | 14.4% | ||
hoovesreport | 0 | 474,151,171 | 100% | ||
lillywilton | 0 | 621,920,301 | 20% | ||
yestermorrow | 0 | 142,097,779 | 0.75% | ||
julietj | 0 | 437,720,237 | 100% | ||
ttay | 0 | 656,385,392 | 100% | ||
zanis | 0 | 222,651,229 | 45% | ||
berlin-park | 0 | 15,477,730,141 | 90% | ||
gpcx86 | 0 | 122,632,907 | 10% | ||
blockchaindeal | 0 | 221,461,045 | 45% | ||
teneresa | 0 | 1,366,672,431 | 90% | ||
rhene | 0 | 0 | 90% | ||
muhdine | 0 | 221,861,862 | 45% | ||
goldsmile | 0 | 412,959,878 | 100% | ||
kaybee1 | 0 | 623,992,945 | 100% | ||
pakka | 0 | 2,070,741,587 | 100% | ||
strongminded | 0 | 437,365,472 | 100% | ||
tenacious | 0 | 531,818,711 | 100% | ||
markgritter | 0 | 18,172,901,590 | 100% | ||
dival | 0 | 500,714,252 | 100% | ||
bamboozled | 0 | 4,117,348,025 | 90% | ||
tilestar | 0 | 170,411,662 | 40% | ||
dekpah | 0 | 209,832,612 | 45% | ||
rayshiuimages | 0 | 3,185,212,367 | 90% | ||
star-wars-77 | 0 | 15,734,808,402 | 90% | ||
teampdx | 0 | 270,783,887 | 40% | ||
teamoregon | 0 | 294,103,427 | 40% | ||
mops2e | 0 | 78,267,578 | 8% | ||
duarte9sousa | 0 | 78,584,609,488 | 81% | ||
munhenhos | 0 | 6,413,296,826 | 90% | ||
turtledancedaily | 0 | 6,309,422,536 | 100% | ||
mujasteem | 0 | 79,578,831 | 25% | ||
isabelpereira | 0 | 4,204,695,893 | 18% | ||
zemer | 0 | 14,448,426,150 | 90% | ||
pifc | 0 | 54,868,670,983 | 25% | ||
diginomad | 0 | 6,415,751,101 | 90% | ||
zhef | 0 | 0 | 90% | ||
savannahvan | 0 | 5,255,153,123 | 90% | ||
bhaski | 0 | 7,757,716,870 | 90% | ||
lkvictor2005 | 0 | 9,384,692,605 | 90% | ||
ganjafarmers | 0 | 311,685,958 | 40% | ||
diana.feuerberg | 0 | 107,406,216,906 | 90% | ||
thiscrazylife | 0 | 8,002,787,681 | 90% | ||
napeng | 0 | 190,546,958 | 45% | ||
steem-ua | 0 | 404,065,017,674 | 3.28% | ||
obinn | 0 | 1,765,915,237 | 90% | ||
yassinebad | 0 | 32,660,628,706 | 90% | ||
sbi-booster | 0 | 19,407,790,802 | 25% | ||
ab4uw | 0 | 0 | 90% | ||
steemexplorers | 0 | 7,953,215,627 | 90% | ||
monstermadness | 0 | 7,146,652,305 | 90% | ||
dftba | 0 | 122,679,882 | 45% | ||
leyt | 0 | 12,849,090,932 | 90% | ||
ahmedess | 0 | 10,780,238,552 | 90% | ||
steemexpress | 0 | 834,037,543 | 1.63% | ||
bott | 0 | 322,171 | 100% |
<div class="pull-right"><img src='https://steemitimages.com/p/3jpR3paJ37V8JxyWvos7Po3CcsKfhvxkGk9C7hMZ8ZbCK1qDQAmGpBxKmZSbBFJn4XdxrGG4PVf8ZSGsDVQ6EHFUndnFsTWGvjKk6yBMna4egroJtLciGzQ1DDf7ePzDnjKHY?format=match&mode=fit&width=640'></div><div><center><h1>Congratulations!</h1><br>This post has been granted a 100% upvote, courtesy to @wokeprincess, from BlissFish!<br>Enjoy the Bliss!<br><hr><a href='https://discord.gg/gqWDz9U'> Join us on Discord!</a></center><blockquote>Upvote this post to help the minnows win a bigger upvote!</blockquote></div>
author | blissfish |
---|---|
permlink | 20190109t132948943z |
category | steem |
json_metadata | {"tags":["blissfish","bot","lottery","yourewelcome"]} |
created | 2019-01-09 13:29:51 |
last_update | 2019-01-09 13:29:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-16 13:29: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 | 547 |
author_reputation | 3,706,960,754,901 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,129,803 |
net_rshares | 0 |
.
author | crokkon |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190104t231902998z |
category | steem |
json_metadata | "{"app": ""}" |
created | 2019-01-04 23:19:03 |
last_update | 2022-09-18 10:01:18 |
depth | 1 |
children | 1 |
last_payout | 2019-01-11 23:19:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,886,327 |
net_rshares | 44,270,731,242 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptocurator | 0 | 44,270,731,242 | 20% |
I fixed the sign and broadcast operation of beempy now. It was some work, let's see what will happen with the bounty...
author | holger80 |
---|---|
permlink | re-crokkon-re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190105t001618044z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-01-05 00:16:18 |
last_update | 2019-01-05 00:16:18 |
depth | 2 |
children | 0 |
last_payout | 2019-01-12 00:16: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 | 119 |
author_reputation | 358,857,509,568,825 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,888,068 |
net_rshares | 969,891,509 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mys | 0 | 344,954,666 | 0.3% | ||
penghuren | 0 | 624,936,843 | 30% |
<p>This post has received a 1.56 % upvote from @drotto thanks to: @sbi-booster.</p>
author | drotto |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190108t173347938z |
category | steem |
json_metadata | {"tags":["steem"],"app":"drotto/0.0.5pre2"} |
created | 2019-01-08 17:33:48 |
last_update | 2019-01-08 17:33:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-15 17:33: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 | 84 |
author_reputation | 419,916,705,599 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,085,121 |
net_rshares | 0 |
You got a 52.34% upvote from @ocdb courtesy of @tcpolymath! @ocdb is a non-profit bidbot for whitelisted Steemians, current max bid is 12 SBD and the respective amount in Steem. Check our website https://thegoodwhales.io/ for the whitelist, queue and delegation info. Join our [Discord channel for more information.](https://discord.gg/k2Hu77b) If you like what @ocd does, consider voting for [ocd-witness through SteemConnect](steemconnect.com/sign/account-witness-vote?witness=ocd-witness&approve=1) or on the [Steemit Witnesses page.](https://steemit.com/~witnesses) :)
author | ocdb |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190107t110803816z |
category | steem |
json_metadata | {"app":"postpromoter/1.9.3"} |
created | 2019-01-07 11:08:03 |
last_update | 2019-01-07 11:08:03 |
depth | 1 |
children | 0 |
last_payout | 2019-01-14 11:08: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 | 574 |
author_reputation | 748,408,332,061,583 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,011,336 |
net_rshares | 0 |
This post has been included in today's [**SOS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4january2019-r5y1nirbvb) - a digest of all you need to know about the State of Steem. *** * *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4january2019-r5y1nirbvb).* * *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/dtube/@pennsif/amwntxt3).* * *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-31-december-2018).* * *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.* https://pennsif.com/wp-content/uploads/2018/08/adollaraday-linear-400x98.jpg ***
author | pennsif |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190105t132047757z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://pennsif.com/wp-content/uploads/2018/08/adollaraday-linear-400x98.jpg"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4january2019-r5y1nirbvb","https://steemit.com/dtube/@pennsif/amwntxt3","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-31-december-2018","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"} |
created | 2019-01-05 13:20:48 |
last_update | 2019-01-05 13:20:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 13:20: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 | 1,002 |
author_reputation | 636,410,097,572,565 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,913,317 |
net_rshares | 0 |
#### Hi @tcpolymath! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 4.725 which ranks you at **#1483** across all Steem accounts. Your rank has dropped 2 places in the last three days (old rank 1481). In our last Algorithmic Curation Round, consisting of 207 contributions, your post is ranked at **#17**. ##### Evaluation of your UA score: * Some people are already following you, keep going! * The readers appreciate your great work! * Good user engagement! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190105t111121z |
category | steem |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-05 11:11:24 |
last_update | 2019-01-05 11:11:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 11:11: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 | 640 |
author_reputation | 23,214,230,978,060 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,908,007 |
net_rshares | 0 |
@buildteam and @steemvoter are proud to award you a Steemvoter Guild vote for your efforts in contributing to the multisig bounty. <center>https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png</center>
author | steemvoter |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190109t202101437z |
category | steem |
json_metadata | {"tags":["steem"],"users":["buildteam","steemvoter"],"image":["https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png"],"app":"steemit/0.1"} |
created | 2019-01-09 20:21:00 |
last_update | 2019-01-09 20:21:00 |
depth | 1 |
children | 0 |
last_payout | 2019-01-16 20:21:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 205,124,311,476,054 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,146,741 |
net_rshares | 12,429,689,919 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemvoter | 0 | 12,429,689,919 | 100% |
Congrats @tcpolymath, you are one of the finalists for the Multisig bounty, BuildTeam will be sponsoring a Steemvoter Guild vote in addition to any other bounty you may receive. Incoming shortly.
author | thecryptodrive |
---|---|
permlink | re-tcpolymath-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190109t201943070z |
category | steem |
json_metadata | {"tags":["steem"],"users":["tcpolymath"],"app":"steemit/0.1"} |
created | 2019-01-09 20:19:42 |
last_update | 2019-01-09 20:19:42 |
depth | 1 |
children | 0 |
last_payout | 2019-01-16 20:19: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 | 195 |
author_reputation | 103,594,115,164,820 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,146,698 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/tcpolymath__make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder.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-make-multisig-transactions-with-beem-without-spending-all-day-in-the-transaction-builder-20190104t232252 |
category | steem |
json_metadata | "" |
created | 2019-01-04 23:22:54 |
last_update | 2019-01-04 23:22:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-11 23:22: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 | 410 |
author_reputation | -4,535,154,553,995 |
root_title | "Make Multisig transactions with Beem without spending all day in the transaction builder." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,886,499 |
net_rshares | 0 |