public static string GetAllowance(string ethAddress) { return(GraphQuery.GetEndPointData(Enjin.AllowanceURL + ethAddress + "/allowance")); }
/// <summary> /// Gets the min melt value when creating cryptoItems /// </summary> /// <param name="reserve">Number of cryptoItems that will be prepaid</param> /// <returns></returns> public static string GetMinMeltValue(int reserve) { return(GraphQuery.GetEndPointData(Enjin.MeltValueURL + reserve.ToString())); }