Metadata-Version: 2.4
Name: openclaw-skill-near-yield-finder-read-on
Version: 1.0.0
Summary: OpenClaw Skill: NEAR Yield Finder (Read-Only) v4
License: MIT
Project-URL: Homepage, https://github.com/worksOnMyFridge/openclaw-skill-near-yield-finder-read-on
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.9
Requires-Dist: requests>=2.31

# openclaw-skill-near-yield-finder-read-on

**OpenClaw Skill: NEAR Yield Finder (Read-Only) v4**

Queries real on-chain yield data from Ref Finance, Burrow, Meta Pool, and LiNEAR via NEAR RPC. Read-only — no wallet or signing required.

## Requirements

- Python 3.9+

## Installation

pip install openclaw-skill-near-yield-finder-read-on

## Usage

from openclaw_skill_near_yield_finder_read_on import NearYieldFinder

finder = NearYieldFinder()

# Scan all supported protocols for current yields
results = finder.near_yield_scan()

# Compare yields across protocols for a specific token
comparison = finder.near_yield_compare(token="NEAR")

# Retrieve historical yield data
history = finder.near_yield_history(protocol="burrow", days=7)

# Check if any yield crosses a threshold alert
alerts = finder.near_yield_alert(threshold=10.0)

## Public Methods

| Method | Description |
|---|---|
| `near_yield_scan()` | Scan all protocols and return current APY/APR data |
| `near_yield_compare(...)` | Compare yields across Ref Finance, Burrow, Meta Pool, LiNEAR |
| `near_yield_history(...)` | Fetch historical yield snapshots for a protocol |
| `near_yield_alert(...)` | Return protocols where yield exceeds a given threshold |

## Supported Protocols

- **Ref Finance** — liquidity pool yields
- **Burrow** — lending/borrowing APY
- **Meta Pool** — stNEAR staking yield
- **LiNEAR** — liquid staking APR

## Notes

- All data is fetched read-only from `https://rpc.mainnet.near.org`
- No private keys or wallet connection needed

## License

MIT
