-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from envadiv/anil/fix_docs
Update Passage3D intro
- Loading branch information
Showing
1 changed file
with
31 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,34 @@ | ||
# Passage3D | ||
|
||
## Getting Started | ||
This document provides instructions for running a single node network on your local machine and then | ||
submitting your first few transactions to that network using the command line. | ||
|
||
## Prerequisites | ||
|
||
### Git | ||
|
||
For more information, see [Git](https://git-scm.com). | ||
|
||
### Make | ||
|
||
For more information, see [GNU Make](https://www.gnu.org/software/make/). | ||
|
||
### Go | ||
|
||
For more information, see [Go](https://golang.org/). | ||
|
||
### Hardware | ||
|
||
We recommend the following hardware specifications: | ||
|
||
- 8GB RAM | ||
- 4vCPUs | ||
- 200GB Disk space | ||
|
||
### Software | ||
|
||
We recommend using Ubuntu 18.04 or 20.04. | ||
|
||
The following instructions will install the necessary prerequisites on a Linux machine. | ||
|
||
Install tools: | ||
|
||
```bash | ||
sudo apt install git build-essential wget jq -y | ||
``` | ||
|
||
Download Go: | ||
|
||
```bash | ||
wget https://dl.google.com/go/go1.17.2.linux-amd64.tar.gz | ||
``` | ||
|
||
Unpack Go download: | ||
|
||
```bash | ||
sudo tar -C /usr/local -xzf go1.17.2.linux-amd64.tar.gz | ||
``` | ||
|
||
Set up environment: | ||
|
||
```bash | ||
echo ' | ||
export GOPATH=$HOME/go | ||
export GOROOT=/usr/local/go | ||
export GOBIN=$GOPATH/bin | ||
export PATH=$PATH:/usr/local/go/bin:$GOBIN' >> ~/.profile | ||
``` | ||
|
||
Source profile file: | ||
|
||
```bash | ||
. ~/.profile | ||
``` | ||
|
||
## Installation | ||
|
||
### Install `Passage` | ||
|
||
```shell | ||
git clone https://github.com/envadiv/Passage3D | ||
cd Passage3D | ||
git checkout v1.0.0-rc1 | ||
make install | ||
|
||
# verify the installation | ||
passage version | ||
``` | ||
|
||
### Create Accounts | ||
```shell | ||
passage keys add test | ||
``` | ||
Passage is the first **metaverse** experience on the Cosmos ecosystem! | ||
Passage brings tools to make accessible, tailored virtual worlds which can | ||
be streamed through a browser without hardware requirements. Our Mission is to Empower World | ||
Builders to Drive Interactions, Content and AudienceS to Cosmos. Artists, projects, influencers, | ||
and on-chain games will bring ordinary and 3D-asset NFTs that can be used, bought, and sold on | ||
the Passage Marketplace | ||
|
||
## Core Features | ||
- **The first “metaverse” experience on the Cosmos Ecosystem.** | ||
- Passage provides an accessible and easy to use way for individuals, | ||
projects, and organisations to create immersive 3D-worlds and connect | ||
them with other worlds in the ecosystem. | ||
- These worlds are accessible through a browser on almost any device. A | ||
local client will also be offered so that people are able to use their own | ||
hardware to enter the world without the streaming service. | ||
- Passage utilizes the unstoppable cloud computing network, Akash. | ||
- The Ecosystem where the Multiplayer RPG game The Strange Clan is | ||
being built! | ||
- **The first NFT marketplace on the Cosmos ecosystem that uses the Cosmos | ||
native ATOM as one of the main mediums of exchange.** | ||
- Marketplace launch on Juno early Q1-2022. | ||
- Launches with the 5000 minted Strange Clan NFTs, followed by | ||
another 5000 NFT-characters in Q1-2022 as well as game related NFTs. | ||
- Several partners are lined up to bolster available NFT content. | ||
- The Marketplace will host both game content and NFTs with viewable | ||
3D-assets that can also be used in worldbuilding. | ||
- The Marketplace will enable open NFT-creation similarly to Ethereum’s | ||
OpenSea during 2022. | ||
|
||
## Run a node | ||
For operating a validator/fullnode see [How to run a node](https://github.com/envadiv/mainnet#join-as-a-validator). |