-
Notifications
You must be signed in to change notification settings - Fork 20
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
feat(ext): add state override support for ERC20 balances and allowances #121
Conversation
Caution Review failedThe pull request is closed. WalkthroughThis pull request introduces several enhancements to the Uniswap V3 SDK, including an update to the Changes
Sequence DiagramsequenceDiagram
participant User
participant SDK
participant Provider
participant Token
User->>SDK: Call get_erc20_state_overrides
SDK->>Provider: Create access lists
Provider-->>SDK: Return access lists
SDK->>SDK: Filter and validate access lists
SDK->>SDK: Compute state difference
SDK-->>User: Return StateOverride
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
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 (
|
Introduces `state_overrides` module to compute ERC20 state overrides for balances and allowances, enabling simulation of state changes. Updates error handling with new error variants and resolves feature-flag reorganization. Bumps version to 3.1.1 to reflect the new functionality.
Introduces
state_overrides
module to compute ERC20 state overrides for balances and allowances, enabling simulation of state changes. Updates error handling with new error variants and resolves feature-flag reorganization. Bumps version to 3.1.1 to reflect the new functionality.Summary by CodeRabbit
New Features
state_overrides
module for retrieving ERC20 token state overridesBug Fixes
Chores