Installation
Validium Network has integrated zkSync Foundry as its development framework. Discover the steps to install and configure Foundry for zkSync effectively.
Last updated
Validium Network has integrated zkSync Foundry as its development framework. Discover the steps to install and configure Foundry for zkSync effectively.
Last updated
This guide will walk you through installing Foundry ZKsync, a specialized toolchain for developing, testing, and deploying smart contracts on ZKsync. You can install Foundry ZKsync by using the foundryup-zksync
installer, downloading precompiled binaries, or by building it from source.
foundryup-zksync
foundryup-zksync
is the official installer for the Foundry ZKsync toolchain. It allows you to easily install and manage the latest versions of forge
and cast
.
To install foundryup-zksync
, follow these steps:
By default, this will install the latest (nightly) precompiled versions of forge
and cast
. To see more installation options, such as installing a specific version, run:
Currently, only forge
and cast
are supported for ZKsync. Other commands retain their original behavior but may not work as intended.
Windows Users: You need to use Git BASH or WSL, as foundryup-zksync
does not support PowerShell or Cmd, and we do not provide Windows executable binaries. Windows support is currently provided on a best-effort basis.
Precompiled binaries are available for download from the . We recommend using the latest nightly build to stay up-to-date with the latest features and fixes.
To download and install one of these binaries, follow these steps:
Repeat for your platform, replacing the URL with the appropriate binary.
If you prefer to build Foundry ZKsync from source, follow these steps:
Nightly Rust: Foundry ZKsync generally supports only a specific nightly version of Rust, which is automatically set by the presence of a rust-toolchain
file in the project.
There are multiple ways to build from source:
Option 1: Using foundryup-zksync
flags
To build from a specific branch or path:
Option 2: Using Cargo
You can install the toolchain directly using Cargo:
Option 3: Manually building from a local clone
To install Foundry ZKsync for CI pipelines, the latest precompiled binaries for your architecture can be downloaded directly from the release page. Below is an example for a GitHub Actions workflow:
foundry.toml
Profiles
To switch profiles, use the FOUNDRY_PROFILE
environment variable. You can also override specific settings using environment variables prefixed with FOUNDRY_
or DAPP_
, such as FOUNDRY_SRC
.
Initialization
The forge init
command generates a basic foundry.toml
file, which you can extend as needed.
Viewing Configuration
To view your current configuration:
Run forge config
to see all options.
Run forge config --basic
for a simplified view (as initialized with forge init
).
You can generate a new foundry.toml
file with forge config --basic > foundry.toml
.
By default, forge config
displays the active profile and its values. It also accepts the same arguments as forge build
.
Example foundry.toml
for ZKsync
Here's an example configuration for ZKsync with zksolc
settings:
Follow these steps to securely store your wallet's private key to use it in Foundry projects:
Create a Foundry keystore: Create a keystore and import your private key by running
It'll return an address (keystore address).
Using the keystore
When running commands that require a private key, like forge create
or cast send
, use --account myKeystore --sender <KEYSTORE_ADDRESS>
. This will require you to enter the keystore password you provided before.
macOS (Intel):
macOS (Apple):
Linux (Intel):
Linux (ARM):
Rust Compiler and Cargo: The easiest way to install them is via .
Foundry is highly configurable through a foundry.toml
file, located in the root of your project or any parent directory. For a full list of configuration options, see the .
You can organize configuration options using profiles. The default profile is named default
. See more about the .
You can find additional setup and configurations guides in the :
Extract Your Private Key: If you are using the local era node, use a private key from the available rich accounts. Otherwise, find your personal wallet's private key. For MetaMask users, here's how to .