{"id":19989929,"url":"https://github.com/TTCECO/gttc","last_synced_at":"2025-05-04T09:33:56.597Z","repository":{"id":48020167,"uuid":"135270387","full_name":"TTCECO/gttc","owner":"TTCECO","description":"Official Go implementation of MARO, Maro builds an open infrastructure that seamlessly connects billions to the global economy market","archived":false,"fork":false,"pushed_at":"2024-04-28T04:27:31.000Z","size":30996,"stargazers_count":116,"open_issues_count":22,"forks_count":59,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-12-20T00:32:41.513Z","etag":null,"topics":["blockchain","consensus","dpos","ethereum","go"],"latest_commit_sha":null,"homepage":"https://ma.ro","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TTCECO.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,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-29T09:07:52.000Z","updated_at":"2024-11-22T10:23:04.000Z","dependencies_parsed_at":"2024-04-18T04:29:48.562Z","dependency_job_id":"3265a1d2-7961-4714-a94e-3ffb0503fab4","html_url":"https://github.com/TTCECO/gttc","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TTCECO%2Fgttc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TTCECO%2Fgttc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TTCECO%2Fgttc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TTCECO%2Fgttc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TTCECO","download_url":"https://codeload.github.com/TTCECO/gttc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252316695,"owners_count":21728521,"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","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":["blockchain","consensus","dpos","ethereum","go"],"created_at":"2024-11-13T04:50:48.681Z","updated_at":"2025-05-04T09:33:52.476Z","avatar_url":"https://github.com/TTCECO.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Go TTC\n\nGolang implementation of MARO Blockchain (Previously known as TTC protocol).\n\n[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/TTCECO/gttc)\n[![GoReport](https://goreportcard.com/badge/github.com/TTCECO/gttc)](https://goreportcard.com/report/github.com/TTCECO/gttc)\n[![Travis](https://travis-ci.org/TTCECO/gttc.svg?branch=master)](https://travis-ci.org/TTCECO/gttc)\n[![License](https://img.shields.io/badge/license-GPL%20v3-blue.svg)](LICENSE)\n## About gttc\n\ngttc is base on [go-ethereum](https://github.com/ethereum/go-ethereum), the main part be modified is in [consensus](consensus/) directory. We add a new consensus algorithm named [alien](consensus/alien/) in it.\n\nAlien is a simple version of DPOS-PBFT consensus algorithm, which in [consensus/alien](consensus/alien/):\n\n* **alien.go**          : Implement the consensus interface\n* **custom_tx.go**      : Process the custom transaction such as vote,proposal,declare and so on...\n* **snapshot.go**       : Keep the snapshot of vote and confirm status for each block\n* **signer_queue.go**   : calculate the order of signer queue\n* **api.go**            : API\n* **cross_chain.go**    : Cross chain communication by custom transaction\n\nAlien use header.extra to record the all infomation of current block and keep signature of miner. The snapshot keep vote \u0026 confirm information of whole chain, which will be update by each Seal or VerifySeal. By the end of each loop, the miner will calculate the next loop miners base on the snapshot. Code annotation will show the details about how it works.\n\n## Mainnet Information\n* **Current Mainnet and Testnet is deploy the code of branch release/v0.2.5**\n\nMore information about this upgrade will be found [UPGRADE TO GTTC V0.2.5](https://github.com/TTCECO/gttc/wiki/UPGRADE-TO-GTTC-V0.2.5)\n\n## Minimum Requirements\n\nRequirement|Notes\n---|---\nGo version | Go1.9 ~ Go1.15, Go1.13 is recommended.\n\n## Install\n\nSee the [HOWTO_INSTALL](https://github.com/TTCECO/gttc/wiki/Building-GTTC)\n\n[Enode list for Mainnet \u0026 Slavenet](https://github.com/TTCECO/gttc/wiki/Public-Enode-address)\n\n## Other Documents List\n\nYou can find all documents in our [Wiki](https://github.com/TTCECO/gttc/wiki/)\n\n* [DPOS_CONSENSUS_ALGORITHM](https://github.com/TTCECO/gttc/wiki/DPOS_CONSENSUS_ALGORITHM): `description of DPOS algorithm`\n* [PBFT_CONSENSUS_ALGORITHM](https://github.com/TTCECO/gttc/wiki/PBFT_CONSENSUS_ALGORITHM): `description of PBFT algorithm`\n* [HOWTO_IMPLEMENT_DPOS_PBFT_IN_ALIEN](https://github.com/TTCECO/gttc/wiki/HOWTO_IMPLEMENT_DPOS_PBFT_IN_ALIEN): `details about how we implement dpos and pbft`\n* [genesis.json](https://github.com/TTCECO/gttc/wiki/genesis.json)  : `genesis.json file for the testnet we deploy`\n* [HOWTO_RUNNING_TEST_ON_PRIVATE_NETWORK](https://github.com/TTCECO/gttc/wiki/HOWTO_RUNNING_TEST_ON_PRIVATE_NETWORK) : `The instruction of deploy your own testnet`\n* [HOWTO_VOTE_ON_GTTC](https://github.com/TTCECO/gttc/wiki//HOWTO_VOTE_ON_GTTC)  : `how to vote on alien testnet and view snapshot through API`\n* [GENESIS_JSON_SAMPLE](https://github.com/TTCECO/gttc/wiki/GENESIS_JSON_SAMPLE) : `genesis.json sample`\n\n* [build slave network instruction](https://github.com/TTCECO/gttc/wiki/build-slave-network-instruction)\n* [how to check running status of slave network](https://github.com/TTCECO/gttc/wiki/how-to-check-running-status-of-slave-network)\n\n## Contact\n\nemail: peng@ttc.eco\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTTCECO%2Fgttc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTTCECO%2Fgttc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTTCECO%2Fgttc/lists"}