public string GetRawChangeAddress() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getrawchangeaddress"); return(resp); }
public string SetTxFee(decimal amount) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("settxfee", amount); return(resp); }
public string GetBlockCount() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getblockcount"); return(resp); }
public string SendMany(string fromaccount, JObject addresses) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("sendmany", fromaccount, addresses); return(resp); }
public string GetBlock(string blockhash) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getblock", blockhash); return(resp); }
public string ListUnspent(JArray address) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listunspent", 1, 999999, address); return(resp); }
public string Move(string fromaccount, string toaccount, decimal amount) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("move", fromaccount, toaccount, amount); return(resp); }
public string GetWalletInfo() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getwalletinfo"); return(resp); }
public string ImportAddress(string address) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("importaddress ", address); return(resp); }
public string Uptime() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("uptime"); return(resp); }
public string GetUnconfirmedBalance() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getunconfirmedbalance"); return(resp); }
public string GetTransaction(string txid) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("gettransaction", txid); return(resp); }
public string GetReceivedByAddress(string florincoinaddress) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getreceivedbyaddress", florincoinaddress); return(resp); }
public string GetReceivedByAccount(string account) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getreceivedbyaccount", account); return(resp); }
public string ListSinceBlock() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listsinceblock"); return(resp); }
public string ImportPrivKey(string florincoinprivkey) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("importprivkey ", florincoinprivkey); return(resp); }
public string ListTransactions() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listtransactions"); return(resp); }
public string ImportWallet(string filename) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("importwallet", filename); return(resp); }
public string LockUnspent(bool unlock, JArray transactions) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("lockunspent", unlock, transactions); return(resp); }
public string KeypoolRefill() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("keypoolrefill"); return(resp); }
public string SendFrom(string fromaccount, string toflorincoinaddress, decimal amount) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("sendfrom", fromaccount, toflorincoinaddress, amount); return(resp); }
public string ListAccounts() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listaccounts"); return(resp); }
//public string SendToAddress(string florincoinaddress, decimal amount, string comment, string commentto, string txcomment) //{ // FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); // string resp = conn.MakeRequest("sendtoaddress", florincoinaddress, amount, comment, commentto, txcomment); // return resp; //} public string SendToAddress(string address, decimal amount, string comment, string comment_to, bool subtractfeefromamount, bool replaceable, int conf_target, string estimate_mode, string floData) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("sendtoaddress", address, amount, comment, comment_to, subtractfeefromamount, replaceable, conf_target, estimate_mode, floData); return(resp); }
public string ListAddressGroupings() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listaddressgroupings"); return(resp); }
public string SetAccount(string florincoinaddress, string account) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("setaccount", florincoinaddress, account); return(resp); }
public string ListLockUnspent() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listlockunspent"); return(resp); }
public string SignMessage(string florincoinaddress, string message) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("signmessage", florincoinaddress, message); return(resp); }
public string ListReceivedByAddress() { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("listreceivedbyaddress"); return(resp); }
public string GetBlockHash(int height) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getblockhash", height); return(resp); }
public string GetNewAddress(string account) { FloRPC conn = new FloRPC(username, password, wallet_url, wallet_port); string resp = conn.MakeRequest("getnewaddress", account); return(resp); }