Ejemplo n.º 1
0
 public string GetUserWalletsByKey(long userID) =>
 JSONService.SerializeToJson(WalletDB.FetchUserWallets(userID));
        public string GetUserByID(string uid)
        {
            User user = UserDB.FetchUserByID(uid);

            return(JSONService.SerializeToJson(user));
        }
Ejemplo n.º 3
0
        public string GetWalletByKey(string address)
        {
            Wallet wallet = WalletDB.FetchWalletByKey(address);

            return(JSONService.SerializeToJson(wallet));
        }