A cli tool to generate Python code from EVM ABI.
Project description
py-contract-codegen
py-contract-codegen
is a command-line tool for generating Python code from Ethereum ABI.
Installation
pip install py-contract-codegen
Commands
gen
: Generate Python code from an Ethereum ABI file.version
: Show the version of the code generator.
gen
Command
The gen
command is used to generate Python code from an Ethereum ABI.
py-contract-codegen gen [OPTIONS]
Options
╭─ Options ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --abi-path PATH Path to ABI file. If not provided, `--abi-stdin` or `--contract-address` must be set [default: None] │
│ --abi-stdin --no-abi-stdin ABI content from stdin [default: no-abi-stdin] │
│ --contract-address TEXT Auto fetch abi from etherscan and generate code. Please set environment variable `ETHERSCAN_API_KEY` [default: None] │
│ --out-file PATH Path to save file name the generated code. If not provided, prints to stdout [default: None] │
│ --class-name TEXT Contract Class Name to save the generated code. If not provided, use `GeneratedContract` [default: GeneratedContract] │
│ --target-lib [web3_v7|web3_v6] Target library and version [default: web3_v7] │
│ --network [mainnet|sepolia] Ethereum network for fetching ABI [default: mainnet] │
│ --help Show this message and exit. │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Command Examples
Gen from ABI file
py-contract-codegen gen --abi-path {ABI_FILE_PATH} --out-file generated_contract.py
Gen from stdin
cat {ABI_FILE_PATH} | py-contract-codegen gen --abi-stdin --out-file generated_contract.py
Gen from Contract Address
It automatically generates code by fetching the ABI through Etherscan API.
The contract's source code needs to be verified on Etherscan.
Please set environment variable ETHERSCAN_API_KEY
.
py-contract-codegen gen --contract-address {CONTRACT_ADDRESS} --out-file generated_contract.py
Examples
To use the generated contract, you need to install web3.py.
Here's an example of a generated contract:
ERC20
from web3 import Web3
from eth_account import Account
w3 = Web3(provider=Web3.HTTPProvider("{YOUR_PROVIDER_URL}"))
private_key = "{YOUR_PRIVATE_KEY}"
contract_address = w3.to_checksum_address("{YOUR_CONTRACT_ADDRESS}")
to_address = w3.to_checksum_address("{YOUR_TO_ADDRESS}")
contract = GeneratedContract(contract_address=contract_address, web3=w3)
account = Account.from_key(private_key)
# balanceOf
balance = contract.balanceOf(to_address)
# transfer
transfer = contract.transfer(to_address, 1)
nonce = w3.eth.get_transaction_count(account.address)
build_tx = transfer.build_transaction({"from": account.address, "nonce": nonce})
signed_tx = account.sign_transaction(build_tx)
tx_hash = web3.eth.send_raw_transaction(signed_tx.rawTransaction)
web3.eth.wait_for_transaction_receipt(tx_hash)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_contract_codegen-0.1.2.tar.gz
(17.6 kB
view details)
Built Distribution
File details
Details for the file py_contract_codegen-0.1.2.tar.gz
.
File metadata
- Download URL: py_contract_codegen-0.1.2.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f562e91d7498e0cf0861052b9ec47693551c5fe0c9a03c01d1d292198063ad2 |
|
MD5 | 2bd681be2c879643a2426bc8c15be62d |
|
BLAKE2b-256 | 0493e384a4062ac0dcf58837535bd2741c2f5766510436eb4e11bdbb5664b1d4 |
File details
Details for the file py_contract_codegen-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: py_contract_codegen-0.1.2-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85af4088ec244ddd3984c64f72918e8e7842a97f7ca0a047c4e425471c44a420 |
|
MD5 | 36865b5532050b0daa0385820b275387 |
|
BLAKE2b-256 | 32475cf3b3b70c45dd68bb1ea7309465680dca81fd492318cebc4c38063ba94e |