spectra_get_ve_info
Calculate your veSPECTRA boost multiplier for any pool by providing your wallet address or veSPECTRA balance and deposit size. Reads live total supply from Base chain to compute exact boost.
Instructions
Get live veSPECTRA governance token information and compute boost scenarios.
Reads the current veSPECTRA total supply from Base chain on-chain, and given your balance + a specific pool, computes your exact boost multiplier.
The Spectra boost formula: B = min(2.5, 1.5 * (v/V) * (D/d) + 1) v = your veSPECTRA balance V = total veSPECTRA supply (read live from Base) D = pool TVL d = your deposit size Full 2.5x boost when: v/V >= d/D (your share of votes >= your share of pool)
Useful for understanding how much veSPECTRA you need for max boost in a given pool at a given deposit size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wallet_address | No | Wallet address to check veSPECTRA balance for. Reads on-chain from Base. If provided, auto-populates ve_spectra_balance. | |
| ve_spectra_balance | No | Your veSPECTRA token balance. If provided with capital_usd, computes your boost. Auto-populated when wallet_address is provided. | |
| capital_usd | No | Your planned deposit size in USD. Required with ve_spectra_balance to compute boost. | |
| chain | No | Chain of the pool to check boost for (optional, used with pt_address). | |
| pt_address | No | PT address of the pool to check boost for (optional, used with chain). |