Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yosephks/moralis-upgradeable-smart-contracts

This repository contains tutorial on building Upgradable Smart Contracts and showcasing it with a simple NFT Minter dApp with React and Moralis.
https://github.com/yosephks/moralis-upgradeable-smart-contracts

avalanche blockchain bsc ethereum javascript moralis openzeppelin openzeppelin-upgrades polygon react solidity truffle truffle-framework upgradeable-smart-contract web3

Last synced: about 18 hours ago
JSON representation

This repository contains tutorial on building Upgradable Smart Contracts and showcasing it with a simple NFT Minter dApp with React and Moralis.

Awesome Lists containing this project

README

        

# `Upgradeable Smart Contract with Moralis`

This Project is a fork of [Ethereum Boilerplate](https://github.com/ethereum-boilerplate/ethereum-boilerplate) and demostrates how to build upgradeable smart contracts by showcasing it in the form of a simple NFT minter dApp. This project of course work on any EVM-compatible blockchain such as Polygon, Avalanche, Binance Smart Chain and other such chains.

![dapp3](https://github.com/YosephKS/moralis-upgradeable-smart-contracts/blob/main/moralis-upgradeable-smart-contract.gif)

# ⭐️ `Star us`
If this boilerplate helps you build Ethereum dapps faster - please star this project, every star makes us very happy!

# 🤝 How to get help
If you have any questions or need help running this project please don't hesitate to ask in our [forum](https://forum.moralis.io/t/moralis-upgradeable-smart-contract-tutorial/8381). We are monitoring it 24/7 and are here to help you get up to speed.

# 🚀 Quick Start

📄 Clone or fork `moralis-upgradeable-smart-contracts`:
```sh
git clone https://github.com/YosephKS/moralis-upgradeable-smart-contracts.git
```
💿 Install all dependencies:
```sh
cd moralis-upgradeable-smart-contracts
yarn install
```
✏ Rename `.env.example` to `.env` in the main folder and provide your `appId` and `serverUrl` from Moralis ([How to start Moralis Server](https://docs.moralis.io/moralis-server/getting-started/create-a-moralis-server)), plus some other Biconomy API Keys:
```jsx
REACT_APP_MORALIS_APPLICATION_ID=xxx
REACT_APP_MORALIS_SERVER_URL=xxx
```
🚴‍♂️ Run your App:
```sh
yarn start
```