create account

Podping is preparing for Hard Fork HF26 and HiveFest by podping

View this thread on: hive.blogpeakd.comecency.com
· @podping · (edited)
$234.25
Podping is preparing for Hard Fork HF26 and HiveFest
It's a long time since I've updated on Podping and that's mostly because Podping is just working!

There are two vital posts for more background on the current fakenet/testnet and how to use it. I'll add some extra colour that will hopefully help some other Dapp devs.

https://peakd.com/hive-160391/@gtg/full-public-fake-mirror-api

https://peakd.com/rc/@howo/direct-rc-delegation-documentation

https://peakd.com/hive-139531/@blocktrades/14th-update-of-2022-hive-hf26-release-candidate-and-mirrornet-api-node-ready-for-app-testing


```
Fake API endpoint: https://api.fake.openhive.network
Fake chain-id: 4200000000000000000000000000000000000000000000000000000000000000
```

## What is Fakenet

Fakenet is not quite the same as a self contained testing site as I think we've had in the past. Fakenet carries ALL the main traffic of Hive but additionally, you can write to Fakenet. Writing to Fakenet is like partying in Vegas: what happens in Fakenet stays in Fakenet.

For normal users, I suggest you don't try this because it really will get confusing. You'll like something, or change a delegation or make a transfer and it won't really happen. The problem is that if you're using HiveKeychain you have to be extremely careful over which RPC Node (also called API Nodes) you are interacting with and which the website you're looking at is using on the back end.

I won't pretend to be an expert but I'm sort of treating it a bit like I would treat a public space in Vegas: I'm not doing stuff I wouldn't be horrified about if it leaked out.

So don't go transferring 50,000 HBD to @brianoflondon on Fakenet (well you can) unless you're really really sure you're on Fakenet!

## Viewing Fakenet

I'm using a few sites but one of my favorites is @ausbitbank 's site and it has both Fakenet and real.

Fakenet:	https://test.ausbit.dev/@podping.bol
Real Hive:	https://hive.ausbit.dev/@podping.bol

