ape-tx 0.6.0

Last updated:

0 purchases

ape-tx 0.6.0 Image
ape-tx 0.6.0 Images
Add to Cart

Description:

apetx 0.6.0

ape-tx
Transact using the command line
Dependencies

python3 version 3.8 or greater, python3-dev

Installation
via pip
You can install the latest release via pip:
pip install ape-tx

via setuptools
You can clone the repository and use setuptools for the most up-to-date version:
git clone https://github.com/unparalleled-js/ape-tx.git
cd ape-tx
python3 setup.py install

Quick Usage
Deploy contracts:
ape tx deploy MyContract arg0 arg1 --sender AccountAlias

Check balances:
ape tx bal AccountAlias --network ethereum:mainnet

Transfer money:
ape tx transfer --from AccountAlias --to 0x8656bDDC790dA239824eE2eA782d350c80AA2Cf4 --value "1 ETH"

View transaction traces:
ape tx trace 0x053cba5c12172654d894f66d5670bab6215517a94189a9ffc09bc40a589ec04d

Make calls:
ape tx call \
--network "ethereum:mainnet:alchemy" \
--contract 0x0A56d07a0B8Ba800358DdEEb20eb46a618BFBE27 \
--method balanceOf \
0x8656bDDC790dA239824eE2eA782d350c80AA2Cf4

Make transactions:
ape tx invoke \
--network "ethereum:mainnet:alchemy" \
--contract 0x0A56d07a0B8Ba800358DdEEb20eb46a618BFBE27 \
--method transfer \
--sender AccountAlias \
0x8656bDDC790dA239824eE2eA782d350c80AA2Cf4 123

Development
This project is in development and should be considered a beta.
Things might not be in their final state and breaking changes may occur.
Comments, questions, criticisms and pull requests are welcomed.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.