-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: update out of date abi for single request proxy factory #1480
Conversation
WalkthroughThe pull request modifies the ABI of the Changes
Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🧰 Additional context used📓 Learnings (1)packages/smart-contracts/src/lib/artifacts/SingleRequestProxyFactory/0.1.0.json (2)
🔇 Additional comments (3)packages/smart-contracts/src/lib/artifacts/SingleRequestProxyFactory/0.1.0.json (3)
Removing
The changes to Line range hint Let's ensure we haven't missed any parameters that should have their ✅ Verification successfulAll indexed parameters are correctly set in the ABI The verification shows that the indexed parameters are properly set and consistent:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for any remaining indexed parameters except paymentReference
# Expected: Only paymentReference and ownership-related parameters should be indexed
# Search for indexed parameters in the ABI
jq -r '.abi[] | select(.type=="event") | .inputs[] | select(.indexed==true) | "\(.name) in \(.type)"' "packages/smart-contracts/src/lib/artifacts/SingleRequestProxyFactory/0.1.0.json"
Length of output: 339 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
0c6219a
to
e1223e3
Compare
Description of the changes
Summary by CodeRabbit
New Features
SingleRequestProxyFactory
contract for improved clarity in event logging.Bug Fixes
indexed
properties for specific event parameters to enhance query capabilities on the blockchain.