zeppelin_os library
![Coverage Status](https://coveralls.io/repos/github/zeppelinos/zos-lib/badge.svg?branch=master)
:warning: Under heavy development: do not use in production :warning:
zos-lib
is a library for writing upgradeable smart contracts on Ethereum. It can be used to create an upgradeable on-chain distributed application and is also used inside the zOS Kernel.
Use this library if you want to programmatically develop, deploy or operate an upgradeable smart contract system.
If you want a CLI-aided development experience, see the zOS CLI.
Getting Started
To install zos-lib
simply go to your project's root directory and run:
npm i zos-lib
Next, learn how to:
Develop and deploy a single upgradeable smart contract
Note: This shows a low-level manual method of developing a single upgradeable smart contract. You probably want to use the higher-level CLI guide.
To work with a single upgradeable smart contract, you just need to deal with a simple upgradeability proxy. This is a special contract that will hold the storage of your upgradeable contract and redirect function calls to an implementation
contract, which you can change (thus making it upgradeable). To learn more about how proxies work under the hood, read this post on our blog. To simply use them, do the following:
- Write the first implementation of your contract. Let's assume it's located in
MyContract.sol
. Most contracts require some sort of initialization, but upgradeable contracts can't use constructors (for reasons explained in this blog post), so we need to use the Initializable
pattern provided in zos-lib
:
import "zos-lib/contracts/migrations/Initializable.sol";
contract MyContract is Initializable {
uint256 public x;
function initialize(uint256 _x) isInitializer public {
x = _x;
}
}
- Deploy your first implementation contract:
const implementation_v0 = await MyContract.new();
- Now we need to deploy the proxy contract that will manage our contract's upgradeability. We pass the implementation address in the constructor, to set the first version of the behavior.
const proxy = await OwnedUpgradeabilityProxy.new(implementation_v0.address);
- Next, we call initialize on the proxy, to initialize the storage variables. Note that we wrap the proxy in a
MyContract
interface, because all calls will be delegated to the behavior.
let myContract = await MyContract.at(proxy.address);
const x0 = 42;
await myContract.initialize(x0);
console.log(await myContract.x());
- We now want to add a function to our contract, so we edit the MyContract.sol file and add it:
import "zos-lib/contracts/migrations/Initializable.sol";
contract MyContract is Initializable {
uint256 public x;
function initialize(uint256 _x) isInitializer public {
x = _x;
}
function y() public pure returns (uint256) {
return 1337;
}
}
Note that when we update our contract's code, we can't change its pre-existing storage structure. This means we can't remove any previously existing contract variable. We can, however, remove functions we don't want to use anymore (in the code shown, all functions were preserved).
- Next, we deploy the new implementation contract, and upgrade our proxy to it:
const implementation_v1 = await MyContract.new();
await proxy.upgradeTo(implementation_v1.address);
myContract = await MyContract_v1.at(proxy.address);
console.log(await myContract.x());
console.log(await myContract.y());
Wohoo! We've upgraded our contract's behavior while preserving it's storage.
For a fully working project with this example, see the examples/single
folder.
Develop and operate a complex upgradeable app
Note: This shows a low-level manual method of developing a complex upgradeable smart contract application. You probably want to use the higher-level CLI guide instead, but feel free to continue reading if you want to understand the core contracts of zos-lib
.
Most real-world applications require more than a single smart contract. Here's how to build a complex upgradeable app with multiple smart contracts and connect it to the zOS Kernel standard libraries.
Let's imagine we want to build a simple donation application where we give donors some sort of recognition.
An initial version of the contract can look like so:
pragma solidity ^0.4.21;
import "openzeppelin-zos/contracts/ownership/Ownable.sol";
import "openzeppelin-zos/contracts/math/SafeMath.sol";
contract DonationsV1 is Ownable {
using SafeMath for uint256;
// Keeps a mapping of total donor balances.
mapping(address => uint256) public donorBalances;
function donate() payable public {
require(msg.value > 0);
// Update user donation balance.
donorBalances[msg.sender] = donorBalances[msg.sender].add(msg.value);
}
function getDonationBalance(address _donor) public view returns (uint256) {
return donorBalances[_donor];
}
function withdraw(address _wallet) onlyOwner {
// Withdraw all donated funds.
_wallet.transfer(this.balance);
}
}
We want to use zos-lib
to deploy this contract with upgradeability capabilities. Given this will probably be a complex application and we'll want to use the zOS Kernel standard libraries, we'll use the AppManager
programming interface.
The first step to do so is to create and configure the AppManager
contract. This contract will live in the blockchain and manage the different versions of our smart contract code and upgradeability proxies. It's the single entry point to manage our application's contract's upgradeability and instances. Let's set it up:
const initialVersion = '0.0.1';
console.log("<< Setting up AppManager >>");
console.log(`Deploying proxy factory...`);
this.factory = await UpgradeabilityProxyFactory.new(txParams);
console.log(`Deployed proxy factory at ${this.factory.address}`);
console.log(`Deploying application package...`);
this.package = await Package.new(txParams);
console.log(`Deployed application package at ${this.package.address}`);
console.log(`Deploying application directory for version ${initialVersion}...`);
this.directory = await AppDirectory.new(0, txParams);
console.log(`Deployed application directory for initial version at ${this.directory.address}`);
console.log(`Adding version to package...`);
await this.package.addVersion(initialVersion, this.directory.address, txParams);
console.log(`Added application directory to package`);
console.log(`Deploying application manager...`);
this.appManager = await AppManager.new(this.package.address, initialVersion, this.factory.address, txParams);
console.log(`Deployed application manager at ${this.appManager.address}`);
Next, we need to deploy the first version of the app contracts. To do so, we register the implementation of our DonationsV1
in the AppManager
and request it to create a new upgradeable proxy for it. Let's do it:
console.log("\n<< Deploying version 1 >>");
console.log(`Deploying first implementation of ${contractName}...`);
const implementation = await DonationsV1.new(txParams);
console.log(`Deployed first implementation at ${implementation.address}`);
console.log(`Registering implementation...`);
await this.directory.setImplementation(contractName, implementation.address, txParams);
console.log(`Registered implementation in current contract directory`);
console.log(`Creating proxy for ${contractName}...`);
const callData = encodeCall('initialize', ['address'], [owner]);
const {receipt} = await this.appManager.createAndCall(contractName, callData, txParams);
const logs = decodeLogs([receipt.logs[1]], UpgradeabilityProxyFactory, 0x0);
const proxyAddress = logs.find(l => l.event === 'ProxyCreated').args.proxy;
this.proxy = OwnedUpgradeabilityProxy.at(proxyAddress);
console.log(`Proxy for ${contractName} created at ${proxyAddress}`);
Now let's suppose we want to give some sort of retribution to people donating money to our donation campaign. We want to mint new ERC721 cryptocollectibles for every received donation. To do so, we'll link our application to a zOS Kernel standard library release that contains an implementation of a mintable ERC721 token. Here's the new contract code:
pragma solidity ^0.4.21;
import "./DonationsV1.sol";
import "openzeppelin-zos/contracts/token/ERC721/MintableERC721Token.sol";
contract DonationsV2 is DonationsV1 {
// Keeps track of the highest donation.
uint256 public highestDonation;
// ERC721 non-fungible tokens to be emitted on donations.
MintableERC721Token public token;
uint256 public numEmittedTokens;
function setToken(MintableERC721Token _token) external onlyOwner {
require(_token != address(0));
require(token == address(0));
token = _token;
}
function donate() payable public {
super.donate();
// Is this the highest donation?
if(msg.value > highestDonation) {
// Emit a token.
token.mint(msg.sender, numEmittedTokens);
numEmittedTokens++;
highestDonation = msg.value;
}
}
}
What we need to do next is link our application to the zOS Kernel standard library release containing that mintable ERC721 implementation, and set it to our upgradeable contract. To do so, we create a new version of our application in the AppManager
, register a new AppDirectory
containing the new version of our contract implementation, and then set the standard library version of ERC721 to our upgradeable contract. Let's see how:
console.log("\n<< Deploying version 2 >>");
const versionName = '0.0.2';
console.log(`Deploying new application directory...`);
this.directory = await AppDirectory.new(stdlib, txParams);
console.log(`Deployed application directory for new version ${versionName} at ${this.directory.address}`);
console.log(`Deploying new contract implementation...`);
const implementation = await DonationsV2.new(txParams);
console.log(`Deploying new implementation of ${contractName} at ${implementation.address}`);
console.log(`Registering new contract implementation...`);
await this.directory.setImplementation(contractName, implementation.address, txParams);
console.log(`Registered implementation in current contract directory`);
console.log(`Adding new application version ${versionName}`);
await this.package.addVersion(versionName, this.directory.address, txParams);
console.log(`Setting the app's version to ${versionName}`);
await this.appManager.setVersion(versionName, txParams);
console.log(`Upgrading proxy for ${contractName}`);
await this.appManager.upgradeTo(this.proxy.address, contractName, txParams);
console.log(`Upgraded contract proxy for ${contractName} to latest app version ${versionName}`);
console.log(`Creating proxy for ERC721 token, for use in ${contractName}...`);
const {receipt} = await this.appManager.create('MintableERC721Token', txParams);
const logs = decodeLogs([receipt.logs[1]], UpgradeabilityProxyFactory, 0x0);
const proxyAddress = logs.find(l => l.event === 'ProxyCreated').args.proxy;
console.log(`Token proxy created at ${proxyAddress}`);
console.log(`Setting application's token...`);
const donations = DonationsV2.at(this.proxy.address);
await donations.setToken(proxyAddress, txParams);
console.log(`Token set succesfully`);
That's it! We now have the same contract, retaining the original balance, and storage, but with an upgraded code. The upgradeable contract is also linked to an on-chain upgradeable standard library containing an implementation of a mintable ERC721 token. State of the art!
Develop a zOS Kernel standard library release
See this guide in the zeppelinos/kernel repo to learn how to develop new zOS kernel standard library releases.