Skip to content

Commit

Permalink
Fix titles (#343)
Browse files Browse the repository at this point in the history
* Fix titles

* Fix text
  • Loading branch information
heueristik authored Mar 27, 2023
1 parent cead67a commit 0c92bd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Upgradeable Plugins
title: Initialization
---

## Initializing Non-upgradeable Plugins
## Initializing Upgradeable Plugins

To deploy your implementation contract via the [UUPS pattern (ERC-1822)](https://eips.ethereum.org/EIPS/eip-1822), you inherit from the `PluginUUPSUpgradeable` contract.
For the same reason you had to [initialize your non-upgradeable `PluginClonable`](./../03-non-upgradeable-plugin/01-initialization.md#deployment-via-the-minimal-proxy-pattern) deployed via the minimal proxy pattern, you must write an `initialize` function for contracts deployed via the minimal proxy pattern:
For the same reason you had to [initialize your non-upgradeable `PluginClonable`](./../03-non-upgradeable-plugin/01-initialization.md#deployment-via-the-minimal-proxy-pattern) deployed via the minimal proxy pattern, you must write an `initialize` function for contracts deployed via the UUPS proxy pattern:

<details>
<summary><code>SimpleStorageBuild1</code> Initialization</summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Setup Upgradeable Plugins
title: Setup
---

## Developing the Setup Contract for Upgradeable Contracts
Expand Down

0 comments on commit 0c92bd5

Please sign in to comment.