Skip to content

OpenZeppelin Defender

OpenZeppelin Defender Banner

Introduction

OpenZeppelin Defender is a web-based application that allows developers to perform and automate smart contract operations in a secure way. Defender offers different components:

  • Admin — to automate and secure all your smart contract operations such as access controls, upgrades, and pausing
  • Relay — to build with a private and secure transaction infrastructure with the implementation of private relayers
  • Autotasks — to create automated scripts to interact with your smart contracts
  • Sentinel — to monitor your smart contract's events, functions, and transactions, and receive notifications via email

OpenZeppelin Defender can now be used on Moonbeam, Moonriver, and the Moonbase Alpha TestNet. This guide will show you how to get started with Defender and demo the Admin component to pause a smart contract on Moonbase Alpha. This guide can be adapted for Moonbeam and Moonriver.

Getting Started with Defender

This section goes through the steps for getting started with OpenZeppelin Defender on Moonbase Alpha.

Checking Prerequisites

The steps described in this section assume you have MetaMask installed and connected to the Moonbase Alpha TestNet. If you haven't connected MetaMask to the TestNet, check out our MetaMask integration guide.

In addition, you need to sign up for a free OpenZeppelin Defender account, which you can do on the main Defender website.

The contract used in this guide is an extension of the Box.sol contract used in the upgrading smart contracts guide, from the OpenZeppelin documentation. Also, the contract was made upgradable and pausable to take full advantage of the Admin component. You can deploy your contract using the following code and following the upgrading smart contracts guide:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

contract PausableBox is Initializable, PausableUpgradeable, OwnableUpgradeable {
    uint256 private value;

    // Emitted when the stored value changes
    event ValueChanged(uint256 newValue);

    // Initialize
    function initialize() initializer public {
        __Ownable_init();
        __Pausable_init_unchained();
    }

    // Stores a new value in the contract
    function store(uint256 newValue) whenNotPaused public {
        value = newValue;
        emit ValueChanged(newValue);
    }

    // Reads the last stored value
    function retrieve() public view returns (uint256) {
        return value;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
}

Connecting Defender

Once you have an OpenZeppelin Defender account, log into the Defender App. In the main screen, with MetaMask connected to Moonbase Alpha click on the top right corner Connect wallet button:

OpenZeppelin Defender Connect

If successful, you should see your address and a text stating Connected to Moonbase Alpha.

Using the Admin Component

This section goes through the steps for getting started with OpenZeppelin Defender Admin component to manage smart contracts on Moonbase Alpha.

Importing your Contract

The first step to using Defender Admin is to add the contract you want to manage. To do so, click on the Add contract button near the top right corner. This will take you to the import contract screen, where you need to:

  1. Set a contract name. This is only for display purposes
  2. Select the network where the contract that you want to manage is deployed. This is particularly useful when a contract is deployed with the same address to multiple networks. For this example, enter Moonbase Alpha
  3. Enter the contract address
  4. Paste the contract ABI. This can be obtained either in Remix or in the .json file generally created after the compilation process (for example, in Truffle or Hardhat)
  5. Check that the contract features were detected correctly
  6. Once you've checked all the information, click on the Add button

OpenZeppelin Defender Admin Add Contract

If everything was successfully imported, you should see your contract in the Admin component main screen:

OpenZeppelin Defender Admin Contract Added

Create a Contract Proposal

Proposals are actions to be carried out in the contract. At the time of writing, there are three main proposals/actions that can take place:

  • Pause — available if the pause feature is detected. Pauses token transfers, minting and burning
  • Upgrade — available if the upgrade feature is detected. Allows for a contract to be upgraded via a proxy contract
  • Admin action — call to any function in the managed contract

In this case, a new proposal is created to pause the contract. To do so, take the following steps:

  1. Click on the New proposal button to see all the available options
  2. Click on Pause

OpenZeppelin Defender Admin Contract New Pause Proposal

This will open the proposal page, where all the details regarding the proposal need to be filled in. In this example, you need to provide the following information:

  1. Admin account address. You can also leave this field empty if you want to run the action from your current wallet (if it has all the necessary permissions)
  2. Title of the proposal
  3. Description of the proposal. In here, you should provide as much detail as possible for other members/managers of the contract (if using a MultiSig wallet)
  4. Click on Create pause proposal

OpenZeppelin Defender Admin Contract Pause Proposal Details

Once the proposal is successfully created, it should be listed in the contract's admin dashboard.

OpenZeppelin Defender Admin Contract Proposal List

Approve a Contract Proposal

With the contract proposal created, the next step is to approve and execute it. To do so, go to the proposal and click on Approve and Execute.

OpenZeppelin Defender Admin Contract Proposal Pause Approve

This will initiate a transaction that needs to be signed using MetaMask, after which the proposal state should change to Executed (confirmation pending). Once the transaction is processed, the status should show Executed.

OpenZeppelin Defender Admin Contract Proposal Pause Executed

You can also see that the contract's status has changed from Running to Paused. Great! You now know how to use the Admin component to manage your smart contracts.

The information presented herein has been provided by third parties and is made available solely for general information purposes. Moonbeam does not endorse any project listed and described on the Moonbeam Doc Website (https://docs.moonbeam.network/). Moonbeam Foundation does not warrant the accuracy, completeness or usefulness of this information. Any reliance you place on such information is strictly at your own risk. Moonbeam Foundation disclaims all liability and responsibility arising from any reliance placed on this information by you or by anyone who may be informed of any of its contents. All statements and/or opinions expressed in these materials are solely the responsibility of the person or entity providing those materials and do not necessarily represent the opinion of Moonbeam Foundation. The information should not be construed as professional or financial advice of any kind. Advice from a suitably qualified professional should always be sought in relation to any particular matter or circumstance. The information herein may link to or integrate with other websites operated or content provided by third parties, and such other websites may link to this website. Moonbeam Foundation has no control over any such other websites or their content and will have no liability arising out of or related to such websites or their content. The existence of any such link does not constitute an endorsement of such websites, the content of the websites, or the operators of the websites. These links are being provided to you only as a convenience and you release and hold Moonbeam Foundation harmless from any and all liability arising from your use of this information or the information provided by any third-party website or service.
Last update: May 10, 2023
| Created: April 30, 2021