boa-solidity

Solidity support for Titanoboa


License
MIT
Install
pip install boa-solidity==0.1.1

Documentation

Boa Solidity

Implements solidity support for Titanoboa

Usage

import boa
import boa_solidity

sol_deployer = boa.load_partial_solc("Counter.sol")

sol_contract = sol_deployer.deploy()

# or attach to existing contract (useful when forking mainnet state)

sol_contract = sol_deployer.at(<addr>)