@nunja/truffle-upgrades
TypeScript icon, indicating that this package has built-in type declarations

1.7.0 • Public • Published

OpenZeppelin Truffle Upgrades

Docs NPM Package

Truffle package for deploying and managing upgradeable contracts. This package adds functions to your Truffle migrations and tests so you can deploy and upgrade proxies for your contracts.

Note: Usage from Truffle external scripts is not yet supported.

Installation

npm install --save-dev @openzeppelin/truffle-upgrades

This package requires Truffle version 5.1.35 or greater.

Usage in migrations

To deploy an upgradeable instance of one of your contracts in your migrations, use the deployProxy function:

// migrations/NN_deploy_upgradeable_box.js
const { deployProxy } = require('@openzeppelin/truffle-upgrades');

const Box = artifacts.require('Box');

module.exports = async function (deployer) {
  const instance = await deployProxy(Box, [42], { deployer });
  console.log('Deployed', instance.address);
};

This will automatically check that the Box contract is upgrade-safe, set up a proxy admin (if needed), deploy an implementation contract for the Box contract (unless there is one already from a previous deployment), create a proxy, and initialize it by calling initialize(42).

Then, in a future migration, you can use the upgradeProxy function to upgrade the deployed instance to a new version. The new version can be a different contract (such as BoxV2), or you can just modify the existing Box contract and recompile it - the plugin will note it changed.

// migrations/MM_upgrade_box_contract.js
const { upgradeProxy } = require('@openzeppelin/truffle-upgrades');

const Box = artifacts.require('Box');
const BoxV2 = artifacts.require('BoxV2');

module.exports = async function (deployer) {
  const existing = await Box.deployed();
  const instance = await upgradeProxy(existing.address, BoxV2, { deployer });
  console.log("Upgraded", instance.address);
};

The plugin will take care of comparing BoxV2 to the previous one to ensure they are compatible for the upgrade, deploy the new BoxV2 implementation contract (unless there is one already from a previous deployment), and upgrade the existing proxy to the new implementation.

Usage in tests

You can also use the deployProxy and upgradeProxy functions from your Truffle tests, in case you want to add tests for upgrading your contracts (which you should!). The API is the same as in the migrations, only that without a deployer parameter.

const { deployProxy, upgradeProxy } = require('@openzeppelin/truffle-upgrades');

const Box = artifacts.require('Box');
const BoxV2 = artifacts.require('BoxV2');

describe('upgrades', () => {
  it('works', async () => {
    const box = await deployProxy(Box, [42]);
    const box2 = await upgradeProxy(box.address, BoxV2);

    const value = await box2.value();
    assert.equal(value.toString(), '42');
  });
});

Learn more

Readme

Keywords

none

Package Sidebar

Install

npm i @nunja/truffle-upgrades

Weekly Downloads

2

Version

1.7.0

License

MIT

Unpacked Size

85.3 kB

Total Files

78

Last publish

Collaborators

  • webninnin