Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rscarrera27/pycoin
Block Chain with Python
https://github.com/rscarrera27/pycoin
Last synced: about 1 month ago
JSON representation
Block Chain with Python
- Host: GitHub
- URL: https://github.com/rscarrera27/pycoin
- Owner: rscarrera27
- License: mit
- Created: 2018-01-16T03:53:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T14:20:15.000Z (over 6 years ago)
- Last Synced: 2024-04-16T04:00:46.020Z (7 months ago)
- Language: Python
- Size: 42 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyCoin [![Build Status](https://travis-ci.org/devArtoria/PyCoin.svg?branch=master)](https://travis-ci.org/devArtoria/PyCoin)
## Summary
Now dev in ver 2.0
Implement blockchain with python.### HTTP Method
/mine - GET
- argument
- node_identifier : miner account id
- discription : mining block/chain - GET
- argument
- No Argument
- description : get full chain/id/apply - POST
- value
- id(string) : new account id
- description : apply new id/transactions/new - POST
- value
- sender(string) : sender id
- recipient(string) : recipient id
- amount(int) : amount
- description : making new transactions/transactions - GET
- argument
- No Argument
- description : get current transactions/nodes/register - POST
- values
- nodes(list) : list of new nodes
- description : add new node/nodes/resolve - GET
- argument
- No Argument
- description : resolve consensus## Notes
- DB application complete
- account system implement successful## TODO
- Sync feature implement
- Travis Ci and pytest application## References
[https://blog.naver.com/pjt3591oo/221181592127](https://blog.naver.com/pjt3591oo/221181592127)