[Project] Basic and Advanced Web Examples (#288)

* Chore: init

* chore: init

* feat: added basic dapps and improved README

* fix: Unified env.example and added comments with instructions

* fix: better usage instruction in readme

* fix: removed advanced section

* fix: added dapps and wallets

* fix: added web3inbox

* Update basic/dapps/web3inbox/README.md

Co-authored-by: Ben Kremer <ben@walletconnect.com>

* Update basic/dapps/ethereum-provider/src/App.tsx

Co-authored-by: Gancho Radkov <43912948+ganchoradkov@users.noreply.github.com>

* chore: added detailed README for basic section

* chore(deps): updated deps for universal-provider-solana

* fix: multiple suggestions

---------

Co-authored-by: Boidushya Bhattacharya <boidushyabhattacharya@gmail.com>
Co-authored-by: Ben Kremer <ben@walletconnect.com>
Co-authored-by: Gancho Radkov <43912948+ganchoradkov@users.noreply.github.com>
This commit is contained in:
crypblizz
2023-09-25 15:41:42 +05:30
committed by GitHub
co-authored by Ben Kremer Gancho Radkov Boidushya Bhattacharya
parent c3af6c0ec0
commit 8b22738217
56 changed files with 10415 additions and 0 deletions
@@ -0,0 +1 @@
FROM node:20-bullseye
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

@@ -0,0 +1,31 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "yarn install"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"dev": {
"name": "dev",
"command": "yarn dev",
"runAtStart": true,
"preview": {
"port": 5173
}
},
"build": {
"name": "build",
"command": "yarn build",
"runAtStart": false
},
"preview": {
"name": "preview",
"command": "yarn preview",
"runAtStart": false
}
}
}
@@ -0,0 +1,12 @@
{
"title": "React (Vite + TS)",
"description": "React running from the Vite dev server!",
"iconUrl": "https://github.com/codesandbox/sandbox-templates/blob/main/react-vite-ts/.codesandbox/icon.png?raw=true",
"tags": [
"react",
"vite",
"javascript",
"typescript"
],
"published": true
}