Bitcoin Forum
May 21, 2024, 05:56:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: which wallet to use ? API .net  (Read 2543 times)
sbrzol (OP)
Hero Member
*****
Offline Offline

Activity: 569
Merit: 500


View Profile
February 10, 2015, 10:52:37 PM
 #1


Which wallet should I use ?

I want to send bitcoins form my .net (c#) app in a very simple mode, like


Authenticate ....
Wallet.Send(bitcoinaddress, nanocoins);

(in this wallet i will keep only some BTC)

I know that for example greenaddress, bitgo has API, but there is no .net wrapper for them

and I dont want to download the whole blockchain (BitcoinSharp)



Blazr
Hero Member
*****
Offline Offline

Activity: 882
Merit: 1005



View Profile
February 10, 2015, 11:25:37 PM
 #2

If you need an API, I would highly recommend Bitcoin Core.

You will need to download the entire blockchain, however Bitcoin Core has a very comprehensive and well documented API.

bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
February 11, 2015, 05:49:17 AM
 #3

Nicolas Dorier published a free ebook on interacting with bitcoin via C# however it's only part 1 out of 3 to be released

Thread: https://bitcointalk.org/index.php?topic=926087.0

Website: http://blockchainprogramming.azurewebsites.net/

PDF: https://aois.blob.core.windows.net/public/Blockchain%20Programming%20in%20CSharp.pdf


BlockTrail.com also has a pretty good API (https://www.blocktrail.com/api/docs) and there is an unoffical .NET SDK for it https://github.com/raymens/BlocktrailSdk

If you use the BlockTrail API to build your app they'll even send you a free t-shirt


{ BitSpill }
sbrzol (OP)
Hero Member
*****
Offline Offline

Activity: 569
Merit: 500


View Profile
February 11, 2015, 03:38:41 PM
Last edit: February 11, 2015, 05:08:23 PM by sbrzol
 #4

thx, but non of them is suitable for me

i am searching  a simple solution  like

Add Reference   BitcoinAPIXYZ

using BitcoinAPIXYZ;

var wallet = GetWallet(AuthenticateINFO);
wallet.SendCoins(address,nanocoins);

END

i do not need anything else

if there is no such simple solution then i can do it with this little simple code snippet

        var myIE = WatiN.Core.Browser.AttachTo<WatiN.Core.IE>(WatiN.Core.Find.ByUrl(new Regex("https://www.bitgo.com/send")));

            ie.TextField(WatiN.Core.Find.ById("")).Value = "";
            ie.TextField(WatiN.Core.Find.ById("Value = "";
            ie.Button(WatiN.Core.Find.ByName("")).Click();



mcaizgk2
Member
**
Offline Offline

Activity: 66
Merit: 10


View Profile
February 27, 2015, 03:16:21 PM
 #5

BitcoinLib will do exactly that.

Code:
IBitcoinService coinService = new BitcoinService();
coinService.SendToAddress(address, amount);

You can install BitcoinLib via NuGet:
Code:
Install-Package BitcoinLib 
sbrzol (OP)
Hero Member
*****
Offline Offline

Activity: 569
Merit: 500


View Profile
February 28, 2015, 12:45:20 PM
 #6

BitcoinLib will do exactly that.

Code:
IBitcoinService coinService = new BitcoinService();
coinService.SendToAddress(address, amount);

You can install BitcoinLib via NuGet:
Code:
Install-Package BitcoinLib 

thanks, but as i mentioned earlier  I dont want to download (and keep update) the entire blockchain


(i found a simple solution i use Watin/firefox/greenaddress to send bitcoin without any interact)
Btcvilla
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 270


View Profile
March 02, 2015, 03:43:03 AM
 #7

Nicolas Dorier published a free ebook on interacting with bitcoin via C# however it's only part 1 out of 3 to be released

Thread: https://bitcointalk.org/index.php?topic=926087.0

Website: http://blockchainprogramming.azurewebsites.net/

PDF: https://aois.blob.core.windows.net/public/Blockchain%20Programming%20in%20CSharp.pdf


BlockTrail.com also has a pretty good API (https://www.blocktrail.com/api/docs) and there is an unoffical .NET SDK for it https://github.com/raymens/BlocktrailSdk

If you use the BlockTrail API to build your app they'll even send you a free t-shirt


I'm gonna use that for my project.
PenguinFire
Full Member
***
Offline Offline

Activity: 154
Merit: 100


That Darn Cat


View Profile
March 02, 2015, 06:38:48 AM
 #8

I use Armory.  Good choice?

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!