![Side by side Hive, real on the left, fake on the right](https://files.peakd.com/file/peakd-hive/podping/EoiNueNpBSM174gHh8GjoB8vXjTaT9Ub4gu6Mhso2vdQ6HWpJNTXHeWyMFzj1vGnPrV.png)

They look the same (Ausbitbank should probably change the background on the Fakenet) but the one on the left is real and the one on the right is Fakenet, you can see different content and different resources. This is one of the primary things I've been playing with.

There's also a Condenser based version:

https://testblog.openhive.network/
https://testwallet.openhive.network/

You can sign in and view these sites without making any changes to HiveKeychain, but if you want to make changes ONLY on Fakenet you need to change HiveKeychain.

## Hive Keychain

<div class="pull-right">

![Setting the RPC Node in Hive Keychain](https://files.peakd.com/file/peakd-hive/podping/23ywpnJuFuNFghgsgWJmVVKikVqaiVrgbtqCp8vg1Vma6BZeBg1hSTZaNLrT6ic7fi1Gv.png)


![The subtle clue you're on a Fakenet](https://files.peakd.com/file/peakd-hive/podping/23uFPki6YYVN8eictyDdXyjwMM9eqTPES7LGuq1YPhuuS2rrsdEi1JXW8jEnugQ39gRD8.png)

</div>

In Hive Keychain you need to add a new RPC node (Advanced-RPC Node) and give the node and the chain ID (42 with lots of 0's).

From then on be very very careful what you do on main net. Again I'm not recommending normal users try this, there really is no noticeable difference for end users.

As a suggestion to @stoodkev and the team, perhaps you could change the background colour of Keychain when you're connected to a different chain ID?

## Python Specific Preparations for HF26

There are two main Python libraries for interacting with Hive. Beem is the big boy but there are issues with getting it updated though it still seems to work.

However we've actually switched from Beem to [Lighthive](https://github.com/emre/lighthive) (maintained by @emrebeyler).

### Beem

Beem is quite easy to move onto the Fakenet. The usual method of connecting to Hive without specifiying a node, just works. All you have to do to switch is add `node=["https://api.fake.openhive.network"]`. Little gotcha is to remember that you're not passing one Node, you're passing a list (with only one item in it).

```
hive = Hive(node=["https://api.fake.openhive.network"])
```

### Lighthive

Lighthive is pretty easy too. You just alter the call to get the main `Client` with the added wrinkle that you must manually pass the ChainID (I think, not sure it might work without it!). Just for a bit more help I'll show you the complete function call we have in Podping-Hivewriter:

```
def get_client(
    posting_keys: Optional[List[str]] = None,
    nodes=None,
    connect_timeout=3,
    read_timeout=30,
    loglevel=logging.ERROR,
    chain=None,
    automatic_node_selection=False,
    api_type="condenser_api",
) -> Client:
    try:
        if os.getenv("PODPING_TESTNET", "False").lower() in (
            "true",
            "1",
            "t",
        ):
            nodes = [os.getenv("PODPING_TESTNET_NODE")]
            chain = {"chain_id": os.getenv("PODPING_TESTNET_CHAINID")}
        client = Client(
            keys=posting_keys,
            nodes=nodes,
            connect_timeout=connect_timeout,
            read_timeout=read_timeout,
            loglevel=loglevel,
            chain=chain,
            automatic_node_selection=automatic_node_selection,
        )
        return client(api_type)
    except Exception as ex:
        raise ex
```

and we have the following in a `.env` to make this switch onto Fakenet:

```
PODPING_TESTNET=true
PODPING_TESTNET_NODE=https://api.fake.openhive.network
PODPING_TESTNET_CHAINID=4200000000000000000000000000000000000000000000000000000000000000
```

Once you've done that you can now read from and write to the Fakenet. 

## RC Delegations

A few gotcha's. I have not been able to change HP delegations with Hive Keychain alone. I can, however, change delegations on Fakenet using https://testwallet.openhive.network/@brianoflondon/delegations and Hive Keychain set to the Fakenet RPC node.

The reason I'm doing this is to test what happens when I reduce delegations to the main active podping accounts and then substitute HP delegation with RC delegation.

My main learning so far is that there will be a transition period where I will have to un-delegate HP from these accounts and replace that with RC delegations. 

I suspect I'll have to use my @brianoflondon account to delegate HP to the sub accounts and then remove delegations from @podping. Once a week or so has passed and that HP returns fully to @podping, I will then delegate RC's and can remove the HP delegation from @brianoflondon.

A few little learnings that might help others:
- Custom_json's are more expensive than before, but not cripplingly so;
- Account creation token claims ARE much more expensive so they drop your RCs on the fakenet, far lower than on real Hive. As such I'm turning off auto-claiming of these on BrianofLondon for a little while;
- There's no front end for delegating RC's yet. I've had to write my own code but I'm not a front end dev so I really can't share it.
- The One Block Irreversibility is amazing. Using the block viewer on https://test.ausbit.dev it is obvious immediately because you can see a custom_json appear as fast as you can switch windows!

## Hivefest

Just a short note: last year I spoke mostly about @v4vapp and podcasting and not about @podping. This year I'm going to try to explain what Podping actually is and what problem it solves for Podcasting.

## Conclusion

I actually haven't had to change pretty much anything on the main [Podping-Hivewriter](https://github.com/Podcastindex-org/podping-hivewriter) software. I've only made tweaks to allow for testing. On the reading side of Podping no changes should be necessary which is excellent so a huge thank you to @blocktrades @howo and the whole team who keep this thing forging ahead so brilliantly. I have the utmost respect for all of you.

Happy to hear feedback and corrections if I've made any errors and I hope this helps!
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 355 others
πŸ‘Ž  , , , , , ,
properties (23)
authorpodping
permlinkpodping-is-preparing-for-hard-fork-hf26-and-hivefest
categoryhf26
json_metadata"{"app":"peakd/2022.07.1","format":"markdown","description":"Some tips and tricks about testing on Hard Fork HF26","tags":["hf26","development","hivefest","leofinance","proofofbrain","hive","python"],"users":["gtg","howo","blocktrades","brianoflondon","ausbitbank","podping.bol","stoodkev","emrebeyler","podping.","podping"],"image":["https://files.peakd.com/file/peakd-hive/podping/EoiNueNpBSM174gHh8GjoB8vXjTaT9Ub4gu6Mhso2vdQ6HWpJNTXHeWyMFzj1vGnPrV.png","https://files.peakd.com/file/peakd-hive/podping/23ywpnJuFuNFghgsgWJmVVKikVqaiVrgbtqCp8vg1Vma6BZeBg1hSTZaNLrT6ic7fi1Gv.png","https://files.peakd.com/file/peakd-hive/podping/23uFPki6YYVN8eictyDdXyjwMM9eqTPES7LGuq1YPhuuS2rrsdEi1JXW8jEnugQ39gRD8.png"]}"
created2022-09-13 08:21:39
last_update2022-09-13 08:26:57
depth0
children17
last_payout2022-09-20 08:21:39
cashout_time1969-12-31 23:59:59
total_payout_value117.175 HBD
curator_payout_value117.073 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,961
author_reputation26,592,502,088,585
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,573,539
net_rshares329,860,872,417,826
author_curate_reward""
vote details (426)
@andablackwidow ·
$3.06
> Account creation token claims ARE much more expensive

Not true - they are exactly as expensive as on mainnet down to 5th digit. But there is a catch. RC costs on fakenet are influenced by situation on fakenet, and as close as it is to mainnet, there are still differences (after all it was made so people can try doing things they didn't do on mainnet).
```
curl --request POST --url https://api.fake.openhive.network/ --header 'Content-Type: application/json' --data '{"jsonrpc": "2.0", "method": "rc_api.get_resource_pool", "params": {}, "id": 1}'
```
<sub>Replace *api.fake.openhive.network* with *api.hive.blog* for values from mainnet.</sub>

When I'm writing this, `resource_new_accounts` pool on fakenet is `10729483` while it is `11952076` on mainnet. Since each token is `10000` units, it means that fakenet has 122 less tokens available. For the pool that is exhausted so much such difference in fill level means big difference in RC cost, and big relative difference in RC cost for the most expensive resource means huge difference in absolute value of that cost.

In conclusion, you can't really compare RC costs in this particular case. When comparing apples to apples, for your @brianoflondon account, the average cost of `claim_account_operation` changed from `9'372'413'894'817` with old rules to `9'372'452'227'838` with new rules (data collected from up to block 66.3M). It means that after claiming a token, now you need to wait 0.12s longer for RC mana to recover in full (new - old = `38'333'021`; max mana of `136'853'962'413'867` - value from block 66.3M - means you recover that much over 5 days = 432000 seconds, meaning `316'791'579.66` every second).

Refer to [this article](https://hive.blog/hive-139531/@andablackwidow/are-customjson-going-to-be) for more details on how RC costs changed between old and new version and what are the factors that influence them.
πŸ‘  , ,
properties (23)
authorandablackwidow
permlinkre-podping-2022913t214122787z
categoryhf26
json_metadata{"tags":["hf26","development","hivefest","leofinance","proofofbrain","hive","python"],"app":"ecency/3.0.25-surfer","format":"markdown+html"}
created2022-09-13 19:41:21
last_update2022-09-13 19:41:21
depth1
children4
last_payout2022-09-20 19:41:21
cashout_time1969-12-31 23:59:59
total_payout_value1.529 HBD
curator_payout_value1.528 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,894
author_reputation84,501,428,946,264
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,591,235
net_rshares4,498,547,868,612
author_curate_reward""
vote details (3)
@brianoflondon ·
$0.02
Thanks for this, I can't say I'm finding it very easy to figure out what the RCs actually used for a transaction are or will be. Are these available after the fact for a given transaction?

Right now I'm making a kind of watcher that looks that the resource credits across a group of apps and hands them out if they need more.
πŸ‘  
properties (23)
authorbrianoflondon
permlinkre-andablackwidow-ri6prr
categoryhf26
json_metadata{"tags":["hf26"],"app":"peakd/2022.07.1"}
created2022-09-14 05:26:15
last_update2022-09-14 05:26:15
depth2
children1
last_payout2022-09-21 05:26:15
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length326
author_reputation760,626,613,375,672
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,602,298
net_rshares38,876,616,852
author_curate_reward""
vote details (1)
@andablackwidow ·
$0.64
There is no easy way to predict RC cost, but you can somewhat get to know what you've already paid. It is the easiest if you have your own node. Having your own node means you can write your own plugin or even add notifications/logs directly to the place that charges your account(s). It is also easy to differentiate between "present" (state from the blocks which can be treated as solid) and "future" (pending state). If you don't have your own node, then you can only use something like `rc_api.find_rc_accounts` to monitor your accounts. However, if you wanted to use that to see exactly how much you've paid for each transaction, it gets tricky. Typically you only see the "future" when using API, so you'd need to make sure that "future" and "present" are the same, that is, first wait until your transaction gets into block using `transaction_status_api.find_transaction`, then look for your account's RC and compare it with what it had before transaction. The tricky part is that if you make another transaction in the meantime, you won't be able to tell the cost properly. Also if you are using some service that can f.e. vote in your name, then it can make you the RC payer, not just for your own vote, but for all the votes in the transaction it sent. In normal situation there is little difference between "present" and "future", but during high traffic "future" can be distorted, and in case of highly contested resources, like new account tokens, it can happen that you've claimed your token and "future" shows you've paid 9T RC, but before it becomes "present" some whale claimed 100 tokens and now your token costs 12T RC (it might even happen that you'll no longer be able to afford it and your transaction that was accepted as pending will never make it to the block - these are the dangers of looking into the "future").
πŸ‘  ,
properties (23)
authorandablackwidow
permlinkre-brianoflondon-2022914t131111419z
categoryhf26
json_metadata{"tags":["hf26"],"app":"ecency/3.0.33-mobile","format":"markdown+html"}
created2022-09-14 11:11:09
last_update2022-09-14 11:11:09
depth3
children0
last_payout2022-09-21 11:11:09
cashout_time1969-12-31 23:59:59
total_payout_value0.319 HBD
curator_payout_value0.319 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,839
author_reputation84,501,428,946,264
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,607,920
net_rshares961,851,608,571
author_curate_reward""
vote details (2)
@brianoflondon ·
$0.02
BTW can you point me in the direction of where the data for this panel comes from and how it is calculated? Especially the recharge rate.

![image.png](https://files.peakd.com/file/peakd-hive/brianoflondon/23tHbYKtq39gG5Aeo7UXoGBrt1qbWrehwDNTgLQiggH1pk3ycDCqiaQQDAK7UTHHATWa9.png)
πŸ‘  
properties (23)
authorbrianoflondon
permlinkre-andablackwidow-ri71t3
categoryhf26
json_metadata{"tags":["hf26"],"app":"peakd/2022.07.1"}
created2022-09-14 09:46:18
last_update2022-09-14 09:46:18
depth2
children1
last_payout2022-09-21 09:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation760,626,613,375,672
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,606,499
net_rshares38,170,801,598
author_curate_reward""
vote details (1)
@andablackwidow ·
$2.23
I'm guessing here, but everything tells me that the values with `HP` and `M` as units use the same procedure for recalculation. The value is calculated from raw RC using current price of VESTs.
Calculating on raw RC values is simplier. Since your RC regenerates from 0 to 100% during 5 days, just take `max_mana` and divide it by whatever period you want to calculate, that is, 5 for daily recharge rate, 120 for hourly recharge rate, 7200 for minute recharge rate etc. The result is going to be expressed in raw RC values as well. Only now you can treat it as amount of VESTs (which have 6 fractional digits) and using current price recalculate it to HP/M presented in the panel.
πŸ‘  
properties (23)
authorandablackwidow
permlinkre-brianoflondon-2022914t132441112z
categoryhf26
json_metadata{"tags":["hf26"],"app":"ecency/3.0.33-mobile","format":"markdown+html"}
created2022-09-14 11:24:39
last_update2022-09-14 11:24:39
depth3
children0
last_payout2022-09-21 11:24:39
cashout_time1969-12-31 23:59:59
total_payout_value1.116 HBD
curator_payout_value1.116 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length680
author_reputation84,501,428,946,264
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,608,139
net_rshares3,353,235,676,485
author_curate_reward""
vote details (1)
@borsengelaber ·
$0.04
🀞🏻 Good luck for your presentation at HiveFest @brianoflondon! Unfortunately I cannot make it but if there is a livestream or a recording I will tune in.
Podping is a great tool which needs much more awareness. Maybe there is also some Apple or Spotify people that hear your Keynote. πŸ˜‰

Regards Thomas 
πŸ‘  ,
properties (23)
authorborsengelaber
permlinkre-podping-ri56bm
categoryhf26
json_metadata{"tags":["hf26"],"app":"peakd/2022.07.1"}
created2022-09-13 09:28:33
last_update2022-09-13 09:28:33
depth1
children2
last_payout2022-09-20 09:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation326,105,412,840,580
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,574,525
net_rshares54,825,809,772
author_curate_reward""
vote details (2)
@epodcaster ·
$0.05
Agreed! I'll be cheering you on @brianoflondon all the way from Texas. 
πŸ‘  ,
properties (23)
authorepodcaster
permlinkre-borsengelaber-ri58jr
categoryhf26
json_metadata{"tags":["hf26"],"app":"peakd/2022.07.1"}
created2022-09-13 10:16:39
last_update2022-09-13 10:16:39
depth2
children1
last_payout2022-09-20 10:16:39
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation49,543,128,724,015
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,575,299
net_rshares71,222,132,601
author_curate_reward""
vote details (2)
@borsengelaber ·
$0.04
πŸ‘πŸ» Hey Jennifer! We cheer together. β€œGo Brian!” πŸ’ͺ🏻
πŸ‘  ,
properties (23)
authorborsengelaber
permlinkre-epodcaster-2022913t136735z
categoryhf26
json_metadata{"tags":["hf26"],"app":"ecency/3.0.33-mobile","format":"markdown+html"}
created2022-09-13 11:06:06
last_update2022-09-13 11:06:06
depth3
children0
last_payout2022-09-20 11:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation326,105,412,840,580
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,576,224
net_rshares54,774,210,432
author_curate_reward""
vote details (2)
@cryptobrewmaster ·
Dear, @podping

May we ask you to review and support our @cryptobrewmaster GameFi proposal on DHF? It can be [found here](https://peakd.com/me/proposals/235)

If you havent tried playing [CryptoBrewMaster](https://cryptobrewmaster.io) you can give it a shot. Our @hivefest presentation [available here on the YouTube](https://youtu.be/DZ9MpQQoPu4?t=19996) with a [pitchdeck](https://docs.google.com/presentation/d/1x8eEoQIbNCTS5zQ6yfJ1SarLZz_BXinDVPOPebp4_-M/edit?usp=sharing) of what we building in general 

Vote with [Peakd.com](https://peakd.com/me/proposals/235), [Ecency.com](https://ecency.com/proposals/235), [Hivesigner](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22235%22%5D&approve=true)

Thank you!
properties (22)
authorcryptobrewmaster
permlinkre-podping-riv868
categoryhf26
json_metadata{"tags":["hf26"],"app":"peakd/2022.07.1"}
created2022-09-27 11:06:21
last_update2022-09-27 11:06:21
depth1
children0
last_payout2022-10-04 11:06: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_length734
author_reputation119,480,288,448,053
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,974,023
net_rshares0
@gtg ·
$2.42
Thanks for testing! :-)
πŸ‘  ,
properties (23)
authorgtg
permlinkri5yip
categoryhf26
json_metadata{"app":"hiveblog/0.1"}
created2022-09-13 19:37:39
last_update2022-09-13 19:37:39
depth1
children0
last_payout2022-09-20 19:37:39
cashout_time1969-12-31 23:59:59
total_payout_value1.211 HBD
curator_payout_value1.211 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation461,808,784,648,801
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,591,173
net_rshares3,564,483,992,071
author_curate_reward""
vote details (2)
@hivebuzz ·
Congratulations @podping! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@podping/upvoted.png?202209131315"></td><td>You received more than 500 upvotes.<br>Your next target is to reach 600 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@podping) 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/lpud-202209"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202209">New badge - LEO Power Up Day - September 15, 2022</a></td></tr><tr><td><a href="/hive-106258/@hivebuzz/hivefest7-shop"><img src="https://images.hive.blog/64x128/https://i.imgur.com/syBpvGO.png"></a></td><td><a href="/hive-106258/@hivebuzz/hivefest7-shop">HiveFest⁷ badges available at the HiveBuzz store</a></td></tr><tr><td><a href="/hive-106258/@hivebuzz/hivefest-2022-badge"><img src="https://images.hive.blog/64x128/https://i.imgur.com/AVnKFdq.png"></a></td><td><a href="/hive-106258/@hivebuzz/hivefest-2022-badge">HiveFest⁷ meetup in Amsterdam is next week. Be part of it and get your badge.</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-podping-20220913t132629
categoryhf26
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-09-13 13:26:30
last_update2022-09-13 13:26:30
depth1
children0
last_payout2022-09-20 13:26: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_length1,480
author_reputation369,394,787,231,842
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,579,327
net_rshares0
@hivebuzz ·
Congratulations @podping! 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/@podping) 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/lpud-202209"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202209">New badge - LEO Power Up Day - September 15, 2022</a></td></tr><tr><td><a href="/hive-106258/@hivebuzz/hivefest7-shop"><img src="https://images.hive.blog/64x128/https://i.imgur.com/syBpvGO.png"></a></td><td><a href="/hive-106258/@hivebuzz/hivefest7-shop">HiveFest⁷ badges available at the HiveBuzz store</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-podping-20220914t010257
categoryhf26
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-09-14 01:02:57
last_update2022-09-14 01:02:57
depth1
children0
last_payout2022-09-21 01:02: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_length1,138
author_reputation369,394,787,231,842
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,597,521
net_rshares0
@jirafilla ·
Excellent 
properties (22)
authorjirafilla
permlinkre-podping-2022913t231147528z
categoryhf26
json_metadata{"tags":["hf26","development","hivefest","leofinance","proofofbrain","hive","python"],"app":"ecency/3.0.33-mobile","format":"markdown+html"}
created2022-09-14 03:11:48
last_update2022-09-14 03:11:48
depth1
children0
last_payout2022-09-21 03:11: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_length10
author_reputation1,948,246,109
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id116,600,032
net_rshares0
@podping.spk ·
This is a comment to help with RC Delegation testing.
properties (22)
authorpodping.spk
permlinkre-podping-podping-is-preparing-for-hard-fork-hf26-and-hivefest-20221012t084143163z
categoryhf26
json_metadata{"app":"ausbit/2021.02.17"}
created2022-10-12 08:42:06
last_update2022-10-12 08:42:06
depth1
children2
last_payout2022-10-19 08:42:06
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_length53
author_reputation0
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries
0.
accountausbitbank
weight1,000
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id117,405,150
net_rshares0
@podping.spk ·
And this is a further comment.
properties (22)
authorpodping.spk
permlinkre-podpingspk-re-podping-podping-is-preparing-for-hard-fork-hf26-and-hivefest-20221012t084423502z
categoryhf26
json_metadata""{ \"app\": \"ausbit/2022.04.18\", \"format\": \"markdown\" }""
created2022-10-12 08:44:27
last_update2022-10-12 08:44:27
depth2
children1
last_payout2022-10-19 08:44:27
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_length30
author_reputation0
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries
0.
accountausbitbank
weight1,000
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id117,405,189
net_rshares0
@podping.spk ·
And because we actually need to run through some RCs in order to test automatic top up delegation.... here's another!
properties (22)
authorpodping.spk
permlinkre-podpingspk-re-podpingspk-re-podping-podping-is-preparing-for-hard-fork-hf26-and-hivefest-20221012t084511187z
categoryhf26
json_metadata""{ \"app\": \"ausbit/2022.04.18\", \"format\": \"markdown\" }""
created2022-10-12 08:45:15
last_update2022-10-12 08:45:15
depth3
children0
last_payout2022-10-19 08:45: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_length117
author_reputation0
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries
0.
accountausbitbank
weight1,000
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id117,405,210
net_rshares0
@poshtoken ·
$0.08
https://twitter.com/taskmaster4450/status/1569701978543951873
<sub> The rewards earned on this comment will go directly to the people( @taskmaster4450le ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
πŸ‘  ,
properties (23)
authorposhtoken
permlinkre-podping-podping-is-preparing-for-hard-fork-hf26-and-hivefe29875
categoryhf26
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":["taskmaster4450le"]}"
created2022-09-13 14:59:48
last_update2022-09-13 14:59:48
depth1
children0
last_payout2022-09-20 14:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation5,433,776,069,007,097
root_title"Podping is preparing for Hard Fork HF26 and HiveFest"
beneficiaries
0.
accountreward.app
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id116,581,866
net_rshares216,542,419,237
author_curate_reward""
vote details (2)