▸ NFT Trading
Floor Price Monitoring
Opus uses subgraphs, OpenSea/Tensor APIs, and oracles to track floor prices in near-real time.
Data is pulled every ~5 min and cached for performance.
Threshold alerts allow precise reaction to dips or spikes.
Example Strategies
Buy floor NFTs under X SOL
Trigger a purchase on a collection if the floor price dips below a specified threshold (e.g., 8 SOL):
Requires NFT contract address
Token metadata optional (e.g., skip flagged items)
Auto-sell above 2x Buy Price
Automatically list NFTs if price exceeds 2× the acquisition cost:
Reads from past transaction history
Auto-signs list orders using delegated session key
NFT Ownership Proof & Metadata Processing
Ownership is validated via ownerOf()
EVM calls or SPL token checks (for Solana).
Metadata (e.g., rarity, traits) is processed off-chain
Strategy conditions can include trait-based filters
Last updated