Utility plugin to expose some of the Ape's awesome features to CLI
Project description
Ape_utils
Quick Start
Ape Utils is a CLI tool designed to interact with Ethereum smart contracts, specifically focusing on calling view functions. The tool allows you to call a view function from a given function signature and address directly from the command line.
Demo
Features
- Call View Functions: Invoke view functions on Ethereum smart contracts using their function signature and address.
- Flexible Input: Provide function signature, contract address, and arguments through the command line.
Dependencies
- python3 version 3.9 up to 3.12.
Installation
via pip
You can install the latest release via pip
:
pip install ape_utils
Build locally
You can clone the repository and use pip
for the most up-to-date version:
git clone https://github.com/Aviksaikat/ape_utils.git
cd ape_utils
pip install -e .
Quick Usage
Once installed, you can use the ape_utils command to call view functions on Ethereum smart contracts. Here is how you can use it:
ape_utils call --function-sig "function_signature" --address "contract_address" --args argument --network [ecosystem-name][:[network-name][:[provider-name]]]
Examples
Calling a view function
To call a view function with the signature call_this_view_function(uint256)(string)
on a contract at address 0x80E097a70cacA11EB71B6401FB12D48A1A61Ef54
with an argument 6147190
, you can use:
ape_utils call --function-sig "call_this_view_function(uint256)(string)" --address "0x80E097a70cacA11EB71B6401FB12D48A1A61Ef54" --args 6147190 --network :sepolia:infura
ABI encode the given function
ape_utils encode --signature 'call_this_view_function(uint256 arg1, string addr)' 1234 '0xdeadbeef'
ABI Decode input data
ape_utils decode --signature 'call_this_view_function(uint256 arg1, string addr)' '0x00000000000000000000000000000000000000000000000000000000000004d20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000a3078646561646265656600000000000000000000000000000000000000000000'
Encode the given function with function selector
ape_utils encode --signature "call_this_view_function(uint256 arg1)" 1234
Decode the given function with function selector
ape_utils decode --signature "call_this_view_function(uint256 arg1)" "0x1e4f420d00000000000000000000000000000000000000000000000000000000000004d2"
Development
Please see the contributing guide to learn more how to contribute to this project. Comments, questions, criticisms and pull requests are welcomed.
Contact
For any issues or questions, please open an issue on the GitHub repository.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ape_utils-0.0.3.tar.gz
.
File metadata
- Download URL: ape_utils-0.0.3.tar.gz
- Upload date:
- Size: 3.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce5e2e587d8a8bb486fe7df29ba69aab8a065ec658ff2f843da1d02e34e3a84a |
|
MD5 | 622ad5f1a641ac2c02f94e43e81ba61b |
|
BLAKE2b-256 | e4b85416490258b838af3819261fb15390e398a00eae98c58f5fef2af60d5556 |
File details
Details for the file ape_utils-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: ape_utils-0.0.3-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 524b4a5bd8b7802b76435d1281eac07627e6fe730fed05f7d80988c1795a056b |
|
MD5 | c64e93be4044442a2a1d1c06dd0058b6 |
|
BLAKE2b-256 | 95f566c8877a954f2fa06cd9705097fb73dd5f104174279f88f8768d32ab53b3 |