Savers Guide
How the "Smart Entry" Works
Unlike a standard swap where you buy now (regardless of price), Aureo helps you buy smart using our Python Agent.
1
2
The Monitoring (Off-Chain)
The Python Agent runs a loop every minute and:
Fetches
getGoldPrice18Decimals()from the Contract (Oracle Data).Compares it with your
TARGET_PRICE.Checks Gemini AI sentiment (optional).
Example pseudocode:
while True:
price = contract.getGoldPrice18Decimals()
if price <= TARGET_PRICE and sentiment_ok():
trigger_execution()
sleep(60)3
The Execution (On-Chain)
When the price hits your target, the automation kicks in:
Agent triggers the contract call:
Contract calculates the precise gold grams with:
(50 * 1e18) / Price
- Result: You receive `mGOLD` tokens instantly in your wallet.
</div>
</div>
<div data-gb-custom-block data-tag="hint" data-style='info'>
Why this is better?
- No FOMO: You stick to your plan and avoid emotional buying.
- No Staring at Charts: The bot does the hard work 24/7.
- Fair Pricing: You get the exact Oracle price at the moment of execution, with **0% slippage**.
</div>