This guide will describe how to broadcast a multisignature transactions to the steem blockchain using beempy. It is my submission to this [bounty](https://hive.blog/steem/@timcliff/steem-developer-bounty-1500-steem-multisignature-transaction-guide-details-inside). beempy is the command line tool provided by the python library [beem](https://github.com/holgern/beem). It is installed when the beem library is installed. ## Installation There are three different ways to install beem/beempy: ### Install beem through pip / pip3 Assuming that python and pip is already installed, beem can be installed by ``` pip install beem ``` This does not work on windows. ### Install beem through conda When anaconda is used, beempy can be installed by ``` conda install beem ``` This works also on windows ### Unzip beempy provided by pyinstaller for windows Download the newest beempy zip file from the [release](https://github.com/holgern/beem/releases) site and unpack it. A more detailed installation guide can be found in the [readme file](https://github.com/holgern/beem/blob/master/README.rst). This guide is only valid for beempy version 0.20.16 or higher. The version can be checked by: ``` beempy --version ``` The guide will not work for versions below 0.20.16! ## Setting up multisignature authority for the active authority - Part 1 In order to change the active authority permissions, the active key of the account that should be changed, must be stored in the key wallet. It can be checked if there is already a wallet by: ``` beempy walletinfo ``` When there is no, it can be created by: ``` beempy createwallet ``` Now we can add the active key: ``` beempy addkey ``` There will be two prompts, the first will ask for the wallet master password and the second will ask for the active key. At first we should check if the account which should be set up, already has more than one permission. ``` beempy permissions <account_name> ``` If there is more than one Key listed and all accounts that were given active authority permission should be removed, it can be done by: ``` beempy disallow --permission active -a <account_name> <account_with_active_permission> ``` Now, active permissions can be granted to other accounts by using the `allow` command. Lets assume we want to allow N accounts / keys for active permission. when adding the first N-1 accounts/keys we must not define the treshold T: ``` beempy allow --permission active -a <account_name> --weight W_1 <pubkey_or_accountname_1> beempy allow --permission active -a <account_name> --weight W_2 <pubkey_or_accountname_2> ... beempy allow --permission active -a <account_name> --weight W_n-1 <pubkey_or_accountname_n-1> ``` Now we can set the threshold `T` for the last account/key: ``` beempy allow --permission active -a <account_name> --weight W_n --threshold T <pubkey_or_accountname_n> ``` ### Posting authority When permissions to the posting authority should be changed, ``` --permission active ``` must be replaced by ``` --permission posting ``` ### Example We want to setup the active authority with 7 keys: > A user wants to have their active authority setup with seven keys. Keys one and two each have a weight of 25%. Keys three, four, five, six, and seven each have a weight of 10%. In order for a transaction to be valid, it must have at least 40% weighted signatures. ``` beempy allow --permission active -a testholger --weight 25 STM6bVMCVr4FcLmbcckEgaHcHmcfytzoanTW1FrnTQ6rL5NWuBeGA beempy allow --permission active -a testholger --weight 25 STM8RsufKpLfEeirs6WYDJm93UT1U5ntQqkSZrumWhv9Tw8B1NWTx beempy allow --permission active -a testholger --weight 10 STM58dtFYRZviGgbm4nhnELczhGDK78R3Vi7M1VCdkNS2vZG8pkbJ beempy allow --permission active -a testholger --weight 10 STM8A2zgE2wouhMfd6ycAvpboB6m2PKwa31pih49yZTsbD5jGMT3t beempy allow --permission active -a testholger --weight 10 STM5qoHyJrKCsW4FFhrrbWPuS52N2FUjQTFiHJVHfuBykEVvENrvS beempy allow --permission active -a testholger --weight 10 STM8LaqooL399EZXUacyBVFCXJiGRnQsyw6YYGEN7UqQksdH5oAta beempy allow --permission active -a testholger --weight 10 --threshold 40 STM8Y8aYJC7EbFRZ34imY2sJ7b78WprTMWiQAp4hbYcg2JCr4EcT9 ``` Let's check if everything has worked out: ``` beempy permissions testholger +------------+-----------+------------------------------------------------------------+ | Permission | Threshold | Key/Account | +------------+-----------+------------------------------------------------------------+ | owner | 1 | STM8k9awBgjduUdkoTyP1DFSLYNrtqgnCeeETFFWHeox4BKybT71n (1) | | active | 40 | STM58dtFYRZviGgbm4nhnELczhGDK78R3Vi7M1VCdkNS2vZG8pkbJ (10) | | | | STM5qoHyJrKCsW4FFhrrbWPuS52N2FUjQTFiHJVHfuBykEVvENrvS (10) | | | | STM6bVMCVr4FcLmbcckEgaHcHmcfytzoanTW1FrnTQ6rL5NWuBeGA (25) | | | | STM8A2zgE2wouhMfd6ycAvpboB6m2PKwa31pih49yZTsbD5jGMT3t (10) | | | | STM8LaqooL399EZXUacyBVFCXJiGRnQsyw6YYGEN7UqQksdH5oAta (10) | | | | STM8RsufKpLfEeirs6WYDJm93UT1U5ntQqkSZrumWhv9Tw8B1NWTx (25) | | | | STM8Y8aYJC7EbFRZ34imY2sJ7b78WprTMWiQAp4hbYcg2JCr4EcT9 (10) | | | | STM8YQFkpJrj74SdR8JWRv12DHVRn3eKoAaEcwrj1QmLGArZY39o8 (1) | | posting | 1 | STM52tq9RWwdYJ3gzxz2fzhcg9HCBfouqcHBYVU439tLdk73Ed7SM (1) | +------------+-----------+------------------------------------------------------------+ ``` ## Setting up multisignature authority for the active authority - Part 2 When an account has more than one key assigned to the active permission, broadcasting is successfully when at least the weight sum of all signed keys is at least the threshold T. At first we need to create a unsigned transaction. We can do this with beempy by: ``` beempy -xd -e 3600 <command> <options> > unsigned_transaction.json ``` The parameter x and d prevent that the transaction is signed and broadcasted. `-e 3600` increases the expiration time to the maximum time of 1 hour. This means that all participants have 1 hour to sign and finally to broadcast. We need the key that should sign in the wallet: ``` beempy addkey ``` Signing can than be done by ``` beempy sign --file unsigned_transaction.json -o signed_1_transaction.json ``` The next signer with has the next key in its wallet can sign with: ``` beempy sign --file signed_1_transaction.json -o signed_2_transaction.json ``` This is repeated until the weight sum of signer exceed the threshold. Broadcasting can then be done by: ``` beempy broadcast --file signed_2_transaction.json ``` ### Example Let's continue our example and transfer some STEEM: > One of the key holders of the account wants to transfer 5.0 STEEM tokens to another user. The transaction should be signed with keys one, four, and five (which would exceed the 40% threshold). We need to create the unsigned transaction first: ``` beempy -xd -e 3600 transfer -a testholger holger80 5.000 STEEM > unsigned_transaction.json ``` Then the first signer will sign. The first key must be stored in the wallet ``` beempy addkey ``` and we can sign: ``` beempy sign --file unsigned_transaction.json -o signed_1_transaction.json ``` Now we delete the key with: ``` beempy delkey STM6bVMCVr4FcLmbcckEgaHcHmcfytzoanTW1FrnTQ6rL5NWuBeGA ``` Now the forth key should sign and we add this key to the wallet ``` beempy addkey ``` and we can sign: ``` beempy sign --file signed_1_transaction.json -o signed_2_transaction.json ``` Now we delete the key with: ``` beempy delkey STM8A2zgE2wouhMfd6ycAvpboB6m2PKwa31pih49yZTsbD5jGMT3t ``` Now the fifth key will sign. We will add it first: ``` beempy addkey ``` and we can sign: ``` beempy sign --file signed_2_transaction.json -o signed_3_transaction.json ``` We have enough signer and we can now broadcast the transaction by: ``` beempy broadcast --file signed_3_transaction.json ``` Let's see if it has worked:  There are the three signatures, so everything worked out!
author | holger80 |
---|---|
permlink | multisignature-transaction-guide-for-beempy |
category | steem |
json_metadata | "{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["steem", "steemdev", "multisignature", "beem", "busy"], "links": ["https://hive.blog/steem/@timcliff/steem-developer-bounty-1500-steem-multisignature-transaction-guide-details-inside", "https://github.com/holgern/beem", "https://github.com/holgern/beem/releases", "https://github.com/holgern/beem/blob/master/README.rst"], "image": ["https://ipfs.busy.org/ipfs/QmXK6zSnkQZfWRxsRrotuB7iD4YK65xc7xJSgewqnMQpa4"], "canonical_url": "https://hive.blog/steem/@holger80/multisignature-transaction-guide-for-beempy"}" |
created | 2019-01-05 00:04:09 |
last_update | 2020-05-23 14:59:18 |
depth | 0 |
children | 10 |
last_payout | 2019-01-12 00:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 62.205 HBD |
curator_payout_value | 19.316 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,124 |
author_reputation | 358,857,509,568,825 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 77,887,700 |
net_rshares | 153,350,215,971,219 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 2,845,643,351,021 | 29% | ||
steempty | 0 | 1,718,855,686,645 | 29% | ||
ajvest | 0 | 143,185,526,034 | 90% | ||
simba | 0 | 126,766,466,634 | 90% | ||
bhokor | 0 | 9,423,229,036 | 90% | ||
chris4210 | 0 | 540,867,703,202 | 90% | ||
makishart | 0 | 101,934,394,643 | 90% | ||
tshering-tamang | 0 | 173,054,592,170 | 90% | ||
nenad-ristic | 0 | 40,531,246,520 | 90% | ||
atomrigs | 0 | 975,946,514,629 | 90% | ||
dedmatvey | 0 | 12,205,418 | 90% | ||
jademont | 0 | 392,858,108,017 | 90% | ||
teamsteem | 0 | 7,286,768,793 | 5% | ||
acidyo | 0 | 8,214,446,113,166 | 68% | ||
gugnik | 0 | 0 | 90% | ||
dan-atstarlite | 0 | 910,072,053,049 | 90% | ||
thecryptofiend | 0 | 103,610,480,055 | 90% | ||
writewords | 0 | 6,199,363,790 | 90% | ||
thecryptodrive | 0 | 580,356,780,041 | 90% | ||
will-zewe | 0 | 1,484,793,491 | 90% | ||
peter-parker | 0 | 170,642,646,604 | 90% | ||
ola-haukland | 0 | 21,644,276,092 | 90% | ||
g-dubs | 0 | 91,174,250,443 | 90% | ||
foma17 | 0 | 709,816,977 | 90% | ||
sean-king | 0 | 6,028,677,912,071 | 90% | ||
albertogm | 0 | 4,664,424,513 | 90% | ||
tim-rumford | 0 | 300,229,366 | 90% | ||
mauricemikkers | 0 | 927,380,207 | 90% | ||
angusleung100 | 0 | 123,647,112 | 90% | ||
jonnyrevolution | 0 | 78,567,597,315 | 90% | ||
gtg | 0 | 1,848,797,462,493 | 25% | ||
claraking | 0 | 207,154,509,580 | 90% | ||
bitbarrie | 0 | 29,349,116,906 | 90% | ||
roelandp | 0 | 3,630,816,090,382 | 100% | ||
expanse | 0 | 3,118,784,824 | 90% | ||
redpalestino | 0 | 815,655,683,945 | 20% | ||
btcshare7 | 0 | 386,218,859 | 90% | ||
okkiedot | 0 | 64,775,043,039 | 90% | ||
vi1son | 0 | 152,720,797,058 | 90% | ||
ausbitbank | 0 | 1,441,574,136,046 | 100% | ||
gikitiki | 0 | 37,946,595,975 | 90% | ||
blockchainbilly | 0 | 10,605,992,688 | 90% | ||
cloh76 | 0 | 65,506,901,754 | 90% | ||
nepalipahad | 0 | 15,849,604,232 | 90% | ||
toxonaut | 0 | 482,186,742 | 90% | ||
incomemonthly | 0 | 31,378,307,989 | 90% | ||
thelindvall | 0 | 167,602,194,419 | 90% | ||
edrivegom | 0 | 9,664,708,524 | 90% | ||
donatello | 0 | 42,177,280,803 | 90% | ||
juvyjabian | 0 | 5,400,808,846 | 90% | ||
jza | 0 | 61,238,794,362 | 90% | ||
luisucv34 | 0 | 895,869,429 | 90% | ||
inertia | 0 | 1,382,461,829,013 | 100% | ||
arcange | 0 | 35,447,660,586 | 4% | ||
bronsedi | 0 | 12,279,503,370 | 90% | ||
shawnamawna | 0 | 54,497,937,390 | 90% | ||
fiveboringgames | 0 | 742,725,322 | 90% | ||
fiona777 | 0 | 271,934,853 | 90% | ||
iamwne | 0 | 304,519,065 | 90% | ||
coininstant | 0 | 21,651,352,710 | 90% | ||
calaber24p | 0 | 74,017,182,380 | 90% | ||
xpilar | 0 | 1,033,636,706,869 | 90% | ||
thylbom | 0 | 144,648,601 | 90% | ||
pcste | 0 | 11,975,199,310 | 90% | ||
bola | 0 | 46,009,666,766 | 90% | ||
sauravrungta | 0 | 1,011,960,726,030 | 90% | ||
tokyodude | 0 | 35,850,393,207 | 90% | ||
steemed-open | 0 | 619,599,924,839 | 90% | ||
jedau | 0 | 112,694,859,739 | 90% | ||
ajay555 | 0 | 28,190,418,730 | 90% | ||
raphaelle | 0 | 2,061,062,145 | 4% | ||
alsprinting | 0 | 13,254,636,803 | 90% | ||
moon32walker | 0 | 22,242,750,600 | 90% | ||
stea90 | 0 | 124,901,951,346 | 90% | ||
quigua | 0 | 80,283,912 | 100% | ||
daynewright | 0 | 49,567,669,620 | 90% | ||
krabgat | 0 | 77,038,499,866 | 90% | ||
kooshikoo | 0 | 156,267,781 | 90% | ||
team-leibniz | 0 | 195,357,191,368 | 90% | ||
brianphobos | 0 | 382,864,399,428 | 90% | ||
remlaps | 0 | 17,510,005,416 | 100% | ||
kenjiby | 0 | 17,842,965,318 | 90% | ||
famunger | 0 | 213,294,133,830 | 90% | ||
sulev | 0 | 12,734,027,620 | 90% | ||
jed78 | 0 | 12,308,671,100 | 90% | ||
rainbowdash | 0 | 1,184,031,529 | 90% | ||
twinner | 0 | 648,782,824,256 | 25% | ||
timcliff | 0 | 981,674,343,666 | 87% | ||
musicsteem | 0 | 2,129,025,155 | 90% | ||
kdtkaren | 0 | 1,759,705,320 | 90% | ||
kview | 0 | 334,678,525,461 | 90% | ||
germansailor | 0 | 87,327,066,135 | 90% | ||
sabine-reichert | 0 | 37,164,399,911 | 90% | ||
themagus | 0 | 152,507,333,032 | 90% | ||
brian-rhodes | 0 | 207,314,746,307 | 90% | ||
veerprit | 0 | 1,983,336,717 | 90% | ||
sirwinchester | 0 | 187,598,820,714 | 90% | ||
vladikras | 0 | 2,155,454,534 | 90% | ||
kpine | 0 | 23,679,494,962,223 | 90% | ||
olegw | 0 | 20,054,199,429 | 90% | ||
snwolak | 0 | 5,432,687,576 | 90% | ||
zivile | 0 | 112,060,408 | 90% | ||
kiddarko | 0 | 114,233,986,750 | 90% | ||
borran | 0 | 183,278,455,484 | 90% | ||
mr-meteorologist | 0 | 164,926,627 | 90% | ||
rivalhw | 0 | 1,988,181,638,900 | 90% | ||
thewhitewolf | 0 | 1,569,139,910 | 90% | ||
stylo | 0 | 5,841,813,249 | 90% | ||
thegoldencookie | 0 | 86,538,853,275 | 90% | ||
johnvibes | 0 | 19,539,528,768 | 90% | ||
dgarsan | 0 | 1,811,177,657 | 90% | ||
the-reginald | 0 | 230,835,939 | 90% | ||
telos | 0 | 43,082,600,723 | 90% | ||
protegeaa | 0 | 469,719,938,829 | 90% | ||
jaredcwillis | 0 | 553,884,797 | 90% | ||
vegeta | 0 | 858,730,314 | 90% | ||
jimmco | 0 | 18,189,352,457 | 90% | ||
andrewawerdna | 0 | 410,534,577 | 90% | ||
someguy123 | 0 | 2,194,609,275,532 | 100% | ||
generation.easy | 0 | 80,135,314,660 | 90% | ||
erikaharris | 0 | 377,911,984,395 | 90% | ||
nomadnessie | 0 | 361,822,856 | 90% | ||
sature | 0 | 61,235,264,823 | 90% | ||
inchonbitcoin | 0 | 0 | 90% | ||
pery | 0 | 11,263,381,316 | 90% | ||
seedsofliberty | 0 | 7,934,128,743 | 90% | ||
krnel | 0 | 325,642,881,480 | 25% | ||
mastercore | 0 | 428,421,000 | 100% | ||
carrinm | 0 | 635,852,561,421 | 90% | ||
uwelang | 0 | 180,520,350,576 | 15% | ||
yzomri | 0 | 280,029,584 | 90% | ||
holoz0r | 0 | 77,583,818,946 | 100% | ||
perspective | 0 | 354,787,226 | 90% | ||
jrhughes | 0 | 20,305,673,756 | 90% | ||
jimbobbill | 0 | 27,256,617,413 | 90% | ||
cornerstone | 0 | 1,220,892,344,241 | 90% | ||
masonmiler | 0 | 60,181,840,554 | 90% | ||
kyusho | 0 | 1,015,316,839 | 90% | ||
nubchai | 0 | 7,981,086,849 | 90% | ||
benjamin.still | 0 | 12,683,528,659 | 90% | ||
edgarsart | 0 | 10,698,064,972 | 90% | ||
maarnio | 0 | 288,494,251,340 | 90% | ||
scottsantens | 0 | 2,327,686,172 | 90% | ||
robcubbon | 0 | 3,017,268,393 | 90% | ||
jeff-kubitz | 0 | 11,450,844,152 | 90% | ||
geke | 0 | 45,087,262,822 | 90% | ||
boxcarblue | 0 | 212,637,913,222 | 90% | ||
votehumanity | 0 | 92,391,614 | 45% | ||
mikkolyytinen | 0 | 12,773,712,074 | 90% | ||
saamychristen | 0 | 7,451,603,887 | 90% | ||
szoftfst | 0 | 142,244,782 | 90% | ||
luup | 0 | 5,233,262,494 | 90% | ||
pickoum | 0 | 25,144,394,703 | 90% | ||
arama | 0 | 975,651,351,175 | 90% | ||
lellabird60 | 0 | 49,749,182,974 | 90% | ||
lonilush | 0 | 95,745,732 | 90% | ||
koskl | 0 | 2,054,627,349 | 90% | ||
ancapwarren | 0 | 20,661,342,283 | 90% | ||
lloyddavis | 0 | 23,222,607,404 | 90% | ||
faded-gravity | 0 | 353,015,620 | 90% | ||
aksinya | 0 | 89,698,143,135 | 90% | ||
timbot606 | 0 | 16,173,522,965 | 90% | ||
vetvso | 0 | 234,830,859 | 90% | ||
bmwrider | 0 | 43,120,994,870 | 90% | ||
eforucom | 0 | 21,911,930,704 | 1% | ||
stacee | 0 | 7,526,051,069 | 90% | ||
mikepicker | 0 | 16,616,389,812 | 90% | ||
inspiring | 0 | 6,680,241,264 | 90% | ||
makis84 | 0 | 93,053,957 | 90% | ||
aldentan | 0 | 45,031,762,290 | 90% | ||
mitchelljaworski | 0 | 20,971,111,473 | 90% | ||
freiheit50 | 0 | 139,552,017,160 | 90% | ||
viktorcapulet | 0 | 636,253,637 | 90% | ||
steemtruth | 0 | 29,166,333,844 | 90% | ||
onthax | 0 | 158,569,402 | 90% | ||
dgiors | 0 | 179,199,605,981 | 90% | ||
pilgrimtraveler | 0 | 63,651,709,944 | 90% | ||
michelleh82 | 0 | 67,222,421,466 | 90% | ||
wakeupsheeps | 0 | 2,058,432,206 | 90% | ||
elumni | 0 | 2,718,986,520 | 90% | ||
superstar | 0 | 363,610,935,145 | 90% | ||
steem-meme | 0 | 234,540,473 | 90% | ||
revostrike | 0 | 995,856,742 | 90% | ||
k-syusteem | 0 | 646,389,976 | 22.5% | ||
steemsportsfund | 0 | 267,617,962,750 | 90% | ||
sunscape | 0 | 59,149,033,288 | 90% | ||
mkdouglas | 0 | 1,141,922,492 | 90% | ||
anicasteem | 0 | 0 | 90% | ||
rach | 0 | 3,788,206,964 | 100% | ||
arfa | 0 | 16,273,061,881 | 90% | ||
mangos | 0 | 645,374,025,202 | 18% | ||
dashfit | 0 | 8,476,193,228 | 45% | ||
mokluc | 0 | 1,984,605,192 | 90% | ||
ebryans | 0 | 1,073,390,133 | 90% | ||
daniel.errey | 0 | 91,566,810,111 | 90% | ||
starrkravenmaf | 0 | 2,773,620,921 | 90% | ||
garvofe | 0 | 1,709,956,129 | 90% | ||
innafanz | 0 | 570,293,545 | 90% | ||
amadeus | 0 | 10,737,755,746 | 90% | ||
steemit-health | 0 | 1,341,588,843 | 90% | ||
djvidov | 0 | 133,914,337 | 90% | ||
fmatinata | 0 | 13,782,493,660 | 90% | ||
joyandhappiness | 0 | 605,605,363 | 90% | ||
johngentry | 0 | 3,840,803,284 | 90% | ||
fratheone | 0 | 5,144,972,211 | 100% | ||
edb | 0 | 22,314,917,615 | 90% | ||
steemvoter | 0 | 10,825,803,290 | 90% | ||
cih | 0 | 249,513,762 | 90% | ||
demartini | 0 | 1,533,965,866 | 90% | ||
ethnoly | 0 | 14,774,715,627 | 90% | ||
floridagypsy | 0 | 47,712,944,242 | 90% | ||
grildrig | 0 | 11,995,679,461 | 90% | ||
spaceginger | 0 | 29,821,619,093 | 90% | ||
hopehuggs | 0 | 11,809,153,893 | 90% | ||
yadamaniart | 0 | 666,327,576 | 1.64% | ||
apsu | 0 | 64,358,162,359 | 90% | ||
teamhumble | 0 | 66,237,136,866 | 90% | ||
dayleeo | 0 | 47,642,830,476 | 90% | ||
sellergenius | 0 | 4,017,873,387 | 90% | ||
bigtakosensei | 0 | 9,253,858,440 | 90% | ||
ethandsmith | 0 | 355,054,892,953 | 90% | ||
cardboard | 0 | 3,630,304,571 | 100% | ||
vcelier | 0 | 5,365,292,016,747 | 90% | ||
mallorcaman | 0 | 278,302,601 | 90% | ||
saleg25 | 0 | 5,697,702,268 | 90% | ||
aidancloquell | 0 | 8,171,153 | 90% | ||
gabrielmrpr | 0 | 12,146,060,407 | 90% | ||
dragon40 | 0 | 21,650,923,040 | 90% | ||
geordieprepper | 0 | 7,962,923,780 | 90% | ||
mariana85 | 0 | 2,495,610,089 | 90% | ||
sebastianjago | 0 | 556,247,320,638 | 90% | ||
galinamaximova | 0 | 6,516,169 | 90% | ||
zkalemiss | 0 | 15,076,537,837 | 90% | ||
kristy1 | 0 | 20,426,350,200 | 90% | ||
mytechcrunch | 0 | 489,362,737 | 90% | ||
dovetail | 0 | 4,378,706,289 | 90% | ||
steembot-general | 0 | 261,189,205 | 90% | ||
elizacheng | 0 | 124,933,443,497 | 90% | ||
rafelchato | 0 | 239,555,617 | 90% | ||
steembot-colonel | 0 | 52,128,071 | 90% | ||
steembot-soldier | 0 | 163,139,174 | 90% | ||
themadgoat | 0 | 4,921,598,671 | 90% | ||
theghost1980 | 0 | 4,166,339,685 | 90% | ||
honusurf | 0 | 18,802,685,166 | 90% | ||
stefan.steynberg | 0 | 3,392,265,170 | 90% | ||
playman | 0 | 197,008,778 | 90% | ||
goodvibrations | 0 | 718,633,309,767 | 90% | ||
healingherb | 0 | 137,252,594 | 90% | ||
maninayton | 0 | 48,194,692,792 | 90% | ||
gomatthew | 0 | 30,726,948,201 | 90% | ||
marcelbraendle | 0 | 20,797,069,099 | 90% | ||
markperandin | 0 | 129,520,348 | 90% | ||
lances | 0 | 10,421,772,946 | 90% | ||
kbeller | 0 | 350,521,185,204 | 90% | ||
gmedley | 0 | 14,483,188,796 | 90% | ||
evimeria | 0 | 11,333,199,186 | 90% | ||
teammo | 0 | 19,369,335,796 | 90% | ||
sjmstem | 0 | 1,634,514,833,157 | 90% | ||
anwarabdullah | 0 | 1,284,912,969 | 90% | ||
lordkalki8 | 0 | 329,081,895 | 90% | ||
frocush | 0 | 132,806,532 | 90% | ||
elviento | 0 | 479,072,427 | 0.57% | ||
zeuss11 | 0 | 42,700,884,335 | 90% | ||
honeybeee | 0 | 95,576,028,846 | 90% | ||
diracdnb | 0 | 14,818,725 | 90% | ||
r2cornell | 0 | 663,883,208,923 | 90% | ||
kam.ila | 0 | 183,091,919,914 | 90% | ||
fronttowardenemy | 0 | 36,947,078,327 | 90% | ||
ghostwriter82 | 0 | 75,299,624,621 | 90% | ||
harleymechanix | 0 | 5,837,708,023 | 90% | ||
calvinadamus | 0 | 8,637,707,660 | 90% | ||
ilovedietcoke | 0 | 18,251,490,119 | 90% | ||
nasgu | 0 | 274,552,660,598 | 90% | ||
flatearth | 0 | 28,541,874,876 | 90% | ||
destinysaid | 0 | 549,677,710,444 | 90% | ||
raftingmagazine | 0 | 185,466,941 | 90% | ||
leviarcoin | 0 | 151,924,076 | 90% | ||
gmichelbkk | 0 | 20,764,456,687 | 90% | ||
thomasgutierrez | 0 | 2,735,846,999 | 90% | ||
iamsgr | 0 | 10,827,165,057 | 90% | ||
soo.chong163 | 0 | 41,559,510,154 | 90% | ||
bitcoinandcoffee | 0 | 1,573,380,649 | 90% | ||
austinsandersco | 0 | 953,202,236 | 90% | ||
michelios | 0 | 44,472,727,873 | 90% | ||
randykrafft | 0 | 51,664,152,915 | 90% | ||
almvide | 0 | 29,252,321,340 | 90% | ||
ananuaremere | 0 | 141,968,282,214 | 90% | ||
freebornsociety | 0 | 10,903,521,353 | 20% | ||
detlev | 0 | 193,629,711,237 | 90% | ||
jakechalmers | 0 | 224,867,819 | 90% | ||
domenicthomas | 0 | 493,775,719 | 90% | ||
indiandigitizer | 0 | 134,961,218 | 90% | ||
marxrab | 0 | 68,464,613,607 | 90% | ||
suorbe | 0 | 338,999,764 | 90% | ||
honeychum | 0 | 16,872,732,889 | 90% | ||
joebloggs67 | 0 | 21,803,200,944 | 90% | ||
liberty-minded | 0 | 64,792,302,154 | 90% | ||
usammiismi | 0 | 5,551,887,185 | 90% | ||
florio | 0 | 9,279,591,677 | 90% | ||
rolf.bakker | 0 | 10,811,547,022 | 90% | ||
aaagent | 0 | 372,371,206 | 90% | ||
lanceman | 0 | 5,672,543,598 | 90% | ||
gurunayak | 0 | 478,979,545 | 90% | ||
gordonovich | 0 | 84,495,432 | 90% | ||
tremendospercy | 0 | 139,086,945,191 | 90% | ||
rerez | 0 | 18,697,736,492 | 90% | ||
federacion45 | 0 | 67,843,861,174 | 90% | ||
stargarden | 0 | 5,128,293,307 | 90% | ||
foways | 0 | 371,594,989 | 45% | ||
gindor | 0 | 76,010,076,714 | 90% | ||
tamsguitar | 0 | 31,332,757,438 | 90% | ||
reconnectnature | 0 | 81,434,150,951 | 90% | ||
heastbistdeppad | 0 | 10,072,717,339 | 90% | ||
popponayashelly | 0 | 125,195,039 | 90% | ||
investlimestone | 0 | 54,979,297,802 | 90% | ||
raffael | 0 | 496,759,244 | 90% | ||
epicdesigns | 0 | 14,716,187,319 | 90% | ||
spoylerbg | 0 | 48,191,475,121 | 90% | ||
beckenbauer | 0 | 46,087,701,572 | 90% | ||
nenio | 0 | 66,355,768,939 | 90% | ||
surfyogi | 0 | 1,327,307,030,374 | 90% | ||
milopepper | 0 | 1,161,692,091 | 90% | ||
hope777 | 0 | 4,397,449,338 | 90% | ||
adriansky | 0 | 104,938,288,500 | 90% | ||
nrajesh | 0 | 19,373,338,519 | 90% | ||
bargolis | 0 | 13,085,918,023 | 90% | ||
shawnfishbit | 0 | 19,481,447 | 90% | ||
forykw | 0 | 169,152,669,324 | 90% | ||
eggmeister | 0 | 24,422,533,719 | 90% | ||
dbzfan4awhile | 0 | 501,659,368 | 90% | ||
jraysteem | 0 | 5,920,968,112 | 90% | ||
cryptocat | 0 | 197,783,369 | 90% | ||
kingtate | 0 | 1,157,525,665 | 90% | ||
iveta | 0 | 4,963,389,870 | 90% | ||
unlockrs | 0 | 3,408,489,920 | 90% | ||
jiva34 | 0 | 22,155,372,250 | 90% | ||
indiantraveller | 0 | 372,288,120 | 90% | ||
davydd.evans | 0 | 9,012,972,614 | 90% | ||
cryptastic | 0 | 25,326,647,899 | 90% | ||
unatalmaria | 0 | 280,802,959 | 100% | ||
aurimo | 0 | 5,311,348,397 | 90% | ||
nybble | 0 | 492,669,053 | 90% | ||
agrostis | 0 | 59,103,865,645 | 90% | ||
jagged | 0 | 580,855,403 | 90% | ||
cabbagepatch | 0 | 44,830,556,641 | 90% | ||
shellyduncan | 0 | 128,157,528,144 | 90% | ||
bhmcintosh | 0 | 312,905,759 | 90% | ||
doqstrader | 0 | 643,830,806 | 90% | ||
world-travel-pro | 0 | 221,006,164,109 | 90% | ||
dinoo | 0 | 236,667,679 | 90% | ||
rt395 | 0 | 19,873,719,948 | 90% | ||
sneakgeekz | 0 | 53,407,678,847 | 90% | ||
voghera | 0 | 22,708,210,546 | 90% | ||
jkkim | 0 | 634,324,266 | 90% | ||
ebejammin | 0 | 5,377,067,334 | 90% | ||
mal402 | 0 | 604,750,104 | 90% | ||
onsomewavyshit | 0 | 12,591,551,500 | 90% | ||
dabeckster | 0 | 21,253,964,947 | 90% | ||
gohba.handcrafts | 0 | 88,938,143,178 | 90% | ||
arqetype | 0 | 1,133,864,175 | 90% | ||
nicolicreer | 0 | 95,293,273 | 90% | ||
swelker101 | 0 | 122,353,249,641 | 90% | ||
monoc | 0 | 23,520,239 | 100% | ||
daumantas | 0 | 23,797,937,484 | 90% | ||
ericarthurblair | 0 | 43,793,717,082 | 90% | ||
steemit.nemesis | 0 | 47,667,024,908 | 90% | ||
costopher | 0 | 31,138,553,817 | 90% | ||
reggaemuffin | 0 | 9,747,987,668,739 | 100% | ||
goodaytraders | 0 | 139,196,451 | 90% | ||
sportsdesk | 0 | 458,887,947 | 90% | ||
bluejack7 | 0 | 140,621,719 | 90% | ||
alokchitri | 0 | 27,753,904,436 | 90% | ||
qwasert | 0 | 201,661,374 | 90% | ||
catboy | 0 | 495,709,109 | 90% | ||
kubbyelizabeth | 0 | 71,395,595,586 | 90% | ||
joechiappetta | 0 | 99,803,764,755 | 90% | ||
scandinavianlife | 0 | 6,689,764,144 | 90% | ||
coffeetime | 0 | 39,543,374,003 | 90% | ||
landern | 0 | 19,512,177,008 | 90% | ||
rahulyadav | 0 | 341,126,584 | 90% | ||
thinksalot | 0 | 133,133,181 | 90% | ||
altportal | 0 | 168,276,961 | 90% | ||
jeffreytong | 0 | 1,885,537,391 | 90% | ||
tizswa | 0 | 268,845,732,479 | 90% | ||
jimsparkle | 0 | 517,236,065 | 90% | ||
happychau123 | 0 | 5,052,977,018 | 90% | ||
krypto101 | 0 | 480,833,686 | 90% | ||
shikika | 0 | 225,119,825,952 | 90% | ||
revelim | 0 | 67,482,029,266 | 90% | ||
artwithflo | 0 | 46,209,883,470 | 90% | ||
dreamcity | 0 | 1,163,438,474 | 90% | ||
ekavieka | 0 | 35,449,981,523 | 90% | ||
yehey | 0 | 9,932,917,600 | 10% | ||
freethink | 0 | 23,096,898,650 | 90% | ||
berlinmoonlight | 0 | 583,322,233 | 90% | ||
brandocrypto | 0 | 16,759,621,818 | 90% | ||
efsane | 0 | 678,260,729 | 90% | ||
paulyaces76 | 0 | 164,007,115 | 90% | ||
cryptohustler | 0 | 31,200,249,039 | 90% | ||
kontora | 0 | 68,701,006,050 | 90% | ||
goofyu | 0 | 19,434,357,405 | 90% | ||
eqko | 0 | 83,768,318,388 | 90% | ||
masterthematrix | 0 | 53,430,799,504 | 90% | ||
cecicastor | 0 | 58,015,401,090 | 90% | ||
somethingsubtle | 0 | 23,495,490,888 | 90% | ||
anfitriones | 0 | 10,372,383 | 100% | ||
coquiunlimited | 0 | 112,943,819 | 1.38% | ||
amiramnoam | 0 | 223,895,313,705 | 90% | ||
drwom | 0 | 9,879,630,280 | 90% | ||
shirish5 | 0 | 195,246,543 | 90% | ||
arrliinn | 0 | 21,327,429,099 | 90% | ||
abishai | 0 | 855,292,261 | 90% | ||
michaelwilshaw | 0 | 32,220,614,120 | 90% | ||
deismac | 0 | 1,128,443,661 | 90% | ||
justaboutart | 0 | 16,215,456,405 | 90% | ||
kemal13 | 0 | 20,177,029,594 | 90% | ||
ligit | 0 | 8,424,595,045 | 90% | ||
whiessl | 0 | 0 | 90% | ||
testing123 | 0 | 588,406,895,201 | 90% | ||
evoman1 | 0 | 170,440,177 | 90% | ||
jockey | 0 | 12,504,226,102 | 90% | ||
robofox | 0 | 6,255,086,807 | 100% | ||
ilbarone623 | 0 | 28,944,402,502 | 90% | ||
marty-art | 0 | 31,066,270,447 | 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 | 10,779,171,275 | 90% | ||
diggerdugg | 0 | 8,807,092,668 | 90% | ||
amarie | 0 | 20,697,664,510 | 90% | ||
burnedpixel | 0 | 26,638,157,384 | 90% | ||
djluka14 | 0 | 44,435,348,301 | 90% | ||
johnlue | 0 | 7,870,222,497 | 90% | ||
aaronli | 0 | 48,902,470,943 | 90% | ||
danielrkaufmann | 0 | 383,973,973 | 90% | ||
kwakumax | 0 | 18,395,790,620 | 90% | ||
irishabstainer | 0 | 426,222,466 | 90% | ||
tastetwist | 0 | 566,247,925 | 90% | ||
welovegaming | 0 | 996,006,320 | 90% | ||
pennsif | 0 | 25,213,993,543 | 12% | ||
soymanu | 0 | 308,798,678 | 90% | ||
chicosonico | 0 | 889,386,174 | 90% | ||
gokulnk | 0 | 23,025,943,538 | 90% | ||
beatitudes8 | 0 | 9,127,543,222 | 90% | ||
raizel | 0 | 37,751,904,278 | 90% | ||
drakos | 0 | 2,747,267,274,669 | 100% | ||
cardumen | 0 | 103,735,569 | 100% | ||
ewkaw | 0 | 8,498,746,411 | 20% | ||
j-vo | 0 | 4,377,540,455 | 90% | ||
boyelleq | 0 | 5,246,614,374 | 90% | ||
shenchensucc | 0 | 5,195,722,720 | 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,932,695,593 | 90% | ||
mcsamm | 0 | 14,214,164,643 | 90% | ||
giorgiomarino | 0 | 10,648,439,717 | 90% | ||
xxcynicalkidxx | 0 | 331,377,798 | 90% | ||
walkinharmony | 0 | 38,060,647,660 | 90% | ||
mamadini | 0 | 41,772,689,880 | 90% | ||
offoodandart | 0 | 142,454,270,961 | 90% | ||
ew-and-patterns | 0 | 269,010,374,259 | 35% | ||
johnthompson | 0 | 4,781,567,391 | 90% | ||
tzap90 | 0 | 12,378,159,955 | 90% | ||
progressivechef | 0 | 99,731,008,282 | 90% | ||
changeangels | 0 | 29,421,869 | 100% | ||
mitchiesfoodrace | 0 | 32,431,286,791 | 90% | ||
gpenco | 0 | 12,034,994,863 | 90% | ||
saunter | 0 | 45,680,917,556 | 90% | ||
erangvee | 0 | 6,605,752,425 | 90% | ||
mirhimayun | 0 | 1,386,621,858 | 90% | ||
zneeke | 0 | 13,679,669,186 | 90% | ||
lifeartist | 0 | 163,382,526 | 90% | ||
lewis831 | 0 | 3,660,917,594 | 90% | ||
grapthar | 0 | 44,855,724,481 | 90% | ||
asterix87 | 0 | 12,668,366,645 | 90% | ||
diabolika | 0 | 83,725,685,517 | 90% | ||
admyrer | 0 | 6,324,076,804 | 90% | ||
nezbong | 0 | 40,341,513,390 | 90% | ||
nicolaepavelean | 0 | 6,322,370,818 | 90% | ||
mrrifat1 | 0 | 130,022,493 | 90% | ||
affiedalfayed | 0 | 10,949,821,076 | 90% | ||
heypapalegend | 0 | 8,755,773,128 | 90% | ||
truth-be-told | 0 | 42,209,298,251 | 90% | ||
swedishdragon | 0 | 105,159,613,187 | 90% | ||
sidibeat | 0 | 2,561,480,226 | 90% | ||
kuenok | 0 | 8,089,137,986 | 90% | ||
valderrama | 0 | 17,106,850,595 | 90% | ||
tyvain | 0 | 18,628,014,642 | 90% | ||
bulleric | 0 | 1,271,131,277 | 90% | ||
cryptopet | 0 | 198,554,983 | 90% | ||
cryptokraze | 0 | 9,790,077,672 | 90% | ||
brandyb | 0 | 19,187,604,461 | 90% | ||
ulfr | 0 | 539,187,995,595 | 90% | ||
wayness12 | 0 | 307,054,904 | 90% | ||
clemdane | 0 | 22,412,264,270 | 90% | ||
frost04 | 0 | 89,142,265,361 | 90% | ||
whynotdoit | 0 | 1,628,052,648 | 90% | ||
achlord | 0 | 1,235,228,736 | 90% | ||
plumey | 0 | 20,567,453,594 | 90% | ||
hendrix22 | 0 | 72,826,912,588 | 100% | ||
st3llar | 0 | 14,442,582,341 | 90% | ||
raili | 0 | 13,621,732,144 | 90% | ||
summertooth | 0 | 45,734,775,190 | 90% | ||
jefflombardo | 0 | 758,089,902 | 90% | ||
vallesleoruther | 0 | 69,821,388,114 | 90% | ||
joeblack1 | 0 | 1,252,887,183 | 90% | ||
lisaocampo | 0 | 125,374,148,579 | 90% | ||
cedpete389 | 0 | 14,962,409,115 | 90% | ||
pastbastard | 0 | 3,375,850,964 | 90% | ||
chron | 0 | 19,929,548,971 | 90% | ||
prosirius | 0 | 24,269,982,360 | 90% | ||
jacekw | 0 | 8,176,595,112 | 50% | ||
breakthrough | 0 | 29,947,387,739 | 90% | ||
yenipaola | 0 | 10,025,708,380 | 90% | ||
giosou | 0 | 17,691,551,507 | 90% | ||
tweeprise | 0 | 493,479,774 | 90% | ||
stefanmoe | 0 | 9,157,267,225 | 90% | ||
alexhudson | 0 | 165,882,323 | 90% | ||
redfishpillar | 0 | 39,453,061,518 | 90% | ||
drorion | 0 | 21,249,775,545 | 100% | ||
mfconcept | 0 | 36,758,986,129 | 90% | ||
masteranibal | 0 | 231,499,108 | 90% | ||
that1consultant | 0 | 222,300,809 | 90% | ||
codingdefined | 0 | 16,631,164,088 | 15% | ||
kkraze | 0 | 613,964,797 | 90% | ||
karencarrens | 0 | 31,499,955,365 | 90% | ||
fivefiveeleven | 0 | 18,829,105,681 | 90% | ||
uzdc | 0 | 137,688,486 | 90% | ||
sweetieprincess | 0 | 57,145,879,536 | 90% | ||
steemmeupscotty | 0 | 164,068,226,960 | 90% | ||
jaredwood | 0 | 131,890,534 | 90% | ||
sanu | 0 | 421,516,147 | 50% | ||
patricksanlin | 0 | 91,949,367,336 | 90% | ||
ratticus | 0 | 38,952,673,921 | 90% | ||
neuromancer | 0 | 4,412,188,058 | 90% | ||
steemitbc | 0 | 6,841,662,623 | 90% | ||
abigail-dantes | 0 | 766,645,763,134 | 50% | ||
nyinyiwin | 0 | 22,366,386,560 | 90% | ||
fiftysixnorth | 0 | 19,648,991,603 | 90% | ||
owenwat | 0 | 7,749,747,555 | 90% | ||
simonsayz | 0 | 18,324,566,206 | 90% | ||
inquiringtimes | 0 | 28,469,859,187 | 90% | ||
kestutisgarys | 0 | 0 | 90% | ||
thorthur22 | 0 | 133,596,560,075 | 90% | ||
timemaster | 0 | 7,431,685 | 75% | ||
upgoat | 0 | 2,110,605,407 | 100% | ||
resheep | 0 | 433,869,476 | 100% | ||
upcroak | 0 | 183,906,840 | 100% | ||
kona | 0 | 6,367,531,839 | 90% | ||
toxichustle | 0 | 22,034,200,596 | 90% | ||
mrliga | 0 | 17,943,209,113 | 90% | ||
dijital | 0 | 38,149,889,983 | 90% | ||
joe.nobel | 0 | 20,444,300,180 | 90% | ||
jonasthomas | 0 | 659,841,016 | 90% | ||
angela.ghkh | 0 | 168,396,812 | 90% | ||
mandrea | 0 | 143,152,889 | 90% | ||
junvebbei | 0 | 10,065,851,262 | 90% | ||
glitterbooster | 0 | 20,600,278,234 | 90% | ||
tfame3865 | 0 | 22,053,596,121 | 90% | ||
piyushkansal | 0 | 16,364,840,019 | 90% | ||
clumsysilverdad | 0 | 149,511,810,885 | 90% | ||
smyle | 0 | 11,665,957,195 | 90% | ||
cuttie1979 | 0 | 540,072,275,146 | 90% | ||
jasonbu | 0 | 34,868,284,333 | 90% | ||
bikash-tutor | 0 | 13,150,208,885 | 90% | ||
pretzelgirlsandy | 0 | 43,082,135,574 | 90% | ||
nathenial | 0 | 9,353,299,804 | 90% | ||
linebacker | 0 | 198,137,131 | 90% | ||
deluge | 0 | 16,135,342,979 | 90% | ||
kunani | 0 | 147,508,904 | 90% | ||
vikar | 0 | 870,829,969 | 90% | ||
foovler | 0 | 11,648,610,465 | 90% | ||
pepskaram | 0 | 19,949,199,054 | 90% | ||
cschrader | 0 | 399,402,429 | 90% | ||
hassanabid | 0 | 9,888,707,760 | 90% | ||
mirza-kun | 0 | 335,856,942 | 90% | ||
unrared | 0 | 63,808,580,102 | 90% | ||
anandhh | 0 | 11,920,014,780 | 90% | ||
agusscout | 0 | 354,980,869 | 45% | ||
jiangchen | 0 | 11,038,328,050 | 90% | ||
crypto.hype | 0 | 28,256,962,950 | 90% | ||
jasonshick | 0 | 326,324,891,470 | 90% | ||
theleapingkoala | 0 | 164,857,945 | 0.82% | ||
johnwjr7 | 0 | 18,462,922,804 | 90% | ||
boomshikha | 0 | 13,011,567,636 | 90% | ||
hendrikcrause | 0 | 1,240,354,474 | 90% | ||
tagsplanet | 0 | 7,971,030,382 | 90% | ||
bl0ckchained125 | 0 | 1,417,118,951 | 90% | ||
steemit-foodie | 0 | 17,582,693,490 | 90% | ||
chandrayunita | 0 | 1,493,242,482 | 45% | ||
dante01 | 0 | 16,144,254,779 | 90% | ||
chrisdavidphoto | 0 | 43,522,487,309 | 90% | ||
ashleypeat | 0 | 162,290,402 | 90% | ||
ayobami99 | 0 | 18,064,754,329 | 90% | ||
asperger-kids | 0 | 21,668,900,215 | 90% | ||
autofreak | 0 | 10,529,464,444 | 90% | ||
webresultat | 0 | 6,047,914,784 | 90% | ||
ffodie | 0 | 473,910,111 | 90% | ||
emonemolover | 0 | 181,105,130 | 90% | ||
unknown-one | 0 | 231,493,165 | 90% | ||
felander | 0 | 128,582,769,269 | 90% | ||
jokossita | 0 | 4,961,378,879 | 90% | ||
razack-pulo | 0 | 168,416,307,765 | 90% | ||
cryptoeagle | 0 | 10,920,694,772 | 90% | ||
unomas | 0 | 19,348,238,944 | 90% | ||
techblogger | 0 | 85,020,211,089 | 90% | ||
sportsgeek | 0 | 9,473,273,261 | 90% | ||
badham | 0 | 158,507,929 | 50% | ||
wisekricket | 0 | 475,071,849 | 45% | ||
yandot | 0 | 16,804,038,679 | 90% | ||
allizz | 0 | 25,893,305,333 | 90% | ||
lebron2016 | 0 | 2,352,847,841 | 90% | ||
randyw | 0 | 13,837,217,866 | 90% | ||
dcrypto | 0 | 13,640,367 | 90% | ||
redwood419 | 0 | 46,138,350,166 | 90% | ||
peacefulpatriot | 0 | 760,622,477 | 90% | ||
shawkr13 | 0 | 2,138,377,131 | 90% | ||
moderndayhippie | 0 | 36,704,784,371 | 90% | ||
waiyee422 | 0 | 5,742,567,630 | 90% | ||
massivevibration | 0 | 69,943,260,714 | 90% | ||
boontjie | 0 | 74,183,750 | 3.29% | ||
crokkon | 0 | 84,259,431,902 | 100% | ||
soul-thru-da-ink | 0 | 0 | 90% | ||
accelerator | 0 | 18,320,944,474 | 1.29% | ||
etnospace | 0 | 541,079,318 | 100% | ||
libertymarlow | 0 | 1,297,331,662 | 90% | ||
braini | 0 | 26,104,351,870 | 90% | ||
fernowl13 | 0 | 20,387,925,157 | 90% | ||
cryptoprofessor | 0 | 16,540,485,843 | 90% | ||
serkagan | 0 | 4,850,701,195 | 90% | ||
kamikaze | 0 | 186,330,823,675 | 15% | ||
landonator | 0 | 8,030,255,161 | 90% | ||
zaiageist | 0 | 31,974,679,133 | 90% | ||
tradersharpe | 0 | 10,498,153,436 | 90% | ||
topbro | 0 | 373,717,242 | 90% | ||
rusinho027 | 0 | 1,401,262,237 | 90% | ||
guggerf | 0 | 3,668,892,203 | 100% | ||
theresteemer | 0 | 45,462,051,275 | 90% | ||
memen | 0 | 4,067,320,166 | 100% | ||
arrihan | 0 | 19,383,240,109 | 90% | ||
bestlife | 0 | 40,991,915,781 | 90% | ||
sorin.cristescu | 0 | 684,377,340,945 | 100% | ||
djei.art22 | 0 | 1,033,959,202 | 90% | ||
bssman | 0 | 26,904,351,248 | 90% | ||
karlin | 0 | 38,757,508,573 | 90% | ||
michaelmorcos | 0 | 28,453,457,643 | 90% | ||
mikeaga888 | 0 | 184,091,511 | 90% | ||
ambmicheal | 0 | 9,141,309,648 | 90% | ||
scorer | 0 | 184,258,330,342 | 100% | ||
revisesociology | 0 | 303,060,419,807 | 90% | ||
joshpeterson | 0 | 6,254,470,941 | 90% | ||
doodlebear | 0 | 0 | 90% | ||
authorofthings | 0 | 8,510,328,990 | 90% | ||
prettyrose | 0 | 6,616,402,358 | 90% | ||
sandalphon | 0 | 442,620,581,759 | 90% | ||
honolulu | 0 | 39,850,257,288 | 90% | ||
yabapmatt | 0 | 4,292,301,275,820 | 100% | ||
mcfarhat | 0 | 57,507,382,411 | 40% | ||
anothersteemer | 0 | 36,903,964,541 | 90% | ||
nishikanth | 0 | 134,948,197 | 90% | ||
omra-sky | 0 | 18,362,839,371 | 90% | ||
pkalra | 0 | 2,945,461,805 | 90% | ||
ennosan | 0 | 9,322,189,951 | 90% | ||
isnochys | 0 | 7,786,783,346 | 13% | ||
bigdizzle91 | 0 | 29,800,465,234 | 90% | ||
cryptoandzen | 0 | 19,331,425,812 | 90% | ||
toocurious | 0 | 30,024,272,078 | 90% | ||
aldoman-75 | 0 | 9,605,794,858 | 90% | ||
hkniazi | 0 | 86,180,885 | 90% | ||
movieperminute | 0 | 32,750,628,174 | 90% | ||
qurator | 0 | 191,556,623,991 | 3.29% | ||
hogansch | 0 | 7,212,856,846 | 90% | ||
andywong31 | 0 | 104,616,708,086 | 90% | ||
calvinwilliams | 0 | 209,339,143 | 90% | ||
esaug | 0 | 2,059,582,706 | 90% | ||
triniton | 0 | 12,486,180,749 | 90% | ||
pierlave | 0 | 3,732,787,353 | 90% | ||
f3nix | 0 | 9,018,538,265 | 90% | ||
bwar | 0 | 1,644,890,153 | 90% | ||
steemit-bot | 0 | 524,074,326 | 90% | ||
ufxpression | 0 | 8,908,978,274 | 90% | ||
vfxness | 0 | 10,808,139 | 90% | ||
bartosz546 | 0 | 3,264,796,274 | 90% | ||
hungrybanana | 0 | 668,627,709 | 90% | ||
svashta | 0 | 9,350,161,628 | 90% | ||
steembirds | 0 | 45,015,019,080 | 90% | ||
as-i-see-it | 0 | 8,984,118,547 | 90% | ||
nevio | 0 | 8,831,685,232 | 100% | ||
steem-plus | 0 | 31,407,617,476 | 2.49% | ||
pataty69 | 0 | 32,114,124,038 | 90% | ||
spacecadet1 | 0 | 2,290,659,460 | 90% | ||
jesusj1 | 0 | 95,683,495 | 99% | ||
feo | 0 | 14,201,127 | 100% | ||
donwhale | 0 | 12,883,086,221 | 90% | ||
spencervogel | 0 | 33,461,405,730 | 90% | ||
yourfinesight | 0 | 7,427,679,877 | 90% | ||
winniex | 0 | 32,296,661,526 | 90% | ||
lifecruiser | 0 | 8,656,143,897 | 90% | ||
mrrifat | 0 | 216,073,160 | 45% | ||
alvinauh | 0 | 14,521,991,473 | 90% | ||
katamori | 0 | 7,111,671,958 | 90% | ||
altertrader | 0 | 589,684,563 | 90% | ||
natachayacinthe1 | 0 | 37,716,904,195 | 90% | ||
weavingwords | 0 | 52,975,611,961 | 90% | ||
coretan | 0 | 12,606,056,003 | 90% | ||
nat5an | 0 | 2,707,200,849 | 90% | ||
michaeljn | 0 | 20,078,327,361 | 90% | ||
lays | 0 | 449,309,961,509 | 90% | ||
learnandteach01 | 0 | 663,748,999 | 58.5% | ||
csbegu | 0 | 13,863,792,997 | 90% | ||
ashleykalila | 0 | 2,471,978,460 | 90% | ||
panamapilgrim | 0 | 372,952,324 | 100% | ||
nitro.live | 0 | 219,858,631 | 90% | ||
wolfje | 0 | 5,094,473,692 | 90% | ||
shammi | 0 | 33,849,835,758 | 35% | ||
toffer | 0 | 23,271,005,432 | 90% | ||
jaff8 | 0 | 191,278,187,187 | 100% | ||
sayed53 | 0 | 163,479,206 | 45% | ||
axeman | 0 | 28,629,385,997 | 90% | ||
solomonogene | 0 | 338,458,935 | 90% | ||
thecentrestage | 0 | 5,606,889,902 | 90% | ||
sho-t | 0 | 36,749,931,337 | 90% | ||
muzakirpb | 0 | 4,978,474,366 | 90% | ||
mgood | 0 | 9,569,122,616 | 90% | ||
lordnigel | 0 | 9,901,359,646 | 90% | ||
arnavlavan | 0 | 3,444,890,711 | 90% | ||
attoan.cmt | 0 | 12,944,869,496 | 100% | ||
chann | 0 | 17,060,014,276 | 90% | ||
jury.online | 0 | 160,628,354 | 90% | ||
votebank | 0 | 51,485,198,656 | 90% | ||
marvel1206 | 0 | 7,430,170,090 | 45% | ||
jmurphy074 | 0 | 0 | 90% | ||
travoved | 0 | 9,893,923,902 | 90% | ||
mikenero | 0 | 4,724,533,244 | 90% | ||
smitop | 0 | 3,718,522,277 | 100% | ||
lovelydevil | 0 | 1,381,427,768 | 90% | ||
camendes70 | 0 | 4,520,315,226 | 90% | ||
bestgift | 0 | 1,389,907,755 | 90% | ||
motivatorjoshua | 0 | 1,543,789,812 | 90% | ||
steemsports-ita | 0 | 19,853,671,022 | 90% | ||
earthnation | 0 | 39,986,249,187 | 90% | ||
tosuccess | 0 | 1,619,900,736 | 90% | ||
mytechtrail | 0 | 690,710,814 | 50% | ||
alkhairate | 0 | 137,331,343 | 90% | ||
bestgood1 | 0 | 229,974,344 | 90% | ||
helmibireuen | 0 | 8,704,724,971 | 90% | ||
mela65 | 0 | 93,621,982 | 45% | ||
engineeringsteem | 0 | 21,107,383,412 | 90% | ||
josephsavage | 0 | 20,429,553,129 | 90% | ||
taryn0221 | 0 | 454,580,851 | 90% | ||
percygeorge | 0 | 6,679,547,726 | 90% | ||
ein | 0 | 175,849,753 | 90% | ||
bubbleburst | 0 | 8,200,373,971 | 100% | ||
matthewwarn | 0 | 61,734,652,972 | 90% | ||
rynergy | 0 | 179,121,575,847 | 90% | ||
salvao | 0 | 4,398,552,663 | 90% | ||
awolesigideon | 0 | 273,762,822 | 45% | ||
rlt47 | 0 | 95,871,387 | 90% | ||
aceofthegrove | 0 | 8,474,898,766 | 90% | ||
brianturner | 0 | 23,697,242,139 | 90% | ||
sneakyninja | 0 | 6,043,579,060 | 90% | ||
williams-owb | 0 | 618,938,503 | 45% | ||
askmee | 0 | 1,382,040,606 | 90% | ||
duane.dos | 0 | 6,945,629,048 | 90% | ||
nikonmarshall | 0 | 7,936,477,742 | 90% | ||
creatovert | 0 | 427,304,412 | 90% | ||
steembasicincome | 0 | 2,146,406,256,710 | 38.83% | ||
takeone | 0 | 141,372,347 | 90% | ||
ormus | 0 | 131,905,008 | 90% | ||
jpphotography | 0 | 113,060,129,342 | 75% | ||
cryptogem | 0 | 3,141,847,428 | 90% | ||
fourfourfun | 0 | 20,858,303,029 | 90% | ||
datristan | 0 | 10,274,794,781 | 90% | ||
jerseynash | 0 | 112,732,399,306 | 90% | ||
consciousangel7 | 0 | 12,062,891,627 | 90% | ||
thomasgift | 0 | 2,117,541,459 | 50% | ||
nelkeljdm | 0 | 39,031,220,573 | 90% | ||
magmadrome26 | 0 | 24,739,165,734 | 90% | ||
holozaps | 0 | 81,974,838 | 34% | ||
cabernet | 0 | 11,476,747,844 | 90% | ||
massimoc23 | 0 | 10,685,649,960 | 90% | ||
daltono | 0 | 169,813,503,977 | 90% | ||
senseibabs | 0 | 335,538,470 | 90% | ||
groovekeeper | 0 | 19,504,673,222 | 90% | ||
carsonroscoe | 0 | 35,801,766,855 | 90% | ||
stahlberg | 0 | 37,579,086,456 | 90% | ||
datascience | 0 | 347,291,496 | 90% | ||
marou27 | 0 | 6,885,017,605 | 90% | ||
moroccantoughts | 0 | 11,156,191,726 | 90% | ||
yoo1900 | 0 | 16,134,417,823,791 | 83.4% | ||
amosbastian | 0 | 262,124,802,525 | 100% | ||
drtarts | 0 | 4,748,669,034 | 90% | ||
mountainjewel | 0 | 170,740,688,500 | 90% | ||
kathybell | 0 | 7,922,858,600 | 90% | ||
positivibes | 0 | 19,499,227,292 | 90% | ||
joshbillings | 0 | 18,453,302,779 | 90% | ||
irisworld | 0 | 217,480,506 | 30% | ||
ismailkah | 0 | 26,012,565,460 | 90% | ||
asaj | 0 | 16,638,604,191 | 100% | ||
rondras | 0 | 41,251,968,594 | 20% | ||
triviastreak | 0 | 76,998,002,814 | 90% | ||
smjn | 0 | 279,470,206,754 | 50% | ||
ohmylove | 0 | 331,269,262 | 90% | ||
echoatmajaputra | 0 | 70,048,835 | 45% | ||
robertgelbmann | 0 | 20,279,361,673 | 30% | ||
epan35 | 0 | 298,872,772,194 | 90% | ||
admiralsp | 0 | 884,727,235 | 90% | ||
pharmacy-jinni | 0 | 22,816,507,488 | 90% | ||
blogger-funda | 0 | 347,544,013 | 90% | ||
bejaunt | 0 | 12,055,524,326 | 90% | ||
mirnasahara | 0 | 346,231,965 | 90% | ||
soyrosa | 0 | 185,905,923,883 | 100% | ||
seandeanayao | 0 | 30,973,849,627 | 90% | ||
ghaisan | 0 | 221,687,788 | 45% | ||
sittishabir | 0 | 887,511,186 | 45% | ||
wisewoof | 0 | 3,861,565,756 | 50% | ||
zacharylutes | 0 | 189,820,008 | 90% | ||
inspiration101 | 0 | 222,854,555 | 45% | ||
iamfo | 0 | 223,264,177 | 45% | ||
dedyrendra | 0 | 1,030,032,387 | 45% | ||
yunidf | 0 | 193,145,938 | 45% | ||
cfminer | 0 | 3,070,792,486 | 100% | ||
neokuduk | 0 | 3,064,540,083 | 100% | ||
yallapapi | 0 | 25,744,478,575 | 90% | ||
lukasmining | 0 | 2,804,786,015 | 50% | ||
tobias-g | 0 | 20,822,635,726 | 10% | ||
jerrywjl | 0 | 338,728,459 | 90% | ||
literaturk | 0 | 445,226,420 | 100% | ||
charlemajne | 0 | 489,471,351 | 90% | ||
timmylace | 0 | 135,087,671 | 90% | ||
nilfanif | 0 | 8,887,238,061 | 90% | ||
didic | 0 | 94,167,838,064 | 90% | ||
michaelizer | 0 | 251,048,786 | 100% | ||
cryptosludge | 0 | 1,183,835,034 | 90% | ||
claret | 0 | 4,710,462,638 | 90% | ||
yasu | 0 | 293,613,216,304 | 90% | ||
wdoutjah | 0 | 85,380,383 | 7.5% | ||
myintlwinsoe | 0 | 15,015,379,386 | 90% | ||
kaylog | 0 | 93,781,840 | 45% | ||
mcmusic | 0 | 330,397,974 | 45% | ||
mikehamm | 0 | 26,917,407,465 | 90% | ||
abolitionistjay | 0 | 16,081,911,201 | 90% | ||
joaorafael | 0 | 3,967,646,697 | 75% | ||
warmcracklesound | 0 | 1,263,986,751 | 90% | ||
mylichie | 0 | 9,256,011,329 | 90% | ||
sudefteri | 0 | 3,875,198,816 | 100% | ||
tomhall | 0 | 100,218,727,937 | 40% | ||
verhp11 | 0 | 113,415,314 | 1% | ||
preciousimo | 0 | 324,445,895 | 45% | ||
sashas | 0 | 3,094,151,719 | 100% | ||
dr-frankenstein | 0 | 3,476,600,108 | 90% | ||
flugschwein | 0 | 32,941,835,556 | 75% | ||
sexygirl123 | 0 | 86,633,292 | 45% | ||
akifane | 0 | 599,851,458 | 100% | ||
rasit | 0 | 445,185,300 | 100% | ||
lymepoet | 0 | 15,428,094,256 | 90% | ||
archet | 0 | 1,716,252,674 | 90% | ||
steembalkan | 0 | 156,761,390 | 90% | ||
solenn | 0 | 10,928,251,884 | 90% | ||
calaberplays | 0 | 35,062,864,625 | 90% | ||
richmanoloriegbe | 0 | 144,021,693 | 45% | ||
blinkybill | 0 | 23,282,373,984 | 90% | ||
yeni | 0 | 660,806,368 | 45% | ||
aronexxon | 0 | 0 | 100% | ||
fikar22 | 0 | 130,144,511 | 22.5% | ||
hendrimirza | 0 | 1,062,819,147 | 45% | ||
jonnyla08 | 0 | 23,051,850,298 | 90% | ||
silversupplement | 0 | 602,393,680 | 90% | ||
steemdragon | 0 | 149,684,157 | 45% | ||
redheadpei | 0 | 178,239,340 | 5% | ||
maveraunnehr | 0 | 410,006,577 | 100% | ||
mrbloom | 0 | 239,457,045 | 90% | ||
mindszai | 0 | 315,988,923 | 45% | ||
cryptoburner | 0 | 373,293,267,304 | 90% | ||
mohsen63 | 0 | 18,811,366,432 | 90% | ||
chukuibijenny | 0 | 140,442,802 | 45% | ||
satren | 0 | 24,932,930,101 | 25% | ||
lauchmelder | 0 | 13,458,727,098 | 25% | ||
sles | 0 | 8,738,627,099 | 90% | ||
movingman | 0 | 18,559,662,093 | 90% | ||
dmaniac | 0 | 1,632,632,642 | 90% | ||
lovlu2 | 0 | 95,836,994 | 90% | ||
amico | 0 | 396,079,112,717 | 90% | ||
postnice | 0 | 385,680,851 | 90% | ||
siratl | 0 | 14,034,472,538 | 90% | ||
beleg | 0 | 27,777,194,100 | 90% | ||
patso | 0 | 3,271,416,417 | 90% | ||
sahinislam | 0 | 252,900,448 | 50% | ||
bil.prag | 0 | 1,988,302,639 | 4.5% | ||
inespereira | 0 | 284,362,205 | 75% | ||
azharmaulana | 0 | 155,394,691 | 45% | ||
jauharialz | 0 | 652,299,255 | 90% | ||
kutrulaju | 0 | 624,786,126 | 45% | ||
schlafhacking | 0 | 197,203,423,732 | 100% | ||
rjrudillas14 | 0 | 333,645,871 | 90% | ||
thefunfactory | 0 | 72,795,873 | 100% | ||
smokeynagata | 0 | 5,652,562,556 | 90% | ||
someonefun | 0 | 72,795,226 | 100% | ||
agusriandi | 0 | 222,610,403 | 45% | ||
funbox | 0 | 72,795,223 | 100% | ||
funlands | 0 | 412,434,431 | 100% | ||
funanime | 0 | 72,795,211 | 100% | ||
funkyfun | 0 | 72,795,201 | 100% | ||
funnyfun | 0 | 72,795,199 | 100% | ||
dmonia | 0 | 72,795,197 | 100% | ||
goldrym | 0 | 72,794,503 | 100% | ||
qeoddrir | 0 | 72,794,491 | 100% | ||
dodrorth | 0 | 72,794,485 | 100% | ||
biggy-ewu | 0 | 165,707,170 | 90% | ||
zcool | 0 | 188,702,785 | 10% | ||
drowkeudrow | 0 | 292,909,121 | 45% | ||
tidylive | 0 | 1,833,114,992 | 90% | ||
ichigos | 0 | 334,517,540 | 90% | ||
beekerst | 0 | 2,135,440,645 | 90% | ||
tobaloidee | 0 | 36,476,608,823 | 90% | ||
digitalmind | 0 | 10,949,319,948 | 90% | ||
virtaco300cc | 0 | 255,003,185 | 45% | ||
misbahjuli | 0 | 493,775,719 | 90% | ||
effofex | 0 | 78,177,701 | 0.64% | ||
elleok | 0 | 4,842,690,743 | 34% | ||
steem-rescue | 0 | 262,470,951 | 45% | ||
zaim4d1 | 0 | 739,674,970 | 81% | ||
jalaluddinmusa | 0 | 1,020,854,808 | 90% | ||
sblue | 0 | 824,302,406 | 90% | ||
theagriculturist | 0 | 221,277,153 | 45% | ||
arrahman90 | 0 | 234,750,880 | 45% | ||
samlee2018 | 0 | 61,574,992 | 50% | ||
wolf09 | 0 | 3,454,872,019 | 90% | ||
odinsplayground | 0 | 15,948,189,685 | 90% | ||
photofan | 0 | 150,973,207 | 90% | ||
slickshot | 0 | 21,971,106,839 | 90% | ||
sirpicsalot | 0 | 245,940,148 | 90% | ||
mu1stu | 0 | 158,437,644 | 90% | ||
dreimaldad | 0 | 75,398,107,648 | 90% | ||
yassine2014 | 0 | 433,037,836 | 90% | ||
rextylerblunt | 0 | 146,797,424 | 45% | ||
danielwooddesign | 0 | 344,872,037 | 90% | ||
lstack | 0 | 22,040,065,901 | 90% | ||
galakdroneuh | 0 | 221,887,860 | 45% | ||
andrewharland | 0 | 33,380,802,863 | 90% | ||
brightex | 0 | 221,887,860 | 45% | ||
enlighted | 0 | 482,135,092 | 90% | ||
kendallron | 0 | 221,434,089 | 15% | ||
selavinia | 0 | 512,268,905 | 90% | ||
midnight-snack | 0 | 41,603,179,319 | 90% | ||
heruwahyudi | 0 | 221,887,860 | 45% | ||
mldav | 0 | 221,887,860 | 45% | ||
alhidayat | 0 | 475,971,400 | 45% | ||
unlimitedorizons | 0 | 4,133,947,880 | 45% | ||
scintillaic | 0 | 1,694,217,728 | 100% | ||
brendanbowes | 0 | 240,636,703 | 100% | ||
cecyle | 0 | 178,143,710 | 45% | ||
apteacher | 0 | 10,156,254,135 | 90% | ||
kara65 | 0 | 5,902,153,099 | 90% | ||
jonas.inuk | 0 | 4,088,849,296 | 90% | ||
gandalfthebrown | 0 | 4,582,562,338 | 100% | ||
sfa | 0 | 615,016,509 | 90% | ||
ikarus56 | 0 | 1,019,321,564 | 5% | ||
indayclara | 0 | 249,448,197 | 7.5% | ||
crypto.piotr | 0 | 27,575,231,116 | 90% | ||
pinkwonder | 0 | 10,196,109,480 | 100% | ||
holsturr | 0 | 30,915,015 | 90% | ||
muhibpaya2 | 0 | 197,269,326 | 45% | ||
gumbotrader | 0 | 142,361,291 | 90% | ||
pinas | 0 | 449,069,529 | 50% | ||
ingapete | 0 | 15,393,263,689 | 90% | ||
darrenclaxton | 0 | 15,415,315,360 | 90% | ||
sanne | 0 | 330,753,922 | 90% | ||
atacapella | 0 | 1,462,697,032 | 90% | ||
linnyplant | 0 | 25,320,377,715 | 100% | ||
thegridzom | 0 | 11,022,397,164 | 90% | ||
bullsvsbears | 0 | 2,821,218,996 | 45% | ||
shahabudin | 0 | 24,350,157 | 50% | ||
soundworks | 0 | 5,022,307,997 | 100% | ||
elangzone | 0 | 85,943,930 | 22.5% | ||
council | 0 | 948,765,669 | 10% | ||
zharifa | 0 | 216,723,295 | 45% | ||
swisswitness | 0 | 17,951,230,658 | 90% | ||
clearbluecrypto | 0 | 37,663,221,434 | 90% | ||
lousapphire | 0 | 377,513,851 | 90% | ||
alpaca11 | 0 | 1,266,861,191 | 90% | ||
imtase | 0 | 7,923,982,565 | 90% | ||
achim03 | 0 | 21,737,797,399 | 90% | ||
bulma | 0 | 221,887,860 | 45% | ||
evegrace | 0 | 1,363,046,469 | 45% | ||
sitapak | 0 | 221,790,221 | 45% | ||
xlbooster | 0 | 221,408,135 | 45% | ||
steemspeed | 0 | 210,605,997 | 45% | ||
resteemvoter | 0 | 401,646,494 | 90% | ||
arsadulislam | 0 | 221,328,909 | 45% | ||
rikanurrizki | 0 | 586,221,251 | 45% | ||
fadliloways | 0 | 86,427,278 | 22.5% | ||
emmywell | 0 | 84,656,668 | 45% | ||
unmesh | 0 | 154,409,624 | 45% | ||
martinphoto | 0 | 102,436,789,548 | 90% | ||
literaturkritik | 0 | 1,963,656,349 | 100% | ||
bibirider | 0 | 27,622,077,993 | 90% |
Awesome tutorial for setting up multi-signature payment for Steem!
author | attoan.cmt |
---|---|
permlink | re-holger80-multisignature-transaction-guide-for-beempy-20190105t072255436z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-01-05 07:22:57 |
last_update | 2019-01-05 07:22:57 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 07:22: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 | 66 |
author_reputation | 34,791,351,931,730 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,901,259 |
net_rshares | 0 |
Thank you so much for participating the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, letβs change the world!
author | partiko |
---|---|
permlink | re-multisignature-transaction-guide-for-beempy-20190105t003036 |
category | steem |
json_metadata | "" |
created | 2019-01-05 00:30:39 |
last_update | 2019-01-05 00:30:39 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 00:30:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 39,207,160,334,751 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,888,505 |
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-holger80-multisignature-transaction-guide-for-beempy-20190105t131955046z |
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:19:57 |
last_update | 2019-01-05 13:19:57 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 13:19: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 | 1,002 |
author_reputation | 636,410,097,572,565 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,913,287 |
net_rshares | 0 |
Hi, @holger80! You just got a **2.49%** upvote from SteemPlus! To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn. If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
author | steem-plus |
---|---|
permlink | multisignature-transaction-guide-for-beempy---vote-steemplus |
category | steem |
json_metadata | {} |
created | 2019-01-05 11:00:21 |
last_update | 2019-01-05 11:00:21 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 11:00:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,907,591 |
net_rshares | 0 |
#### Hi @holger80! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 7.291 which ranks you at **#64** across all Steem accounts. Your rank has not changed in the last three days. In our last Algorithmic Curation Round, consisting of 207 contributions, your post is ranked at **#4**. ##### Evaluation of your UA score: * Your follower network is great! * 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-multisignature-transaction-guide-for-beempy-20190105t110836z |
category | steem |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-05 11:08:39 |
last_update | 2019-01-05 11:08:39 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 11:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 595 |
author_reputation | 23,214,230,978,060 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,907,897 |
net_rshares | 0 |
This post has been just added as new item to _[timeline of beem on Steem Projects](https://steemprojects.com/projects/p/beem/?utm_source=comment_timeline&utm_medium=steem&utm_campaign=new_event&utm_content=c1)_. If you want to be notified about new updates from this project, register on Steem Projects and add beem to your favorite projects.
author | steemprojects |
---|---|
permlink | re-multisignature-transaction-guide-for-beempy-20190105t001815 |
category | steem |
json_metadata | "" |
created | 2019-01-05 00:18:15 |
last_update | 2019-01-05 00:18:15 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 00:18:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | 29,054,729,340 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,888,122 |
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-holger80-multisignature-transaction-guide-for-beempy-20190108t065450547z |
category | steem |
json_metadata | {"tags":["steem"],"users":["buildteam","steemvoter"],"image":["https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png"],"app":"steemit/0.1"} |
created | 2019-01-08 06:54:51 |
last_update | 2019-01-08 06:54:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-15 06:54: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 | 232 |
author_reputation | 205,124,311,476,054 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,058,303 |
net_rshares | 12,183,389,372 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemvoter | 0 | 12,183,389,372 | 100% |
Congrats @holger80, 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-holger80-multisignature-transaction-guide-for-beempy-20190108t065102963z |
category | steem |
json_metadata | {"tags":["steem"],"users":["holger80"],"app":"steemit/0.1"} |
created | 2019-01-08 06:51:03 |
last_update | 2019-01-08 06:51:03 |
depth | 1 |
children | 1 |
last_payout | 2019-01-15 06:51:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 193 |
author_reputation | 103,594,115,164,820 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,058,184 |
net_rshares | 138,043,297,017 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 138,043,297,017 | 25% |
Thanks a lot for the votes.
author | holger80 |
---|---|
permlink | re-thecryptodrive-re-holger80-multisignature-transaction-guide-for-beempy-20190108t152009980z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-01-08 15:20:12 |
last_update | 2019-01-08 15:20:12 |
depth | 2 |
children | 0 |
last_payout | 2019-01-15 15:20:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 358,857,509,568,825 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,078,631 |
net_rshares | 602,302,447 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 602,302,447 | 40% |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/holger80__multisignature-transaction-guide-for-beempy.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-multisignature-transaction-guide-for-beempy-20190105t002128 |
category | steem |
json_metadata | "" |
created | 2019-01-05 00:21:30 |
last_update | 2019-01-05 00:21:30 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 00:21:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 363 |
author_reputation | -4,535,154,553,995 |
root_title | "Multisignature Transaction Guide for beempy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,888,239 |
net_rshares | 0 |