Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zos-lib

Package Overview
Dependencies
Maintainers
4
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zos-lib - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

examples/single/build/contracts/AddressUtils.json

2

package.json
{
"name": "zos-lib",
"version": "0.1.1",
"version": "0.1.2",
"description": "zeppelin_os library",

@@ -5,0 +5,0 @@ "scripts": {

@@ -37,10 +37,6 @@ # zeppelin_os library

contract MyContract is Initializable {
bool internal initialized;
uint256 public x;
function initialize(uint256 _x) public {
require(!initialized);
function initialize(uint256 _x) isInitializer public {
x = _x;
initialized = true;
}

@@ -73,10 +69,6 @@ }

contract MyContract is Initializable {
bool internal initialized;
uint256 public x;
function initialize(uint256 _x) public {
require(!initialized);
function initialize(uint256 _x) isInitializer public {
x = _x;
initialized = true;
}

@@ -83,0 +75,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc