@openzeppelin/contracts-ethereum-package latest release v3.3.0 not available on yarn?

Here it shows that only v3.0.0 is available:
https://yarnpkg.com/package/@openzeppelin/contracts-ethereum-package

One the github repo I can see the latest release as v3.3.0

Which what I would like to use in project, so I can use solidity 0.7 with upgradeable contracts

:computer: Environment

That it :slight_smile:

:1234: Code to reproduce

Try add this to your package.json
@openzeppelin/contracts-ethereum-package”: “^3.4.0”,
and hit ‘yarn’ to install the node modules.

1 Like

That’s because the contracts-ethereum-package repository transitioned to contracts-upgradeable, but they’re still two different npm packages (github repositories and npm packages aren’t related 1-to-1). Try with

$ yarn add @openzeppelin/contracts-upgradeable
2 Likes