Skip to content

trilitech/tezos-unity-sdk-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Tezos SDK For Unity - Examples

This Unity Project demonstrates key features of the "Tezos SDK For Unity". It contains one isolated Unity Scene for each feature.

Getting Started

  1. Download this repo (*.zip or *.git)
  2. Download the Unity Editor
  3. Open this repo in the Unity Editor
  4. Enjoy!

Documentation

Configuration

Videos

This Unity Project is featured in the following videos.

Tezos SDK For Unity - Authentication Tezos SDK For Unity - NFTS

Screenshots

Example01_Authentication Example02_NFTTokenGating

Features

This project showcases several key features and use-cases for the "Tezos SDK For Unity". Here are highlights.

Authentication

User connects to the blockchain with a Tezos-compatible mobile wallet.

To see this feature in action, play the Example01_Authentication Scene. The Example01_Authentication.cs class provides a full demonstration. Here is partial snippet.

// Store reference for convenience
ITezosAPI tezos = TezosSingleton.Instance;

// Determines if the user is authenticated 
if (!tezos.HasActiveWalletAddress())
{
    // Makes a call to connect with a wallet
    tezos.ConnectWallet();
}

NFTs

User checks ownership of a given NFT. In production, this may unlock related game features.

To see this feature in action, play the Example02_NFTTokenGating Scene. The Example02_NFTTokenGating.cs class provides a full demonstration. Here is partial snippet.

// Setup
string demoNFTAddress = "KT1BRADdqGk2eLmMqvyWzqVmPQ1RCBCbW5dY";
int demoTokenId = 1;
            
// Store reference for convenience
ITezosAPI tezos = TezosSingleton.Instance;
        
// Returns the address of the current active wallet
string activeWalletAddress = tezos.GetActiveWalletAddress();

// Determines if the user account owns a given Nft
bool hasTheNft = tezos.IsOwnerOfToken(
    activeWalletAddress, 
    demoNFTAddress, 
    demoTokenId);

if (hasTheNft)
{
    // Unlock special game features
}