The post [Bounty to Develop Delegation Manager for Hiveonboard](https://peakd.com/hive-101690/@sportstalksocial/bounty-to-develop-delegation-manager-for-hiveonboard) has inspired me to develop a python based delegation manager bot for hiveonboard. The source code can be found in https://github.com/holgern/delegationOnboardBot  ## How does the bot work? The bot receives a list of all referred accounts by using the API from hiveonboard. Then the current RC level of these accounts is monitored, whenever it drops below a threshold a delegation is given. The given delegation is removed by the bot when one of the following conditions hold: * The account has gained sufficient Hive Power * The delegation period exceeds a specific time duration (can be disabled) * The account posts without setting beneficiaries to the referrer (can be disabled) * Bad behavior was detected (managed by a mute from muteAccount) The parameter that control the bot are set in the config.json. A description of the parameter in the config.json can be found in the [readme](https://github.com/holgern/delegationOnboardBot/blob/master/README.md). ### Installing and running the bot Detailed instruction can be found in the [readme](https://github.com/holgern/delegationOnboardBot/blob/master/README.md). ### Receiving all created accounts from the hiveonboard api The following code part fetches all created account that have a referrer equal to `peakd` ``` import requests limit = 20 offset = 0 referrerAccount = "peakd" onboard_api = "https://hiveonboard.com/api/referrer/" + referrerAccount last_result = [] cnt = 0 result = [] while last_result is not None and len(last_result) == limit or cnt == 0: cnt += 1 r = requests.get(onboard_api + '?offset=%d' % (offset)) if r.ok: last_result = r.json()["items"] if last_result is not None and len(last_result) > 0: result += last_result offset += limit ``` ## Streaming blocks ### Checking for new created accounts The bot streams now all hive blocks and whenever a new account was created, it checks if this account was created through hiveonboard. When this is the case and the referrer account is the correct one, it is added to the account list. ``` elif op["type"] == "create_claimed_account": if op["json_metadata"] == "": continue meta_data = json.loads(op["json_metadata"]) if "beneficiaries" not in meta_data: continue for entry in meta_data["beneficiaries"]: if entry["label"] == "referrer" and entry["name"] == self.config["referrerAccount"]: self.accounts[op["new_account_name"]] = {"timestamp": None, "weight": None, "muted": False, "rc": 0, "hp": 0, "delegated_hp": 0, "delegation_timestamp": None, "rc_comments": 0, "delegation_revoked": False} self.accounts[op["new_account_name"]]["weight"] = entry["weight"] self.accounts[op["new_account_name"]]["timestamp"] = op["timestamp"].replace(tzinfo=None) store_data(self.data_file, "accounts", self.accounts) ``` ### Checking Comment, Vote, Transfer and Custom_json Whenever a referred account is broadcasting either a comment, a vote, a transfer or a custom_json operation, it is checked if the account has sufficient RC. When the account is not able to broadcast at least `minPostRC` posts, he will receive a small delegation, when the following conditions apply: * no delegation yet * no revoked delegation * less owned HP than `maxUserHP` ``` def check_account_on_activity(self, account, timestamp): if account not in self.accounts: return acc = Account(account, blockchain_instance=self.hive) self.accounts[account]["rc"] = acc.get_rc_manabar()["current_mana"] self.accounts[account]["hp"] = acc.get_token_power(only_own_vests=True) self.accounts[account]["rc_comments"] = self.accounts[account]["rc"] / self.comment_rc_costs store_data(self.data_file, "accounts", self.accounts) if self.accounts[account]["delegated_hp"] > 0: return if self.accounts[account]["delegation_revoked"]: return if self.accounts[account]["hp"] > self.config["maxUserHP"]: return if self.accounts[account]["rc_comments"] < self.config["minPostRC"]: ok = self.add_delegation(account, timestamp) if ok: self.notify_account(account, self.config["delegationMsg"]) ``` where `comment_rc_costs` is defined as follows: ``` rc = RC(blockchain_instance=self.hive) self.comment_rc_costs = rc.comment(tx_size=4000, permlink_length=40, parent_permlink_length=0) ``` ### Checking if beneficiaries are correctly set Whenever a referred account is broadcasting a new post, it is checked if the beneficiaries are correctly set. When they are not set and the account had received an delegation, the delegation is revoked. ``` def check_beneficiaries(self, author, permlink): if author not in self.accounts: return if self.accounts[author]["delegated_hp"] == 0: return if self.accounts[author]["delegation_revoked"]: return if not self.config["beneficiaryRemoval"]: return comment = None cnt = 0 while comment is None and cnt < 10: cnt += 1 try: comment = Comment(construct_authorperm(author, permlink), blockchain_instance=self.hive) except: comment = None time.sleep(3) referrer_ok = False for bene in comment["beneficiaries"]: if bene["account"] == self.config["referrerAccount"] and bene["weight"] == self.accounts[author]["weight"]: referrer_ok = True if not referrer_ok: self.remove_delegation(author) self.notify_account(author, self.config["delegationBeneficiaryMsg"]) ``` ### Checking if an account is muted by "muteAccount" Whenever an account is muted by `muteAccount` and had receveid an delegation, the delegation is revoked. ## More checks It is also checked if an account reaches `maxUserHP` HP, when this is the case, the delegation is removed. It is also possible to limit the delegation to a certain duration by setting `delegationLength`. When this is set, delegations are monitored and when the delegation age is higher than the specified threshold, the delegation is removed. The remaining Hive Power of the `delegationAccount` is also monitored and when it drops below a threshold a transfer memo is broadcasted. ### Storing and loading the current state The bot writes all important state variables on every change into a data container and loads them on startup. This makes the bot in combination with systemd very robust. Whenever something goes wrong, the bot is restarted by systemd and the state variables are restored. ## Summary The bot helps services which are using hiveonboard for refering new users and which are managing HP delegation manually by now. The bot is managing delegation/undelegation of HP to new created accounts through [hiveonboard](https://hiveonboard.com/). Every service who is using hiveonboard for referring new user, can use this bot for automatic delegation management. ___ *If you like what I do, consider casting a vote for me as witness on [Hivesigner](https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1) or on [PeakD](https://peakd.com/witnesses)*
author | holger80 |
---|---|
permlink | delegationonboardbot---a-new-bot-for-managing-delegation-to-referred-accounts-created-with-hiveonboarding |
category | hive-139531 |
json_metadata | "{"canonical_url": "https://hive.blog/hive-139531/@holger80/delegationonboardbot---a-new-bot-for-managing-delegation-to-referred-accounts-created-with-hiveonboarding", "community": "hive-139531", "app": "beempy/0.24.6", "image": ["https://images.hive.blog/DQmVXtw5zhwnfq9wrCLie1wSi1EoxyV6KMrzcpXQaKWXWJs/Running%20bot"], "links": ["https://peakd.com/hive-101690/@sportstalksocial/bounty-to-develop-delegation-manager-for-hiveonboard", "https://github.com/holgern/delegationOnboardBot", "https://github.com/holgern/delegationOnboardBot/blob/master/README.md", "https://hiveonboard.com/api/referrer/", "https://hiveonboard.com/", "https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://peakd.com/witnesses"], "tags": ["development", "beem", "python", "hiveonboard"]}" |
created | 2020-08-19 22:07:00 |
last_update | 2020-08-19 22:07:00 |
depth | 0 |
children | 12 |
last_payout | 2020-08-26 22:07:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 49.396 HBD |
curator_payout_value | 38.482 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,541 |
author_reputation | 358,857,509,568,825 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,163,062 |
net_rshares | 216,641,189,337,756 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 553,775,243,734 | 100% | ||
steempty | 0 | 7,909,932,914,291 | 100% | ||
xeldal | 0 | 24,317,202,584,690 | 50% | ||
enki | 0 | 9,459,717,961,651 | 50% | ||
tombstone | 0 | 161,250,483,101 | 7.5% | ||
boatymcboatface | 0 | 297,555,835,963 | 20% | ||
fractalnode | 0 | 30,688,271,724 | 100% | ||
chitty | 0 | 303,862,155,381 | 75% | ||
onealfa | 0 | 141,001,205,231 | 7.58% | ||
kingscrown | 0 | 1,520,184,285,360 | 20% | ||
flemingfarm | 0 | 139,647,297,529 | 80% | ||
acidyo | 0 | 12,459,632,595,768 | 100% | ||
kevinwong | 0 | 4,307,044,687,424 | 50% | ||
theshell | 0 | 79,879,588,639 | 20% | ||
mammasitta | 0 | 170,927,080,040 | 35% | ||
gtg | 0 | 20,621,939,113,846 | 100% | ||
gerber | 0 | 858,899,045,748 | 12.2% | ||
daan | 0 | 57,084,326,226 | 8% | ||
ezzy | 0 | 945,948,696,277 | 12.2% | ||
mrwang | 0 | 15,678,592,934 | 25% | ||
livingfree | 0 | 362,884,591,971 | 4% | ||
meesterboom | 0 | 928,973,233,870 | 55% | ||
arcange | 0 | 3,521,065,775,488 | 100% | ||
exyle | 0 | 930,773,305,263 | 12.2% | ||
sharker | 0 | 7,103,316,912 | 13.06% | ||
arconite | 0 | 17,957,220,494 | 25% | ||
raphaelle | 0 | 3,128,345,482 | 3% | ||
logic | 0 | 130,921,034,939 | 55% | ||
sazbird | 0 | 1,123,938,299 | 27.5% | ||
kibela | 0 | 4,188,337,410 | 13.75% | ||
timcliff | 0 | 1,349,858,097,252 | 100% | ||
laoyao | 0 | 46,941,349,747 | 100% | ||
alinalazareva | 0 | 875,451,052 | 10% | ||
miketr | 0 | 13,669,670,167 | 15% | ||
jphamer1 | 0 | 5,486,220,070,465 | 100% | ||
oflyhigh | 0 | 5,032,978,435,238 | 100% | ||
djennyfloro | 0 | 1,294,620,619 | 10% | ||
fooblic | 0 | 30,899,668,987 | 99% | ||
fingolfin | 0 | 139,048,236,890 | 100% | ||
borran | 0 | 538,694,902,253 | 75% | ||
anech512 | 0 | 9,479,459,466 | 25% | ||
helene | 0 | 1,237,942,342,320 | 100% | ||
lemouth | 0 | 1,801,202,636,015 | 100% | ||
stevescoins | 0 | 254,304,731,139 | 100% | ||
wisbeech | 0 | 3,927,405,158 | 55% | ||
jsantana | 0 | 513,379,124 | 30% | ||
netaterra | 0 | 247,452,458,814 | 10.98% | ||
someguy123 | 0 | 1,535,487,002,974 | 50% | ||
uwelang | 0 | 1,059,527,282,519 | 100% | ||
digital-wisdom | 0 | 546,887,834,441 | 100% | ||
ethical-ai | 0 | 2,132,723,668 | 100% | ||
jwaser | 0 | 24,932,902,107 | 100% | ||
petrvl | 0 | 58,147,041,864 | 7.5% | ||
bwaser | 0 | 11,923,638,031 | 100% | ||
abh12345 | 0 | 760,850,810,734 | 25% | ||
funnyman | 0 | 2,855,984,507 | 20% | ||
justyy | 0 | 82,718,634,680 | 10% | ||
ellepdub | 0 | 3,297,975,899 | 100% | ||
herpetologyguy | 0 | 322,314,613,013 | 100% | ||
morgan.waser | 0 | 26,797,439,081 | 100% | ||
strong-ai | 0 | 2,237,762,126 | 100% | ||
gamer00 | 0 | 63,829,092,675 | 5% | ||
techslut | 0 | 110,796,060,532 | 20% | ||
triviummethod | 0 | 553,845,981 | 100% | ||
created | 0 | 666,894,778,080 | 4% | ||
judasp | 0 | 520,813,882,979 | 100% | ||
technoprogressiv | 0 | 1,037,448,614 | 100% | ||
cardboard | 0 | 14,578,252,157 | 100% | ||
saleg25 | 0 | 10,324,791,151 | 100% | ||
askari | 0 | 56,026,539,175 | 100% | ||
rahul.stan | 0 | 42,370,641,694 | 50% | ||
automaton | 0 | 4,992,254,333 | 100% | ||
tarazkp | 0 | 2,449,097,126,149 | 50% | ||
steemitboard | 0 | 3,009,361,573 | 2% | ||
privex | 0 | 22,795,241,790 | 24.4% | ||
sudutpandang | 0 | 7,119,561,709 | 100% | ||
tabea | 0 | 40,067,366,461 | 30% | ||
ackza | 0 | 149,119,571,449 | 100% | ||
danielsaori | 0 | 440,203,286,084 | 100% | ||
humoalex | 0 | 896,163,350 | 100% | ||
louisthomas | 0 | 76,647,783,167 | 100% | ||
freebornsociety | 0 | 1,916,244,493 | 10% | ||
lizanomadsoul | 0 | 298,884,126,601 | 100% | ||
buster544 | 0 | 20,625,382,329 | 100% | ||
dune69 | 0 | 59,371,430,913 | 12.2% | ||
frankydoodle | 0 | 5,578,118,713 | 50% | ||
josequintana | 0 | 5,108,114,242 | 100% | ||
bobskibob | 0 | 53,167,625,688 | 50% | ||
khussan | 0 | 2,222,903,808 | 100% | ||
jerrybanfield | 0 | 951,294,988,518 | 100% | ||
rocksg | 0 | 156,003,263,378 | 100% | ||
roomservice | 0 | 837,857,846,480 | 18.75% | ||
mys | 0 | 1,807,524,707 | 1.22% | ||
steempearls | 0 | 91,181,985 | 15% | ||
artedellavita | 0 | 39,462,584,304 | 100% | ||
taitux | 0 | 2,610,446,586 | 100% | ||
mxzn | 0 | 1,126,949,549 | 10% | ||
jeanpi1908 | 0 | 143,320,548,843 | 100% | ||
belahejna | 0 | 10,044,865,999 | 7.5% | ||
lelon | 0 | 12,692,637,174 | 100% | ||
skepticology | 0 | 1,583,213,817 | 100% | ||
enjar | 0 | 651,997,685,427 | 100% | ||
maxer27 | 0 | 130,293,022,106 | 25% | ||
blacklux | 0 | 37,524,748,285 | 100% | ||
sam99 | 0 | 66,091,626,737 | 51% | ||
ambar | 0 | 1,086,563,676 | 100% | ||
jingdol | 0 | 318,601,434,800 | 100% | ||
ew-and-patterns | 0 | 182,199,109,074 | 9% | ||
whd | 0 | 1,455,571,796 | 1.22% | ||
d-pend | 0 | 3,393,974,372 | 0.12% | ||
offgridlife | 0 | 578,926,927,636 | 100% | ||
gunthertopp | 0 | 4,339,014,897,028 | 100% | ||
geekgirl | 0 | 1,113,053,352,073 | 100% | ||
benedict08 | 0 | 172,765,904,938 | 50% | ||
mcoinz79 | 0 | 234,765,463,850 | 100% | ||
bubke | 0 | 2,683,736,843,162 | 100% | ||
jacekw | 0 | 60,031,850,422 | 100% | ||
haejin | 0 | 12,826,674,198,726 | 100% | ||
andre-verbrick | 0 | 620,517,835,616 | 100% | ||
codingdefined | 0 | 313,721,573,960 | 100% | ||
shitsignals | 0 | 5,002,914,160 | 12.2% | ||
attajuttjj | 0 | 3,458,244,539 | 100% | ||
shebe | 0 | 33,705,278,255 | 53% | ||
dine77 | 0 | 12,450,523,974 | 15% | ||
tykee | 0 | 6,146,517,670 | 50% | ||
bronkong | 0 | 303,816,125,585 | 100% | ||
khalil319 | 0 | 913,777,975 | 50% | ||
buggedout | 0 | 589,905,407,830 | 100% | ||
june21neneng | 0 | 5,706,535,081 | 100% | ||
onetin84 | 0 | 930,724,325,577 | 100% | ||
my451r | 0 | 20,486,298,594 | 100% | ||
felander | 0 | 62,228,847,184 | 12.2% | ||
rehan12 | 0 | 24,299,808,080 | 20% | ||
santigs | 0 | 27,203,951,521 | 73% | ||
nadhora | 0 | 10,164,059,403 | 56% | ||
bashadow | 0 | 53,326,526,094 | 25% | ||
stoodkev | 0 | 3,170,226,821,286 | 100% | ||
tipu | 0 | 8,006,786,918,263 | 20.01% | ||
kimzwarch | 0 | 8,540,172,470 | 4% | ||
jedigeiss | 0 | 1,239,873,148,010 | 100% | ||
massivevibration | 0 | 28,545,146,333 | 15% | ||
onartbali | 0 | 10,734,674,150 | 50% | ||
nurhayati | 0 | 2,341,815,774 | 50% | ||
crokkon | 0 | 27,249,674,728 | 100% | ||
fbslo | 0 | 343,521,676,055 | 100% | ||
accelerator | 0 | 60,618,401,018 | 5% | ||
hokkaido | 0 | 1,228,480,105 | 39% | ||
yogacoach | 0 | 5,545,088,073 | 6.1% | ||
tomiscurious | 0 | 82,286,234,879 | 32.58% | ||
therealwolf | 0 | 7,886,201,758,924 | 25% | ||
deathwing | 0 | 16,973,189,665 | 12.2% | ||
scorer | 0 | 4,674,135,597 | 100% | ||
revisesociology | 0 | 365,701,971,397 | 30% | ||
puncakbukit | 0 | 261,339,160,476 | 39% | ||
superbing | 0 | 574,402,339 | 90% | ||
creativetruth | 0 | 207,932,473,470 | 100% | ||
isnochys | 0 | 30,766,079,122 | 18% | ||
borgheseglass | 0 | 13,588,028,372 | 100% | ||
shadflyfilms | 0 | 9,218,778,883 | 100% | ||
daisyphotography | 0 | 44,587,343,096 | 100% | ||
investegg | 0 | 81,553,803,095 | 2.22% | ||
fulcrumleader | 0 | 5,493,801,963 | 100% | ||
arabisouri | 0 | 55,416,366,250 | 100% | ||
caladan | 0 | 42,536,226,151 | 12.2% | ||
mrsyria | 0 | 990,221,425 | 100% | ||
kipling | 0 | 586,129,818 | 100% | ||
quekery | 0 | 144,473,188,988 | 100% | ||
omstavan | 0 | 7,326,304,113 | 100% | ||
emrebeyler | 0 | 216,614,054,956 | 12.2% | ||
zakia | 0 | 29,076,918,367 | 100% | ||
irynochka | 0 | 113,762,333 | 100% | ||
smartsteem | 0 | 1,639,649,569,066 | 25% | ||
anli | 0 | 5,807,341,950 | 99% | ||
andrepol | 0 | 5,542,190,429 | 99% | ||
mytechtrail | 0 | 39,776,940,228 | 15% | ||
ocupation | 0 | 166,494,669,693 | 55% | ||
tazi | 0 | 235,547,229,426 | 70% | ||
lebin | 0 | 207,978,991,064 | 100% | ||
aquinotyron3 | 0 | 1,820,659,511 | 100% | ||
itchyfeetdonica | 0 | 30,701,401,523 | 30% | ||
nathen007 | 0 | 34,551,878,382 | 100% | ||
obvious | 0 | 109,198,369,496 | 50% | ||
nokodemion | 0 | 15,669,342,870 | 100% | ||
kamchore | 0 | 134,314,781,464 | 100% | ||
smooms | 0 | 41,582,743,402 | 100% | ||
steembasicincome | 0 | 2,144,641,644,458 | 100% | ||
jpphotography | 0 | 4,072,308,853 | 36.64% | ||
fourfourfun | 0 | 6,753,668,887 | 25% | ||
candyboy | 0 | 3,913,120,054 | 100% | ||
phortun | 0 | 190,592,161,816 | 30% | ||
abitcoinskeptic | 0 | 46,721,919,141 | 20% | ||
jewel-lover | 0 | 1,656,696,384 | 100% | ||
jongolson | 0 | 561,746,611,125 | 50% | ||
bartheek | 0 | 28,439,153,096 | 10% | ||
payger | 0 | 5,660,967,415 | 50% | ||
korinkrafting | 0 | 813,033,792 | 22.5% | ||
nealmcspadden | 0 | 156,806,144,441 | 12.2% | ||
tryskele | 0 | 4,708,372,811 | 5% | ||
edicted | 0 | 796,532,561,769 | 100% | ||
leslierevales | 0 | 2,463,111,417 | 50% | ||
mermaidvampire | 0 | 16,018,089,376 | 45% | ||
ahmedsy | 0 | 2,645,443,648 | 100% | ||
manncpt | 0 | 54,717,735,768 | 100% | ||
purefood | 0 | 174,216,702,841 | 12.2% | ||
seikatsumkt | 0 | 3,679,489,746 | 100% | ||
chrismadcboy2016 | 0 | 18,150,190,536 | 100% | ||
jimcustodio | 0 | 1,797,087,614 | 50% | ||
vaansteam | 0 | 2,058,222,337 | 30% | ||
calist | 0 | 5,416,728,534 | 100% | ||
jarvie | 0 | 765,514,624,275 | 100% | ||
jnmarteau | 0 | 21,595,756,230 | 100% | ||
casberp | 0 | 30,195,255,741 | 21.99% | ||
philnewton | 0 | 2,772,789,917 | 37.5% | ||
udabeu | 0 | 5,118,123,658 | 16% | ||
cfminer | 0 | 536,127,923 | 100% | ||
nobyeni | 0 | 2,506,886,571 | 5% | ||
holger80 | 0 | 2,165,230,822,143 | 50% | ||
unconditionalove | 0 | 1,132,683,722 | 6.1% | ||
upfundme | 0 | 9,344,388,682 | 15% | ||
ericburgoyne | 0 | 1,490,221,230 | 25% | ||
sweetkathy | 0 | 2,188,048,344 | 100% | ||
sudefteri | 0 | 21,189,336,045 | 100% | ||
happy-soul | 0 | 70,494,081,119 | 10% | ||
maxpatternman | 0 | 21,495,907,473 | 100% | ||
condeas | 0 | 1,702,433,383,593 | 100% | ||
anikys3reasure | 0 | 2,866,239,713 | 50% | ||
onlavu | 0 | 4,183,774,501 | 15% | ||
asgarth | 0 | 3,268,732,987,035 | 100% | ||
flugschwein | 0 | 35,231,650,205 | 75% | ||
cst90 | 0 | 58,412,678,631 | 100% | ||
jjal | 0 | 765,987,030 | 100% | ||
akifane | 0 | 3,694,887,746 | 100% | ||
russellstockley | 0 | 3,523,994,370 | 30% | ||
futurecurrency | 0 | 21,603,845,970 | 37% | ||
losi | 0 | 1,985,978,085 | 100% | ||
dunkman | 0 | 809,147,057 | 100% | ||
leeyh | 0 | 183,946,836,233 | 100% | ||
backinblackdevil | 0 | 336,654,773,935 | 75% | ||
frassman | 0 | 792,954,474 | 5% | ||
oadissin | 0 | 32,281,800,124 | 100% | ||
properfraction | 0 | 43,856,002,406 | 100% | ||
erikah | 0 | 225,348,761,976 | 25% | ||
satren | 0 | 81,959,686,182 | 30% | ||
lauchmelder | 0 | 4,917,737,823 | 100% | ||
amico | 0 | 1,419,654,553,480 | 97.69% | ||
marcus0alameda | 0 | 934,223,276 | 50% | ||
bestboom | 0 | 49,132,809,418 | 12.2% | ||
eunsik | 0 | 293,935,744,981 | 50% | ||
onepercentbetter | 0 | 138,575,058,762 | 100% | ||
dotwin1981 | 0 | 91,407,169,450 | 20% | ||
ronaldoavelino | 0 | 188,236,455,785 | 40% | ||
lesmouths-travel | 0 | 8,103,105,431 | 100% | ||
shawmeow | 0 | 10,560,510,441 | 100% | ||
sbi2 | 0 | 1,498,186,349,922 | 100% | ||
dera123 | 0 | 1,212,092,394,023 | 100% | ||
altobee | 0 | 67,744,020,357 | 65% | ||
talhasch | 0 | 124,130,272,711 | 100% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 21,929,922,729 | 15% | ||
blainjones | 0 | 7,912,388,210 | 7.5% | ||
gadrian | 0 | 161,433,788,192 | 100% | ||
themightyvolcano | 0 | 19,172,066,558 | 12.2% | ||
iseeyouvee | 0 | 647,061,039 | 12.2% | ||
peekbit | 0 | 21,505,309,999 | 96.77% | ||
kgakakillerg | 0 | 23,005,624,513 | 10% | ||
reinaldoverdu | 0 | 17,696,064,202 | 100% | ||
saboin | 0 | 89,973,576,859 | 11% | ||
ifunnymemes | 0 | 2,269,724,207 | 6.1% | ||
stefannikolov | 0 | 1,002,867,240 | 10% | ||
globalschool | 0 | 40,581,241,248 | 50% | ||
morellys2004 | 0 | 1,377,830,611 | 100% | ||
sbi3 | 0 | 966,442,496,349 | 100% | ||
promobot | 0 | 83,909,567,706 | 100% | ||
cesaramos | 0 | 25,509,857,586 | 100% | ||
superlao | 0 | 18,415,691,858 | 100% | ||
sbi4 | 0 | 714,231,702,449 | 100% | ||
opt2o | 0 | 2,870,542,664 | 50% | ||
rozku | 0 | 46,490,980,054 | 30% | ||
fw206 | 0 | 640,232,072,080 | 100% | ||
slobberchops | 0 | 2,418,925,268,680 | 50% | ||
atanas007 | 0 | 9,611,308,773 | 100% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
meins0815 | 0 | 9,268,054,436 | 23% | ||
crimo | 0 | 621,750,074 | 11.5% | ||
crypticat | 0 | 4,140,455,210 | 100% | ||
flibbertigibbet | 0 | 5,042,815,573 | 100% | ||
spamfarmer | 0 | 1,156,255,812 | 25% | ||
linnyplant | 0 | 43,339,017,316 | 100% | ||
commonlaw | 0 | 4,491,963,767 | 35% | ||
cryptoandcoffee | 0 | 571,019,329,852 | 50% | ||
solarwarrior | 0 | 1,307,536,671,472 | 100% | ||
merlion | 0 | 36,019,569,839 | 100% | ||
simplegame | 0 | 36,539,268,254 | 100% | ||
sbi5 | 0 | 471,538,513,918 | 100% | ||
qam2112 | 0 | 3,505,395,543 | 100% | ||
swisswitness | 0 | 7,331,560,734 | 12.2% | ||
kahvesizlik | 0 | 1,252,649,308 | 100% | ||
inteligente | 0 | 30,599,352 | 21.99% | ||
moneybaby | 0 | 826,513,622 | 2.5% | ||
kriang3tee | 0 | 3,576,283,196 | 65% | ||
imtase | 0 | 530,013,594 | 65% | ||
longer | 0 | 2,453,836,154 | 5% | ||
sbi6 | 0 | 365,688,137,903 | 100% | ||
libuska | 0 | 1,958,585,518 | 100% | ||
drsensor | 0 | 2,214,240,977 | 80% | ||
urdreamscometrue | 0 | 21,735,110,000 | 100% | ||
gallerani | 0 | 733,564,730 | 12.2% | ||
baiboua | 0 | 7,344,354,352 | 65% | ||
akioexzgamer | 0 | 15,707,651 | 65% | ||
daath | 0 | 1,143,045,836 | 100% | ||
dalz | 0 | 16,797,389,278 | 6.1% | ||
yuza | 0 | 1,163,591,294 | 65% | ||
pvinny69 | 0 | 14,063,834,058 | 50% | ||
sbi7 | 0 | 255,651,370,678 | 100% | ||
julian2013 | 0 | 822,976,237 | 0.54% | ||
dlike | 0 | 149,995,398,172 | 12.2% | ||
triptolemus | 0 | 911,410,094 | 12.2% | ||
cryptoyzzy | 0 | 113,554,703,527 | 100% | ||
paopaoza | 0 | 1,859,499,384 | 65% | ||
fullnodeupdate | 0 | 13,697,863,506 | 50% | ||
ten-years-before | 0 | 259,182,519 | 65% | ||
altonos | 0 | 35,886,022,953 | 25% | ||
furioslosi | 0 | 1,447,577,440 | 100% | ||
kr-coffeesteem | 0 | 31,566,029,670 | 100% | ||
a-bot | 0 | 33,115,290,372 | 100% | ||
bobby.madagascar | 0 | 10,710,107,314 | 9.15% | ||
laissez-faire | 0 | 47,148,980 | 100% | ||
pet.society | 0 | 194,533,175,007 | 4% | ||
muscara | 0 | 35,757,181,026 | 20% | ||
cultus-forex | 0 | 75,637,885,349 | 100% | ||
musinka | 0 | 1,969,893,657 | 100% | ||
puza | 0 | 939,879,723 | 65% | ||
mister-meeseeks | 0 | 60,590,970,068 | 50% | ||
crypto.story | 0 | 57,980,783 | 65% | ||
sbi8 | 0 | 207,356,267,461 | 100% | ||
gamer0815 | 0 | 845,198,160 | 20% | ||
univers.crypto | 0 | 184,385,632 | 65% | ||
ibc | 0 | 2,005,291,038 | 100% | ||
mintrawa | 0 | 1,122,196,992 | 65% | ||
ldp | 0 | 1,549,127,026 | 12.2% | ||
steemitcuration | 0 | 703,835,203 | 25% | ||
sbi9 | 0 | 132,522,087,208 | 100% | ||
merlin7 | 0 | 157,341,528,415 | 12.2% | ||
actifit-peter | 0 | 407,555,588,176 | 98.84% | ||
besheda | 0 | 1,196,904,186 | 43% | ||
thrasher666 | 0 | 1,785,482,146 | 60% | ||
everyoung | 0 | 559,978,437 | 100% | ||
florino | 0 | 814,011,392 | 15% | ||
soilder | 0 | 717,861,818 | 100% | ||
linuxbot | 0 | 753,038,290 | 100% | ||
forecasteem | 0 | 86,179,412,989 | 100% | ||
geeklania | 0 | 8,189,969,956 | 100% | ||
followjohngalt | 0 | 69,671,396,731 | 12.2% | ||
mistia | 0 | 6,563,013,072 | 100% | ||
glastar | 0 | 1,373,876,177,601 | 100% | ||
yongsam | 0 | 11,966,499,473 | 100% | ||
sbi10 | 0 | 123,954,568,412 | 100% | ||
marki99 | 0 | 446,499,927,334 | 100% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
moneytron | 0 | 10,099,648,626 | 100% | ||
starrouge | 0 | 609,095,514 | 30% | ||
wherein | 0 | 279,408,000,369 | 60% | ||
bluerobo | 0 | 83,956,273,775 | 100% | ||
zerofive | 0 | 559,350,343 | 30% | ||
j-p-bs | 0 | 2,270,672,336 | 100% | ||
thehealthylife | 0 | 3,860,340,192 | 100% | ||
smon-fan | 0 | 2,010,071,501 | 100% | ||
jacuzzi | 0 | 3,345,213,124 | 10% | ||
kaldewei | 0 | 4,147,652,703 | 20% | ||
mrsbozz | 0 | 1,768,057,914 | 30% | ||
steemillu | 0 | 37,808,774,346 | 100% | ||
tr77 | 0 | 863,283,908 | 100% | ||
flyingbolt | 0 | 888,231,147 | 12.2% | ||
determine | 0 | 715,223,706 | 12.2% | ||
smonian | 0 | 1,677,221,212 | 100% | ||
cnstm | 0 | 172,502,734,634 | 60% | ||
tonalddrump | 0 | 7,759,456 | 50% | ||
permaculturedude | 0 | 4,731,595,464 | 12.2% | ||
agent14 | 0 | 23,718,599,103 | 35% | ||
elikast | 0 | 19,435,384,608 | 100% | ||
jamesbattler | 0 | 101,429,258,824 | 100% | ||
smon-joa | 0 | 12,222,644,394 | 100% | ||
lianjingmedia | 0 | 582,403,305 | 60% | ||
broxi | 0 | 6,902,623,196 | 50% | ||
hanke | 0 | 6,267,849,732 | 100% | ||
curationvoter | 0 | 10,922,991,259 | 50% | ||
curationhelper | 0 | 9,775,230,535 | 100% | ||
redaktion | 0 | 1,040,654,823 | 100% | ||
realgoodcontent | 0 | 952,918,733 | 100% | ||
hungrybear | 0 | 3,681,895,564 | 100% | ||
hamsa.quality | 0 | 6,659,614,629 | 100% | ||
dcommerce | 0 | 824,578,512,403 | 100% | ||
abbenay | 0 | 2,010,052,365 | 9.37% | ||
steemean | 0 | 177,574,337,721 | 100% | ||
sm-skynet | 0 | 945,227,979 | 100% | ||
bewithbreath | 0 | 2,092,829,565 | 5% | ||
hungryharish | 0 | 1,124,030,429 | 3.05% | ||
cpt-sparrow | 0 | 6,345,673,202 | 100% | ||
newsticker | 0 | 928,162,458 | 100% | ||
witcher73 | 0 | 1,703,047,550 | 100% | ||
marymi | 0 | 480,124,706 | 100% | ||
ttg | 0 | 186,351,587,805 | 100% | ||
vcdragon | 0 | 11,134,138,286 | 100% | ||
alenox | 0 | 7,262,174,163 | 100% | ||
maxsieg | 0 | 2,337,465,085 | 25% | ||
mfblack | 0 | 57,551,698,331 | 11.59% | ||
steemcartel | 0 | 7,496,865,586 | 100% | ||
szf | 0 | 692,400,266 | 50% | ||
blue.rabbit | 0 | 786,157,570,912 | 100% | ||
ichmusslaufen | 0 | 600,542,968 | 15% | ||
alexvanaken | 0 | 24,270,926,957 | 100% | ||
actifit-devil | 0 | 8,266,882,088 | 100% | ||
samujaeger | 0 | 73,433,763,571 | 100% | ||
epicdice | 0 | 55,948,582,367 | 7.5% | ||
bigmoneyman | 0 | 902,495,034 | 50% | ||
raspibot | 0 | 4,129,056,989 | 100% | ||
blockchainpeople | 0 | 117,012,822 | 21.99% | ||
helgalubevi | 0 | 16,900,589,129 | 100% | ||
gulf41 | 0 | 5,905,775,430 | 100% | ||
sm-silva | 0 | 1,384,520,126 | 6.1% | ||
naltedtirt | 0 | 1,970,245,973 | 50% | ||
steementertainer | 0 | 4,619,039,456 | 65% | ||
stickstore | 0 | 862,502,147 | 100% | ||
likwid | 0 | 3,112,043,250,404 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
dachcolony | 0 | 17,232,149,058 | 100% | ||
tinyhousecryptos | 0 | 530,827,304 | 5% | ||
plankton.token | 0 | 26,548,727,858 | 30% | ||
captain.kirk | 0 | 127,726,775 | 50% | ||
tggr | 0 | 1,160,846,027 | 3% | ||
iamjohn | 0 | 1,528,804,937 | 25% | ||
firefuture | 0 | 3,568,232,860 | 6.1% | ||
ilovecanada | 0 | 92,832,953 | 50% | ||
steemindian | 0 | 1,143,801,131 | 6.1% | ||
nalexadre | 0 | 300,282,592 | 65% | ||
cryptogambit | 0 | 1,443,092,546 | 7.5% | ||
tomoyan | 0 | 48,152,546,294 | 100% | ||
imbartley | 0 | 1,573,554,050 | 50% | ||
leeyh3 | 0 | 746,492,520 | 50% | ||
kgswallet | 0 | 2,902,188,366 | 100% | ||
milu-the-dog | 0 | 5,174,205,594 | 12.2% | ||
lrekt01 | 0 | 2,786,447,494 | 100% | ||
triplea.bot | 0 | 4,361,855,711 | 12.2% | ||
steem.leo | 0 | 259,796,329,487 | 12.2% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
votebetting | 0 | 494,724,019,475 | 50% | ||
ali-h | 0 | 1,690,237,229 | 100% | ||
leeyh5 | 0 | 1,527,965,975 | 50% | ||
freddio.sport | 0 | 6,304,874,886 | 15% | ||
co2admin | 0 | 18,591,276,780 | 99.43% | ||
babytarazkp | 0 | 3,283,392,397 | 50% | ||
asteroids | 0 | 12,245,557,515 | 10.98% | ||
tokenindustry | 0 | 3,461,391,188 | 80% | ||
ticketyboo | 0 | 11,685,671,807 | 100% | ||
ticketywoof | 0 | 11,683,970,664 | 100% | ||
thranax | 0 | 10,950,296,057 | 15% | ||
crymaze | 0 | 3,738,350,965 | 50% | ||
crypmace | 0 | 3,738,350,965 | 50% | ||
sbi-tokens | 0 | 11,475,169,602 | 35.19% | ||
one.life | 0 | 901,622,851 | 12.17% | ||
mrurbex | 0 | 0 | 100% | ||
maxuvd | 0 | 25,635,646,801 | 6% | ||
maxuve | 0 | 27,753,528,497 | 6% | ||
dark-queen | 0 | 7,503,002,502 | 50% | ||
btscn | 0 | 515,373,033,773 | 100% | ||
borbina | 0 | 11,770,489,290 | 100% | ||
ctl001 | 0 | 597,123,744 | 100% | ||
blackpassion | 0 | 3,596,912,967 | 50% | ||
bcm | 0 | 10,559,965,047 | 15% | ||
andylein | 0 | 42,983,208,357 | 50% | ||
mein2070 | 0 | 2,687,715,511 | 75% | ||
bilpcoinrecords | 0 | 614,863,775 | 12.5% | ||
abh12345.medi | 0 | 39,783,652 | 25% | ||
dappstats | 0 | 3,630,837,304 | 15% | ||
ibelin | 0 | 5,472,275,033 | 49% | ||
therealyme | 0 | 747,183,255 | 9.76% | ||
blocktvnews | 0 | 740,110,508 | 6.1% | ||
ilidan | 0 | 7,347,590,700 | 50% | ||
bilpcoin.pay | 0 | 2,556,491,840 | 50% | ||
draxnews | 0 | 27,354,698,225 | 100% | ||
steemillu.random | 0 | 543,254,456 | 100% | ||
qwertm | 0 | 2,985,689,399 | 50% | ||
detetive | 0 | 26,578,410 | 21.99% | ||
gerbo | 0 | 102,391,379 | 12.2% | ||
simplex-world | 0 | 8,859,959,533 | 85.52% | ||
kryptoformator | 0 | 2,687,194,936 | 3.75% | ||
steempower-001 | 0 | 572,831,304 | 100% | ||
ribary | 0 | 4,027,153,804 | 6.1% | ||
akasyofa | 0 | 708,892,209 | 100% | ||
bilpcoinbpc | 0 | 4,615,127,503 | 50% | ||
mice-k | 0 | 59,018,271,587 | 12.2% | ||
curamax | 0 | 5,741,614,486 | 12.2% | ||
drew0 | 0 | 6,392,905,375 | 50% | ||
steemcityrewards | 0 | 959,534,249 | 12.2% | ||
dpend.active | 0 | 4,043,915,055 | 2.44% | ||
stuntman.mike | 0 | 49,227,614,926 | 100% | ||
fengchao | 0 | 3,953,465,025 | 3% | ||
artdescry | 0 | 433,595,693 | 12.2% | ||
peakd | 0 | 1,539,673,482,750 | 100% | ||
hivewatchers | 0 | 273,452,628,919 | 65% | ||
blue-witness | 0 | 1,110,345,281 | 100% | ||
mountaingod | 0 | 360,377,960,767 | 100% | ||
hiveyoda | 0 | 12,264,300,327 | 4% | ||
hiq | 0 | 136,163,450,183 | 100% | ||
folklure | 0 | 968,401,649 | 6.1% | ||
nulledgh0st | 0 | 1,623,076,268,788 | 50% | ||
gitplait | 0 | 58,970,797,581 | 100% | ||
softworld | 0 | 979,863,682,527 | 75% | ||
velinov86 | 0 | 2,165,791,453 | 15% | ||
sadvil | 0 | 2,024,891,182 | 100% | ||
dcityrewards | 0 | 342,068,099,179 | 12.2% | ||
freakeao | 0 | 27,718,741,044 | 100% | ||
marvschurchill1 | 0 | 1,577,840,454 | 50% | ||
feiderman | 0 | 11,836,746,670 | 100% | ||
hiveonboard | 0 | 19,285,281,946 | 18.75% | ||
hivelist | 0 | 18,362,242,815 | 50% | ||
miguelaag | 0 | 12,631,650,495 | 100% | ||
ninnu | 0 | 12,311,729,233 | 15% | ||
kiemis | 0 | 1,401,178,426 | 2.5% | ||
traduzindojogos | 0 | 1,806,603,436 | 100% | ||
ghaazi | 0 | 190,406,628,634 | 100% | ||
nautilus-up | 0 | 857,264,028,174 | 12% | ||
jaguarosky | 0 | 4,615,630,919 | 100% | ||
ronavel | 0 | 253,936,262,760 | 15% | ||
hivecur | 0 | 313,327,718,614 | 12.2% | ||
ykroys | 0 | 9,999,959,616 | 50% | ||
kran7 | 0 | 530,551,152 | 100% | ||
kran8 | 0 | 530,550,980 | 100% | ||
kran9 | 0 | 530,307,429 | 100% | ||
kran10 | 0 | 530,110,346 | 100% | ||
artistparthoroy | 0 | 32,579,516,317 | 100% | ||
butovets | 0 | 982,589,298 | 100% | ||
jelly13 | 0 | 286,018,398,048 | 25.5% | ||
reza-shamim | 0 | 6,087,246,069 | 100% | ||
vabadaba | 0 | 5,739,759,605 | 100% | ||
hivebuilderteam | 0 | 3,792,433,031 | 25% | ||
yewhos | 0 | 718,611,445 | 100% | ||
utopiaeducators | 0 | 115,979,915,912 | 100% | ||
mutabor78 | 0 | 0 | 100% | ||
aerokossa | 0 | 0 | 6% | ||
edwardbanks | 0 | 0 | 100% | ||
chartreader | 0 | 634,379,933 | 12.2% | ||
hivecur2 | 0 | 11,224,559,994 | 10% | ||
reward.app | 0 | 35,936,579,067 | 30% | ||
hive-108278 | 0 | 8,254,774,907 | 25% | ||
mina.royaie | 0 | 0 | 100% | ||
hivehealth | 0 | 7,418,145,462 | 100% | ||
ariefm | 0 | 538,279,477 | 39% | ||
camplife | 0 | 832,041,474 | 100% | ||
kamawen | 0 | 0 | 100% | ||
dying | 0 | 137,738,828,362 | 6.25% | ||
nalesnik | 0 | 55,405,992,057 | 100% | ||
andielor | 0 | 3,736,236,976 | 100% | ||
allsway | 0 | 6,843,958,195 | 100% | ||
sudo-mike | 0 | 0 | 100% | ||
tripode.vote | 0 | 355,291,365 | 100% | ||
bernaljhoander1 | 0 | 9,579,845 | 100% | ||
k4m1k4z3 | 0 | 14,964,034 | 100% |
I have picked your post for my daily hive voting initiative, Keep it up and Hive On!!
author | chitty |
---|---|
permlink | re-delegationonboardbot---a-new-bot-for-managing-delegation-to-referred-accounts-created-with-hiveonboarding-20200824t000652 |
category | hive-139531 |
json_metadata | "" |
created | 2020-08-24 00:06:57 |
last_update | 2020-08-24 00:06:57 |
depth | 1 |
children | 0 |
last_payout | 2020-08-31 00:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 86,901,300,608,582 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,237,505 |
net_rshares | 0 |
Upvoted to thank you @holger80 for supporting the [CO2Fund](https://peakd.com/@co2fund) by, e.g., supporting posts, banner presentation, SP/HP delegation, dustsweeper gifts, helpful tools, etc.
author | co2admin |
---|---|
permlink | re-delegationonboardbot---a-new-bot-for-managing-delegation-to-referred-accounts-created-with-hiveonboarding-20200819t221150z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-08-19 22:11:51 |
last_update | 2020-08-19 22:11:51 |
depth | 1 |
children | 0 |
last_payout | 2020-08-26 22:11: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 | 193 |
author_reputation | 3,792,666,189 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,163,119 |
net_rshares | 0 |
Great one! I was hoping someone will do something like this.
author | dalz |
---|---|
permlink | qfcnfz |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-08-20 06:31:12 |
last_update | 2020-08-20 06:31:12 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 06:31: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 | 60 |
author_reputation | 1,940,273,536,359,641 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,168,052 |
net_rshares | 0 |
Good work!
author | demo123 |
---|---|
permlink | re-holger80-2020820t194015832z |
category | hive-139531 |
json_metadata | {"tags":["development","beem","python","hiveonboard"],"app":"ecency/3.0.3-mobile","format":"markdown+html"} |
created | 2020-08-20 16:40:15 |
last_update | 2020-08-20 16:40:15 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 16:40: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 | 10 |
author_reputation | 510,583,572,156 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,176,393 |
net_rshares | 0 |
it looks interesting ... it will only take me a while to study it for the sake of my English and language but a little ochu ps. interesting
author | denisdenis |
---|---|
permlink | qh76fi |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-09-25 04:42:54 |
last_update | 2020-09-25 04:42:54 |
depth | 1 |
children | 0 |
last_payout | 2020-10-02 04:42: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 | 140 |
author_reputation | 75,539,149,214,246 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,805,422 |
net_rshares | 0 |
Upvoted by GITPLAIT! We have a curation trial on Hive.vote. you can earn a passive income by delegating to [@gitplait](https://hive.vote/dash.php?i=15&id=1&user=gitplait) We share 80 % of the curation rewards with the delegators. ___ _To delegate, use the links or adjust_ [10HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10%20HP), [20HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=20%20HP), [50HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=50%20HP), [100HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100%20HP), [200HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=200%20HP), [500HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=500%20HP), [1,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=1000%20HP), [10,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10000%20HP), [100,000HIVE](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100000%20HP) ___ Join the [Community](https://hive.blog/trending/hive-103590) and chat with us on [Discord](https://discord.gg/CWCj3rw) letβs solve problems & build together.
author | gitplait |
---|---|
permlink | qfdkwf |
category | hive-139531 |
json_metadata | {"links":["https://hive.vote/dash.php?i=15&id=1&user=gitplait","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=20%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=50%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=200%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=500%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=1000%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=10000%20HP","https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=gitplait&vesting_shares=100000%20HP","https://hive.blog/trending/hive-103590","https://discord.gg/CWCj3rw"],"app":"hiveblog/0.1"} |
created | 2020-08-20 18:33:51 |
last_update | 2020-08-20 18:33:51 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 18:33: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 | 1,493 |
author_reputation | 911,220,543,569 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,178,271 |
net_rshares | 0 |
This is pretty awesome!!
author | jarvie |
---|---|
permlink | re-holger80-qfc1hn |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.08.3"} |
created | 2020-08-19 22:37:00 |
last_update | 2020-08-19 22:37:00 |
depth | 1 |
children | 0 |
last_payout | 2020-08-26 22:37: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 | 24 |
author_reputation | 388,491,264,112,133 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,163,378 |
net_rshares | 0 |
Incredible work @holger80! Most impressing how fast you managed to create this. Just a sidenote: This app isn't limited to referred accounts created by hiveonboard, since every dApp could use the Open Standard Referral System right now. One example would be https://quello.io which adapted this system from early on and are creating accounts following this system as well.
author | roomservice |
---|---|
permlink | re-holger80-qfcl2p |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.08.3"} |
created | 2020-08-20 05:40:09 |
last_update | 2020-08-20 05:40:09 |
depth | 1 |
children | 1 |
last_payout | 2020-08-27 05:40:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 373 |
author_reputation | 11,573,428,661,334 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,167,516 |
net_rshares | 217,907,139,729 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 202,183,445,115 | 1% | ||
someguy123 | 0 | 15,163,260,355 | 0.5% | ||
steempower-001 | 0 | 560,434,259 | 100% |
Just now looking into if Hive onboarding through linkedin would be viable, have to look up with the open standard referral system is...
author | shawnsporter |
---|---|
permlink | re-roomservice-qwo5ub |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.07.2"} |
created | 2021-07-22 23:13:24 |
last_update | 2021-07-22 23:13:24 |
depth | 2 |
children | 0 |
last_payout | 2021-07-29 23:13: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 | 135 |
author_reputation | 9,073,837,738,988 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 105,072,877 |
net_rshares | 0 |
Great work @holger80 !! Thank you very much for your work! Hive on ;)
author | tazi |
---|---|
permlink | re-holger80-qfcnm3 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.08.3"} |
created | 2020-08-20 06:34:51 |
last_update | 2020-08-20 06:34:51 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 06:34: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 | 70 |
author_reputation | 80,165,070,749,190 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,168,098 |
net_rshares | 0 |
Thank you! I'm a huge user of HiveOnboard, this is awesome! ```bash [john@john-desktop delegationOnboardBot]$ delegationonboardbot config.json --datadir=. --logconfig=logger.json 2020-08-20 11:00 INFO - main: Loading config: config.json 2020-08-20 11:00 INFO - main: <Hive node=https://hive.roelandp.nl, nobroadcast=False> 2020-08-20 11:00 INFO - check_config: config was found. 2020-08-20 11:00 INFO - print_account_info: 20 accounts have been created with referrer utopiaeducators 2020-08-20 11:00 INFO - print_account_info: 1 accounts have received a delegation (5.000 HP) 2020-08-20 11:00 INFO - print_account_info: 0 accounts have been revoked 2020-08-20 11:00 INFO - main: starting delegation manager for onboarding.. ```
author | utopiaeducators |
---|---|
permlink | re-holger80-qfdaqj |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.08.3"} |
created | 2020-08-20 14:54:21 |
last_update | 2020-08-20 15:02:42 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 14:54: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 | 728 |
author_reputation | -4,088,797,786,952 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,174,564 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
goodcontentbot2 | 0 | 0 | 0.08% | ||
hivewatcher | 0 | 0 | -0.08% |
cool thx for your hard work
author | ziomar |
---|---|
permlink | qfdlnk |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-08-20 18:50:09 |
last_update | 2020-08-20 18:50:09 |
depth | 1 |
children | 0 |
last_payout | 2020-08-27 18:50:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | -135,928,847,292 |
root_title | "delegationOnboardBot - a new bot for managing delegation to referred accounts created with hiveonboarding" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,178,483 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hivewatcher | 0 | 0 | -0.08% |