Is there a way for me observe network traffic of bitcoin exchange?

1

I was wondering if there is a way to observe a network traffic/packet of bitcoin exchange. I want to know what's in the packet when I send a bitcoin from one wallet to another.

Thanks.

Carol Ward

Posted 2019-04-18T18:38:17.580

Reputation: 131

Are you looking for a higher-level solution than WireShark?MCCCS 2019-04-19T04:08:25.607

Answers

3

You can use a "network sniffer" to observe data packets on your local network which are sent from or received by your computer.

It will be helpful to study the Bitcoin network protocol documentation so that you can define a filter that will only show the Bitcoin related traffic.

A popular choice for Windows is Wireshark, but there are many other options. If Wireshark does not have a decoder (dissector) for your protocol of interest you may have to manually decode from hex.

See https://www.google.com/search?q=wireshark+bitcoin+dissector -- there seem to be several bitcoin dissectors you can add to Wireshark.

RedGrittyBrick

Posted 2019-04-18T18:38:17.580

Reputation: 4 815