Ijraset Journal For Research in Applied Science and Engineering Technology
Authors: Omkar Dinesh Jadhav, Dr. Harshali Patil
DOI Link: https://doi.org/10.22214/ijraset.2022.44345
Certificate: View Certificate
As our world moves forward we have gone from reading books and papers to scrolling through endless instagram feeds. And the metaverse is exactly what the next-gen social media would look like. Anything that we do in the real world e.g. Hanging out with friends, visiting the art gallery, watching a soccer game can now be done in a living, shared, everlasting virtual world. The impact of artificial intelligence and blockchain technology on the metaverse is discussed in this research paper.
I. INTRODUCTION
The name "metaverse" is made up of two words: the Greek term Meta and the English word "universe." Meta is a word for which we must credit the ancient Greeks, among others. Meta signified "beyond" or "beyond" to them. The concept of the metaverse was first introduced in Neal Stephenson's science-fiction novel Snow Crash. However, the concept of a metaverse, which was formerly thought to be fiction, now appears to be a possibility in the future. Users will be able to collaborate, meet, play games, and socialize in these 3D environments thanks to the metaverse. The metaverse is dominated by augmented reality, with each user controlling a customized version of themselves in this virtual world known as an avatar. For example, you could hold a mixed reality meeting in your virtual office using an Oculus VR headset, finish your work, and then unwind in a blockchain- based game or concert. Though the metaverse isn't fully realized yet, games like Roblox, Fortnite, and Gather.town bring various aspects of our daily lives into the digital realm.
A. Why does the Metaverse matter so much?
Why would people create so much fuss about a video game like reality ? One big factor to fuel this thinking might be the pandemic we just witnessed. The pandemic forced us to unlearn and relearn how to live, it made us find alternate if not new ways forms of real-time interaction.
Metaverse answers the biggest question raised post-pandemic. One might ask what that is ? - “Interaction”. The one thing we missed most during the pandemic was interaction, we missed interaction with our friends, family and colleagues. The metaverse makes it possible to communicate with everyone on the planet without having to be physically there. The metaverse will allow you to live out your fantasies. You could be slaying enemies in multiplayer combat, or playing a quiet game of chess on the streets of Mumbai, or relaxing on the beach in Goa, all with incredible realism, but with the complete reassurance that you are completely safe at home. 3. Is Metaverse the next-generation social media platform? Version of the internet.
II. WEB 3.0 – METAVERSE THE NEXT-GEN SOCIAL MEDIA
The metaverse would be the next step in social media, and it would be light years ahead of where it is now. In the current era, we have images as our display pictures through which people identify us online, but in the metaverse, you will have an avatar, a fully three-dimensional living depiction of you but you in the way that you want to be did you ever wish you were three inches taller now you can be did you ever wish you had a bigger forehead now you can be you can be any gender you want, any race you want, you can be any age you want.
III. THE IMMERSIVE EXPERIENCE
A. Use Cases of AR/VR Technologies for the Metaverse
IV. TRANSACTIONS IN THE METAVERSE
So, if you bought a bunch of LAND in Decentraland, the Metaverse would give you proof of confirmation in the form of NFTs, which the blockchain would guarantee.
A. Creating a simple Metaverse NFT
Code:
//SPDX-License-Identifier: AFL-1.1 pragma solidity ^0.8.13;
import "hardhat/console.sol";
//OpenZeppelin - Is a library to create ERC721 tokens. Import 'https://github.com/OpenZeppelin/openzeppelin-
contracts/blob/master/contracts/token/ERC721/ERC721.sol';
//We declare our smart contract, which inherits from ERC721
// smart contracts are small program/code snippets used to represent a virtual land.
contract MetaverseNFT is ERC721
{
uint public nextTokenId;
//We call the constructor of ERC721, with the name and symbol of our token. constructor() ERC721('Land', 'LAND') {}
//Then we override the inherited _baseURI() function
//Which returns the base URL of the metadata server.
// Metadata Server is an off-chain server that returns a JSON object with the attribute of each virtual land, like its position on the map, and the URL to an image representing the land etc
function _baseURI() internal pure override returns(string memory)
{
return 'https://https/path/to/metadata.server';
}
//Then there is the mint function to create new virtual lands
function mint() external payable
{
//Check if enough ether wassent. require(msg.value == 1ether);
//Then check that the maximum number of lands are reached yet. require(nextTokenId <10000);
//the inherited _safeMint() function of ERC721 is used to create the new land.
_safeMint(msg.sender, nextTokenId);
//And finally we increment the tokenId, for the next time the mint() function is called
nextTokenId++; console.log(nextTokenId);
}
}
V. HOW A.I & WEB 3.O WILL UNLOCK THE METAVERSE
Learning data is one of the most important aspects of Machine Learning and Artificial Intelligence. When a model is fed historical data, it learns the previous model's outputs and can recommend new ones based on them. The more data and feedback from humans that is fed into the model, the better the model's outputs become. This is based on the belief that, in the future, AI will be able to develop, perform, and produce correct outputs in the same way that humans do.
Creators will be able to create and manage their own content with Web 3.0, rather than relying on third-party software and hardware. Web 3.0 will streamline not just your tasks, but also your social network. Mediums like Twitter, YouTube, and Twitch should gain clout, bringing more opportunities to offer content to the table.
For example, Community exists only to strengthen the interactions between companies and their fans when it comes to connectivity. It's also not the only site that supports the creator economy. Then there are big companies like Nvidia, Microsoft, and Meta (formerly Facebook), which are putting billion-dollar investments into the metaverse, which creators are happy to embrace. According to Fortune's metaverse statistics, Nvidia's Omniverse has already surpassed 50,000 downloads, while Fortnite's virtual concerts attracted 10.7 million players.
VI. SURVEY ANALYSIS
Let's take a closer look at the results of the survey to see what people really think about the Metaverse.
VII. RESEARCH FINDINGS
People are willing to accept Metaverse as an option, but they are not interested in allowing Metaverse to take control of the real physical world, according to our survey. All people want right now is a new way to do things they already do on a daily basis that will spice up their lives or make them more convenient and enjoyable. The Metaverse would be an excellent entertainment platform, allowing for a more immersive and realistic experience.
VIII. LIMITATIONS AND FUTUREWORK
Metaverse is a technology that isn’t 100% here yet. This research paper is solely based on the facts that are available now and as technology keeps evolving each day may be more and more people would start accepting the metaverse. The future work would much likely be a more focused one for the creators and the Gen Z who would more likely be the actual consumers of the metaverse.
To summarize, the Metaverse generates a large amount of secondary and tertiary data as a result of the actions of many users. This data has a unique identification tag and is used as traceable data in the blockchain-based Metaverse. In the Metaverse, such data is becoming a valuable resource for artificial intelligence. Metaverse employs artificial intelligence and blockchain technology to build a digital virtual environment in which you can safely and freely engage in social and economic activities that go beyond the boundaries of the actual world, and the adoption of these cutting-edge technologies will be expedited. In the ever expanding realm of the Metaverse, artificial intelligence and blockchain technology are expected to play a critical role.
[1] SDS 537: Data Science Trends for 2022,https://www.superdatascience.com/podcast/data-science-trends-for-2022/,2022 [2] Metacyber :https://www.metacyberland.io/2022/02/17/what-is-metaverse,2022 [3] Rabindra Ratan and Dar Meshi :-https://technical.ly/2022/01/14/web3-metaverse-crypto-blockchain-money-explainer [4] Serge Baloyan :-https://hackernoon.com/understanding-metaverse-a-basic-explanation [5] Virtway Events :-https://www.virtwayevents.com/blog/metaverse-glossary/ [6] Blockchain for the Metaverse: A Review :-https://arxiv.org/abs/2203.09738 [7] Fusing Blockchain and AI with Metaverse:- https://arxiv.org/abs/2201.03201 [8] Metaverse for social good: A university campus prototype:- https://dl.acm.org/doi/abs/10.1145/3474085.3479238
Copyright © 2022 Omkar Dinesh Jadhav, Dr. Harshali Patil. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
Paper Id : IJRASET44345
Publish Date : 2022-06-15
ISSN : 2321-9653
Publisher Name : IJRASET
DOI Link : Click Here