KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Bishop
★ 8
Open GitHub ↗
Build shops on Bitcoin.
Download README (.md)
Explore Similar Repositories
pc-setup-and-dotfiles
:
A collection of my dotfiles and PC setup as ansible roles
jbme10
:
Jailbreakme for iOS 10 based on totally-not-spyware
Dynamo-for-Revit
:
Dynamo and Python for Revit
react-demo
:
一个react 小项目
ggit
:
Glance at Git Repositories
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Bishop
?
Download (.md)
# Bishop This project is to build shops on Bitcoin. Bitcoin(SV) metanet transfers both data and money on TX, which can natively host shops. ### Featrues Shop host on bitcoin will have - Anoymous Buy/Sell - Anoymous routing though nodes - Native Payments - No Server needed(you can handle TX in any device anywhere) - Worldwide Aviliable - Easily Deploy ### Applications Can be used to sell any digital context. - Software Activation Key Distribution. If you are a independent software developer, it saves you from maintaining payment channels in different countries. - Encrypted File Selling. Films, documents, tools, etc. Upload encrypted files publicly and sell decrypt keys. - Signatures. - Or simple secret. Anything like thanks letter. ### Develop Plan - [X] A Simple Shop Demo. [Nodejs Demo](https://github.com/monkeylord/Bishop/tree/master/Examples) , [HTML Demo](https://monkeylord.github.io/bitcoin/demo/SimpleShop.html) - [ ] E-commercial protocol. - [ ] A Full Shop implement. ## Simple Shop Logic  ```mermaid sequenceDiagram participant Buyer participant Seller participant E_Commodity Buyer->>Seller: P2PkH with OP_RETRUN Message Seller-->E_Commodity: Fetch E-Commodity Seller->>Buyer: E-Commodity Encrypted in Buyer's Public Key(ECIES) note left of Buyer: Decrypt and Get E-Commodity Seller-->>Buyer: Refund if something goes wrong ``` The Payment is no different from other TX. The Encrypted E-Commodity can be decrypted with decent wallet.(Electrion Cash->Tools->Encrypt/Decrypt) ECIES lib: [js](https://github.com/monkeylord/electrum-ecies) [Go](https://github.com/gitzhou/bitcoin-ecies)