Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.8%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: swanchain
  • License: mit
  • Language: Go
  • Default Branch: 03-27-create_OptimistAllowlist_contract
  • Size: 243 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 2 years ago · Last pushed over 2 years ago
Metadata Files
Readme Contributing License Citation Codeowners Security

README.md



Optimism

Optimism is a low-cost and lightning-fast Ethereum L2 blockchain.


What is Optimism?

Optimism is a low-cost and lightning-fast Ethereum L2 blockchain, but it's also so much more than that.

Optimism is the technical foundation for the Optimism Collective, a band of communities, companies, and citizens united by a mutually beneficial pact to adhere to the axiom of impact=profit the principle that positive impact to the collective should be rewarded with profit to the individual. We're trying to solve some of the most critical coordination failures facing the crypto ecosystem today. We're particularly focused on creating a sustainable funding stream for the public goods and infrastructure upon which the ecosystem so heavily relies but has so far been unable to adequately reward. We'd love for you to check out The Optimistic Vision to understand more about why we do what we do.

Documentation

If you want to build on top of Optimism, take a look at the extensive documentation on the Optimism Community Hub. If you want to build Optimism, check out the Protocol Specs.

Community

General discussion happens most frequently on the Optimism discord. Governance discussion can also be found on the Optimism Governance Forum.

Contributing

Read through CONTRIBUTING.md for a general overview of our contribution process. Use the Developer Quick Start to get your development environment set up to start working on the Optimism Monorepo. Then check out our list of good first issues to find something fun to work on!

Security Policy and Vulnerability Reporting

Please refer to our canonical Security Policy document for detailed information about how to report vulnerabilities in this codebase. Bounty hunters are encouraged to check out our Immunefi bug bounty program. We offer up to $2,000,042 for in-scope critical vulnerabilities and we pay our maximum bug bounty rewards.

The Bedrock Upgrade

Optimism is currently preparing for its next major upgrade called Bedrock. Bedrock significantly revamps how Optimism works under the hood and will help make Optimism the fastest, cheapest, and most reliable rollup yet. You can find detailed specifications for the Bedrock upgrade within the specs folder in this repository.

Please note that a significant number of packages and folders within this repository are part of the Bedrock upgrade and are NOT currently running in production. Refer to the Directory Structure section below to understand which packages are currently running in production and which are intended for use as part of the Bedrock upgrade.

Directory Structure

~~ Production ~~
 packages
    common-ts: Common tools for building apps in TypeScript
    contracts: L1 and L2 smart contracts for Optimism
    contracts-periphery: Peripheral contracts for Optimism
    core-utils: Low-level utilities that make building Optimism easier
    data-transport-layer: Service for indexing Optimism-related L1 data
    chain-mon: Chain monitoring services
    fault-detector: Service for detecting Sequencer faults
    message-relayer: Tool for automatically relaying L1<>L2 messages in development
    replica-healthcheck: Service for monitoring the health of a replica node
    sdk: provides a set of tools for interacting with Optimism
 batch-submitter: Service for submitting batches of transactions and results to L1
 bss-core: Core batch-submitter logic and utilities
 gas-oracle: Service for updating L1 gas prices on L2
 indexer: indexes and syncs transactions
 infra/op-replica: Deployment examples and resources for running an Optimism replica
 integration-tests: Various integration tests for the Optimism network
 l2geth: Optimism client software, a fork of geth v1.9.10  (deprecated for BEDROCK upgrade)
 l2geth-exporter: A prometheus exporter to collect/serve metrics from an L2 geth node
 op-exporter: A prometheus exporter to collect/serve metrics from an Optimism node
 proxyd: Configurable RPC request router and proxy
 technical-documents: audits and post-mortem documents

~~ BEDROCK upgrade - Not production-ready yet, part of next major upgrade ~~
 packages
    contracts-bedrock: Bedrock smart contracts. To be merged with ./packages/contracts.
 op-bindings: Go bindings for Bedrock smart contracts.
 op-batcher: L2-Batch Submitter, submits bundles of batches to L1
 op-e2e: End-to-End testing of all bedrock components in Go
 op-node: rollup consensus-layer client.
 op-proposer: L2-Output Submitter, submits proposals to L1
 ops-bedrock: Bedrock devnet work
 specs: Specs of the rollup starting at the Bedrock upgrade

Branching Model

Active Branches

| Branch | Status | | --------------- | -------------------------------------------------------------------------------- | | master | Accepts PRs from develop when we intend to deploy to mainnet. | | develop | Accepts PRs that are compatible with master OR from release/X.X.X branches. | | release/X.X.X | Accepts PRs for all changes, particularly those not backwards compatible with develop and master. |

Overview

We generally follow this Git branching model. Please read the linked post if you're planning to make frequent PRs into this repository (e.g., people working at/with Optimism).

Production branch

Our production branch is master. The master branch contains the code for our latest "stable" releases. Updates from master always come from the develop branch. We only ever update the master branch when we intend to deploy code within the develop to the Optimism mainnet. Our update process takes the form of a PR merging the develop branch into the master branch.

Development branch

Our primary development branch is develop. develop contains the most up-to-date software that remains backwards compatible with our latest experimental network deployments. If you're making a backwards compatible change, please direct your pull request towards develop.

Changes to contracts within packages/contracts/contracts are usually NOT considered backwards compatible and SHOULD be made against a release candidate branch. Some exceptions to this rule exist for cases in which we absolutely must deploy some new contract after a release candidate branch has already been fully deployed. If you're changing or adding a contract and you're unsure about which branch to make a PR into, default to using the latest release candidate branch. See below for info about release candidate branches.

Release candidate branches

Branches marked release/X.X.X are release candidate branches. Changes that are not backwards compatible and all changes to contracts within packages/contracts/contracts MUST be directed towards a release candidate branch. Release candidates are merged into develop and then into master once they've been fully deployed. We may sometimes have more than one active release/X.X.X branch if we're in the middle of a deployment. See table in the Active Branches section above to find the right branch to target.

Releases

Changesets

We use changesets to mark packages for new releases. When merging commits to the develop branch you MUST include a changeset file if your change would require that a new version of a package be released.

To add a changeset, run the command yarn changeset in the root of this monorepo. You will be presented with a small prompt to select the packages to be released, the scope of the release (major, minor, or patch), and the reason for the release. Comments within changeset files will be automatically included in the changelog of the package.

Triggering Releases

Releases can be triggered using the following process:

  1. Create a PR that merges the develop branch into the master branch.
  2. Wait for the auto-generated Version Packages PR to be opened (may take several minutes).
  3. Change the base branch of the auto-generated Version Packages PR from master to develop and merge into develop.
  4. Create a second PR to merge the develop branch into the master branch.

After merging the second PR into the master branch, packages will be automatically released to their respective locations according to the set of changeset files in the develop branch at the start of the process. Please carry this process out exactly as listed to avoid develop and master falling out of sync.

