Foundry is a modular toolkit written in rust for deploying Ethereum contracts.It can be used with SYBL to deploy contracts to most EVM compatible chains.
Copy
// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.13;contract Counter { uint256 public number; function setNumber(uint256 newNumber) public { number = newNumber; } function increment() public { number++; }}
These arguments allow for forge to use a SYBL account:
—unlocked: Allow forge to use the account provided by SYBL