├── .DS_Store ├── .babelrc ├── .gitignore ├── README.md ├── components ├── Asset.js ├── Card.js ├── Card2D.js ├── Card3D.js ├── CardColumn.js ├── CardDetails.js ├── CardGrid.js ├── CardLive.js ├── CardRow.js ├── CardRowHeader.js ├── CardSvg.js ├── CardSwitch.js ├── Clip.js ├── CustomToast.js ├── FileBrowser.js ├── FileInput.js ├── Footer.js ├── Hero.js ├── LandCard.js ├── LandCardDetails.js ├── LandCardGrid.js ├── LandCardRow.js ├── Loader.js ├── Map.js ├── Masonry.js ├── Minter.js ├── Navbar.js ├── Profile.js ├── ProfileCards.js ├── ProgressBar.js ├── ShaderToyRenderer.js ├── User.js └── ViewSwitch.js ├── constants ├── ActionTypes.js ├── ApiKeys.js ├── AssetTypes.js ├── CardSize.js ├── Context.js ├── InitialStateValues.js ├── NetworkType.js └── UnlockConstants.js ├── functions ├── AssetFunctions.js ├── Functions.js ├── Storage.js ├── UIStateFunctions.js └── UserFunctions.js ├── libs ├── BufferGeometryUtils.js ├── GLTFExporter.js ├── GLTFLoader.js ├── atlaspack.js ├── bip39.js ├── contextLib.js ├── ethereumjs-tx.js ├── hdkey.js ├── three.module.js └── web3.min.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── 404.js ├── _app.js ├── accounts.js ├── accounts │ └── [id].js ├── activity.js ├── activity │ └── [id].js ├── assets │ └── [id].js ├── bake │ └── [id].js ├── discordbot.js ├── fly.js ├── hiring.js ├── hiring │ ├── 3dartist.js │ ├── avatarartist.js │ ├── blockchainengineer.js │ ├── designer.js │ ├── frontendengineer.js │ ├── gameengineer.js │ ├── infrastructureengineer.js │ └── userexperience.js ├── index.js ├── land.js ├── land │ └── [id].js ├── login.js ├── map.js ├── mint.js ├── mint │ └── [id].js ├── mounts.js ├── pets.js ├── test-page.js └── tv │ └── [id].js ├── public ├── .DS_Store ├── 404.png ├── Avocado.glb ├── Chill1.mp3 ├── Default Bot (2).vrm ├── Default Bot (6).vrm ├── Neon1280.mp4 ├── Neon1920.mp4 ├── Steps.mp4 ├── audio.svg ├── avatar.svg ├── backpack_v1.glb ├── cancel.svg ├── cardback.jpg ├── cardback.png ├── cardback.svg ├── cards-placeholder.png ├── cards-placeholder.svg ├── cards.png ├── cards.svg ├── chain-mail.svg ├── chest.svg ├── chevron-down.svg ├── chevron-left.svg ├── chevron-up.svg ├── citadel.png ├── curve.svg ├── defaulthomespace.svg ├── disW.svg ├── discord.svg ├── discordbothero.gif ├── discordlogo.svg ├── dots.svg ├── error.svg ├── ethereum.png ├── ethereum.svg ├── eths.png ├── expand.svg ├── favicon.ico ├── file.svg ├── fonts │ ├── Futura Std Bold Oblique.otf │ ├── Futura Std Heavy.otf │ ├── FuturaLT-Book.ttf │ ├── FuturaLT-CondensedLight.ttf │ ├── FuturaLT.woff2 │ ├── GeosansLight-Oblique.ttf │ ├── GeosansLight.ttf │ ├── Gill Sans Condensed Bold.ttf │ ├── Gill Sans.otf │ ├── MS Gothic.ttf │ ├── PressStart2P-Regular.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-Regular.ttf │ └── SanvitoPro-LtCapt.otf ├── fox.svg ├── geometry.js ├── geometry.wasm ├── gif.svg ├── github.svg ├── gondola.png ├── gondola2.png ├── grid.png ├── heart_empty.svg ├── heart_full.svg ├── help.svg ├── hermes_var3.glb ├── hero.gif ├── house.svg ├── html.svg ├── icon-ethereum.svg ├── icon-gif.svg ├── icon-glb.svg ├── icon-jpg.svg ├── icon-vrm.svg ├── icon-webaverse.svg ├── icons │ ├── plus.svg │ └── stone-crafting.svg ├── image.svg ├── info.svg ├── landingImage2.png ├── landingImage3.png ├── landingImage4.png ├── lock.svg ├── locked-box.svg ├── maximize.svg ├── mellow.jpg ├── mint.svg ├── minting.png ├── noun_Boots_937032.svg ├── noun_Helmet_937034.svg ├── noun_Pet_1307711.svg ├── noun_Seat_2522171.svg ├── noun_body armor_937041.svg ├── noun_glove_937033.svg ├── pencil.svg ├── polygon.png ├── preview.png ├── rabbit.svg ├── rainbow-dash.gif ├── refresh.svg ├── repo.svg ├── road.svg ├── scooter.svg ├── search.svg ├── secret.svg ├── shebang.gif ├── sidechain.svg ├── silk.svg ├── silks.png ├── sofa.svg ├── soundwaves54.jpg ├── squiggle.svg ├── storage.svg ├── sword.svg ├── threeeMain.png ├── trade.svg ├── twitter.svg ├── upload.svg ├── vercel.svg ├── video.svg ├── wallet.svg ├── warning.svg └── webaverse.png ├── styles ├── Activity.css ├── Card.css ├── CardColumn.css ├── CardDetails.css ├── CardGrid.css ├── CardRowHeader.module.css ├── CardSvg.css ├── Discordbot.module.css ├── Footer.css ├── Hiring.css ├── Home.module.css ├── IFrame.css ├── LandCard.css ├── LandCardGrid.css ├── Mint.css ├── Navbar.css ├── Profile.css ├── ProgressBar.css └── globals.css └── webaverse ├── alea.js ├── app-object.js ├── blockchain.js ├── build.js ├── color-scheme.js ├── constants.js ├── jszip-utils.js ├── jszip.js ├── procgen.js ├── storage.js ├── three.module.js ├── util.js ├── wavesurfer.js └── wbn.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaverse/dashboard/69af182d32c55f5399dc135fb3265e5f4f81ae39/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["next/babel"], 3 | "ignore": [ 4 | "node_modules", 5 | "libs", 6 | "functions", 7 | "webaverse", 8 | "sidechain" 9 | ] 10 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | dist 4 | build 5 | 6 | .vercel 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webaverse.com 2 | 3 |
Web dashboard for minting and interacting with metaverse NFTs
4 | 5 | 16 | 17 | ## Examples 18 | 19 | 20 |