NOTE: PRs containing changeset files merged into develop during the release process can cause issues with changesets that can require manual intervention to fix. It's strongly recommended to avoid merging PRs into develop during an active release.

License

Code forked from go-ethereum under the name l2geth is licensed under the GNU GPLv3 in accordance with the original license.

All other files within this repository are licensed under the MIT License unless stated otherwise.

Owner

  • Name: Swan Chain
  • Login: swanchain
  • Kind: organization

GitHub Events

Total
Last Year

Dependencies

.github/workflows/close-stale.yml actions
  • actions/stale v4 composite
.github/workflows/labeler.yml actions
  • actions/labeler main composite
.github/workflows/publish-canary.yml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/setup-node master composite
  • changesets/action v1 composite
  • docker/build-push-action v2 composite
  • docker/login-action v1 composite
  • docker/setup-buildx-action v1 composite
  • foundry-rs/foundry-toolchain v1 composite
.github/workflows/release.yml actions
  • actions/cache v2 composite
  • actions/checkout master composite
  • actions/checkout v2 composite
  • actions/setup-node master composite
  • changesets/action v1 composite
  • docker/build-push-action v2 composite
  • docker/login-action v1 composite
  • docker/setup-buildx-action v1 composite
  • foundry-rs/foundry-toolchain v1 composite
.github/workflows/tag-service.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v4 composite
l2geth/build/pod.podspec cocoapods
batch-submitter/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
endpoint-monitor/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
gas-oracle/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
indexer/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
infra/op-replica/docker-compose/contrib/traefik-haproxy/traefik/Dockerfile docker
  • traefik latest build
l2geth/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
l2geth-exporter/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
op-batcher/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-chain-ops/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-exporter/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-heartbeat/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
op-node/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-proposer/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-wheel/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
ops/docker/ci-builder/Dockerfile docker
  • debian bullseye-20220822-slim build
  • ethereum/client-go alltools-v1.10.25 build
  • ghcr.io/crytic/echidna/echidna v2.0.4 build
  • python 3.8.13-slim-bullseye build
ops/docker/foundry/Dockerfile docker
  • alpine 3.14 build
ops/docker/hardhat/Dockerfile docker
  • node 16-alpine build
ops/docker-compose-metrics.yml docker
  • grafana/grafana 7.5.5
  • prom/prometheus latest
  • python 3
  • quay.io/influxdb/influxdb 1.6
ops/docker-compose.yml docker
ops-bedrock/docker-compose.yml docker
proxyd/Dockerfile docker
  • alpine 3.15 build
  • golang 1.18.0-alpine3.15 build
batch-submitter/go.mod go
  • ../bss-core *
  • ../l2geth *
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.1
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/base58 v1.0.3
  • github.com/decred/dcrd/crypto/blake256 v1.0.0
  • github.com/decred/dcrd/crypto/ripemd160 v1.0.1
  • github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/decred/dcrd/hdkeychain/v3 v3.0.0
  • github.com/elastic/gosigar v0.12.0
  • github.com/ethereum/go-ethereum v1.10.26
  • github.com/getsentry/sentry-go v0.12.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.0
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/mitchellh/pointerstructure v1.2.1
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/pkg/errors v0.9.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.11.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.30.0
  • github.com/prometheus/procfs v0.7.3
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rivo/uniseg v0.2.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570
  • github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3
  • github.com/stretchr/testify v1.7.2
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.4.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/urfave/cli v1.22.5
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.1.0
  • golang.org/x/sys v0.1.0
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v3 v3.0.1
batch-submitter/go.sum go
  • 1143 dependencies
bss-core/go.mod go
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/allegro/bigcache v1.2.1
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.0-beta
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/base58 v1.0.3
  • github.com/decred/dcrd/crypto/blake256 v1.0.0
  • github.com/decred/dcrd/crypto/ripemd160 v1.0.1
  • github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/decred/dcrd/hdkeychain/v3 v3.0.0
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/ethereum/go-ethereum v1.10.26
  • github.com/fjl/memsize v0.0.1
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/getsentry/sentry-go v0.12.0
  • github.com/go-kit/kit v0.10.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.8
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.0
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/mitchellh/mapstructure v1.4.3
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/onsi/ginkgo v1.16.4
  • github.com/onsi/gomega v1.16.0
  • github.com/pkg/errors v0.9.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.11.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.30.0
  • github.com/prometheus/procfs v0.7.3
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rivo/uniseg v0.2.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/stretchr/testify v1.7.2
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.4.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.1.0
  • golang.org/x/sys v0.1.0
  • golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v3 v3.0.1
bss-core/go.sum go
  • 907 dependencies
endpoint-monitor/go.mod go
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.1
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/deckarep/golang-set v1.8.0
  • github.com/elastic/gosigar v0.12.0
  • github.com/ethereum-optimism/optimism/l2geth v0.0.0-20220923210602-7121648c1f26
  • github.com/ethereum-optimism/optimism/op-service v0.8.8
  • github.com/ethereum/go-ethereum v1.10.26
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/gorilla/websocket v1.5.0
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/pkg/errors v0.9.1
  • github.com/prometheus/client_golang v1.13.0
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.37.0
  • github.com/prometheus/procfs v0.8.0
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570
  • github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3
  • github.com/urfave/cli v1.22.9
  • golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
  • golang.org/x/sys v0.0.0-20220701225701-179beb0bd1a1
  • golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
endpoint-monitor/go.sum go
  • 1027 dependencies
gas-oracle/go.mod go
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/allegro/bigcache v1.2.1
  • github.com/btcsuite/btcd v0.22.0-beta
  • github.com/btcsuite/btcd/btcec/v2 v2.1.2
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/cpuguy83/go-md2man/v2 v2.0.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/deepmap/oapi-codegen v1.8.2
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/ethereum/go-ethereum v1.10.17
  • github.com/fjl/memsize v0.0.1
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/go-kit/kit v0.10.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.8
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.0
  • github.com/huin/goupnp v1.0.3
  • github.com/influxdata/influxdb v1.8.3
  • github.com/influxdata/influxdb-client-go/v2 v2.4.0
  • github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-isatty v0.0.14
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/mitchellh/mapstructure v1.4.3
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/onsi/ginkgo v1.16.4
  • github.com/onsi/gomega v1.16.0
  • github.com/pkg/errors v0.9.1
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rivo/uniseg v0.2.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.4.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/urfave/cli v1.22.5
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70
  • golang.org/x/net v0.7.0
  • golang.org/x/sys v0.5.0
  • golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v2 v2.4.0
gas-oracle/go.sum go
  • 806 dependencies
