[DEPRECATED] This repository is now deprecated in favour of the new development monorepo.
@eth-optimism/contracts contains the various Solidity smart contracts used within the Optimistic Ethereum system.
Some of these contracts are deployed on Ethereum ("Layer 1"), while others are meant to be deployed to Optimistic Ethereum ("Layer 2").
Within each contract file you'll find a comment that lists:
- The compiler with which a contract is intended to be compiled,
solcoroptimistic-solc. - The network upon to which the contract will be deployed,
OVMorEVM.
A more detailed overview of these contracts can be found on the community hub.
If your development stack is based on Node/npm:
npm install @eth-optimism/contractsWithin your contracts:
import { SomeContract } from "@eth-optimism/contracts/SomeContract.sol";Install the following:
Clone the repo:
git clone https://github.com/ethereum-optimism/contracts.git
cd contractsInstall npm packages:
yarn installTests are executed via yarn:
yarn testRun specific tests by giving a path to the file you want to run:
yarn test ./test/path/to/my/test.spec.tsyarn test-coverageThe output is most easily viewable by opening the html file in your browser:
open ./coverage/index.htmlEasiest way is to run the primary build script:
yarn buildRunning the full build command will perform the following actions:
build:contracts- Compile all Solidity contracts with both the EVM and OVM compilers.build:typescript- Builds the typescript files that are used to export utilities into js.build:copy- Copies various other files into the build folder.build:dump- Generates a genesis state from the contracts that L2 geth will use.build:typechain- Generates TypeChain artifacts.
You can also build specific components as follows:
yarn build:contractsPlease refer to our Security Policy for information about how to disclose security issues with this code.