Wallet Class
The Wallet class represents a user's wallet retrieved from the Xerial services.
Properties
Methods
Example
using System;
namespace Xerial
{
[Serializable]
public class Wallet
{
public string user;
public string address;
public string smartAccount;
public bool custodial;
public int id;
}
}Last updated