Add Tori Finance yields (strUSD)#2761
Conversation
|
Warning Review limit reached
More reviews will be available in 34 minutes and 51 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
📝 WalkthroughWalkthroughAdds a new Tori Finance yield-server adapter for the ChangesTori Finance adapter
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/adaptors/tori-finance/index.js`:
- Around line 55-64: The 7-day APY lookup in sharePriceApy can point before
deployment and cause convertToAssets to fail for the pool’s first week; update
sharePriceApy to clamp the historical timestamp/block to LAUNCH_TS before
calling blockForTs/call, and compute the annualization using the actual elapsed
time between nowTs and the clamped start instead of returning 0 from the blanket
fallback. Use the sharePriceApy helper and the related apyBase7d path to locate
the fix.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 628ec31d-77be-4205-8496-214a1a0eae18
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (1)
src/adaptors/tori-finance/index.js
e2ba491 to
c4ff9ee
Compare
Adds the Tori-native yield pool strUSD (Staked trUSD) to the existing "Tori Finance" protocol (slug tori-finance, protocolId 8063).
strUSD is an ERC-4626 with: 8h reward vesting, a RewardsReceived(uint256) event, and a 7 day unstaking cooldown. APY is computed fully on-chain with no external API, similar to Ethena's sUSDe adapter:
TVL is read on-chain from totalAssets (the trUSD backing, valued 1:1 to USD), currently about $20M.
Note: during the current fee-waived pre-deposit phase, before transferInRewards has run, apyBase reads 0. It populates automatically once reward streaming begins (the on-chain vesting state confirms no distribution has occurred yet).
Local test:
npm run test --adapter=tori-financepasses 14/14.Summary by CodeRabbit
New Features
strUSDvault on Ethereum.Bug Fixes