Template repository for getting started quickly with Catapulta.sh smart contracts development platform for Foundry projects.
Install this Catapulta Foundry template as a Dev Container in your Cursor or VSCode IDE with 1-click:
Once your IDE loads the Dev Container, proceed to Deploy your first contract with Catapulta section.
Requirements
Click "Use this template" on GitHub to create a new repository with this repo as the initial state.
You can also git clone this repository and enter to the repository directory:
git clone https://github.com/catapulta-sh/catapulta-foundry-template
cd catapulta-foundry-template
- Install forge dependencies
forge install
- Install catapulta via
npm
npm i -g catapulta
- Generate a new private key with Catapulta, is stored offline in your .env, or add your own as
PRIVATE_KEY
in the .env file stored at the root of the project
catapulta wallet
# Output:
# Wallet address: 0x6B193d5604e09f1737E33cFc4B06fb3f2C7fC3CE
# Private key appended to your .env file.
- Setup your
CATAPULTA_API_KEY
into your .env, generate one free key at Catapulta - Deploy the basic contract into Sepolia testnet with Catapulta, using
--sponsor
flag to request gas. This skips the need of faucets.
catapulta script script/Deploy.s.sol --network baseSepolia --sponsor
# Output:
Catapulta.sh 🏏 Forge script deployment (0.4.1)
================================================
Project name: Ghost Deployments
Project URL: https://catapulta.sh/project/6116272a59b37a3a4a7afb55
Deployment UUID: 592a91ad-57c8-42c6-b37e-2af0e170f31a
📀 Building artifacts...
🗜 Compressing artifacts...
📤 Uploading artifacts to the Catapulta DB...
✅ Artifacts uploaded successfully.
📡 Broadcasting deployments to Catapulta Gateway RPC:
📜 Running Foundry script: forge script scripts/DeployBasic.sol --broadcast
[...]
✅ Deployment successfully broadcasted
- Etherscan verification request sent. Check the dashboard for keeping track of verifications. If contracts are not verified in 10 minutes, contact support at Discord.
💾 Artifacts stored at:
- https://users-artifacts.s3.eu-west-1.amazonaws.com/595a911d-57c8-42c6-b37e-2af0e170f31a-deployment-artifacts/artifacts.zip
📸 Check your deployment report at:
- https://catapulta.sh/project/6416272a59b37a3a4a7afb55/op/595a91ad-57c8-42c6-b37e-2af0e170f31a
- Check the deployment report at the Catapulta UI, and enjoy automated Etherscan verification without any extra configs or API keys.