Connect with Unity SDK
Unity Managed Plugin Document
Setup:
API api_instance = new API("3739a640-422a-40d4-884b-3ee387ea9727");1. Login:
api_instance.LoginRequest(
"user@test.com", // user's email
"StrongPassword*123", // user's password
(API.LoginResponse response)=>{ // Custom function to consume response
if (response.token == null){
print(response.error);
}else{
print("Login Successfull");
}
}
)LoginResponse{
string token;
string error;
}2. Fetch NFT List for a collection:
3. Fetch NFT Details using Token Id:
4. Mint NFT:
5. Transfer NFT:
6. Burn NFT:
Last updated