go.mod go
  • github.com/DataDog/zstd v1.5.2
  • github.com/Microsoft/go-winio v0.6.0
  • github.com/VictoriaMetrics/fastcache v1.10.0
  • github.com/allegro/bigcache v1.2.1
  • github.com/benbjohnson/clock v1.3.0
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.23.3
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/btcsuite/btcd/btcutil v1.1.0
  • github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
  • github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
  • github.com/cespare/xxhash/v2 v2.2.0
  • github.com/cockroachdb/errors v1.9.1
  • github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b
  • github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811
  • github.com/cockroachdb/redact v1.1.3
  • github.com/containerd/cgroups v1.1.0
  • github.com/coreos/go-systemd/v22 v22.5.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c
  • github.com/deckarep/golang-set/v2 v2.1.0
  • github.com/decred/dcrd/crypto/blake256 v1.0.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
  • github.com/deepmap/oapi-codegen v1.8.2
  • github.com/docker/distribution v2.8.1+incompatible
  • github.com/docker/docker v20.10.21+incompatible
  • github.com/docker/go-connections v0.4.0
  • github.com/docker/go-units v0.5.0
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/elastic/gosigar v0.14.2
  • github.com/emirpasic/gods v1.18.1
  • github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3
  • github.com/ethereum-optimism/op-geth v1.11.2-de8c5df46.0.20230324105532-555b76f39878
  • github.com/fjl/memsize v0.0.1
  • github.com/flynn/noise v1.0.0
  • github.com/francoispqt/gojay v1.2.13
  • github.com/fsnotify/fsnotify v1.6.0
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/getsentry/sentry-go v0.18.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0
  • github.com/godbus/dbus/v5 v5.1.0
  • github.com/gofrs/flock v0.8.1
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang-jwt/jwt/v4 v4.4.2
  • github.com/golang/mock v1.6.0
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.9
  • github.com/google/gofuzz v1.2.1-0.20220503160820-4a35382e8fc8
  • github.com/google/gopacket v1.1.19
  • github.com/google/pprof v0.0.0-20230207041349-798e818bf904
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/graph-gophers/graphql-go v1.3.0
  • github.com/hashicorp/errwrap v1.1.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/hashicorp/go-multierror v1.1.1
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/hashicorp/golang-lru/v2 v2.0.1
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.0
  • github.com/huin/goupnp v1.1.0
  • github.com/influxdata/influxdb v1.8.3
  • github.com/influxdata/influxdb-client-go/v2 v2.4.0
  • github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097
  • github.com/ipfs/go-cid v0.3.2
  • github.com/ipfs/go-datastore v0.6.0
  • github.com/ipfs/go-ds-leveldb v0.5.0
  • github.com/ipfs/go-log v1.0.5
  • github.com/ipfs/go-log/v2 v2.5.1
  • github.com/jackpal/go-nat-pmp v1.0.2
  • github.com/jbenet/go-temp-err-catcher v0.1.0
  • github.com/jbenet/goprocess v0.1.4
  • github.com/klauspost/compress v1.15.15
  • github.com/klauspost/cpuid/v2 v2.2.3
  • github.com/koron/go-ssdp v0.0.3
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/libp2p/go-buffer-pool v0.1.0
  • github.com/libp2p/go-cidranger v1.1.0
  • github.com/libp2p/go-flow-metrics v0.1.0
  • github.com/libp2p/go-libp2p v0.25.1
  • github.com/libp2p/go-libp2p-asn-util v0.2.0
  • github.com/libp2p/go-libp2p-pubsub v0.9.0
  • github.com/libp2p/go-libp2p-testing v0.12.0
  • github.com/libp2p/go-mplex v0.7.0
  • github.com/libp2p/go-msgio v0.3.0
  • github.com/libp2p/go-nat v0.1.0
  • github.com/libp2p/go-netroute v0.2.1
  • github.com/libp2p/go-reuseport v0.2.0
  • github.com/libp2p/go-yamux/v4 v4.0.0
  • github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.17
  • github.com/mattn/go-runewidth v0.0.14
  • github.com/matttproud/golang_protobuf_extensions v1.0.4
  • github.com/miekg/dns v1.1.50
  • github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b
  • github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc
  • github.com/minio/sha256-simd v1.0.0
  • github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
  • github.com/mitchellh/mapstructure v1.5.0
  • github.com/mitchellh/pointerstructure v1.2.1
  • github.com/moby/term v0.0.0-20221105221325-4eb28fa6025c
  • github.com/morikuni/aec v1.0.0
  • github.com/mr-tron/base58 v1.2.0
  • github.com/multiformats/go-base32 v0.1.0
  • github.com/multiformats/go-base36 v0.2.0
  • github.com/multiformats/go-multiaddr v0.8.0
  • github.com/multiformats/go-multiaddr-dns v0.3.1
  • github.com/multiformats/go-multiaddr-fmt v0.1.0
  • github.com/multiformats/go-multibase v0.1.1
  • github.com/multiformats/go-multicodec v0.8.1
  • github.com/multiformats/go-multihash v0.2.1
  • github.com/multiformats/go-multistream v0.4.1
  • github.com/multiformats/go-varint v0.0.7
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/onsi/ginkgo/v2 v2.8.1
  • github.com/opencontainers/go-digest v1.0.0
  • github.com/opencontainers/image-spec v1.0.2
  • github.com/opencontainers/runtime-spec v1.0.2
  • github.com/opentracing/opentracing-go v1.2.0
  • github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58
  • github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7
  • github.com/pkg/errors v0.9.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.14.0
  • github.com/prometheus/client_model v0.3.0
  • github.com/prometheus/common v0.39.0
  • github.com/prometheus/procfs v0.9.0
  • github.com/quic-go/qpack v0.4.0
  • github.com/quic-go/qtls-go1-18 v0.2.0
  • github.com/quic-go/qtls-go1-19 v0.2.0
  • github.com/quic-go/qtls-go1-20 v0.1.0
  • github.com/quic-go/quic-go v0.32.0
  • github.com/quic-go/webtransport-go v0.5.1
  • github.com/raulk/go-watchdog v1.3.0
  • github.com/rivo/uniseg v0.4.3
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/schollz/progressbar/v3 v3.13.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/sirupsen/logrus v1.9.0
  • github.com/spaolacci/murmur3 v1.1.0
  • github.com/status-im/keycard-go v0.2.0
  • github.com/stretchr/objx v0.5.0
  • github.com/stretchr/testify v1.8.1
  • github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.5.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/urfave/cli v1.22.9
  • github.com/urfave/cli/v2 v2.17.2-0.20221006022127-8f469abc00aa
  • github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673
  • github.com/yusufpapurcu/wmi v1.2.2
  • go.uber.org/atomic v1.10.0
  • go.uber.org/dig v1.16.1
  • go.uber.org/fx v1.19.1
  • go.uber.org/multierr v1.9.0
  • go.uber.org/zap v1.24.0
  • golang.org/x/crypto v0.6.0
  • golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb
  • golang.org/x/mod v0.8.0
  • golang.org/x/net v0.7.0
  • golang.org/x/sync v0.1.0
  • golang.org/x/sys v0.5.0
  • golang.org/x/term v0.5.0
  • golang.org/x/text v0.7.0
  • golang.org/x/time v0.0.0-20220922220347-f3bd1da661af
  • golang.org/x/tools v0.6.0
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
  • gotest.tools/v3 v3.4.0
  • lukechampine.com/blake3 v1.1.7
  • nhooyr.io/websocket v1.8.7
