Wednesday, June 20, 2018

Working with bitcoin Core Wallet Part 2

In this previous post I share how we install bitcoin core you can find that pose here
Now these are some links that help me when I was start working on my project,you can follow the link as step by step.There are some issues that i was facing while i was working on that
project mainly was implementation of LockUnspent 


Concept of BTC :
https://www.youtube.com/channel/UCXIv02S77csw3Sqoaj76UeQ/videos

Test BTC Coins:
https://tpfaucet.appspot.com/
https://testnet.blockchain.info/ (Check transaction)

API Help:
http://chainquery.com/bitcoin-api
https://www.multichain.com/developers/api-errors/
https://en.bitcoin.it/wiki/Running_Bitcoin
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list
https://www.multichain.com/developers/api-errors/

This link is help in such a way you can actually see reason why it sending error in response (i.e Real code of BTC RPC Call)
https://goo.gl/1sYHsZ




Code for BTC  wrapper :
You can find lots of Bitcoin c# wrapper but I used first link mainly and adding more methods that is not here such as LockUnspent,ListLockUnspent

https://github.com/iancoleman/bitcoin-qr-popup/blob/master/src/bitnet/Bitnet.Client/BitnetClient.cs
https://bitcointalk.org/index.php?topic=294807.0
https://github.com/iancoleman/bitcoin-qr-popup
https://github.com/MetacoSA/NBitcoin/blob/master/NBitcoin/RPC/RPCClient.Wallet.cs
https://github.com/GeorgeKimionis/BitcoinLib
https://www.youtube.com/watch?v=ya5ByOqFF2U&list=PLskt7tlkTFy8fElITkV69-n1zdGPPn_SU
https://bitcoin.stackexchange.com/questions/32462/blockchain-programming-books-c

UTXO:
This is the main topic how actually Transaction work
https://www.youtube.com/watch?v=YjiE4SZtSlY&t=533s

This is the main topic that i faced lot of issues, see this post you get an idea ;)
https://github.com/bitcoin/bitcoin/issues/10004



Mempool:
https://www.youtube.com/watch?v=PeINuxxZAyg
https://jochen-hoenicke.de/queue/#1,30d
https://blockchain.info/charts/mempool-size
https://bitcoin.stackexchange.com/tags/mempool/hot
https://gist.github.com/laanwj/efe29c7661ce9b6620a7
https://medium.com/@octskyward/mempool-size-limiting-a3f604b72a4a
https://www.reddit.com/r/Bitcoin/comments/7kopyg/serious_if_the_mempool_size_keeps_increasing_what/

SegWit :
https://medium.com/verifyas/segwit-the-solution-to-the-problem-7c5c58711b43
https://bitcoinmagazine.com/articles/bitcoin-core-0160-released-heres-whats-new/

No comments:

Post a Comment