Uh oh!
There was an error while loading. Please reload this page.
Add ERC20 approve and allowance functionality - #289
Closed
0xgeorgemathew wants to merge 18 commits into
Closed
Conversation
🟡 Heimdall Review Status
|
John-peterson-coinbase
commented
Feb 7, 2025
Contributor
@0xgeorgemathew - Please add tests and chatbot chat snippets of the actions being used with the example agent to the PR description. Otherwise LGTM 🚀 |
phdargen
commented
Jul 29, 2025
Contributor
Hi @0xgeorgemathew, thanks for your contribution. Please rebase against main and clean up the the commit: remove placeholderActionProvider and other unused files, revert changes to chatbot |
| # TS Docs | ||
| **/typescript/docs/ | ||
| docs/ | ||
| typescript/examples/langchain-cdp-chatbot/agent-ui No newline at end of file |
| @@ -0,0 +1,107 @@ | |||
| # AgenticPlaceholder Bidding Agent | |||
| "typedoc": "^0.27.2", | ||
| "typescript": "^5.4.5" | ||
| }, | ||
| "dependencies": { |
| export * from "./wallet"; | ||
| export * from "./customActionProvider"; | ||
| export * from "./alchemy"; | ||
| export * from "./placeholder"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add ERC20 approve and allowance functionality
Adds two new methods to the ERC20 action provider:
approve(): Enables token approval for spendersgetAllowance(): Checks spender allowancesChanges
Review Focus
This enhances token management by supporting delegation of spending rights.