Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yosephks/moralis-upgradeable-smart-contracts
- Owner: YosephKS
- License: mit
- Created: 2022-01-05T13:07:21.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-22T19:35:17.000Z (almost 3 years ago)
- Last Synced: 2024-04-18T12:56:47.454Z (7 months ago)
- Topics: avalanche, blockchain, bsc, ethereum, javascript, moralis, openzeppelin, openzeppelin-upgrades, polygon, react, solidity, truffle, truffle-framework, upgradeable-smart-contract, web3
- Language: JavaScript
- Homepage: https://www.youtube.com/watch?v=IsTFNOedPkk
- Size: 1.21 MB
- Stars: 53
- Watchers: 4
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
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
```