Science Score: 44.0%

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

  • CITATION.cff file
    Found 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 (9.6%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: Manta-Network
  • License: mit
  • Language: Go
  • Default Branch: main
  • Size: 274 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 16
  • Releases: 0
Created 9 months ago · Last pushed 9 months ago
Metadata Files
Readme Contributing License Citation Codeowners Security

README.md



Optimism

Optimism is a low-cost and lightning-fast Ethereum L2 blockchain, built with the OP Stack.


+

Celestia

Celestia is a modular consensus and data network, built to enable anyone to easily deploy their own blockchain with minimal overhead.


Celestia + OP Stack tutorial

If you're looking to run the OP Stack + Celestia setup for this repository, please visit the Optimism & Celestia guides and tutorials to get started.

What are Optimism and the OP Stack?

Optimism is a project dedicated to scaling Ethereum's technology and expanding its ability to coordinate people from across the world to build effective decentralized economies and governance systems. The Optimism Collective builds open-source software for running L2 blockchains and aims to address key governance and economic challenges in the wider cryptocurrency ecosystem. Optimism operates on the principle of impact=profit, the idea that individuals who positively impact the Collective should be proportionally rewarded with profit. Change the incentives and you change the world.

The OP Stack powers Optimism, an Ethereum L2 blockchain, and forms the technical foundation for the the Optimism Collective—a group committed to the impact=profit principle. This principle rewards individuals for their positive contributions to the collective.

Optimism addresses critical coordination failures in the crypto ecosystem, such as funding public goods and infrastructure. The OP Stack focuses on creating a shared, open-source system for developing new L2 blockchains within the proposed Superchain ecosystem, promoting collaboration and preventing redundant efforts.

As Optimism evolves, the OP Stack will adapt, encompassing components ranging from blockchain infrastructure to governance systems. This software suite aims to simplify L2 blockchain creation while supporting the growth and development of the Optimism ecosystem.

What is Celestia?

Celestia is a modular consensus and data network, built to enable anyone to easily deploy their own blockchain with minimal overhead.

Celestia is a minimal blockchain that only orders and publishes transactions and does not execute them. By decoupling the consensus and application execution layers, Celestia modularizes the blockchain technology stack and unlocks new possibilities for decentralized application builders. Lean more at Celestia.org.

Maintenance

The maintenance guide for this repository can be found in the Wiki tab of the repository or here.

Documentation

If you want to build on top of Celestia, take a look at the documentation at docs.celestia.org.

If you want to learn more about the OP Stack, check out the documentation at stack.optimism.io.

Community

Optimism

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

Celestia

General discussion happens most frequently on the Celestia discord. Other discussions can be found on the Celestia forum.

e2e testing

This repository has updated end-to-end tests in the op-e2e package to work with Celestia as the data availability (DA) layer.

Currently, the tests assume a working Celestia devnet running locally:

bash docker run --platform linux/amd64 -p 26658:26658 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc8

The e2e tests can be triggered with:

bash cd $HOME/optimism cd op-e2e make test

Bridging

If you have the OP Stack + Celestia setup running, you can test out bridging from the L1 to the L2.

To do this, first navigate to the packages/contracts-bedrock directory and create a .env file with the following contents:

bash L1_PROVIDER_URL=http://localhost:8545 L2_PROVIDER_URL=http://localhost:9545 PRIVATE_KEY=bf7604d9d3a1c7748642b1b7b05c2bd219c9faa91458b370f85e5a40f3b03af7

Then, run the following from the same directory:

bash npx hardhat deposit --network devnetL1 --l1-provider-url http://localhost:8545 --l2-provider-url http://localhost:9545 --amount-eth <AMOUNT> --to <ADDRESS>

Directory Structure

~~ Production ~~
├── packages
│   ├── common-ts: Common tools for building apps in TypeScript
│   ├── contracts-bedrock: Bedrock smart contracts.
│   ├── contracts-periphery: Peripheral contracts for Optimism
│   ├── core-utils: Low-level utilities that make building Optimism easier
│   ├── chain-mon: Chain monitoring services
│   ├── fault-detector: Service for detecting Sequencer faults
│   ├── replica-healthcheck: Service for monitoring the health of a replica node
│   └── sdk: provides a set of tools for interacting with Optimism
├── op-bindings: Go bindings for Bedrock smart contracts.
├── op-batcher: L2-Batch Submitter, submits bundles of batches to L1
├── op-bootnode: Standalone op-node discovery bootnode
├── op-chain-ops: State surgery utilities
├── op-challenger: Dispute game challenge agent
├── op-e2e: End-to-End testing of all bedrock components in Go
├── op-exporter: Prometheus exporter client
├── op-heartbeat: Heartbeat monitor service
├── op-node: rollup consensus-layer client
├── op-program: Fault proof program
├── op-proposer: L2-Output Submitter, submits proposals to L1
├── op-service: Common codebase utilities
├── op-signer: Client signer
├── op-wheel: Database utilities
├── ops-bedrock: Bedrock devnet work
├── proxyd: Configurable RPC request router and proxy
└── specs: Specs of the rollup starting at the Bedrock upgrade

~~ Pre-BEDROCK ~~
├── packages
│   ├── common-ts: Common tools for building apps in TypeScript
│   ├── contracts-periphery: Peripheral contracts for Optimism
│   ├── core-utils: Low-level utilities that make building Optimism easier
│   ├── chain-mon: Chain monitoring services
│   ├── fault-detector: Service for detecting Sequencer faults
│   ├── replica-healthcheck: Service for monitoring the health of a replica node
│   └── sdk: provides a set of tools for interacting with Optimism
├── indexer: indexes and syncs transactions
├── 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

Owner

  • Name: Manta Network
  • Login: Manta-Network
  • Kind: organization
  • Email: contact@manta.network
  • Location: Decentralized

On Chain Privacy for Web 3

Citation (CITATION.cff)

cff-version: 1.2.0
message: If you use this software in your work, please cite it using the following metadata
title: The Optimism Monorepo
authors:
- name: The Optimism Collective
version: 1.0.0
year: 2020
url: https://github.com/ethereum-optimism/optimism
repository: https://github.com/ethereum-optimism/optimism
license: MIT

GitHub Events

Total
  • Member event: 1
  • Issue comment event: 6
  • Push event: 2
  • Pull request event: 10
  • Create event: 12
Last Year
  • Member event: 1
  • Issue comment event: 6
  • Push event: 2
  • Pull request event: 10
  • Create event: 12

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
bedrock-deployer/Dockerfile docker
  • alpine 3.16 build
  • ghcr.io/foundry-rs/foundry v1.0.0 build
  • node 16.16.0-bullseye-slim build
  • op-geth latest build
  • op-node latest build
endpoint-monitor/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
indexer/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
indexer/docker-compose.yml docker
  • postgres latest
indexer/ui/Dockerfile docker
  • node 18.16.0-bullseye-slim build
op-batcher/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
op-challenger/Dockerfile docker
  • alpine 3.15 build
  • golang 1.19.0-alpine3.15 build
op-exporter/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
op-heartbeat/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
op-node/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
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
op-program/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
op-proposer/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 build
op-wheel/Dockerfile docker
  • alpine 3.16 build
  • golang 1.19.9-alpine3.16 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-bedrock/docker-compose-devnet.yml docker
  • ghcr.io/rollkit/local-celestia-devnet v0.11.0-rc8
ops-bedrock/docker-compose-testnet.yml docker
  • ghcr.io/celestiaorg/celestia-node v0.11.0-rc8
proxyd/Dockerfile docker
  • alpine 3.18 build
  • golang 1.20.4-alpine3.18 build
cannon/example/claim/go.mod go
  • ../../.. *
  • golang.org/x/crypto v0.8.0
  • golang.org/x/sys v0.7.0
cannon/example/claim/go.sum go
  • github.com/davecgh/go-spew v1.1.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/stretchr/testify v1.8.1
  • golang.org/x/crypto v0.8.0
  • golang.org/x/sys v0.7.0
  • gopkg.in/yaml.v3 v3.0.1
cannon/example/hello/go.mod go
go.mod go
  • ./op-geth *
  • cosmossdk.io/math v1.0.1
  • github.com/DataDog/zstd v1.5.2
  • github.com/VictoriaMetrics/fastcache v1.10.0
  • github.com/allegro/bigcache v1.2.1
  • github.com/aws/aws-sdk-go-v2 v1.21.0
  • github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13
  • github.com/aws/aws-sdk-go-v2/config v1.18.11
  • github.com/aws/aws-sdk-go-v2/credentials v1.13.11
  • github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.21
  • github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.41
  • github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.35
  • github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28
  • github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.4
  • github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.14
  • github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36
  • github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.35
  • github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4
  • github.com/aws/aws-sdk-go-v2/service/kms v1.20.1
  • github.com/aws/aws-sdk-go-v2/service/s3 v1.38.5
  • github.com/aws/aws-sdk-go-v2/service/sso v1.12.0
  • github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.0
  • github.com/aws/aws-sdk-go-v2/service/sts v1.18.2
  • github.com/aws/smithy-go v1.14.2
  • github.com/benbjohnson/clock v1.3.0
  • github.com/beorn7/perks v1.0.1
  • github.com/btcsuite/btcd v0.22.1
  • github.com/btcsuite/btcd/btcec/v2 v2.3.2
  • github.com/btcsuite/btcd/btcutil v1.1.2
  • github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
  • github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
  • github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
  • github.com/celestiaorg/go-fraud v0.1.2
  • github.com/celestiaorg/go-header v0.2.13
  • github.com/celestiaorg/merkletree v0.0.0-20210714075610-a84dc3ddbbe4
  • github.com/celestiaorg/nmt v0.18.1
  • github.com/celestiaorg/rsmt2d v0.10.0
  • 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/cometbft/cometbft v0.37.2
  • github.com/containerd/cgroups v1.1.0
  • github.com/coreos/go-systemd/v22 v22.5.0
  • github.com/cosmos/gogoproto v1.4.10
  • 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/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/felixge/fgprof v0.9.3
  • github.com/filecoin-project/go-jsonrpc v0.3.1
  • 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-kit/log v0.2.1
  • github.com/go-logfmt/logfmt v0.5.1
  • github.com/go-logr/logr v1.2.4
  • github.com/go-logr/stdr v1.2.2
  • 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-20230315185526-52ccab3ef572
  • 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/groupcache v0.0.0-20210331224755-41bb18bfe9da
  • github.com/golang/mock v1.6.0
  • github.com/golang/protobuf v1.5.3
  • github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb
  • 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-20230405160723-4a4c7d95572b
  • 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.2
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c
  • github.com/huin/goupnp v1.1.0
  • github.com/influxdata/influxdb-client-go/v2 v2.4.0
  • github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c
  • github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097
  • github.com/ipfs/go-cid v0.4.1
  • github.com/ipfs/go-datastore v0.6.0
  • github.com/ipfs/go-ds-leveldb v0.5.0
  • 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.16.4
  • github.com/klauspost/cpuid/v2 v2.2.4
  • github.com/klauspost/reedsolomon v1.11.1
  • github.com/koron/go-ssdp v0.0.4
  • 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.27.3
  • github.com/libp2p/go-libp2p-asn-util v0.3.0
  • github.com/libp2p/go-libp2p-pubsub v0.9.3
  • 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.18
  • github.com/mattn/go-runewidth v0.0.14
  • github.com/matttproud/golang_protobuf_extensions v1.0.4
  • github.com/miekg/dns v1.1.53
  • 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.2.0
  • github.com/multiformats/go-multiaddr v0.9.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.2.0
  • 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.9.2
  • github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
  • 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/petermattis/goid v0.0.0-20230317030725-371a4b8eda08
  • github.com/pkg/errors v0.9.1
  • github.com/pkg/profile v1.7.0
  • 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.42.0
  • github.com/prometheus/procfs v0.9.0
  • github.com/quic-go/qpack v0.4.0
  • github.com/quic-go/qtls-go1-19 v0.3.2
  • github.com/quic-go/qtls-go1-20 v0.2.2
  • github.com/quic-go/quic-go v0.33.0
  • github.com/quic-go/webtransport-go v0.5.2
  • github.com/raulk/go-watchdog v1.3.0
  • github.com/rivo/uniseg v0.4.3
  • github.com/rogpeppe/go-internal v1.11.0
  • github.com/rollkit/celestia-openrpc v0.1.2
  • github.com/rs/cors v1.8.2
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/sasha-s/go-deadlock v0.3.1
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • 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.4
  • 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/v2 v2.25.7
  • github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673
  • github.com/yusufpapurcu/wmi v1.2.2
  • go.opencensus.io v0.24.0
  • go.opentelemetry.io/otel v1.16.0
  • go.opentelemetry.io/otel/metric v1.16.0
  • go.opentelemetry.io/otel/trace v1.16.0
  • go.uber.org/atomic v1.10.0
  • go.uber.org/dig v1.16.1
  • go.uber.org/fx v1.19.2
  • go.uber.org/multierr v1.11.0
  • go.uber.org/zap v1.24.0
  • golang.org/x/crypto v0.10.0
  • golang.org/x/exp v0.0.0-20230321023759-10a507213a29
  • golang.org/x/mod v0.11.0
  • golang.org/x/net v0.11.0
  • golang.org/x/sync v0.3.0
  • golang.org/x/sys v0.9.0
  • golang.org/x/term v0.9.0
  • golang.org/x/text v0.10.0
  • golang.org/x/time v0.0.0-20220922220347-f3bd1da661af
  • golang.org/x/tools v0.10.0
  • golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
  • google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
  • google.golang.org/grpc v1.56.1
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/natefinch/lumberjack.v2 v2.0.0
  • 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
  • nhooyr.io/websocket v1.8.7
go.sum go
  • 891 dependencies
indexer/go.mod go
  • github.com/BurntSushi/toml v1.3.0
  • github.com/DataDog/zstd v1.5.2
  • 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.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/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.101106.0-rc.2
  • github.com/ethereum-optimism/optimism v1.0.9
  • 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-chi/chi/v5 v5.0.8
  • 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.5-0.20220116011046-fa5810519dcb
  • 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/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/hashicorp/golang-lru/v2 v2.0.1
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c
  • github.com/huin/goupnp v1.1.0
  • github.com/influxdata/influxdb-client-go/v2 v2.4.0
  • github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c
  • 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/jackc/pgio v1.0.0
  • github.com/jackc/pgpassfile v1.0.0
  • github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a
  • github.com/jackc/pgtype v1.14.0
  • github.com/jackc/pgx/v5 v5.3.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/jinzhu/inflection v1.0.0
  • github.com/jinzhu/now v1.1.5
  • 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/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.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/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.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/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/shirou/gopsutil v3.21.11+incompatible
  • 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.8.0
  • golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb
  • golang.org/x/mod v0.9.0
  • golang.org/x/net v0.9.0
  • golang.org/x/sync v0.1.0
  • golang.org/x/sys v0.7.0
  • golang.org/x/term v0.7.0
  • golang.org/x/text v0.9.0
  • golang.org/x/time v0.0.0-20220922220347-f3bd1da661af
  • golang.org/x/tools v0.7.0
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/lumberjack.v2 v2.0.0
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
  • gorm.io/driver/postgres v1.5.2
  • gorm.io/gorm v1.25.1
  • lukechampine.com/blake3 v1.1.7
  • nhooyr.io/websocket v1.8.7
indexer/go.sum go
  • 905 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
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 v1.2.0
  • github.com/DataDog/zstd v1.5.2
  • 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.2.0
  • 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/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set/v2 v2.1.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
  • github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
  • github.com/emirpasic/gods v1.18.1
  • github.com/ethereum/go-ethereum v1.12.0
  • github.com/getsentry/sentry-go v0.18.0
  • 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/gofrs/flock v0.8.1
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb
  • github.com/gomodule/redigo v1.8.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/golang-lru v0.5.5-0.20210104140557-80c98217689d
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c
  • github.com/klauspost/compress v1.15.15
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/matttproud/golang_protobuf_extensions v1.0.4
  • 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.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/rivo/uniseg v0.2.0
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/rs/cors v1.8.2
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/stretchr/testify v1.8.1
  • 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/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/exp v0.0.0-20230206171751-46f607a40771
  • golang.org/x/sync v0.1.0
  • golang.org/x/sys v0.7.0
  • golang.org/x/text v0.8.0
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • gopkg.in/yaml.v3 v3.0.1
proxyd/go.sum go
  • 444 dependencies
docs/op-stack/package.json npm
  • @vuepress/plugin-medium-zoom ^1.8.2 development
  • @vuepress/plugin-pwa ^1.9.7 development
  • serve ^14.2.0 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
  • 1580 dependencies
endpoint-monitor/package.json npm
op-exporter/package.json npm
package.json npm
  • @babel/eslint-parser ^7.22.9 development
  • @nrwl/nx-cloud latest development
  • @types/chai ^4.3.5 development
  • @types/chai-as-promised ^7.1.5 development
  • @types/mocha ^8.2.3 development
  • @types/node ^16.18.38 development
  • @typescript-eslint/eslint-plugin ^5.62.0 development
  • @typescript-eslint/parser ^5.62.0 development
  • chai ^4.3.7 development
  • copyfiles ^2.4.1 development
  • depcheck ^1.4.3 development
  • doctoc ^2.2.1 development
  • eslint ^8.44.0 development
  • eslint-config-prettier ^8.8.0 development
  • eslint-config-standard ^16.0.3 development
  • eslint-plugin-import ^2.27.5 development
  • eslint-plugin-jsdoc ^35.5.1 development
  • eslint-plugin-node ^11.1.0 development
  • eslint-plugin-prefer-arrow ^1.2.3 development
  • eslint-plugin-prettier ^4.2.1 development
  • eslint-plugin-promise ^5.2.0 development
  • eslint-plugin-react ^7.32.2 development
  • eslint-plugin-unicorn ^42.0.0 development
  • husky ^6.0.0 development
  • lerna ^6.6.2 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
  • nx 15.6.0 development
  • nyc ^15.1.0 development
  • patch-package ^6.5.1 development
  • prettier ^2.8.8 development
  • prettier-plugin-solidity ^1.1.3 development
  • rimraf ^5.0.1 development
  • ts-mocha ^10.0.0 development
  • typescript ^4.9.5 development
  • @changesets/cli ^2.26.2
  • @codechecks/client ^0.1.12
  • @ethersproject/abstract-provider ^5.7.0
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.2
  • @eth-optimism/contracts-bedrock 0.15.0
  • @eth-optimism/contracts-periphery 1.0.8
  • @eth-optimism/core-utils 0.12.1
  • @eth-optimism/sdk 3.0.0
  • @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.1
  • @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-bedrock/package.json npm
  • @typescript-eslint/eslint-plugin ^5.60.1 development
  • @typescript-eslint/parser ^5.60.1 development
  • ds-test github:dapphub/ds-test#c9ce3f25bde29fc5eb9901842bf02850dfd2d084 development
  • forge-std github:foundry-rs/forge-std#e8a047e3f40f13fa37af6fe14e6e06283d9a060e development
  • glob ^7.1.6 development
  • solhint ^3.4.1 development
  • solhint-plugin-prettier ^0.0.5 development
  • ts-node ^10.9.1 development
  • typescript ^4.9.3 development
  • @aws-sdk/client-s3 ^3.370.0
  • @openzeppelin/contracts 4.7.3
  • @openzeppelin/contracts-upgradeable 4.7.3
  • @rari-capital/solmate github:transmissions11/solmate#8f9b23f8838670afda0fd8983f2c41e8037ae6bc
  • clones-with-immutable-args github:Saw-mon-and-Natalie/clones-with-immutable-args#105efee1b9127ed7f6fedf139e1fc796ce8791f2
  • ethers ^5.7.0
  • fs-extra ^11.1.1
packages/contracts-periphery/package.json npm
  • @eth-optimism/contracts-bedrock 0.15.0 development
  • @eth-optimism/core-utils ^0.12.1 development
  • @eth-optimism/hardhat-deploy-config ^0.2.6 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
  • ethereum-waffle ^3.4.4 development
  • ethers ^5.7.0 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
  • ds-test github:dapphub/ds-test#c9ce3f25bde29fc5eb9901842bf02850dfd2d084
  • forge-std github:foundry-rs/forge-std#e8a047e3f40f13fa37af6fe14e6e06283d9a060e
packages/core-utils/package.json npm
  • @types/node ^12.12.6 development
  • 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/keccak256 ^5.7.0
  • @ethersproject/properties ^5.7.0
  • @ethersproject/rlp ^5.7.0
  • @ethersproject/web ^5.7.0
  • chai ^4.3.4
  • ethers ^5.7.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
  • dotenv ^16.1.4 development
  • ethereum-waffle ^3.4.4 development
  • ethers ^5.7.0 development
  • hardhat ^2.9.6 development
  • lodash ^4.17.21 development
  • tsx ^3.12.7 development
  • @eth-optimism/common-ts ^0.8.2
  • @eth-optimism/contracts-bedrock 0.15.0
  • @eth-optimism/core-utils ^0.12.1
  • @eth-optimism/sdk ^3.0.0
  • @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/replica-healthcheck/package.json npm
  • ts-node ^10.9.1 development
  • @eth-optimism/common-ts 0.8.2
  • @eth-optimism/core-utils 0.12.1
  • @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
  • isomorphic-fetch ^3.0.0 development
  • mocha ^10.0.0 development
  • nyc ^15.1.0 development
  • typedoc ^0.22.13 development
  • viem ^0.3.30 development
  • vitest ^0.28.3 development
  • zod ^3.11.6 development
  • @eth-optimism/contracts 0.6.0
  • @eth-optimism/contracts-bedrock 0.15.0
  • @eth-optimism/core-utils 0.12.1
  • lodash ^4.17.21
  • merkletreejs ^0.2.27
  • rlp ^2.2.7
pnpm-lock.yaml npm