NectarEngine Status Update

This morning I thought I would focus a little bit of love on NectarEngine and, well, that's exactly what I did.

So, I went through it and made sure all the tests pass first, I updated the test cases to make use of the block data from lite nodes as that is what most people seem to be running.

All tests pass!

Now, some eagle eyed person might notice among those tests are things that mention the liquidity pool!

I have added the classes for Liquidity pools and Pool objects, as well as many methods to use with them.

from nectarengine.pool import LiquidityPool

# Initialize the LiquidityPool instance
pool = LiquidityPool()

# Get the SWAP.HIVE:INCOME pool
income_pool = pool.get_pool("SWAP.HIVE:INCOME")

if income_pool:
    print(f"Pool Info: {income_pool}")

    # Get liquidity positions
    positions = income_pool.get_liquidity_positions()

    print("\nLiquidity Positions:")
    for position in positions:
        print(f"Account: {position['account']}, Shares: {position['shares']}")

    # Get pool price
    price = income_pool.calculate_price()

    print(f"\nPool Price: {price}")
else:
    print("SWAP.HIVE:INCOME pool not found")

So Handy!

I haven't went through the setup for readthedocs yet, but the html documentation is in the repo, for those wanting to give it a go. I need to update the kanban with the progress, and give it a couple more tests, I've tested most everything, need to test the token swap, but I'm fairly confident it works, and if it doesn't, I'll get right on it.

I did want to share that NectarEngine is also getting love, and this isn't all about beem HiveNectar.

As I said the other day:

Maybe this will help someone, maybe it won't. But it is the kind of stuff I do daily just because I enjoy doing it.

Perhaps you will support our vision:
Proposal 339: A modular open-source development framework with critical library maintenance.

As always,
Michael Garcia a.k.a. TheCrazyGM



0
0
0.000
12 comments
avatar

Wait you already added the liquidity pool stuff?

untitled.gif

That kanban is dead, just do a new post next update 🤪🫡

0
0
0.000
avatar

Would be curious to know how an arbitrage bot would work for hive.engine pools, it all depends on how the price is calculated and if swaps require acceptance by both parties

0
0
0.000
avatar

Liquidity pools are smart contracts of sorts. Only the one making the trade needs to sign it. The key to one of those bots would be to constantly monitor both sides of the pair and do lots of maths to know when to strike.

0
0
0.000
avatar
(Edited)

Just starred your repo, let's keep in touch

0
0
0.000
avatar

or to watch a couple of different pairs to get one low then sell it high in another pair. either way, it's a lot of calculation.

0
0
0.000
avatar

Yes, exactly what an arbitrage bot is, monitoring different pools for the same token, taking advantage of the difference

0
0
0.000
avatar

I'm really happy that you forked beem to get it into shape again. This is going to be super useful. Thank you for this incredible work that you're doing! 😁 🙏 💚 ✨ 🤙

0
0
0.000
avatar

You are most welcome! This is the kind of comment that keeps me going. :D

0
0
0.000
avatar

I'm really happy to hear that, because I have a whole bunch of appreciation for what you're doing. I'll keep track of how your endeavors are progressing, so I'll pop up again! 😁🙏💚✨🤙

0
0
0.000
avatar

Congratulations @thecrazygm! You received a personal badge!

You powered-up at least 10 HIVE on Hive Power Up Day!
Wait until the end of Power Up Day to find out the size of your Power-Bee.
May the Hive Power be with you!

You can view your badges on your board and compare yourself to others in the Ranking

Check out our last posts:

Hive Power Up Month Challenge - March 2025 Winners List
Be ready for the April edition of the Hive Power Up Month!
Hive Power Up Day - April 1st 2025
0
0
0.000
avatar

Congratulations @thecrazygm! You received a personal badge!

You powered-up at least 50 HP on Hive Power Up Day! This entitles you to a level 2 badge
Participate in the next Power Up Day and try to power-up more HIVE to get a bigger Power-Bee.
May the Hive Power be with you!

You can view your badges on your board and compare yourself to others in the Ranking

Check out our last posts:

Hive Power Up Month Challenge - March 2025 Winners List
Be ready for the April edition of the Hive Power Up Month!
Hive Power Up Day - April 1st 2025
0
0
0.000