Ejemplo n.º 1
0
        /// <summary>
        /// PLEASE NOTE! wallet account balances dont work as you would expect! => https://github.com/PIVX-Project/PIVX/wiki/Accounts-Explained
        /// </summary>
        public static async Task <ParsedWalletResponse <decimal?> > GetBalanceAsync(this WalletClient client,
                                                                                    string walletAccount    = null,
                                                                                    int miniumConfirmations = 1,
                                                                                    bool includeWatchonly   = false)
        {
            WalletResponse response = null;

            if (walletAccount != null)
            {
                response = await client.MakeRequestAsync("getbalance", walletAccount, miniumConfirmations, includeWatchonly);
            }
            else
            {
                response = await client.MakeRequestAsync("getbalance");
            }

            if (response.Error == null)
            {
                decimal?amount = null;
                //parsing the string fails because , or .
                var culture = System.Globalization.CultureInfo.InvariantCulture;
                var style   = System.Globalization.NumberStyles.Any;

                if (decimal.TryParse(response.Result, style, culture, out decimal d))
                {
                    amount = d;
                }
                return(ParsedWalletResponse <decimal?> .CreateContent(d));
            }
            else
            {
                return(ParsedWalletResponse <decimal?> .CreateError(response.Error));
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Returns an object containing various wallet state info.
        /// </summary>
        /// <returns>Wallet response wrapper; Success: WalletInfo object, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <WalletInfo?> > GetWalletInfoAsync(this WalletClient client)
        {
            //make internal request to the wallet implementation
            var response = await client.MakeRequestAsync("getwalletinfo");

            if (response.Error == null)
            {
                //try deserialize walletinfo
                WalletInfo walletInfo = default(WalletInfo);

                try
                {
                    walletInfo = JsonConvert.DeserializeObject <WalletInfo>(response.Result);
                }
                catch (Exception ex)
                {
                    throw ex;
                }

                return(ParsedWalletResponse <WalletInfo?> .CreateContent(walletInfo));
            }
            else
            {
                return(ParsedWalletResponse <WalletInfo?> .CreateError(response.Error));
            }
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Get detailed information about in-wallet transaction <txid>.
        /// </summary>
        /// <param name="txid">Transaction id</param>
        /// <returns>Wallet response wrapper; Success: Transaction info object, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <BlockchainTX> > GetTransactionAsync(this WalletClient client,
                                                                                            string txid,
                                                                                            bool includeWatchonly = false)
        {
            //make internal request to the wallet implementation
            var response = await client.MakeRequestAsync("gettransaction", txid, includeWatchonly);

            if (response.Error == null)
            {
                BlockchainTX transactionInfo = default(BlockchainTX);

                try
                {
                    transactionInfo = JsonConvert.DeserializeObject <BlockchainTX>(response.Result);
                }
                catch (Exception ex)
                {
                    throw ex;
                }

                return(ParsedWalletResponse <BlockchainTX> .CreateContent(transactionInfo));
            }
            else
            {
                return(ParsedWalletResponse <BlockchainTX> .CreateError(response.Error));
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Returns Object that has account names as keys, account balances as values.
        /// </summary>
        /// <param name="miniumConfirmations"></param>
        /// <returns>Wallet response wrapper; Success: KeyValuePair array of the account balances, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <KeyValuePair <string, decimal>[]> > ListAccountsAsync(this WalletClient client,
                                                                                                              int miniumConfirmations = 1,
                                                                                                              bool includeWatchonly   = false)
        {
            //make internal request to the wallet implementation
            var response = await client.MakeRequestAsync("listaccounts");

            if (response.Error == null)
            {
                //convert the response to KeyValuePair
                List <KeyValuePair <string, decimal> > list = new List <KeyValuePair <string, decimal> >();

                try
                {
                    foreach (var item in JObject.Parse(response.Result))
                    {
                        list.Add(new KeyValuePair <string, decimal>(item.Key, (decimal)item.Value));
                    }
                }
                catch (Exception ex)
                {
                    throw ex;
                }

                return(ParsedWalletResponse <KeyValuePair <string, decimal>[]> .CreateContent(list.ToArray()));
            }
            else
            {
                return(ParsedWalletResponse <KeyValuePair <string, decimal>[]> .CreateError(response.Error));
            }
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Returns up to [count] most recent transactions skipping the first [from] transactions for account [account].
        /// If [account] not provided it'll return recent transactions from all accounts.
        /// </summary>
        /// <param name="walletAccount">List from this wallet account</param>
        /// <param name="count">How many transactions should be listed</param>
        /// <param name="from">Start index for the listing</param>
        /// <returns>Wallet response wrapper; Success: Json array of the transactions, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <JArray> > ListTransactionsAsync(this WalletClient client,
                                                                                        string walletAccount  = null,
                                                                                        int count             = 10,
                                                                                        int from              = 0,
                                                                                        bool includeWatchonly = false)
        {
            WalletResponse response = null;

            //this has to be checked for null because if the walletAccount is null in the request object, this will be invalid request
            if (walletAccount != null)
            {
                //make internal request to the wallet implementation
                response = await client.MakeRequestAsync("listtransactions",
                                                         walletAccount,
                                                         count,
                                                         from,
                                                         includeWatchonly);
            }
            else
            {
                //not defining wallet account in the request is fine, but it cannot be defined as null
                //make internal request to the wallet implementation
                response = await client.MakeRequestAsync("listtransactions");
            }

            if (response.Error == null)
            {
                try
                {
                    var jsonArray = JArray.Parse(response.Result);
                    return(ParsedWalletResponse <JArray> .CreateContent(jsonArray));
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }
            else
            {
                return(ParsedWalletResponse <JArray> .CreateError(response.Error));
            }
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Returns a new CORN address for receiving payments.
        /// If [account] is specified payments received with the address will be credited to [account].
        /// </summary>
        /// <param name="walletAccount">Wallet account name for the new address</param>
        /// <returns>Wallet response wrapper; Success: wallet address, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <string> > GetNewAddressAsync(this WalletClient client,
                                                                                     string walletAccount)
        {
            var response = await client.MakeRequestAsync("getnewaddress", walletAccount);

            if (response.Error == null)
            {
                return(ParsedWalletResponse <string> .CreateContent(response.Result));
            }
            else
            {
                return(ParsedWalletResponse <string> .CreateError(response.Error));
            }
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Send an amount to a given address.
        /// amount is a real and is rounded to 8 decimal places. Returns the transaction ID <txid> if successful.
        /// </summary>
        /// <param name="toAddress">Target address</param>
        /// <param name="amount">Send amount</param>
        /// <param name="comment">Optional comment tied to the transaction</param>
        /// <param name="commentTo">Optional comment tied to the transaction</param>
        /// <returns>Wallet response wrapper; Success: transaction id, Error: WalletError object</returns>
        public static async Task <ParsedWalletResponse <string> > SendToAddressAsync(this WalletClient client,
                                                                                     string toAddress,
                                                                                     decimal amount,
                                                                                     string comment   = null,
                                                                                     string commentTo = null)
        {
            //make internal request to the wallet implementation
            var response = await client.MakeRequestAsync("sendtoaddress",
                                                         toAddress,
                                                         amount,
                                                         comment,
                                                         commentTo);

            if (response.Error == null)
            {
                return(ParsedWalletResponse <string> .CreateContent(response.Result));
            }
            else
            {
                return(ParsedWalletResponse <string> .CreateError(response.Error));
            }
        }