{"id":21813035,"url":"https://github.com/llamasoft/protoshares_cycle","last_synced_at":"2026-05-14T23:14:23.978Z","repository":{"id":70674705,"uuid":"14236131","full_name":"llamasoft/ProtoShares_Cycle","owner":"llamasoft","description":"ProtoShares - Cycle Detection Implementation","archived":false,"fork":false,"pushed_at":"2013-11-12T15:41:35.000Z","size":15644,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"psforkinit","last_synced_at":"2025-03-21T09:23:44.618Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/llamasoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-08T15:20:17.000Z","updated_at":"2015-02-06T21:21:43.000Z","dependencies_parsed_at":"2023-02-21T15:00:49.924Z","dependency_job_id":null,"html_url":"https://github.com/llamasoft/ProtoShares_Cycle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/llamasoft/ProtoShares_Cycle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llamasoft%2FProtoShares_Cycle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llamasoft%2FProtoShares_Cycle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llamasoft%2FProtoShares_Cycle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llamasoft%2FProtoShares_Cycle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/llamasoft","download_url":"https://codeload.github.com/llamasoft/ProtoShares_Cycle/tar.gz/refs/heads/psforkinit","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llamasoft%2FProtoShares_Cycle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278343086,"owners_count":25971400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-27T14:26:47.308Z","updated_at":"2025-10-04T17:11:08.005Z","avatar_url":"https://github.com/llamasoft.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bitcoin integration/staging tree\n================================\n\nhttp://www.bitcoin.org\n\nCopyright (c) 2009-2013 Bitcoin Developers\n\nWhat is Bitcoin?\n----------------\n\nBitcoin is an experimental new digital currency that enables instant payments to\nanyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate\nwith no central authority: managing transactions and issuing money are carried\nout collectively by the network. Bitcoin is also the name of the open source\nsoftware which enables the use of this currency.\n\nFor more information, as well as an immediately useable, binary version of\nthe Bitcoin client sofware, see http://www.bitcoin.org.\n\nLicense\n-------\n\nBitcoin is released under the terms of the MIT license. See `COPYING` for more\ninformation or see http://opensource.org/licenses/MIT.\n\nDevelopment process\n-------------------\n\nDevelopers work in their own trees, then submit pull requests when they think\ntheir feature or bug fix is ready.\n\nIf it is a simple/trivial/non-controversial change, then one of the Bitcoin\ndevelopment team members simply pulls it.\n\nIf it is a *more complicated or potentially controversial* change, then the patch\nsubmitter will be asked to start a discussion (if they haven't already) on the\n[mailing list](http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development).\n\nThe patch will be accepted if there is broad consensus that it is a good thing.\nDevelopers should expect to rework and resubmit patches if the code doesn't\nmatch the project's coding conventions (see `doc/coding.txt`) or are\ncontroversial.\n\nThe `master` branch is regularly built and tested, but is not guaranteed to be\ncompletely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created\nregularly to indicate new official, stable release versions of Bitcoin.\n\nTesting\n-------\n\nTesting and code review is the bottleneck for development; we get more pull\nrequests than we can review and test. Please be patient and help out, and\nremember this is a security-critical project where any mistake might cost people\nlots of money.\n\n### Automated Testing\n\nDevelopers are strongly encouraged to write unit tests for new code, and to\nsubmit new unit tests for old code.\n\nUnit tests for the core code are in `src/test/`. To compile and run them:\n\n    cd src; make -f makefile.unix test\n\nUnit tests for the GUI code are in `src/qt/test/`. To compile and run them:\n\n    qmake BITCOIN_QT_TEST=1 -o Makefile.test bitcoin-qt.pro\n    make -f Makefile.test\n    ./bitcoin-qt_test\n\nEvery pull request is built for both Windows and Linux on a dedicated server,\nand unit and sanity tests are automatically run. The binaries produced may be\nused for manual QA testing — a link to them will appear in a comment on the\npull request posted by [BitcoinPullTester](https://github.com/BitcoinPullTester). See https://github.com/TheBlueMatt/test-scripts\nfor the build/test scripts.\n\n### Manual Quality Assurance (QA) Testing\n\nLarge changes should have a test plan, and should be tested by somebody other\nthan the developer who wrote the code.\n\nSee https://github.com/bitcoin/QA/ for how to create a test plan.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllamasoft%2Fprotoshares_cycle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fllamasoft%2Fprotoshares_cycle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllamasoft%2Fprotoshares_cycle/lists"}