go.sum go
  • 1032 dependencies
indexer/go.mod go
  • github.com/VictoriaMetrics/fastcache v1.10.0
  • github.com/benbjohnson/clock v1.3.0
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.23.3
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/btcsuite/btcd/btcutil v1.1.0
  • github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
  • github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/containerd/cgroups v1.0.4
  • github.com/coreos/go-systemd/v22 v22.4.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/dcrd/crypto/blake256 v1.0.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
  • github.com/deepmap/oapi-codegen v1.8.2
  • github.com/docker/go-units v0.5.0
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/elastic/gosigar v0.14.2
  • github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3
  • github.com/ethereum-optimism/op-geth v0.0.0-20230214215134-401b7fd3309b
  • github.com/ethereum-optimism/optimism/op-batcher v0.10.14
  • github.com/ethereum-optimism/optimism/op-bindings v0.10.14
  • github.com/ethereum-optimism/optimism/op-chain-ops v0.10.14
  • github.com/ethereum-optimism/optimism/op-e2e v0.10.14
  • github.com/ethereum-optimism/optimism/op-node v0.10.14
  • github.com/ethereum-optimism/optimism/op-proposer v0.10.14
  • github.com/ethereum-optimism/optimism/op-service v0.10.14
  • github.com/ethereum-optimism/optimism/op-signer v0.1.1
  • github.com/fjl/memsize v0.0.1
  • github.com/flynn/noise v1.0.0
  • github.com/fsnotify/fsnotify v1.6.0
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/godbus/dbus/v5 v5.1.0
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang-jwt/jwt/v4 v4.4.2
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/gopacket v1.1.19
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/mux v1.8.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/graph-gophers/graphql-go v1.3.0
  • github.com/hashicorp/errwrap v1.1.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/hashicorp/go-multierror v1.1.1
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/holiman/big v0.0.0-20221017200358-a027dc42d04e
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.0
  • github.com/huin/goupnp v1.0.3
  • github.com/influxdata/influxdb v1.8.3
  • github.com/influxdata/influxdb-client-go/v2 v2.4.0
  • github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097
  • github.com/ipfs/go-cid v0.3.2
  • github.com/ipfs/go-datastore v0.6.0
  • github.com/ipfs/go-log v1.0.5
  • github.com/ipfs/go-log/v2 v2.5.1
  • github.com/jackpal/go-nat-pmp v1.0.2
  • github.com/jbenet/go-temp-err-catcher v0.1.0
  • github.com/jbenet/goprocess v0.1.4
  • github.com/klauspost/cpuid/v2 v2.1.1
  • github.com/koron/go-ssdp v0.0.3
  • github.com/lib/pq v1.10.4
  • github.com/libp2p/go-buffer-pool v0.1.0
  • github.com/libp2p/go-cidranger v1.1.0
  • github.com/libp2p/go-flow-metrics v0.1.0
  • github.com/libp2p/go-libp2p v0.23.3
  • github.com/libp2p/go-libp2p-asn-util v0.2.0
  • github.com/libp2p/go-libp2p-pubsub v0.8.1
  • github.com/libp2p/go-libp2p-testing v0.12.0
  • github.com/libp2p/go-mplex v0.7.0
  • github.com/libp2p/go-msgio v0.2.0
  • github.com/libp2p/go-nat v0.1.0
  • github.com/libp2p/go-netroute v0.2.0
  • github.com/libp2p/go-openssl v0.1.0
  • github.com/libp2p/go-reuseport v0.2.0
  • github.com/libp2p/go-yamux/v4 v4.0.0
  • github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-isatty v0.0.16
  • github.com/mattn/go-pointer v0.0.1
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/miekg/dns v1.1.50
  • github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b
  • github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc
  • github.com/minio/sha256-simd v1.0.0
  • github.com/mitchellh/mapstructure v1.5.0
  • github.com/mitchellh/pointerstructure v1.2.1
  • github.com/mr-tron/base58 v1.2.0
  • github.com/multiformats/go-base32 v0.1.0
  • github.com/multiformats/go-base36 v0.1.0
  • github.com/multiformats/go-multiaddr v0.7.0
  • github.com/multiformats/go-multiaddr-dns v0.3.1
  • github.com/multiformats/go-multiaddr-fmt v0.1.0
  • github.com/multiformats/go-multibase v0.1.1
  • github.com/multiformats/go-multicodec v0.6.0
  • github.com/multiformats/go-multihash v0.2.1
  • github.com/multiformats/go-multistream v0.3.3
  • github.com/multiformats/go-varint v0.0.6
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/opencontainers/runtime-spec v1.0.2
  • github.com/opentracing/opentracing-go v1.2.0
  • github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7
  • github.com/pkg/errors v0.9.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.13.0
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.37.0
  • github.com/prometheus/procfs v0.8.0
  • github.com/prometheus/tsdb v0.10.0
  • github.com/raulk/go-watchdog v1.3.0
  • github.com/rivo/uniseg v0.4.3
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572
  • github.com/spaolacci/murmur3 v1.1.0
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/stretchr/testify v1.8.1
  • github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.5.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/urfave/cli v1.22.9
  • github.com/urfave/cli/v2 v2.17.2-0.20221006022127-8f469abc00aa
  • github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee
  • github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673
  • github.com/yusufpapurcu/wmi v1.2.2
  • go.uber.org/atomic v1.10.0
  • go.uber.org/multierr v1.8.0
  • go.uber.org/zap v1.23.0
  • golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
  • golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
  • golang.org/x/net v0.7.0
  • golang.org/x/sync v0.1.0
  • golang.org/x/sys v0.5.0
  • golang.org/x/term v0.5.0
  • golang.org/x/text v0.7.0
  • golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
  • golang.org/x/tools v0.1.12
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
  • lukechampine.com/blake3 v1.1.7
indexer/go.sum go
  • 1451 dependencies
