Skip to content

Commit

Permalink
feat: added 'Add To Homescreen' badge on readme, manifest.json and ic…
Browse files Browse the repository at this point in the history
…on files
  • Loading branch information
limcheekin committed Oct 13, 2021
1 parent 0ad450d commit 4d8bd1b
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ethereum dApps Next.js Boiletplate [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
# Ethereum dApps Next.js Boiletplate [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![Add to Homescreen](https://img.shields.io/badge/Skynet-Add%20To%20Homescreen-00c65e?logo=skynet&labelColor=0d0d0d)](https://homescreen.hns.siasky.net/#/skylink/AQDeoXNWsZyfJhkSkRIzaThBlmzVKaySy9mpPvOmIcSIoA)

<p>
<img alt="made for ethereum" src="https://img.shields.io/badge/made_for-ethereum-771ea5.svg">
Expand All @@ -13,8 +13,9 @@ following improvements:
- Better UI with Chakra UI
- JQuery HTML example (without React)
- Github Actions workflow to run Continuous Integration build pipeline on every `git push`
- Github Actions workflow to deploy dApps Front End to Skynet on every `git push`

It is tested with [MetaMask](https://metamask.io/) Chrome extension and Android. I think it is good idea to test out [the dApps](https://eth-dapps-nextjs-boiletplate.vercel.app/) yourself before you continue further reading.
It is tested with [MetaMask](https://metamask.io/) Chrome extension and Android. I think it is good idea to test out [the dApps](https://eth-dapps-nextjs-boiletplate.vercel.app/)(or [on Skynet](https://040dt8bjaqopp7p6349924hjd4s435jcqkkqp4mbr6kjtst64728h80.siasky.net/)) yourself before you continue further reading.

The dApps is interacting with a [Greeter smart contract](https://github.com/ethereum/ethereum-org/blob/master/views/content/greeter.md) that running on Rinkeby testnet, hence you need some ETH in your wallet. If you don't have any, you can request some ETH from [Rinkeby Faucet](https://faucet.rinkeby.io/).

Expand Down
Binary file modified client/public/favicon.ico
Binary file not shown.
Binary file added client/public/images/192x192_App_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/256x256_App_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/512x512_App_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions client/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"background_color": "#fff",
"display": "standalone",
"homepage_url": "https://eth-dapps-nextjs-boiletplate.vercel.app/",
"providedBy": {
"name": "Lim Chee Kin",
"url": "https://github.com/limcheekin/eth-dapps-nextjs-boiletplate"
},
"icons": [
{
"src": "./images/192x192_App_Icon.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "./images/512x512_App_Icon.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"orientation": "portrait",
"name": "Ethereum dApps Next.js Boiletplate",
"description": "A dApps to demo the integration of MetaMask, WalletConnect and Greeter smart contract.",
"iconPath": "./images/256x256_App_Icon.png",
"short_name": "eth-dapps-nextjs-boiletplate",
"start_url": ".",
"theme_color": "#ffffff",
"skylink": "AQDeoXNWsZyfJhkSkRIzaThBlmzVKaySy9mpPvOmIcSIoA"
}

0 comments on commit 4d8bd1b

Please sign in to comment.