Plugin for Ape Ethereum Framework for compiling Solidity contracts
Project description
Quick Start
Compile Solidity contracts.
Dependencies
- python3 version 3.8 up to 3.11.
Installation
via pip
You can install the latest release via pip
:
pip install ape-solidity
via setuptools
You can clone the repository and use setuptools
for the most up-to-date version:
git clone https://github.com/ApeWorX/ape-solidity.git
cd ape-solidity
python3 setup.py install
Quick Usage
In your project, make sure you have a contracts/
directory containing Solidity files (.sol
).
Then, while this plugin is installed, compile your contracts:
ape compile
The byte-code and ABI for your contracts should now exist in a __local__.json
file in a .build/
directory.
Solidity Versioning
By default, ape-solidity
tries to use the best versions of Solidity by looking at all the source files' pragma specifications.
However, it is often better to specify a version directly.
If you know the best version to use, set it in your ape-config.yaml
, like this:
solidity:
version: 0.8.14
EVM Versioning
By default, ape-solidity
will use whatever version of EVM rules are set as default in the compiler version that gets used.
Sometimes, you might want to use a different version, such as deploying on Arbitrum or Optimism where new opcodes are not supported yet.
If you want to require a different version of EVM rules to use in the configuration of the compiler, set it in your ape-config.yaml
like this:
solidity:
evm_version: paris
Dependency Mapping
To configure import remapping, use your project's ape-config.yaml
file:
solidity:
import_remapping:
- "@openzeppelin=path/to/open_zeppelin/contracts"
If you are using the dependencies:
key in your ape-config.yaml
, ape
can automatically
search those dependencies for the path.
dependencies:
- name: OpenZeppelin
github: OpenZeppelin/openzeppelin-contracts
version: 4.4.2
solidity:
import_remapping:
- "@openzeppelin=OpenZeppelin/4.4.2"
Once you have your dependencies configured, you can import packages using your import keys:
import "@openzeppelin/token/ERC721/ERC721.sol";
Library Linking
To compile contracts that use libraries, you need to add the libraries first.
Use the add_library()
method from the ape-solidity
compiler class to add the library.
A typical flow is:
- Deploy the library.
- Call
add_library()
using the Solidity compiler plugin, which will also re-compile contracts that need the library. - Deploy and use contracts that require the library.
For example:
import pytest
@pytest.fixture
def contract(accounts, project, compilers):
# Deploy the library.
account = accounts[0]
library = project.Set.deploy(sender=account)
# Add the library to Solidity (re-compiles contracts that use the library).
compilers.solidity.add_library(library)
# Deploy the contract that uses the library.
return project.C.deploy(sender=account)
Compiler Settings
When using ape-solidity
, your project's manifest's compiler settings will include standard JSON output.
You should have one listed compiler
per solc
version used in your project.
You can view your current project manifest, including the compiler settings, by doing:
from ape import project
manifest = project.extract_manifest()
for compiler_entry in manifest.compilers:
print(compiler_entry.version)
print(compiler_entry.settings)
NOTE: These are the settings used during contract verification when using the Etherscan plugin.
--via-IR
Yul IR Compilation Pipeline
You can enable solc
's --via-IR
flag by adding the following values to your ape-config.yaml
solidity:
via_ir: True
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
Built Distribution
File details
Details for the file ape-solidity-0.7.1.tar.gz
.
File metadata
- Download URL: ape-solidity-0.7.1.tar.gz
- Upload date:
- Size: 410.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/42.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.1.0 tqdm/4.66.1 importlib-metadata/7.0.1 keyring/24.3.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57588d88d10bd8097d24d0c9c0c1e63cf3ece3b0cd5c455381d9a45d6e8f51f2 |
|
MD5 | 977cc0bdf808ced80b22cd3dc2864ffd |
|
BLAKE2b-256 | 493d85003b7f115b3130d8ac4e9983e56c840a3063c8fba7a4df497f79f6d5bb |
File details
Details for the file ape_solidity-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: ape_solidity-0.7.1-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/42.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.1.0 tqdm/4.66.1 importlib-metadata/7.0.1 keyring/24.3.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b64e494482ad6ff4d60c4d7ec76377f36dcf68970576f1345d18203db190a6d |
|
MD5 | 64498cf135eba4be6a6ec979f28e9df3 |
|
BLAKE2b-256 | 1ce9fae9d8aa82055290d822b57ecdf745d5e905a97587b72bca1f034ec5d6e4 |