l2geth/go.mod go
  • github.com/Azure/azure-storage-blob-go v0.7.0
  • github.com/Azure/go-autorest/autorest/adal v0.9.5
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/allegro/bigcache v1.2.1
  • github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847
  • github.com/aws/aws-sdk-go v1.42.6
  • github.com/btcsuite/btcd v0.22.1
  • github.com/cespare/cp v0.1.0
  • github.com/cloudflare/cloudflare-go v0.14.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/docker/docker v20.10.10+incompatible
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/elastic/gosigar v0.12.0
  • github.com/ethereum/go-ethereum v1.10.16
  • github.com/fatih/color v1.7.0
  • github.com/fjl/memsize v0.0.1
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/go-kit/kit v0.10.0
  • github.com/go-resty/resty/v2 v2.4.0
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.8
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/graph-gophers/graphql-go v1.3.0
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/huin/goupnp v1.0.3
  • github.com/influxdata/influxdb v1.8.3
  • github.com/jackpal/go-nat-pmp v1.0.2
  • github.com/jarcoal/httpmock v1.0.8
  • github.com/julienschmidt/httprouter v1.3.0
  • github.com/karalabe/usb v0.0.2
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-isatty v0.0.14
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/onsi/gomega v1.16.0
  • github.com/opentracing/opentracing-go v1.2.0
  • github.com/pborman/uuid v1.2.0
  • github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff
  • github.com/rs/cors v1.8.2
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570
  • github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3
  • github.com/stretchr/testify v1.7.0
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208
  • golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70
  • golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
  • golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5
  • golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
  • golang.org/x/text v0.3.7
  • golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200619000410-60c24ae608a6
  • gopkg.in/sourcemap.v1 v1.0.5
  • gopkg.in/urfave/cli.v1 v1.20.0
  • gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
  • gotest.tools/v3 v3.0.3
l2geth/go.sum go
  • 840 dependencies
l2geth-exporter/go.mod go
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.0-beta
  • github.com/btcsuite/btcd/btcec/v2 v2.1.2
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/ethereum/go-ethereum v1.10.17
  • github.com/fjl/memsize v0.0.1
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/google/go-cmp v0.5.8
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/huin/goupnp v1.0.3
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-isatty v0.0.14
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/mitchellh/mapstructure v1.4.3
  • github.com/prometheus/client_golang v1.11.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.30.0
  • github.com/prometheus/procfs v0.7.3
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.4.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.1.0
  • golang.org/x/sys v0.1.0
  • golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
l2geth-exporter/go.sum go
  • 788 dependencies
op-exporter/go.mod go
  • github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
  • github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d
  • github.com/beorn7/perks v1.0.1
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/ethereum/go-ethereum v1.10.17
  • github.com/go-logr/logr v0.4.0
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang/protobuf v1.5.2
  • github.com/google/go-cmp v0.5.8
  • github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa
  • github.com/googleapis/gnostic v0.4.1
  • github.com/json-iterator/go v1.1.11
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  • github.com/modern-go/reflect2 v1.0.1
  • github.com/onsi/gomega v1.16.0
  • github.com/prometheus/client_golang v1.11.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.30.0
  • github.com/prometheus/procfs v0.7.3
  • github.com/sirupsen/logrus v1.7.0
  • github.com/ybbus/jsonrpc v2.1.2+incompatible
  • golang.org/x/net v0.7.0
  • golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
  • golang.org/x/sys v0.5.0
  • golang.org/x/term v0.5.0
  • golang.org/x/text v0.7.0
  • golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
  • google.golang.org/appengine v1.6.6
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/alecthomas/kingpin.v2 v2.2.6
  • gopkg.in/inf.v0 v0.9.1
  • gopkg.in/yaml.v2 v2.4.0
  • k8s.io/api v0.21.2
  • k8s.io/apimachinery v0.21.2
  • k8s.io/client-go v0.21.2
  • k8s.io/klog/v2 v2.8.0
  • k8s.io/utils v0.0.0-20201110183641-67b214c5f920
  • sigs.k8s.io/structured-merge-diff/v4 v4.1.0
  • sigs.k8s.io/yaml v1.2.0
op-exporter/go.sum go
  • 813 dependencies
op-heartbeat/go.mod go
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
  • github.com/ethereum-optimism/optimism/op-node v0.10.13
  • github.com/ethereum-optimism/optimism/op-service v0.10.13
  • github.com/ethereum/go-ethereum v1.10.26
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.14.0
  • github.com/prometheus/client_model v0.3.0
  • github.com/prometheus/common v0.37.0
  • github.com/prometheus/procfs v0.8.0
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/stretchr/testify v1.8.1
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.5.0
  • github.com/urfave/cli v1.22.10
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
  • golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43
  • golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v3 v3.0.1
op-heartbeat/go.sum go
  • 537 dependencies
packages/contracts-bedrock/test-case-generator/go.mod go
  • github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6
  • github.com/VictoriaMetrics/fastcache v1.6.0
  • github.com/btcsuite/btcd/btcec/v2 v2.2.0
  • github.com/cespare/xxhash/v2 v2.1.1
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/ethereum/go-ethereum v1.10.26
  • github.com/go-ole/go-ole v1.2.1
  • github.com/go-stack/stack v1.8.0
  • github.com/golang/snappy v0.0.4
  • github.com/mattn/go-runewidth v0.0.9
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/pkg/errors v0.9.1
  • github.com/prometheus/tsdb v0.7.1
  • github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tklauser/go-sysconf v0.3.5
  • github.com/tklauser/numcpus v0.2.2
  • golang.org/x/crypto v0.1.0
  • golang.org/x/sys v0.1.0
packages/contracts-bedrock/test-case-generator/go.sum go
  • 111 dependencies
proxyd/go.mod go
  • github.com/BurntSushi/toml v0.4.1
  • github.com/VictoriaMetrics/fastcache v1.9.0
  • github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a
  • github.com/alicebob/miniredis v2.5.0+incompatible
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.0-beta
  • github.com/btcsuite/btcd/btcec/v2 v2.1.2
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set v1.8.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
  • github.com/edsrzf/mmap-go v1.1.0
  • github.com/ethereum/go-ethereum v1.10.17
  • github.com/fjl/memsize v0.0.1
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-redis/redis/v8 v8.11.4
  • github.com/go-stack/stack v1.8.1
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/gomodule/redigo v1.8.8
  • github.com/google/go-cmp v0.5.8
  • github.com/google/uuid v1.3.0
  • github.com/gorilla/mux v1.8.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/go-bexpr v0.1.11
  • github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/huin/goupnp v1.0.3
  • github.com/mattn/go-colorable v0.1.12
  • github.com/mattn/go-isatty v0.0.14
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/mitchellh/mapstructure v1.4.3
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.11.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.30.0
  • github.com/prometheus/procfs v0.7.3
  • github.com/prometheus/tsdb v0.10.0
  • github.com/rjeczalik/notify v0.9.2
  • github.com/rs/cors v1.8.2
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/status-im/keycard-go v0.0.0-20211109104530-b0e0482ba91d
  • github.com/stretchr/testify v1.7.0
  • github.com/tklauser/go-sysconf v0.3.10
  • github.com/tklauser/numcpus v0.4.0
  • github.com/tyler-smith/go-bip39 v1.1.0
  • github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9
  • github.com/yusufpapurcu/wmi v1.2.2
  • golang.org/x/crypto v0.1.0
  • golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
  • golang.org/x/sys v0.1.0
  • golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
  • google.golang.org/protobuf v1.27.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
