create account

Announcing RC Angel | RC Pools But Better. by deathwing

View this thread on: hive.blogpeakd.comecency.com
· @deathwing ·
$533.63
Announcing RC Angel | RC Pools But Better.
![image.png](https://files.peakd.com/file/peakd-hive/deathwing/23tbK6bmY6XqWpgJJTNrYdunW68Rv3j74ieNKdisJ8dn7bk2YAw8wUqt1FzgpxBGfpiFn.png)


## Preface

Hey everyone, first of all... that was a ride! HF26 is right around the corner, with lots of anticipated new features. But one thing that made me quite sad was the deprecation of RC Pools in favour of direct RC delegations, while this is much more simpler, potential ways to utilize RC pools were left with very hard-to-handle RC delegations. So I wrote @rc-angel to make it a lot easier!

First of all, I would like to thank @howo, for the initial idea of RC pools and @ausbitbank for providing data that makes RC-Angel work.

RC Angel will be on "Early Access" or "Alpha" period until *at least* the hardfork date. Since RC delegations are gated behind the hardfork. However, this does not mean they do not work. You can test them on mirrornet right now. (courtesy of @gtg)

During this period, I want app devs especially to feel free to contact me so that we can work together on implementing RC-Angel into their systems. You can contact me on Telegram, Discord or other platforms -- whichever you prefer.

I'll dump the documentation I wrote for RC-Angel below, but feel free to ask me any questions that you have.

### What is RC-Angel?

RC-Angel serves as the central hub for RC delegations, previously with the Hardfork 26, one of the most anticipated features was the existence of "RC" Pools. RC Pools were unfortunately scrapped due to performance constraints. RC-Angel serves as a replacement for RC Pools, and is a more efficient way to delegate RC to other accounts than direct delegations.

For the uninitiated, RC is basically your `mana` as you may have seen in video games, on the blockchain. Depending on your Hive Power stake, you get RC from the blockchain. RC is the "transaction fee" you pay for each transaction you perform. However, as opposed to other blockchains like Bitcoin and Ethereum, this fee is not monetary and will regenerate over time (hence, mana) with the hardfork 26, the way RC works and is calculated for transactions is being changed, which makes all transactions more expensive. RC-Angel aims to help minnows (in other words, newcomers) to Hive blockchain by giving them the initial push to earn and power up their first HIVE.

### How does RC-Angel work?

RC-Angel works by requesting two things from the "volunteer" namely their posting authorization, since RC delegations require posting authority and the maxRc that the account owner (or volunteer) is willing to spend on delegations. Afterwards, the volunteer is added to the "pool" (i.e. the database of RC-Angel) and is ready to send delegations. RC-Angel, in itself, is actually just a backend API. Where people can access the API with Auth Keys (API Keys) -- this API key allows the general use of RC-Angel. So essentially, RC-Angel is a backend API that allows people to delegate RC to other accounts.

Whenever a request is made to the API, the API will check the RC costs of certain transactions (`comment, vote, transfer, custom_json`) and dynamically calculate X RC required for Y of these said transactions. The API will then check the RC Pool, find the best suitable volunteer for the delegation and delegate the necessary RC to the user.

RC-Angel has two options at runtime, it can either calculate a dynamic RC or delegate a static RC. These delegations last, for the time being, 30 days from the delegation.

### How do I use RC-Angel?

If you are an app developer, frontend, or community, you can request an auth key to integrate RC-Angel into your service.

Example Use Cases:

You have a Hive Onboarding service where you create brand new accounts, you can implement RC-Angel to delegate RC to the accounts you onboard automatically.
You are operating a game on Hive and one of your users are running out of RC and is unable to transact, you can give them some extra RC to help them out.

### What RC-Angel is NOT!

RC-Angel is not a service that people can use to get around having more RC. In other words, RC-Angel is not a service that anyone can use to get some extra RC for themselves, it is a service that only delegates a small amount of RC to help getting around with day-to-day transactions on Hive. If anyone is in need for extra RC for themselves, I heavily recommend powering up Hive Power instead.

Misuse of RC-Angel by both the app developers as well as the users may result in auth keys being revoked and/or abusers being permanently blacklisted from RC-Angel.

And that's it for general information, down below, I wrote the API documentation for developers :)

# API

## API Keys

All endpoints require an authentication key, without an authentication key, you cannot use the API. You can request an API key by contacting me on Discord.

## Notes

All endpoints require a Content-Type of application/json.

All endpoints return a JSON object with a status field, which will be either success or error.

All endpoints return an HTTP code of `200` if the request was successful, `500` if the request was unsuccessful due to issues on RC-Angel's side, `503` if there are no available accounts for delegation or `418` if the request was unsuccessful due misconfigured parameters within the request itself.

All endpoints require an authentication key sent in the header of the request with the key "auth" and value being the API key.

## Endpoints

### /delegate

#### Description

This endpoint is used to delegate RC to an account.

#### Parameters
user: string (required) - The account that you want to delegate RC to.

#### Example Request

```
curl --location --request POST 'https://rc-angel.deathwing.me/delegate' \
--header 'Auth: APIKEY' \
--header 'Content-Type: application/json' \
--data-raw '{"user": "deathwing"}'
```

#### Example Response

HTTP Code: 200

```
{ 
    "status": "success",
    "message": "Successfully delegated RC to deathwing"
}
```

### /undelegate

#### Description

This endpoint is used to undelegate RC from an account.

#### Parameters
user: string (required) - The account that you want to undelegate RC from.

#### Example Request

```
curl --location --request POST 'https://rc-angel.deathwing.me/undelegate' \
--header 'Auth: APIKEY' \
--header 'Content-Type: application/json' \
--data-raw '{"user": "deathwing"}'
```

#### Example Response

HTTP Code: 200

```
{
    "status": "success",
    "message": "Successfully undelegated RC from deathwing"
}
```

### /banuser

#### Description

This endpoint is used to ban a user from using RC-Angel.

#### Parameters
user: string (required) - The account that you want to ban from using RC-Angel.
reason: string (required) - The reason why you are banning the user.

#### Example Request

```
curl --location --request POST 'https://rc-angel.deathwing.me/banuser' \
--header 'Auth: APIKEY' \
--header 'Content-Type: application/json' \
--data-raw '{"user": "deathwing", "reason": "Abusing delegated RC by spamming posts"}'
```

#### Example Response

HTTP Code: 200

```
{
    "status": "success",
    "message": "Banned deathwing from using RC-Angel."
}
```i
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 890 others
👎  , , , , ,
properties (23)
authordeathwing
permlinkannouncing-rc-angel-or-rc-pools-but-better
categoryhive-139531
json_metadata{"app":"peakd/2022.07.1","format":"markdown","tags":["hive","hardfork","hf26","rc","rc-angel"],"users":["rc-angel","howo","ausbitbank","gtg"],"image":["https://files.peakd.com/file/peakd-hive/deathwing/23tbK6bmY6XqWpgJJTNrYdunW68Rv3j74ieNKdisJ8dn7bk2YAw8wUqt1FzgpxBGfpiFn.png"]}
created2022-10-06 17:29:18
last_update2022-10-06 17:29:18
depth0
children26
last_payout2022-10-13 17:29:18
cashout_time1969-12-31 23:59:59
total_payout_value266.937 HBD
curator_payout_value266.695 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,129
author_reputation269,077,595,754,009
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,242,495
net_rshares791,707,407,224,291
author_curate_reward""
vote details (960)
@acidyo ·
$0.65
![untitled.gif](https://media.tenor.com/XuvtFax9Ds4AAAAC/hunger-games-katniss-everdeen.gif)
👍  , , , , , , , , , , , , ,
👎  , ,
properties (23)
authoracidyo
permlinkre-deathwing-rjcfie
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 18:03:51
last_update2022-10-06 18:03:51
depth1
children0
last_payout2022-10-13 18:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.324 HBD
curator_payout_value0.321 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation3,302,001,735,676,620
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,243,305
net_rshares966,158,471,055
author_curate_reward""
vote details (17)
@arc7icwolf ·
$0.04
What an awesome project! For new users the lack of RC can be frustrating (to say the least)... but thanks to project like this the overall experience will be way more user-friendly and it will surely help keeping newcomers on #hive

Great work!
👍  , , , , , , , ,
properties (23)
authorarc7icwolf
permlinkre-deathwing-2022106t19576852z
categoryhive-139531
json_metadata{"tags":["hive","hardfork","hf26","rc","rc-angel"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-06 17:57:09
last_update2022-10-06 17:57:09
depth1
children0
last_payout2022-10-13 17:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation494,214,062,298,682
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,243,165
net_rshares70,155,153,726
author_curate_reward""
vote details (9)
@bitcoinflood ·
SOLID! 
properties (22)
authorbitcoinflood
permlinkre-deathwing-2022106t154416183z
categoryhive-139531
json_metadata{"tags":["hive","hardfork","hf26","rc","rc-angel"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-06 19:44:15
last_update2022-10-06 19:44:15
depth1
children0
last_payout2022-10-13 19:44:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,645,024,977,979,240
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,245,594
net_rshares0
@brianoflondon ·
$0.28
I want to talk to you about the method for calculating RC costs of operations. 

I think I will have a reliable way of recording this for custom json. 
👍  , , , , , , , , , ,
properties (23)
authorbrianoflondon
permlinkre-deathwing-rjcfot
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 18:07:42
last_update2022-10-06 18:07:42
depth1
children1
last_payout2022-10-13 18:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.142 HBD
curator_payout_value0.138 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation759,674,214,959,955
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,243,393
net_rshares422,021,975,495
author_curate_reward""
vote details (11)
@deathwing ·
Feel free to reach out anytime.
properties (22)
authordeathwing
permlinkre-brianoflondon-rjcigs
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 19:07:42
last_update2022-10-06 19:07:42
depth2
children0
last_payout2022-10-13 19:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation269,077,595,754,009
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,244,634
net_rshares0
@deathwing ·
I am sure @tobetada would be interested in this :)
properties (22)
authordeathwing
permlinkre-deathwing-rjcens
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 17:45:30
last_update2022-10-06 17:45:30
depth1
children0
last_payout2022-10-13 17:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation269,077,595,754,009
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,242,916
net_rshares0
@drniche ·
Interesting redistribution system! 
properties (22)
authordrniche
permlinkre-deathwing-rjel9o
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-07 22:03:24
last_update2022-10-07 22:03:24
depth1
children0
last_payout2022-10-14 22:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation172,973,143,590
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,280,172
net_rshares0
@giftgiver ·
$0.04
🙂
👍  
properties (23)
authorgiftgiver
permlinkre-deathwing-rjce71
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 17:35:24
last_update2022-10-06 17:35:24
depth1
children0
last_payout2022-10-13 17:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation8,103,804,234,940
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,242,669
net_rshares68,647,711,205
author_curate_reward""
vote details (1)
@hivebuzz ·
Congratulations @deathwing! Your post has been a top performer on the Hive blockchain and you have been rewarded with the following badge:

<table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@deathwing) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202209-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202209-delegations">Our Hive Power Delegations to the September PUM Winners </a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202210-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202210-feedback">Feedback from the October 1st Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202209-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202209-result">Hive Power Up Month Challenge 2022-09 - Winners List</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-deathwing-20221007t005455
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-10-07 00:54:45
last_update2022-10-07 00:54:45
depth1
children0
last_payout2022-10-14 00:54:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,444
author_reputation369,200,014,168,821
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,251,816
net_rshares0
@hivebuzz ·
Congratulations @deathwing! Your post has been a top performer on the Hive blockchain and you have been rewarded with the following badge:

<table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutweek.png"></td><td>Post with the highest payout of the week.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@deathwing) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202209-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202209-delegations">Our Hive Power Delegations to the September PUM Winners </a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-deathwing-20221010t040332
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-10-10 04:03:33
last_update2022-10-10 04:03:33
depth1
children0
last_payout2022-10-17 04:03:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length919
author_reputation369,200,014,168,821
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,345,868
net_rshares0
@incublus ·
$0.17
This is great news. Many beginners on Hive can't even reply to comments due to lack of RC. It seems that thanks to you, this problem will be eliminated or minimized. I had a similar problem when I first started Hive, thanks to @damla who delegated me some HP. It is pleasing to see such developments since then.
👍  ,
properties (23)
authorincublus
permlinkre-deathwing-2022106t22403758z
categoryhive-139531
json_metadata{"tags":["hive","hardfork","hf26","rc","rc-angel"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-06 19:40:39
last_update2022-10-06 19:40:39
depth1
children0
last_payout2022-10-13 19:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.086 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length311
author_reputation963,578,277,638,985
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,245,465
net_rshares259,227,513,944
author_curate_reward""
vote details (2)
@katirayo ·
Thanks @deathwing for this solution at least we won't face such no more RC has been some new hivians problem because even as beautiful and lovely your content is they want to like it doesn't work but thanks to you something is been done.
properties (22)
authorkatirayo
permlinkre-deathwing-rjglc6
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-09 00:00:24
last_update2022-10-09 00:00:24
depth1
children0
last_payout2022-10-16 00:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation19,476,347,900,657
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,313,682
net_rshares0
@mcsamm ·
It's exciting to see the many improvements of the ecosystem. Thanks for this.
properties (22)
authormcsamm
permlinkrjdcfd
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-10-07 05:54:51
last_update2022-10-07 05:54:51
depth1
children0
last_payout2022-10-14 05:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation1,528,173,005,934,892
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,256,562
net_rshares0
@officialrosh1 ·
So glad to see another project coming up. Thanks for bringing this up! 

>RC-Angel serves as the central hub for RC delegations, previously with the Hardfork 26, one of the most anticipated features was the existence of "RC" Pools 

If I may ask what is Hardfork 26, how does it functions 
properties (22)
authorofficialrosh1
permlinkre-deathwing-2022106t195053983z
categoryhive-139531
json_metadata{"tags":["hive","hardfork","hf26","rc","rc-angel"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-06 18:50:57
last_update2022-10-06 18:50:57
depth1
children2
last_payout2022-10-13 18:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length289
author_reputation5,185,904,658,085
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,244,240
net_rshares0
@deathwing ·
Hardfork 26 is the next version of Hive, it's an update that'll make the chain better and more efficient.

@themarkymark explained the features in a simpler way on his post.

> Some of the improvements include:
>One Block Irreversibility
Increasing HBD haircut ratio
Allow more than one vote per block
Remove vote change penalty
Support for block log compression
Peer to peer performance improvements
Resource credit overhaul
Resource credit delegation
General improvements to improve operation handling
properties (22)
authordeathwing
permlinkre-officialrosh1-rjcibg
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 19:04:30
last_update2022-10-06 19:04:30
depth2
children1
last_payout2022-10-13 19:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length503
author_reputation269,077,595,754,009
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,244,569
net_rshares0
@officialrosh1 ·
Thanks man 
properties (22)
authorofficialrosh1
permlinkre-deathwing-rjf209
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-08 04:05:00
last_update2022-10-08 04:05:00
depth3
children0
last_payout2022-10-15 04:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation5,185,904,658,085
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,286,354
net_rshares0
@passenger777 ·
This is a really good development. In the first days when I started writing on the Hive platform, I did not have enough hive power to correct my writing. So I was very upset. I think that the RC deficiency we are talking about will disappear in the valuable information you have given. I believe that these developments are a big step for the growth and development of Hive and the participation of new friends. Thank you very much for the information.
properties (22)
authorpassenger777
permlinkrjdign
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-10-07 08:05:12
last_update2022-10-07 08:05:12
depth1
children0
last_payout2022-10-14 08:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length452
author_reputation427,964,432,805,447
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries
0.
accounthiveonboard
weight100
1.
accountroomservice
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,260,863
net_rshares0
@poshtoken · (edited)
$2.34
https://twitter.com/Arc7icWolf/status/1578127559530872845
https://twitter.com/YanPatrick_/status/1578127967070441472
https://twitter.com/taskmaster4450/status/1578207444802625536
https://twitter.com/bitcoins_get/status/1578285748926783490
https://twitter.com/ilbiscom/status/1578364864036470784
https://twitter.com/quase_rico/status/1578765617733468160
<sub> The rewards earned on this comment will go directly to the people( @arc7icwolf, @shiftrox, @taskmaster4450le, @wilsonthe, @seckorama, @michupa ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
👍  , , , , , , , , , , , ,
properties (23)
authorposhtoken
permlinkre-deathwing-announcing-rc-angel-or-rc-pools-but-better15644
categoryhive-139531
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":["arc7icwolf","shiftrox","taskmaster4450le","wilsonthe","seckorama","michupa"]}"
created2022-10-06 20:58:45
last_update2022-10-08 15:15:36
depth1
children0
last_payout2022-10-13 20:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value2.337 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length619
author_reputation5,139,074,044,980,318
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries
0.
accountreward.app
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id117,247,442
net_rshares7,046,439,711,918
author_curate_reward""
vote details (13)
@solymi ·
This sounds awesome! I have some questions:
 Are you planning to make an interface for directly delegating RC to other accounts? Or is there such interface and I don't know about it? I would love to help those users I onboard on my own and check their accounts and undelegate when they reached enough HP to be able to transact on their own. I probably have way more RC than I ever use, even with the tx "cost" being much higher, but I wouldn't know how much of my RC I can delegate without compromoising my own abilities to us the chain. I am playing with a ton of dapps and sending around a bunch of tokens. How much RC do I need? If there is a tool an enduser like me can use to find out all this feel free to point me there :D
I am voting your witness since forever and just realized I had not been following, that has changed now.
Thanks for helping the n00b, have a great day!
properties (22)
authorsolymi
permlinkre-deathwing-rjof3p
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-13 05:26:12
last_update2022-10-13 05:26:12
depth1
children2
last_payout2022-10-20 05:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length882
author_reputation271,515,225,158,652
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,428,376
net_rshares0
@deathwing ·
> Are you planning to make an interface for directly delegating RC to other accounts? Or is there such interface and I don't know about it? 

No. I am not planning such feature, and I don't think there is one yet.

> How much RC do I need?

There is no fixed amount, it'll vary depending on the usage of the transaction type on the blockchain. It's hard to say "X RC is enough for you." because not everyone uses RC the same.

> If there is a tool an enduser like me can use to find out all this feel free to point me there :D

Would be awesome to have, but none at the moment. :(

> I am voting your witness since forever and just realized I had not been following, that has changed now.

Thanks a lot, have a great day as well!
👍  
properties (23)
authordeathwing
permlinkre-solymi-rjot1l
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-13 10:27:21
last_update2022-10-13 10:27:21
depth2
children1
last_payout2022-10-20 10:27:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length729
author_reputation269,077,595,754,009
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,433,098
net_rshares6,341,424,718
author_curate_reward""
vote details (1)
@solymi ·
Thank you for your answers. I will dig into it more.
properties (22)
authorsolymi
permlinkre-deathwing-rjpg33
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-13 18:45:03
last_update2022-10-13 18:45:03
depth3
children0
last_payout2022-10-20 18:45:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation271,515,225,158,652
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,445,286
net_rshares0
@tobetada ·
wow, that was quick :)) 

this will be very beneficial for all newcomers! Thanks for making this happen

@tipu curate
properties (22)
authortobetada
permlinkre-deathwing-rjcht1
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-06 18:53:24
last_update2022-10-06 18:53:24
depth1
children1
last_payout2022-10-13 18:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation596,841,127,072,980
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,244,286
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted  &#128076;</a> (Mana: 17/47) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-deathwing-rjcht1-20221006t185332z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2022-10-06 18:53:33
last_update2022-10-06 18:53:33
depth2
children0
last_payout2022-10-13 18:53:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation55,900,783,339,499
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,244,288
net_rshares0
@tobetada ·
I think what would be nice is if newcomers on Hive (who predominantly use Hive for blogging) could be granted an automatic RC delegation of an equivalent 50 HP or so without them having to request this as I would imagine this to be a hurdle to figure this out. Maybe there could be a threshold that when they power up more Hive than X amount it would again undelegate. That would probably do wonders for retention rate
properties (22)
authortobetada
permlinkre-deathwing-rje29y
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-07 15:13:09
last_update2022-10-07 15:13:09
depth1
children2
last_payout2022-10-14 15:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length418
author_reputation596,841,127,072,980
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,269,298
net_rshares0
@cmplxty ·
$0.06
I think maybe it would be good to trigger it at a specific time such as time of first transaction like comments or posts that way the RC's aren't wasted handing out to every single account. Perhaps as well if someone tries to transact but has insufficient resources it could trigger too? Spit balling here :D

A helpful constraint could also be accounts <60 days old too, that way they've had time to familiarize with hive and weed out those who just sell 100% of their rewards. 
👍  
properties (23)
authorcmplxty
permlinkre-tobetada-rjhisu
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-09 12:02:54
last_update2022-10-09 12:02:54
depth2
children1
last_payout2022-10-16 12:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length479
author_reputation771,713,221,862,370
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,324,950
net_rshares105,206,975,861
author_curate_reward""
vote details (1)
@tobetada ·
makes sense
properties (22)
authortobetada
permlinkre-cmplxty-rjhsuc
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.07.1"}
created2022-10-09 15:39:48
last_update2022-10-09 15:39:48
depth3
children0
last_payout2022-10-16 15:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation596,841,127,072,980
root_title"Announcing RC Angel | RC Pools But Better."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,329,610
net_rshares0