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 (13.8%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: bvluke
  • License: mit
  • Language: Solidity
  • Default Branch: main
  • Size: 18.4 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 25
  • Releases: 0
Created over 2 years ago · Last pushed about 2 years ago
Metadata Files
Readme Contributing License Citation Codeowners Security

README.md



Optimism

Optimism is Ethereum, scaled.


What is Optimism?

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.

In this repository, you'll find numerous core components of the OP Stack, the decentralized software stack maintained by the Optimism Collective that powers Optimism and forms the backbone of blockchains like OP Mainnet and Base. Designed to be "aggressively open source," the OP Stack encourages you to explore, modify, extend, and test the code as needed. Although not all elements of the OP Stack are contained here, many of its essential components can be found within this repository. By collaborating on free, open software and shared standards, the Optimism Collective aims to prevent siloed software development and rapidly accelerate the development of the Ethereum ecosystem. Come contribute, build the future, and redefine power, together.

Documentation

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 the contributing process for this repository. Use the Developer Quick Start to get your development environment set up to start working on the Optimism Monorepo. Then check out the list of Good First Issues to find something fun to work on!

Security Policy and Vulnerability Reporting

Please refer to the canonical Security Policy document for detailed information about how to report vulnerabilities in this codebase. Bounty hunters are encouraged to check out the Optimism Immunefi bug bounty program. The Optimism Immunefi program offers up to $2,000,042 for in-scope critical vulnerabilities.

The Bedrock Upgrade

OP Mainnet is currently preparing for its next major upgrade, Bedrock. 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

├── docs: A collection of documents including audits and post-mortems
├── 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-preimage: Go bindings for Preimage Oracle
├── op-program: Fault proof program
├── op-proposer: L2-Output Submitter, submits proposals to L1
├── op-service: Common codebase utilities
├── op-wheel: Database utilities
├── ops-bedrock: Bedrock devnet work
├── packages
│   ├── chain-mon: Chain monitoring services
│   ├── common-ts: Common tools for building apps in TypeScript
│   ├── contracts-ts: ABI and Address constants
│   ├── contracts-bedrock: Bedrock smart contracts
│   ├── core-utils: Low-level utilities that make building Optimism easier
│   └── sdk: provides a set of tools for interacting with Optimism
├── proxyd: Configurable RPC request router and proxy
└── specs: Specs of the rollup starting at the Bedrock upgrade

Branching Model

Active Branches

| Branch | Status | | --------------- | -------------------------------------------------------------------------------- | | master | Accepts PRs from develop when intending to deploy to production. | | 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

This repository generally follows this Git branching model. Please read the linked post if you're planning to make frequent PRs into this repository.

Production branch

The production branch is master. The master branch contains the code for latest "stable" releases. Updates from master always come from the develop branch.

Development branch

The primary development branch is develop. develop contains the most up-to-date software that remains backwards compatible with the 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-bedrock/src 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-bedrock/src 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 pnpm 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

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

Owner

  • Name: LukeBV
  • Login: bvluke
  • Kind: user

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
Last Year

Dependencies

.github/actions/setup/action.yml actions
  • actions/setup-node v3 composite
  • foundry-rs/foundry-toolchain v1 composite
  • nrwl/nx-set-shas v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/close-stale.yml actions
  • actions/stale v4 composite
.github/workflows/release-docker-canary.yml actions
  • actions/checkout v4 composite
  • docker/build-push-action v2 composite
  • docker/login-action v3 composite
  • docker/setup-buildx-action v3 composite
.github/workflows/release-snapshot.yml actions
  • ./.github/actions/setup * composite
  • actions/checkout v4 composite
  • seek-oss/changesets-snapshot v0 composite
.github/workflows/release.yml actions
  • ./.github/actions/setup * composite
  • actions/checkout v4 composite
  • changesets/action v1 composite
  • docker/build-push-action v2 composite
  • docker/login-action v3 composite
  • docker/setup-buildx-action v3 composite
.github/workflows/tag-service.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
packages/contracts-bedrock/lib/openzeppelin-contracts/.github/actions/setup/action.yml actions
  • actions/cache v3 composite
  • actions/setup-node v3 composite
packages/contracts-bedrock/lib/openzeppelin-contracts-upgradeable/.github/actions/setup/action.yml actions
  • actions/cache v3 composite
  • actions/setup-node v3 composite
op-service/rethdb-reader/Cargo.lock cargo
  • 628 dependencies
op-service/rethdb-reader/Cargo.toml cargo
endpoint-monitor/Dockerfile docker
  • alpine 3.18 build
  • golang 1.21.1-alpine3.18 build
indexer/Dockerfile docker
  • alpine 3.18 build
  • golang 1.21.1-alpine3.18 build
indexer/docker-compose.yml docker
  • ethereumoptimism/gateway-backend latest
  • postgres latest
indexer/ui/Dockerfile docker
  • node 18.16.0-bullseye-slim build
op-batcher/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-challenger/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-heartbeat/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-node/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-program/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-proposer/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
op-ufm/Dockerfile docker
  • alpine 3.18 build
  • golang 1.21.1-alpine3.18 build
op-wheel/Dockerfile docker
  • $OP_STACK_GO_BUILDER latest build
  • alpine 3.18 build
ops/docker/ci-builder/Dockerfile docker
  • debian bullseye-slim build
  • ghcr.io/crytic/echidna/echidna v2.0.4 build
  • python 3.11.4-slim-bullseye build
ops/docker/op-stack-go/Dockerfile docker
  • alpine 3.18 build
  • golang 1.21.3-alpine3.18 build
ops-bedrock/docker-compose.yml docker
  • nginx 1.25-alpine
  • us-docker.pkg.dev/oplabs-tools-artifacts/images/op-batcher devnet
  • us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node devnet
  • us-docker.pkg.dev/oplabs-tools-artifacts/images/op-proposer devnet
  • us-docker.pkg.dev/oplabs-tools-artifacts/images/op-stack-go devnet
proxyd/Dockerfile docker
  • alpine 3.18 build
  • golang 1.21.3-alpine3.18 build
ufm-test-services/docker-compose.yml docker
  • grafana/grafana latest
  • prom/prometheus latest
  • prom/pushgateway latest
ufm-test-services/metamask/Dockerfile docker
  • mcr.microsoft.com/playwright v1.37.1-jammy build
cannon/example/claim/go.mod go
  • github.com/ethereum-optimism/optimism v0.0.0
  • golang.org/x/crypto v0.14.0
  • golang.org/x/sys v0.14.0
  • toolchain go1.21.1
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.4
  • golang.org/x/crypto v0.14.0
  • golang.org/x/sys v0.14.0
  • gopkg.in/yaml.v3 v3.0.1
cannon/example/hello/go.mod go
go.mod go
  • github.com/BurntSushi/toml v1.3.2
  • github.com/DataDog/zstd v1.5.2
  • github.com/Microsoft/go-winio v0.6.1
  • github.com/VictoriaMetrics/fastcache v1.12.1
  • github.com/allegro/bigcache v1.2.1
  • github.com/benbjohnson/clock v1.3.5
  • github.com/beorn7/perks v1.0.1
  • github.com/bits-and-blooms/bitset v1.7.0
  • 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.11.1
  • github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b
  • github.com/cockroachdb/pebble v0.0.0-20231018212520-f6cde3fc2fa4
  • github.com/cockroachdb/redact v1.1.5
  • github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06
  • github.com/consensys/bavard v0.1.13
  • github.com/consensys/gnark-crypto v0.12.1
  • 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/crate-crypto/go-ipa v0.0.0-20230601170251-1830d0757c80
  • github.com/crate-crypto/go-kzg-4844 v0.3.0
  • 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.1
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
  • github.com/deepmap/oapi-codegen v1.8.2
  • github.com/dlclark/regexp2 v1.7.0
  • github.com/docker/go-units v0.5.0
  • github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127
  • github.com/elastic/gosigar v0.14.2
  • github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3
  • github.com/ethereum-optimism/superchain-registry/superchain v0.0.0-20231030223232-e16eae11e492
  • github.com/ethereum/c-kzg-4844 v0.3.1
  • github.com/ethereum/go-ethereum v1.13.1
  • github.com/fatih/color v1.13.0
  • github.com/felixge/fgprof v0.9.3
  • 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.7.0
  • github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08
  • github.com/gballet/go-verkle v0.0.0-20230607174250-df487255f46b
  • github.com/getsentry/sentry-go v0.18.0
  • github.com/go-chi/chi/v5 v5.0.10
  • github.com/go-chi/docgen v1.2.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-sourcemap/sourcemap v2.1.3+incompatible
  • 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.5.0
  • github.com/golang/protobuf v1.5.3
  • github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb
  • github.com/google/go-cmp v0.6.0
  • github.com/google/gofuzz v1.2.1-0.20220503160820-4a35382e8fc8
  • github.com/google/gopacket v1.1.19
  • github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b
  • github.com/google/uuid v1.4.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/arc/v2 v2.0.5
  • github.com/hashicorp/golang-lru/v2 v2.0.5
  • github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.3
  • github.com/huin/goupnp v1.3.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/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.5.0
  • github.com/jackc/puddle/v2 v2.2.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/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267
  • github.com/jinzhu/inflection v1.0.0
  • github.com/jinzhu/now v1.1.5
  • github.com/karalabe/usb v0.0.3-0.20230711191512-61db3e06439c
  • github.com/klauspost/compress v1.17.2
  • github.com/klauspost/cpuid/v2 v2.2.5
  • github.com/koron/go-ssdp v0.0.4
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/lib/pq v1.10.9
  • 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.32.0
  • github.com/libp2p/go-libp2p-asn-util v0.3.0
  • github.com/libp2p/go-libp2p-mplex v0.9.0
  • github.com/libp2p/go-libp2p-pubsub v0.10.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.2.0
  • github.com/libp2p/go-netroute v0.2.1
  • github.com/libp2p/go-reuseport v0.4.0
  • github.com/libp2p/go-yamux/v4 v4.0.1
  • 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.20
  • github.com/mattn/go-runewidth v0.0.14
  • github.com/matttproud/golang_protobuf_extensions v1.0.4
  • github.com/miekg/dns v1.1.56
  • 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.1
  • github.com/mitchellh/mapstructure v1.5.0
  • github.com/mitchellh/pointerstructure v1.2.1
  • github.com/mmcloughlin/addchain v0.4.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.12.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.9.0
  • github.com/multiformats/go-multihash v0.2.3
  • github.com/multiformats/go-multistream v0.5.0
  • github.com/multiformats/go-varint v0.0.7
  • github.com/naoina/go-stringutil v0.1.0
  • github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/onsi/ginkgo/v2 v2.13.0
  • github.com/onsi/gomega v1.29.0
  • github.com/opencontainers/runtime-spec v1.1.0
  • 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/pkg/profile v1.7.0
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_golang v1.17.0
  • github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16
  • github.com/prometheus/common v0.44.0
  • github.com/prometheus/procfs v0.11.1
  • github.com/quic-go/qpack v0.4.0
  • github.com/quic-go/qtls-go1-20 v0.3.4
  • github.com/quic-go/quic-go v0.39.3
  • github.com/quic-go/webtransport-go v0.6.0
  • github.com/raulk/go-watchdog v1.3.0
  • github.com/rivo/uniseg v0.4.3
  • github.com/rogpeppe/go-internal v1.10.0
  • github.com/rs/cors v1.9.0
  • 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.4
  • github.com/supranational/blst v0.3.11
  • github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a
  • github.com/tklauser/go-sysconf v0.3.12
  • github.com/tklauser/numcpus v0.6.1
  • 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.uber.org/automaxprocs v1.5.2
  • go.uber.org/dig v1.17.1
  • go.uber.org/fx v1.20.1
  • go.uber.org/mock v0.3.0
  • go.uber.org/multierr v1.11.0
  • go.uber.org/zap v1.26.0
  • golang.org/x/crypto v0.14.0
  • golang.org/x/exp v0.0.0-20231006140011-7918f672742d
  • golang.org/x/mod v0.13.0
  • golang.org/x/net v0.17.0
  • golang.org/x/sync v0.5.0
  • golang.org/x/sys v0.14.0
  • golang.org/x/term v0.14.0
  • golang.org/x/text v0.13.0
  • golang.org/x/time v0.4.0
  • golang.org/x/tools v0.14.0
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/natefinch/lumberjack.v2 v2.0.0
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
  • gorm.io/driver/postgres v1.5.4
  • gorm.io/gorm v1.25.5
  • lukechampine.com/blake3 v1.2.1
  • rsc.io/tmplfunc v0.0.3
go.sum go
  • 768 dependencies
op-ufm/go.mod go
  • cloud.google.com/go/compute v1.20.1
  • cloud.google.com/go/compute/metadata v0.2.3
  • cloud.google.com/go/iam v1.1.0
  • cloud.google.com/go/kms v1.12.1
  • github.com/BurntSushi/toml v1.3.2
  • github.com/DataDog/zstd v1.5.2
  • github.com/VictoriaMetrics/fastcache v1.10.0
  • github.com/beorn7/perks v1.0.1
  • github.com/bits-and-blooms/bitset v1.7.0
  • 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/consensys/bavard v0.1.13
  • github.com/consensys/gnark-crypto v0.12.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/crate-crypto/go-kzg-4844 v0.3.0
  • github.com/deckarep/golang-set/v2 v2.1.0
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
  • github.com/ethereum-optimism/optimism/op-service v0.10.14
  • github.com/ethereum/c-kzg-4844 v0.3.0
  • github.com/ethereum/go-ethereum v1.12.1
  • 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/gofrs/flock v0.8.1
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
  • 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/s2a-go v0.1.4
  • github.com/googleapis/enterprise-certificate-proxy v0.2.5
  • github.com/googleapis/gax-go/v2 v2.12.0
  • github.com/gorilla/mux v1.8.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.3
  • 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/mmcloughlin/addchain v0.4.0
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/pkg/errors v0.9.1
  • github.com/prometheus/client_golang v1.16.0
  • github.com/prometheus/client_model v0.3.0
  • github.com/prometheus/common v0.42.0
  • github.com/prometheus/procfs v0.10.1
  • github.com/rivo/uniseg v0.3.4
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/rs/cors v1.9.0
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/supranational/blst v0.3.11
  • 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/urfave/cli v1.22.9
  • github.com/yusufpapurcu/wmi v1.2.2
  • go.opencensus.io v0.24.0
  • golang.org/x/crypto v0.14.0
  • golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc
  • golang.org/x/net v0.17.0
  • golang.org/x/oauth2 v0.10.0
  • golang.org/x/sync v0.3.0
  • golang.org/x/sys v0.13.0
  • golang.org/x/text v0.13.0
  • google.golang.org/api v0.132.0
  • google.golang.org/appengine v1.6.7
  • google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130
  • google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130
  • google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98
  • google.golang.org/grpc v1.56.2
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
  • rsc.io/tmplfunc v0.0.3
op-ufm/go.sum go
  • 515 dependencies
proxyd/go.mod go
  • github.com/BurntSushi/toml v1.3.2
  • github.com/DataDog/zstd v1.5.5
  • github.com/Microsoft/go-winio v0.6.1
  • github.com/VictoriaMetrics/fastcache v1.12.1
  • github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302
  • github.com/alicebob/miniredis v2.5.0+incompatible
  • github.com/beorn7/perks v1.0.1
  • github.com/bits-and-blooms/bitset v1.10.0
  • github.com/btcsuite/btcd/btcec/v2 v2.3.2
  • github.com/cespare/xxhash/v2 v2.2.0
  • github.com/cockroachdb/errors v1.11.1
  • github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b
  • github.com/cockroachdb/pebble v0.0.0-20231020221949-babd592d2360
  • github.com/cockroachdb/redact v1.1.5
  • github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06
  • github.com/consensys/bavard v0.1.13
  • github.com/consensys/gnark-crypto v0.12.1
  • github.com/crate-crypto/go-kzg-4844 v0.7.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/deckarep/golang-set/v2 v2.3.1
  • github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
  • github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
  • github.com/emirpasic/gods v1.18.1
  • github.com/ethereum/c-kzg-4844 v0.4.0
  • github.com/ethereum/go-ethereum v1.13.4
  • github.com/getsentry/sentry-go v0.25.0
  • github.com/go-ole/go-ole v1.3.0
  • github.com/go-redsync/redsync/v4 v4.10.0
  • 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/snappy v0.0.5-0.20220116011046-fa5810519dcb
  • github.com/gomodule/redigo v1.8.9
  • github.com/gorilla/mux v1.8.0
  • github.com/gorilla/websocket v1.5.0
  • github.com/hashicorp/errwrap v1.1.0
  • github.com/hashicorp/go-multierror v1.1.1
  • github.com/hashicorp/golang-lru v1.0.2
  • github.com/holiman/bloomfilter/v2 v2.0.3
  • github.com/holiman/uint256 v1.2.3
  • github.com/klauspost/compress v1.17.1
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/mattn/go-runewidth v0.0.15
  • github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0
  • github.com/mmcloughlin/addchain v0.4.0
  • 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.17.0
  • github.com/prometheus/client_model v0.5.0
  • github.com/prometheus/common v0.45.0
  • github.com/prometheus/procfs v0.12.0
  • github.com/redis/go-redis/v9 v9.2.1
  • github.com/rivo/uniseg v0.4.4
  • github.com/rogpeppe/go-internal v1.11.0
  • github.com/rs/cors v1.10.1
  • github.com/shirou/gopsutil v3.21.11+incompatible
  • github.com/stretchr/testify v1.8.4
  • github.com/supranational/blst v0.3.11
  • github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  • github.com/tklauser/go-sysconf v0.3.12
  • github.com/tklauser/numcpus v0.6.1
  • github.com/yuin/gopher-lua v1.1.0
  • github.com/yusufpapurcu/wmi v1.2.3
  • golang.org/x/crypto v0.14.0
  • golang.org/x/exp v0.0.0-20231006140011-7918f672742d
  • golang.org/x/mod v0.13.0
  • golang.org/x/sync v0.4.0
  • golang.org/x/sys v0.13.0
  • golang.org/x/text v0.13.0
  • golang.org/x/tools v0.14.0
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/yaml.v3 v3.0.1
  • rsc.io/tmplfunc v0.0.3
proxyd/go.sum go
  • 189 dependencies
endpoint-monitor/package.json npm
indexer/api-ts/package.json npm
  • tsup ^7.2.0 development
  • vitest ^0.34.4 development
package.json npm
  • @babel/eslint-parser ^7.18.2 development
  • @changesets/changelog-github ^0.4.8 development
  • @types/chai ^4.3.8 development
  • @types/chai-as-promised ^7.1.4 development
  • @types/mocha ^10.0.4 development
  • @types/node ^20.8.9 development
  • @typescript-eslint/eslint-plugin ^6.9.1 development
  • @typescript-eslint/parser ^6.9.1 development
  • chai ^4.3.10 development
  • depcheck ^1.4.7 development
  • doctoc ^2.2.0 development
  • eslint ^8.53.0 development
  • eslint-config-prettier ^8.3.0 development
  • eslint-config-standard ^16.0.3 development
  • eslint-plugin-import ^2.29.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 ^49.0.0 development
  • husky ^8.0.3 development
  • lint-staged 15.0.2 development
  • markdownlint ^0.31.0 development
  • markdownlint-cli2 0.4.0 development
  • mocha ^10.2.0 development
  • nx 17.0.3 development
  • nx-cloud latest development
  • nyc ^15.1.0 development
  • patch-package ^8.0.0 development
  • prettier ^2.8.0 development
  • prettier-plugin-solidity ^1.0.0-beta.13 development
  • rimraf ^5.0.5 development
  • ts-mocha ^10.0.0 development
  • typescript ^5.2.2 development
  • @changesets/cli ^2.26.0
  • @codechecks/client ^0.1.11
packages/chain-mon/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • @nomiclabs/hardhat-ethers ^2.2.3 development
  • @nomiclabs/hardhat-waffle ^2.0.6 development
  • hardhat ^2.19.0 development
  • ts-node ^10.9.1 development
  • tsx ^3.14.0 development
  • @eth-optimism/common-ts workspace:*
  • @eth-optimism/contracts-bedrock workspace:*
  • @eth-optimism/contracts-periphery 1.0.8
  • @eth-optimism/core-utils workspace:*
  • @eth-optimism/sdk workspace:*
  • @types/dateformat ^5.0.0
  • chai-as-promised ^7.1.1
  • dateformat ^4.5.1
  • dotenv ^16.3.1
  • ethers ^5.7.2
packages/common-ts/package.json npm
  • @ethersproject/abstract-provider ^5.7.0 development
  • @ethersproject/abstract-signer ^5.7.0 development
  • @types/express ^4.17.19 development
  • @types/morgan ^1.9.7 development
  • @types/pino ^7.0.5 development
  • @types/pino-multi-stream ^5.1.5 development
  • chai ^4.3.10 development
  • supertest ^6.3.3 development
  • @eth-optimism/core-utils workspace:*
  • @sentry/node ^7.77.0
  • bcfg ^0.2.1
  • body-parser ^1.20.2
  • commander ^11.1.0
  • dotenv ^16.3.1
  • envalid ^8.0.0
  • ethers ^5.7.2
  • express ^4.18.2
  • express-prom-bundle ^6.6.0
  • lodash ^4.17.21
  • morgan ^1.10.0
  • pino ^8.16.1
  • pino-multi-stream ^6.0.0
  • pino-sentry ^0.14.0
  • prom-client ^14.2.0
packages/contracts-bedrock/lib/clones-with-immutable-args/package.json npm
  • copyfiles ^2.4.1 development
  • prettier ^2.4.1 development
  • prettier-plugin-solidity ^1.0.0-beta.18 development
  • rimraf ^3.0.2 development
  • solhint ^3.3.6 development
  • solhint-plugin-prettier ^0.0.5 development
packages/contracts-bedrock/lib/clones-with-immutable-args/yarn.lock npm
  • 180 dependencies
packages/contracts-bedrock/lib/forge-std/lib/ds-test/package.json npm
packages/contracts-bedrock/lib/forge-std/package.json npm
packages/contracts-bedrock/lib/openzeppelin-contracts/contracts/package.json npm
packages/contracts-bedrock/lib/openzeppelin-contracts/package-lock.json npm
  • 1186 dependencies
packages/contracts-bedrock/lib/openzeppelin-contracts/package.json npm
  • @nomiclabs/hardhat-truffle5 ^2.0.5 development
  • @nomiclabs/hardhat-web3 ^2.0.0 development
  • @openzeppelin/docs-utils ^0.1.0 development
  • @openzeppelin/test-helpers ^0.5.13 development
  • chai ^4.2.0 development
  • eslint ^7.32.0 development
  • eslint-config-standard ^16.0.3 development
  • eslint-plugin-import ^2.25.4 development
  • eslint-plugin-mocha ^10.0.3 development
  • eslint-plugin-node ^11.1.0 development
  • eslint-plugin-promise ^5.2.0 development
  • eth-sig-util ^3.0.0 development
  • ethereumjs-util ^7.0.7 development
  • ethereumjs-wallet ^1.0.1 development
  • graphlib ^2.1.8 development
  • hardhat ^2.9.1 development
  • hardhat-gas-reporter ^1.0.4 development
  • keccak256 ^1.0.2 development
  • lodash.startcase ^4.4.0 development
  • lodash.zip ^4.2.0 development
  • merkletreejs ^0.2.13 development
  • micromatch ^4.0.2 development
  • prettier ^2.3.0 development
  • prettier-plugin-solidity ^1.0.0-beta.16 development
  • rimraf ^3.0.2 development
  • semver ^7.3.5 development
  • solhint ^3.3.6 development
  • solidity-ast ^0.4.25 development
  • solidity-coverage ^0.7.18 development
  • solidity-docgen ^0.5.3 development
  • web3 ^1.3.0 development
  • yargs ^17.0.0 development
packages/contracts-bedrock/lib/openzeppelin-contracts-upgradeable/contracts/package.json npm
packages/contracts-bedrock/lib/openzeppelin-contracts-upgradeable/package-lock.json npm
  • 1186 dependencies
packages/contracts-bedrock/lib/openzeppelin-contracts-upgradeable/package.json npm
  • @nomiclabs/hardhat-truffle5 ^2.0.5 development
  • @nomiclabs/hardhat-web3 ^2.0.0 development
  • @openzeppelin/docs-utils ^0.1.0 development
  • @openzeppelin/test-helpers ^0.5.13 development
  • chai ^4.2.0 development
  • eslint ^7.32.0 development
  • eslint-config-standard ^16.0.3 development
  • eslint-plugin-import ^2.25.4 development
  • eslint-plugin-mocha ^10.0.3 development
  • eslint-plugin-node ^11.1.0 development
  • eslint-plugin-promise ^5.2.0 development
  • eth-sig-util ^3.0.0 development
  • ethereumjs-util ^7.0.7 development
  • ethereumjs-wallet ^1.0.1 development
  • graphlib ^2.1.8 development
  • hardhat ^2.9.1 development
  • hardhat-gas-reporter ^1.0.4 development
  • keccak256 ^1.0.2 development
  • lodash.startcase ^4.4.0 development
  • lodash.zip ^4.2.0 development
  • merkletreejs ^0.2.13 development
  • micromatch ^4.0.2 development
  • prettier ^2.3.0 development
  • prettier-plugin-solidity ^1.0.0-beta.16 development
  • rimraf ^3.0.2 development
  • semver ^7.3.5 development
  • solhint ^3.3.6 development
  • solidity-ast ^0.4.25 development
  • solidity-coverage ^0.7.18 development
  • solidity-docgen ^0.5.3 development
  • web3 ^1.3.0 development
  • yargs ^17.0.0 development
packages/contracts-bedrock/lib/safe-contracts/package.json npm
  • @gnosis.pm/mock-contract ^4.0.0 development
  • @gnosis.pm/safe-singleton-factory ^1.0.3 development
  • @nomiclabs/hardhat-ethers 2.0.2 development
  • @nomiclabs/hardhat-etherscan ^3.1.7 development
  • @nomiclabs/hardhat-waffle 2.0.1 development
  • @openzeppelin/contracts ^3.4.0 development
  • @types/chai ^4.2.14 development
  • @types/mocha ^8.2.0 development
  • @types/node ^14.14.21 development
  • @types/yargs ^15.0.10 development
  • @typescript-eslint/eslint-plugin ^5.49.0 development
  • @typescript-eslint/parser ^5.49.0 development
  • argv ^0.0.2 development
  • chai ^4.2.0 development
  • debug ^4.2.0 development
  • dotenv ^8.0.0 development
  • eslint ^8.32.0 development
  • eslint-config-prettier ^8.6.0 development
  • eslint-plugin-no-only-tests ^3.1.0 development
  • eslint-plugin-prettier ^4.2.1 development
  • ethereum-waffle ^3.3.0 development
  • ethers 5.4.0 development
  • hardhat ^2.2.1 development
  • hardhat-deploy 0.11.26 development
  • husky ^5.1.3 development
  • prettier ^2.8.4 development
  • prettier-plugin-solidity 1.1.2 development
  • solc 0.7.6 development
  • solhint 3.3.8 development
  • solhint-plugin-prettier 0.0.5 development
  • solidity-coverage ^0.7.17 development
  • ts-node ^9.1.1 development
  • typescript ^4.2.4 development
  • yargs ^16.1.1 development
packages/contracts-bedrock/lib/safe-contracts/yarn.lock npm
  • 1365 dependencies
packages/contracts-bedrock/lib/solmate/package-lock.json npm
  • @solidity-parser/parser 0.13.2 development
  • ansi-regex 5.0.0 development
  • antlr4ts 0.5.0-alpha.4 development
  • emoji-regex 9.2.2 development
  • emoji-regex 8.0.0 development
  • escape-string-regexp 4.0.0 development
  • is-fullwidth-code-point 3.0.0 development
  • lru-cache 6.0.0 development
  • prettier 2.3.2 development
  • prettier-plugin-solidity 1.0.0-beta.16 development
  • semver 7.3.5 development
  • solidity-comments-extractor 0.0.7 development
  • string-width 4.2.2 development
  • strip-ansi 6.0.0 development
  • yallist 4.0.0 development
packages/contracts-bedrock/lib/solmate/package.json npm
  • prettier ^2.3.1 development
  • prettier-plugin-solidity ^1.0.0-beta.13 development
packages/contracts-bedrock/package.json npm
  • @typescript-eslint/eslint-plugin ^6.9.1 development
  • @typescript-eslint/parser ^6.9.1 development
  • tsx ^3.14.0 development
  • typescript ^5.2.2 development
packages/contracts-ts/package.json npm
  • @eth-optimism/contracts-bedrock workspace:* development
  • @testing-library/jest-dom ^6.1.4 development
  • @testing-library/react-hooks ^8.0.1 development
  • @types/glob ^8.1.0 development
  • @vitest/coverage-istanbul ^0.34.6 development
  • @wagmi/cli ^1.5.2 development
  • @wagmi/core ^1.4.5 development
  • abitype ^0.10.2 development
  • glob ^10.3.10 development
  • isomorphic-fetch ^3.0.0 development
  • jest-dom link:@types/@testing-library/jest-dom development
  • jsdom ^22.1.0 development
  • tsup ^7.2.0 development
  • typescript ^5.2.2 development
  • vite ^4.5.0 development
  • vitest ^0.34.2 development
  • @testing-library/react ^14.0.0
  • @types/change-case ^2.3.1
  • change-case 4.1.2
  • react ^18.2.0
  • react-dom ^18.2.0
  • viem ^1.18.6
packages/core-utils/package.json npm
  • @types/node ^20.8.9 development
  • mocha ^10.2.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.1
  • chai ^4.3.10
  • ethers ^5.7.2
  • node-fetch ^2.6.7
packages/fee-estimation/package.json npm
  • @eth-optimism/contracts-ts workspace:^ development
  • @testing-library/jest-dom ^6.1.4 development
  • @testing-library/react-hooks ^8.0.1 development
  • @vitest/coverage-istanbul ^0.34.6 development
  • abitype ^0.10.2 development
  • isomorphic-fetch ^3.0.0 development
  • jest-dom link:@types/@testing-library/jest-dom development
  • jsdom ^22.1.0 development
  • tsup ^7.2.0 development
  • typescript ^5.2.2 development
  • viem ^1.18.6 development
  • vite ^4.5.0 development
  • vitest ^0.34.2 development
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.2.3 development
  • @nomiclabs/hardhat-waffle ^2.0.1 development
  • @types/chai ^4.3.8 development
  • @types/chai-as-promised ^7.1.5 development
  • @types/mocha ^10.0.4 development
  • @types/node ^20.8.9 development
  • chai-as-promised ^7.1.1 development
  • ethereum-waffle ^4.0.10 development
  • ethers ^5.7.2 development
  • hardhat ^2.19.0 development
  • hardhat-deploy ^0.11.43 development
  • isomorphic-fetch ^3.0.0 development
  • mocha ^10.2.0 development
  • nyc ^15.1.0 development
  • ts-node ^10.9.1 development
  • typedoc ^0.25.3 development
  • typescript ^5.2.2 development
  • viem ^1.18.6 development
  • vitest ^0.34.2 development
  • zod ^3.22.4 development
  • @eth-optimism/contracts 0.6.0
  • @eth-optimism/contracts-bedrock workspace:*
  • @eth-optimism/core-utils workspace:*
  • lodash ^4.17.21
  • merkletreejs ^0.3.11
  • rlp ^2.2.7
packages/web3js-plugin/package.json npm
  • @eth-optimism/contracts-ts workspace:^ development
  • @swc/core ^1.3.95 development
  • @vitest/coverage-istanbul ^0.34.6 development
  • tsup ^7.2.0 development
  • typescript ^5.2.2 development
  • viem ^1.18.6 development
  • vite ^4.5.0 development
  • vitest ^0.34.1 development
  • zod ^3.22.4 development
  • @ethereumjs/rlp ^5.0.1
  • web3-eth ^4.0.3
  • web3-eth-accounts ^4.0.3
pnpm-lock.yaml npm
  • 1908 dependencies
ufm-test-services/metamask/package.json npm
  • @metamask/test-dapp ^7.1.0 development
  • @playwright/test 1.37.1 development
  • @synthetixio/synpress 3.7.2-beta.7 development
  • dotenv ^16.3.1 development
  • static-server ^2.2.1 development
  • typescript ^5.1.6 development
  • viem ^1.10.8 development
  • prom-client ^14.2.0
  • zod ^3.22.2
ufm-test-services/metamask/pnpm-lock.yaml npm
  • 989 dependencies
ops/check-changed/requirements.txt pypi
  • Deprecated ==1.2.13
  • PyGithub ==1.57
  • PyJWT ==2.6.0
  • PyNaCl ==1.5.0
  • certifi ==2023.7.22
  • cffi ==1.15.1
  • charset-normalizer ==2.1.1
  • idna ==3.4
  • pycparser ==2.21
  • requests ==2.28.1
  • urllib3 ==1.26.18
  • wrapt ==1.14.1
ops/tag-service/requirements.txt pypi
  • click ==8.1.3
  • semver ==3.0.0