pybitcash / bitcash

BitCash: Python Bitcoin Cash Library (fork of ofek's Bit)
https://bitcash.dev
MIT License
97 stars 39 forks source link

Difference from `bit` #126

Closed Danipulok closed 1 year ago

Danipulok commented 1 year ago

Is there written anywhere what's all the differences between bitcash and bit? I think it would be really nice to have a page in docs explaining this and what was changed \ improved.

merc1er commented 1 year ago

Is there written anywhere what's all the differences between bitcash and bit? I think it would be really nice to have a page in docs explaining this and what was changed \ improved.

BitCash is for Bitcoin Cash (BCH), while Bit is for Bitcoin (BTC).

This is outlined on both the docs site and the repo:

BitCash is Python’s fastest Bitcoin Cash library

merc1er commented 1 year ago

If you are confused by what the differences between Bitcoin Cash and Bitcoin are, here's a comparison: https://whybitcoincash.com.

Danipulok commented 1 year ago

I mean difference between bitcash and bit

merc1er commented 1 year ago

This is what I explained just above:

BitCash and bit are for different cryptocurrencies/networks. A lot of the code is similar, as both networks are very similar, but they are incompatible.

The low level differences are those of the respective cryptocurrencies:

Some of the similarities are:

There are also changes over time as both libraries evolved in their own direction.

Danipulok commented 1 year ago

Oh, I finally got it. Thanks a lot for your time! Appreciate a lot.