proxyd/go.sum go
  • 805 dependencies
batch-submitter/package.json npm
docs/op-stack/package.json npm
  • @vuepress/plugin-medium-zoom ^1.8.2 development
  • @vuepress/plugin-pwa ^1.9.7 development
  • vuepress ^1.8.2 development
  • vuepress-plugin-plausible-analytics ^0.2.1 development
  • vuepress-theme-hope ^1.22.0 development
  • check-md ^1.0.2
  • dayjs ^1.11.7
docs/op-stack/yarn.lock npm
  • 1545 dependencies
endpoint-monitor/package.json npm
gas-oracle/package.json npm
integration-tests/package.json npm
  • @babel/eslint-parser ^7.5.4 development
  • @eth-optimism/contracts ^0.5.40 development
  • @eth-optimism/contracts-bedrock 0.13.1 development
  • @eth-optimism/contracts-periphery ^1.0.7 development
  • @eth-optimism/core-utils 0.12.0 development
  • @eth-optimism/sdk 2.0.1 development
  • @ethersproject/abstract-provider ^5.7.0 development
  • @ethersproject/providers ^5.7.0 development
  • @ethersproject/transactions ^5.7.0 development
  • @nomiclabs/hardhat-ethers ^2.0.2 development
  • @nomiclabs/hardhat-waffle ^2.0.1 development
  • @openzeppelin/contracts ^4.4.0 development
  • @types/chai ^4.2.18 development
  • @types/chai-as-promised ^7.1.4 development
  • @types/mocha ^8.2.2 development
  • @types/rimraf ^3.0.0 development
  • @typescript-eslint/eslint-plugin ^5.45.1 development
  • @typescript-eslint/parser ^5.45.1 development
  • @uniswap/v3-core 1.0.0 development
  • @uniswap/v3-periphery ^1.0.1 development
  • @uniswap/v3-sdk ^3.6.2 development
  • chai ^4.3.4 development
  • chai-as-promised ^7.1.1 development
  • dotenv ^10.0.0 development
  • envalid ^7.1.0 development
  • eslint ^7.27.0 development
  • eslint-config-prettier ^8.3.0 development
  • eslint-plugin-import ^2.26.0 development
  • eslint-plugin-jsdoc ^35.1.2 development
  • eslint-plugin-prefer-arrow ^1.2.3 development
  • eslint-plugin-prettier ^3.4.0 development
  • eslint-plugin-react ^7.24.0 development
  • eslint-plugin-unicorn ^42.0.0 development
  • ethereum-waffle ^3.3.0 development
  • ethers ^5.7.0 development
  • hardhat ^2.9.6 development
  • hardhat-gas-reporter ^1.0.4 development
  • lint-staged 11.0.0 development
  • mocha ^8.4.0 development
  • node-fetch ^2.6.7 development
  • rimraf ^3.0.2 development
  • typescript ^4.9.3 development
  • uniswap-v3-deploy-plugin ^0.1.0 development
l2geth/package.json npm
l2geth-exporter/package.json npm
op-exporter/package.json npm
ops/docker/ci-builder/package.json npm
ops/docker/foundry/package.json npm
ops/docker/hardhat/package.json npm
  • dotenv ^10.0.0
  • hardhat ^2.9.6
package.json npm
  • @babel/eslint-parser ^7.18.2 development
  • @types/chai ^4.2.18 development
  • @types/chai-as-promised ^7.1.4 development
  • @types/mocha ^8.2.2 development
  • @types/node ^12.0.0 development
  • @typescript-eslint/eslint-plugin ^5.45.1 development
  • @typescript-eslint/parser ^5.45.1 development
  • chai ^4.2.0 development
  • copyfiles ^2.3.0 development
  • depcheck ^1.4.3 development
  • doctoc ^2.2.0 development
  • eslint ^8.16.0 development
  • eslint-config-prettier ^8.3.0 development
  • eslint-config-standard ^16.0.3 development
  • eslint-plugin-import ^2.26.0 development
  • eslint-plugin-jsdoc ^35.1.2 development
  • eslint-plugin-node ^11.1.0 development
  • eslint-plugin-prefer-arrow ^1.2.3 development
  • eslint-plugin-prettier ^4.0.0 development
  • eslint-plugin-promise ^5.1.0 development
  • eslint-plugin-react ^7.24.0 development
  • eslint-plugin-unicorn ^42.0.0 development
  • husky ^6.0.0 development
  • lerna ^4.0.0 development
  • lint-staged 11.0.0 development
  • markdownlint ^0.24.0 development
  • markdownlint-cli2 0.4.0 development
  • mkdirp ^1.0.4 development
  • mocha ^8.4.0 development
  • nyc ^15.1.0 development
  • patch-package ^6.4.7 development
  • prettier ^2.8.0 development
  • prettier-plugin-solidity ^1.0.0-beta.13 development
  • ts-mocha ^10.0.0 development
  • typescript ^4.9.3 development
  • @changesets/cli ^2.26.0
  • @codechecks/client ^0.1.11
  • @ethersproject/abstract-provider ^5.7.0
packages/actor-tests/package.json npm
  • @eth-optimism/contracts-bedrock 0.13.1
  • @eth-optimism/core-utils ^0.12.0
  • @eth-optimism/sdk ^2.0.1
  • @types/chai ^4.2.18
  • @types/chai-as-promised ^7.1.4
  • async-mutex ^0.3.2
  • chai ^4.3.4
  • chai-as-promised ^7.1.1
  • commander ^8.3.0
  • eslint ^7.27.0
  • eslint-config-prettier ^8.3.0
  • eslint-plugin-import ^2.26.0
  • eslint-plugin-jsdoc ^35.1.2
  • eslint-plugin-prefer-arrow ^1.2.3
  • eslint-plugin-prettier ^3.4.0
  • ethers ^5.7.0
  • prom-client ^14.0.1
  • typescript ^4.9.3
packages/atst/package.json npm
  • @testing-library/react-hooks ^8.0.1 development
  • @wagmi/cli ~0.1.5 development
  • @wagmi/core ^0.9.2 development
  • ethers ^5.7.0 development
  • execa ^1.0.0 development
  • jsdom ^21.1.0 development
  • react ^18.2.0 development
  • react-dom ^18.2.0 development
  • tsup ^6.5.0 development
  • tsx ^3.12.2 development
  • typescript ^4.9.3 development
  • vitest ^0.28.3 development
  • wagmi ~0.11.0 development
  • cac ^6.7.14
  • ora ^6.1.2
  • picocolors ^1.0.0
  • zod ^3.11.6
