Smart Deposit
What is Smart Deposit?
Smart Deposit is Aureo's flagship feature designed to solve the "timing anxiety" of investing. Instead of buying Gold immediately at the current market price (which might be a local top), users deposit funds into the Smart Vault, and our Python AI Agent executes the purchase only when market conditions are optimal.
How the Agent Works
The agent runs continuously off-chain, acting as a bridge between market data and on-chain execution.
1
Price Monitoring ("The Eyes")
The Python script queries the Pyth Oracle via the Smart Contract every 60 seconds to get the real-time price on Mantle.
# Logic flow from main.py
def monitor_market():
# Fetch price normalized to 18 decimals
current_price = contract.getGoldPrice18Decimals()
print(f"Current Market Price: {current_price}")