feat: add docs - #81
Merged
Merged
Conversation
- Create detailed documentation to replace outdated docs - Add new documentation structure with separate guides for each topic - Add CLI reference with all available commands - Add API reference with key classes and methods - Update README with links to new documentation - Fix examples to use correct Ape patterns and ape-tokens plugin 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
antazoey
reviewed
Jul 22, 2025
antazoey
left a comment
Member
There was a problem hiding this comment.
I know it already merged, but added review anyway!
| ms.add(contract2.method2) | ||
|
|
||
| # raises `ape.exceptions.TransactionError` | ||
| ms() |
Member
There was a problem hiding this comment.
could put in try/except handling TransactionError
Member
Author
There was a problem hiding this comment.
Meant this to demonstrate how you might handle a scenario where it raises
Member
There was a problem hiding this comment.
wouldnt it raise and not reach the next line? or is this assuming repl environment
Member
Author
There was a problem hiding this comment.
oh, you mean for doc testing?
|
|
||
| The Safe protocol supports configuring "Modules", which are contracts that have special capabilities to access your Safe. | ||
|
|
||
| You can enable or disable modules using the Safe contract as followsnot : |
| submitter = accounts.load("my-account") | ||
|
|
||
| # Find and execute a transaction that has enough signatures | ||
| for tx, confirmations in safe.pending_transactions(): |
Member
There was a problem hiding this comment.
is there a way to just get the tx by nonce directly?
Member
Author
There was a problem hiding this comment.
not pending ones, that's a good suggestion to add
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 free
to 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.
What I did
Adds comprehensive documentation for plugin
Adds
.create_batchtoSafeAccountfixes: #49
How I did it
How to verify it
Checklist