packages/balance-monitor/package.json npm
  • @types/chai ^4.2.18 development
  • @types/mocha ^8.2.2 development
  • @types/nodemon ^1.19.0 development
  • chai ^4.3.4 development
  • nodemon ^2.0.8 development
  • ts-mocha ^10.0.0 development
  • typescript ^4.3.4 development
  • ethers ^5.7.2
  • forta-agent ^0.1.1
  • node-fetch ^2.6.1
packages/chain-mon/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts 0.8.1
  • @eth-optimism/contracts-periphery 1.0.7
  • @eth-optimism/core-utils 0.12.0
  • @eth-optimism/sdk 2.0.1
  • @types/dateformat ^5.0.0
  • chai-as-promised ^7.1.1
  • dateformat ^4.5.1
  • ethers ^5.7.0
packages/common-ts/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • @ethersproject/abstract-signer ^5.7.0 development
  • @types/express ^4.17.13 development
  • @types/morgan ^1.9.3 development
  • @types/pino ^6.3.6 development
  • @types/pino-multi-stream ^5.1.1 development
  • chai ^4.3.4 development
  • supertest ^6.1.4 development
  • @eth-optimism/core-utils 0.12.0
  • @sentry/node ^6.3.1
  • bcfg ^0.1.7
  • body-parser ^1.20.0
  • commander ^9.0.0
  • dotenv ^16.0.0
  • envalid ^7.2.2
  • ethers ^5.7.0
  • express ^4.17.1
  • express-prom-bundle ^6.4.1
  • lodash ^4.17.21
  • morgan ^1.10.0
  • pino ^6.11.3
  • pino-multi-stream ^5.3.0
  • pino-sentry ^0.7.0
  • prom-client ^13.1.0
packages/contracts/package.json npm
  • @codechecks/client ^0.1.11 development
  • @defi-wonderland/smock ^2.0.2 development
  • @eth-optimism/hardhat-deploy-config ^0.2.5 development
  • @ethersproject/abi ^5.7.0 development
  • @ethersproject/bytes ^5.7.0 development
  • @ethersproject/hardware-wallets ^5.7.0 development
  • @ethersproject/providers ^5.7.0 development
  • @nomiclabs/ethereumjs-vm ^4.2.2 development
  • @nomiclabs/hardhat-ethers ^2.0.2 development
  • @nomiclabs/hardhat-etherscan ^3.0.3 development
  • @nomiclabs/hardhat-waffle ^2.0.1 development
  • @openzeppelin/contracts 4.3.2 development
  • @openzeppelin/contracts-upgradeable 4.7.1 development
  • @primitivefi/hardhat-dodoc ^0.1.3 development
  • @typechain/ethers-v5 ^10.1.0 development
  • @typechain/hardhat ^6.1.2 development
  • @types/chai ^4.2.18 development
  • @types/lodash ^4.14.168 development
  • @types/mkdirp ^1.0.1 development
  • @types/mocha ^8.2.2 development
  • @types/node ^17.0.21 development
  • chai ^4.3.4 development
  • copyfiles ^2.3.0 development
  • directory-tree ^2.2.7 development
  • dotenv ^10.0.0 development
  • ethereum-waffle ^3.3.0 development
  • ethers ^5.7.0 development
  • glob ^7.1.6 development
  • hardhat ^2.9.6 development
  • hardhat-deploy ^0.11.10 development
  • hardhat-gas-reporter ^1.0.4 development
  • hardhat-output-validator ^0.1.18 development
  • istanbul ^0.4.5 development
  • lint-staged 11.0.0 development
  • lodash ^4.17.21 development
  • merkle-patricia-tree ^4.0.0 development
  • merkletreejs ^0.2.18 development
  • mkdirp ^1.0.4 development
  • mocha ^8.4.0 development
  • prettier ^2.8.0 development
  • prettier-plugin-solidity ^1.0.0-beta.18 development
  • random-bytes-seed ^1.0.3 development
  • rlp ^2.2.6 development
  • solhint ^3.3.6 development
  • solhint-plugin-prettier ^0.0.5 development
  • solidity-coverage ^0.7.17 development
  • squirrelly ^8.0.8 development
  • ts-generator 0.0.8 development
  • ts-node ^10.9.1 development
  • typechain ^8.1.0 development
  • typescript ^4.9.3 development
  • @eth-optimism/core-utils 0.12.0
  • @ethersproject/abstract-provider ^5.7.0
  • @ethersproject/abstract-signer ^5.7.0
packages/contracts-bedrock/package.json npm
  • @defi-wonderland/smock ^2.0.2 development
  • @eth-optimism/hardhat-deploy-config ^0.2.5 development
  • @ethersproject/abstract-provider ^5.7.0 development
  • @ethersproject/abstract-signer ^5.7.0 development
  • @foundry-rs/easy-foundryup ^0.1.3 development
  • @foundry-rs/hardhat-forge ^0.1.17 development
  • @nomiclabs/hardhat-ethers ^2.0.0 development
  • @nomiclabs/hardhat-waffle ^2.0.0 development
  • @rari-capital/solmate https://github.com/rari-capital/solmate.git#8f9b23f8838670afda0fd8983f2c41e8037ae6bc development
  • @typechain/ethers-v5 ^10.1.0 development
  • @typescript-eslint/eslint-plugin ^5.45.1 development
  • @typescript-eslint/parser ^5.45.1 development
  • bip39 ^3.0.4 development
  • chai ^4.2.0 development
  • command-exists 1.2.9 development
  • dotenv ^16.0.0 development
  • ds-test https://github.com/dapphub/ds-test.git#9310e879db8ba3ea6d5c6489a579118fd264a3f5 development
  • ethereum-waffle ^3.0.0 development
  • ethereumjs-wallet ^1.0.2 development
  • forge-std https://github.com/foundry-rs/forge-std.git#46264e9788017fc74f9f58b7efa0bc6e1df6d410 development
  • glob ^7.1.6 development
  • hardhat-deploy ^0.11.4 development
  • solhint ^3.3.7 development
  • solhint-plugin-prettier ^0.0.5 development
  • ts-node ^10.9.1 development
  • typechain ^8.1.0 development
  • typescript ^4.9.3 development
  • @eth-optimism/core-utils ^0.12.0
  • @openzeppelin/contracts 4.7.3
  • @openzeppelin/contracts-upgradeable 4.7.3
  • ethers ^5.7.0
  • hardhat ^2.9.6
