Skip to content

Commit e88eb14

Browse files
committed
Fix immediate broken link errors.
There are still more left...
1 parent 64f17d8 commit e88eb14

18 files changed

+25
-26
lines changed

website/docs/art/character-workflow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ We will need to install the correct version of Unity for uniVRM - this can be ch
8787

8888
## Initial Concept
8989

90-
Character concepts are based on their AI gen. backstory and the existing world lore - we run Pinterest passes and concept ideas based on those in the [Lore](../webaverse/lore).
90+
Character concepts are based on their AI gen. backstory and the existing world lore - we run Pinterest passes and concept ideas based on those in the Lore.
9191

9292
Concepts should follow the Style Guide.
9393

website/docs/create/bake-physics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Install xrpk via npm by running `npm install -g xrpk` in your computer's termina
3636

3737
#### 5. Create a manifest.json
3838

39-
Create a manifest.json in that folder with a `physics_url` field pointing to that `.bin` file. [See the manifest API docs for more info.](https://docs.webaverse.com/docs/create/manifest-api#physics_url)
39+
Create a manifest.json in that folder with a `physics_url` field pointing to that `.bin` file. [See the manifest API docs for more info.](../developer/manifest-api#physics_url)
4040

4141
#### 6. Build the xrpk
4242

website/docs/create/hoverboards.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Hoverboards are rideable NFTs you can use to speed around the map. Surf the inte
1010

1111
---
1212

13-
All you need is a glTF file to stand on, and a manifest.json in order to build the [XRPK](https://docs.webaverse.com/docs/create/creating-an-xrpk). Below is an example manifest.json for the hoverboard.
13+
All you need is a glTF file to stand on, and a manifest.json in order to build the [XRPK](../developer/creating-an-xrpk). Below is an example manifest.json for the hoverboard.
1414

1515
```
1616
{
@@ -41,4 +41,4 @@ All you need is a glTF file to stand on, and a manifest.json in order to build t
4141
```
4242

4343

44-
There's no drag and drop web UI for minting hoverboards yet so you'll have to build it yourself. The instructions for that are here: https://docs.webaverse.com/docs/create/creating-an-xrpk if you're comfortable with command line. If not, there's a web UI here: https://app.webaverse.com/build.html.
44+
There's no drag and drop web UI for minting hoverboards yet so you'll have to build it yourself. The instructions for that are [here](../developer/creating-an-xrpk) if you're comfortable with command line. If not, there's a web UI here: https://app.webaverse.com/build.html.

website/docs/create/mint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Drag and drop a file into a server that contains the [Discord bot](https://webav
2626

2727
![Minting an image NFT in Discord](/img/mint.jpg)
2828

29-
More: [How To Mint NFTs in Discord](/docs/create/mint-discord)
29+
More: [How To Mint NFTs in Discord](./mint-discord)
3030

3131
### Twitter
3232

website/docs/create/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: overview
33
title: Overview
44
---
55

6-
Webaverse loads multiple XR apps simulatenously in a shared space. These applications (apps) are called XRPackages ([XRPKs](/docs/developer/xrpackage-overview)).
6+
Webaverse loads multiple XR apps simulatenously in a shared space. These applications (apps) are called XRPackages ([XRPKs](../developer/xrpackage-overview)).
77

88
## Supported Asset Types
99

website/docs/create/vroid-wearables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can edit the clothing files in an image editor then import it back to VRoid
3030
![](/img/import_shirt.jpg)
3131

3232

33-
When finished, go to the export tab on the top right and hit export. See the [export avatar from VRoid Studio](/docs/create/import-vroid#export-your-vroid-studio-avatar-as-a-vrm-file) guide for more details.
33+
When finished, go to the export tab on the top right and hit export. See the [export avatar from VRoid Studio](./import-vroid#export-your-vroid-studio-avatar-as-a-vrm-file) guide for more details.
3434

3535
Done!
3636

website/docs/developer/architecture.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This is what happens when a user uploads a file to a Webaverse interface be mint
2929
![](/img/minting-flow.jpg)
3030
[Link to vertical view](/img/minting-flow2.jpg)
3131

32-
After minting, the preview server captures a preview of the NFT and generates a trading card format. To learn more see [preview flow](/docs/developer/preview-flow).
32+
After minting, the preview server captures a preview of the NFT and generates a trading card format. To learn more see [preview flow](./preview-flow).
3333

3434
---
3535

website/docs/developer/loading-flow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Loading Flow
55

66
![](/img/loading-flow.jpg)
77

8-
This flow describes how the engine accesses and loads tokens. The loading and [preview flow](/docs/developer/loading-flow) are both quite similar to each other, main difference being one loads in client for users while the other loads in a server for capturing preview media.
8+
This flow describes how the engine accesses and loads tokens. The loading and [preview flow](./preview-flow) are both quite similar to each other, main difference being one loads in client for users while the other loads in a server for capturing preview media.
99

1010
1. Starts with the user-agent (Webaverse website or NFT Discord bot) that wants token data.
1111
2. Client request a token json which intiates sidechain sending token events to the Redis server.

website/docs/developer/minting-flow.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ title: Minting Flow
88
This is what happens when a user uploads a file to a Webaverse interface be minted as a NFT.
99

1010

11-
1. User logs into website through Metamask, Discord, or Email or joins a Discord server with the [NFT bot](/docs/webaverse/discord-bot).
11+
1. User logs into website through Metamask, Discord, or Email or joins a Discord server with the [NFT bot](../webaverse/discord-bot).
1212
2. Uploads files to minting interface (jpg, png, gif, mp3, mp4, webm, glb, VRM, WBN)
1313
3. The content uploads to IPFS. Webaverse runs its own pinning server.
1414

15-
After minting, the preview server captures a preview of the NFT and generates a trading card format. To learn more see [preview flow](/docs/developer/preview-flow).
15+
After minting, the preview server captures a preview of the NFT and generates a trading card format. To learn more see [preview flow](./preview-flow).
1616

1717
---
1818

website/docs/engineering/quick-install-basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ eslint --init
9393

9494
### Setup Cutom Host
9595

96-
While all of the Webaverse applications can be accessed locally with the default `localhost` hostname or IP `127.0.0.1`, several of them require being served from https://, which means they must have a certificate to work properly. And a certificate will be associated with a particular hostname, which you can assign locally by altering your hosts file. Please follow this [tutorial](../setup-custom-host) to setup a custom host.
96+
While all of the Webaverse applications can be accessed locally with the default `localhost` hostname or IP `127.0.0.1`, several of them require being served from https://, which means they must have a certificate to work properly. And a certificate will be associated with a particular hostname, which you can assign locally by altering your hosts file. Please follow this [tutorial](./setup-custom-host) to setup a custom host.

website/docs/engineering/webaverse-overview.md

-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,5 @@ Code for all Webaverse systems can be found openly on GitHub
6262
| **Preview Backend** | https://github.com/webaverse/preview-backend | [Quick Start](./preview/preview-backend-quickstart) |
6363
| **Worlds** | https://github.com/webaverse/worlds-backend | [Quick Start](./worlds/worlds-backend-quickstart) |
6464
| **Blockchain** | https://github.com/webaverse/blockchain-data | [Smart Contracts Integration](./blockchain/smart-contracts-integration) |
65-
| **Redis** | https://github.com/webaverse/redis-server | [Quick Start](./redis/redis-server-quickstart) |
6665

6766
---

website/docs/market/matic-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In the `FROM` section, change from Ethereum to Matic token. Add however many you
3333

3434
## 4. Transfer NFT to Matic Network
3535

36-
At this point you are ready to transfer any NFT that you [mint](/docs/create/mint) to the polygon network. If you already minted something, head over to the asset's page directly or from your profile on the Webaverse [website](https://webaverse.com).
36+
At this point you are ready to transfer any NFT that you [mint](../create/mint) to the polygon network. If you already minted something, head over to the asset's page directly or from your profile on the Webaverse [website](https://webaverse.com).
3737

3838
Make sure your Metamask is set to Matic network, then:
3939
1. Open Metamask and click the network button

website/docs/market/nfts-guide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title: How To Buy And Sell NFTs
1010

1111
The [NFT Discord bot](https://webaverse.com/discordbot) generates an Ethereum address and storefront for every person in a server. Buying and selling NFTs on Discord happens on the Webaverse sidechain.
1212

13-
The sidechain is fast and has no transaction fees which make it great for real-time gaming. The trade-off is that there isn't any real world value flowing through the network. See the [Opensea](/docs/market/nfts-guide#opensea) documentation below for how to transfer your NFTs to open marketplaces.
13+
The sidechain is fast and has no transaction fees which make it great for real-time gaming. The trade-off is that there isn't any real world value flowing through the network. See the [Opensea](./nfts-guide#opensea) documentation below for how to transfer your NFTs to open marketplaces.
1414

1515

1616

@@ -77,5 +77,5 @@ In order to sell your [items](/webaverse/items) on [Opensea](https://opensea.io)
7777

7878
![](/img/xfer_chain.jpg)
7979

80-
4. You will have to pay the gas fee to transfer to Ethereum or Polygon. If you want to transfer to Polygon, switch Metamask network to Matic ([see guide](/docs/market/matic-guide)) before clicking Transfer.
80+
4. You will have to pay the gas fee to transfer to Ethereum or Polygon. If you want to transfer to Polygon, switch Metamask network to Matic ([see guide](./matic-guide)) before clicking Transfer.
8181

website/docs/webaverse/faq.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Yes! Through the WebXR API we are able to deliver a VR mode experience through w
3939

4040
### Do I need a crypto wallet to participate?
4141

42-
Nope! You will be automatically given an Ethereum address when joining a discord server with the [bot](/docs/webaverse/discord-bot) or signing into the website. Transactions are free on the sidechain. At any time you can setup a wallet and transfer NFTs and fungible tokens to it.
42+
Nope! You will be automatically given an Ethereum address when joining a discord server with the [bot](./discord-bot) or signing into the website. Transactions are free on the sidechain. At any time you can setup a wallet and transfer NFTs and fungible tokens to it.
4343

4444

4545
### What's different about Webaverse?

website/docs/webaverse/items.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can access all of the digital assets you own in Webaverse in your inventory
2929

3030
## Trading Cards
3131

32-
Every NFT minted on Webaverse gets a trading card format version of it generated from the [preview server](/docs/developer/architecture#preview-flow). Everything but the asset file itself is hosted on-chain. The asset file is hosted on IPFS.
32+
Every NFT minted on Webaverse gets a trading card format version of it generated from the [preview server](../developer/architecture#preview-flow). Everything but the asset file itself is hosted on-chain. The asset file is hosted on IPFS.
3333

3434
The purpose of the cards is first that it's fun but second that it actually serves a utility by combining all the useful information about the NFT onto 1 object that can be brought into digital and physical worlds.
3535

website/docs/webaverse/parcels.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: parcels
33
title: Parcels
44
---
55

6-
Parcels are pieces of land along The Street that can double as hyperlinks into other virtual worlds. Parcels are fundamentally [NFTs](./nfts), which means that each parcel is unique and tradeable on open marketplaces.
6+
Parcels are pieces of land along The Street that can double as hyperlinks into other virtual worlds. Parcels are fundamentally NFTs, which means that each parcel is unique and tradeable on open marketplaces.
77

88
![](/img/parcels.jpg)
99

website/docs/webaverse/silk.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ id: silk
33
title: SILK
44
---
55

6-
SILK is a token that is used in Webaverse primarily to mint [NFTs](./nfts). It's main purpose is to invite others into the network and prevent spam so together we can build a web of trust as the Webaverse scales.
6+
SILK is a token that is used in Webaverse primarily to mint NFTs. It's main purpose is to invite others into the network and prevent spam so together we can build a web of trust as the Webaverse scales.
77

8-
If you're a Discord server admin that wants to distribute SILK amongst your community to use the [NFT Discord Bot](https://webaverse.com/discordbot) then ping us on [Discord](https://discord.gg/3byWubumSa) or [email us](hello@webaverse.com).
8+
If you're a Discord server admin that wants to distribute SILK amongst your community to use the [NFT Discord Bot](https://webaverse.com/discordbot) then ping us on [Discord](https://discord.gg/3byWubumSa) or [email us](mailto:hello@webaverse.com).
99

1010
## FAQ
1111

@@ -25,7 +25,7 @@ SILK is an ERC-20 token based on the Ethereum [ERC-20](https://eips.ethereum.org
2525

2626
![Silk bots 2](/img/silkbots2.png)
2727

28-
SILK is currently invite only, meaning you need to either know somebody who has some or you can drop into the Webaverse [Discord](discord.gg/VyneJY7) server and ask. There is no exchange to buy SILK from yet. We are working on creative ways to obtain SILK through the bot and from the virtual world. Ideas include:
28+
SILK is currently invite only, meaning you need to either know somebody who has some or you can drop into the Webaverse [Discord](https://discord.gg/VyneJY7) server and ask. There is no exchange to buy SILK from yet. We are working on creative ways to obtain SILK through the bot and from the virtual world. Ideas include:
2929

3030
- Grants for the [creator program](https://utc9pqk8vl1.typeform.com/to/rZp09YYu)
3131
- Public project proposals posted on [Github](https://github.com/webaverse/street-assets/issues)
@@ -35,4 +35,4 @@ SILK is currently invite only, meaning you need to either know somebody who has
3535
- Reward for completing bounties
3636
- Trading NFTs for SILK
3737

38-
For more details check out the [silk guide](/docs/market/silk-guide) section.
38+
For more details check out the [silk guide](../market/silk-guide) section.

website/docs/webaverse/worlds.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you're interested in designing a world in Webaverse you came to the right spo
99

1010
## Manual
1111

12-
You can download the app and test your world locally using this [guide](/docs/create/scenes).
12+
You can download the app and test your world locally using this [guide](../create/scenes).
1313

1414
![](/img/desert_world.jpg)
1515

@@ -43,7 +43,7 @@ There's also an in-game builder you can use with `Z` `X` and `C` keys to switch
4343

4444
## Editaverse (Archived)
4545

46-
> Note: Unfortunately, Editaverse is no longer being maintained. If you're a developer interested in reviving these projects please [contact us](hello@webaverse.com). The code lives on in Github:
46+
> Note: Unfortunately, Editaverse is no longer being maintained. If you're a developer interested in reviving these projects please [contact us](mailto:hello@webaverse.com). The code lives on in Github:
4747
>
4848
> - https://github.com/webaverse/editaverse
4949
> - https://github.com/webaverse/editaverse-voxels
@@ -62,4 +62,4 @@ Editaverse consiststs of experimental Webaverse workflow integrations with open
6262

6363
---
6464

65-
If you have any questions or feedback, please reach out to us on [Discord](https://discord.gg/3byWubumSa) or [email](hello@webaverse.com).
65+
If you have any questions or feedback, please reach out to us on [Discord](https://discord.gg/3byWubumSa) or [email](mailto:hello@webaverse.com).

0 commit comments

Comments
 (0)