packages/contracts-periphery/package.json npm
  • @eth-optimism/contracts-bedrock 0.13.1 development
  • @eth-optimism/core-utils ^0.12.0 development
  • @eth-optimism/hardhat-deploy-config ^0.2.5 development
  • @ethersproject/hardware-wallets ^5.7.0 development
  • @nomiclabs/hardhat-ethers ^2.0.2 development
  • @nomiclabs/hardhat-etherscan ^3.0.3 development
  • @nomiclabs/hardhat-waffle ^2.0.3 development
  • @openzeppelin/contracts 4.7.3 development
  • @openzeppelin/contracts-upgradeable 4.7.3 development
  • @rari-capital/solmate 7.0.0-alpha.3 development
  • @typechain/ethers-v5 ^10.1.0 development
  • @typechain/hardhat ^6.1.2 development
  • @types/node ^17.0.21 development
  • babel-eslint ^10.1.0 development
  • chai ^4.3.4 development
  • copyfiles ^2.3.0 development
  • dotenv ^10.0.0 development
  • ds-test https://github.com/dapphub/ds-test.git#9310e879db8ba3ea6d5c6489a579118fd264a3f5 development
  • ethereum-waffle ^3.4.4 development
  • ethers ^5.7.0 development
  • forge-std https://github.com/foundry-rs/forge-std.git#53331f4cb2e313466f72440f3e73af048c454d02 development
  • hardhat ^2.9.6 development
  • hardhat-deploy ^0.11.10 development
  • hardhat-gas-reporter ^1.0.8 development
  • lint-staged 11.0.0 development
  • mkdirp ^1.0.4 development
  • node-fetch ^2.6.7 development
  • prettier ^2.8.0 development
  • prettier-plugin-solidity ^1.0.0-beta.18 development
  • solhint ^3.3.6 development
  • solhint-plugin-prettier ^0.0.5 development
  • solidity-coverage ^0.7.17 development
  • ts-node ^10.9.1 development
  • typechain ^8.1.0 development
packages/core-utils/package.json npm
  • mocha ^10.0.0 development
  • @ethersproject/abi ^5.7.0
  • @ethersproject/abstract-provider ^5.7.0
  • @ethersproject/address ^5.7.0
  • @ethersproject/bignumber ^5.7.0
  • @ethersproject/bytes ^5.7.0
  • @ethersproject/constants ^5.7.0
  • @ethersproject/contracts ^5.7.0
  • @ethersproject/hash ^5.7.0
  • @ethersproject/keccak256 ^5.7.0
  • @ethersproject/properties ^5.7.0
  • @ethersproject/providers ^5.7.0
  • @ethersproject/rlp ^5.7.0
  • @ethersproject/transactions ^5.7.0
  • @ethersproject/web ^5.7.0
  • bufio ^1.0.7
  • chai ^4.3.4
packages/data-transport-layer/package.json npm
  • @types/cors ^2.8.9 development
  • @types/level ^6.0.1 development
  • @types/levelup ^4.3.0 development
  • bfj ^7.0.2 development
  • chai-as-promised ^7.1.1 development
  • hardhat ^2.9.6 development
  • mocha ^8.4.0 development
  • pino-pretty ^4.7.1 development
  • prettier ^2.8.0 development
  • prom-client ^13.1.0 development
  • rimraf ^3.0.2 development
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts 0.8.1
  • @eth-optimism/contracts 0.5.40
  • @eth-optimism/core-utils 0.12.0
  • @ethersproject/providers ^5.7.0
  • @ethersproject/transactions ^5.7.0
  • @sentry/node ^6.3.1
  • @sentry/tracing ^6.3.1
  • @types/express ^4.17.12
  • axios ^0.21.1
  • bcfg ^0.1.6
  • bfj ^7.0.2
  • cors ^2.8.5
  • dotenv ^10.0.0
  • ethers ^5.7.0
  • express ^4.17.1
  • express-prom-bundle ^6.3.6
  • level6 npm:level@^6.0.1
  • levelup ^4.4.0
packages/fault-detector/package.json npm
  • @defi-wonderland/smock ^2.0.7 development
  • @nomiclabs/hardhat-ethers ^2.0.6 development
  • @nomiclabs/hardhat-waffle ^2.0.3 development
  • @types/chai ^4.3.1 development
  • @types/dateformat ^5.0.0 development
  • chai-as-promised ^7.1.1 development
  • dateformat ^4.5.1 development
  • ethereum-waffle ^3.4.4 development
  • ethers ^5.7.0 development
  • hardhat ^2.9.6 development
  • lodash ^4.17.21 development
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts ^0.8.1
  • @eth-optimism/contracts ^0.5.40
  • @eth-optimism/core-utils ^0.12.0
  • @eth-optimism/sdk ^2.0.1
  • @ethersproject/abstract-provider ^5.7.0
packages/hardhat-deploy-config/package.json npm
  • ethers ^5.7.0 development
  • hardhat ^2.9.6 development
  • ts-node ^10.9.1 development
packages/message-relayer/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • @nomiclabs/hardhat-ethers ^2.0.2 development
  • @nomiclabs/hardhat-waffle ^2.0.1 development
  • ethereum-waffle ^3.3.0 development
  • hardhat ^2.9.6 development
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts 0.8.1
  • @eth-optimism/core-utils 0.12.0
  • @eth-optimism/sdk 2.0.1
  • ethers ^5.7.0
packages/migration-data/package.json npm
  • @eth-optimism/contracts 0.5.40 development
  • @eth-optimism/old-contracts npm:@eth-optimism/contracts@0.4.10 development
  • commander ^9.0.0 development
  • ethers ^5.7.0 development
  • ts-node ^10.9.1 development
packages/replica-healthcheck/package.json npm
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts 0.8.1
  • @eth-optimism/core-utils 0.12.0
  • @ethersproject/abstract-provider ^5.7.0
packages/sdk/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • @ethersproject/abstract-signer ^5.7.0 development
  • @ethersproject/transactions ^5.7.0 development
  • @nomiclabs/hardhat-ethers ^2.0.2 development
  • @nomiclabs/hardhat-waffle ^2.0.1 development
  • chai-as-promised ^7.1.1 development
  • ethereum-waffle ^3.4.0 development
  • ethers ^5.7.0 development
  • hardhat ^2.9.6 development
  • hardhat-deploy ^0.11.4 development
  • mocha ^10.0.0 development
  • nyc ^15.1.0 development
  • typedoc ^0.22.13 development
  • @eth-optimism/contracts 0.5.40
  • @eth-optimism/contracts-bedrock 0.13.1
  • @eth-optimism/core-utils 0.12.0
  • lodash ^4.17.21
  • merkletreejs ^0.2.27
  • rlp ^2.2.7
yarn.lock npm
  • 2849 dependencies
ops/check-changed/requirements.txt pypi
  • Deprecated ==1.2.13
  • PyGithub ==1.57
  • PyJWT ==2.6.0
  • PyNaCl ==1.5.0
  • certifi ==2022.12.7
  • cffi ==1.15.1
  • charset-normalizer ==2.1.1
  • idna ==3.4
  • pycparser ==2.21
  • requests ==2.28.1
  • urllib3 ==1.26.13
  • wrapt ==1.14.1
ops/tag-service/requirements.txt pypi
  • click ==8.1.3
  • semver ==3.0.0