{"id":15017451,"url":"https://github.com/manifoldfinance/docs-xga","last_synced_at":"2026-01-30T05:12:29.886Z","repository":{"id":241431199,"uuid":"805456811","full_name":"manifoldfinance/docs-xga","owner":"manifoldfinance","description":"Technical specifications and documentation for XGA","archived":false,"fork":false,"pushed_at":"2024-08-21T05:44:17.000Z","size":3186,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-11T17:57:26.017Z","etag":null,"topics":["auctions","ethereum","mev","mkdocs","xga"],"latest_commit_sha":null,"homepage":"https://docs.xga.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manifoldfinance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-24T16:04:05.000Z","updated_at":"2024-08-01T20:35:19.000Z","dependencies_parsed_at":"2024-05-28T10:00:51.572Z","dependency_job_id":"11da7fca-010f-457c-a325-29a46e2efcc4","html_url":"https://github.com/manifoldfinance/docs-xga","commit_stats":{"total_commits":26,"total_committers":3,"mean_commits":8.666666666666666,"dds":0.07692307692307687,"last_synced_commit":"125916381d361235574575086a34e132c7373aa6"},"previous_names":["manifoldfinance/docs-xga"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manifoldfinance%2Fdocs-xga","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manifoldfinance%2Fdocs-xga/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manifoldfinance%2Fdocs-xga/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manifoldfinance%2Fdocs-xga/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manifoldfinance","download_url":"https://codeload.github.com/manifoldfinance/docs-xga/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248564207,"owners_count":21125406,"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":["auctions","ethereum","mev","mkdocs","xga"],"created_at":"2024-09-24T19:50:28.953Z","updated_at":"2026-01-30T05:12:29.856Z","avatar_url":"https://github.com/manifoldfinance.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [docs.xga.com](https://docs.xga.com)\n\n\u003e mkdocs\n\n## Contributing\n\n_See Guidelines_\n\n## Guidelines\n\n\u003e TODO\n\n### Commit message guidelines\n\nThe plugin assumes that you're using the Angular semantic versioning format to create the commits. Adapted to a\ndocumentation repository such as the digital gardens, the structure would be:\n\n```\n{type_of_change}({file_changed}): {short_description}\n\n{full_description}\nWhere:\n\ntype_of_change is one of:\n```\n\n`feat`: Add new content to the repository, it can be a new file or new content on an existent file. `fix`: Correct\nexisting content. `perf`: Improve existing content. `refactor`: Reorder the articles content. `style`: Correct grammar,\northography or broken links. `ci`: Change the continuous integration pipelines. `chore`: Update the dependencies\nrequired to build the site. `file_changed`: Name of the changed file (without the .md extension).\n\n`short_description`: A succinct description of the change. It doesn't need to start with a capitalize letter nor end\nwith a dot. `full_description`: A summary of the added changes. For example:\n\n```\nfeat(adr): introduce the Architecture Decision Records\n\n[ADR](https://github.com/joelparkerhenderson/architecture_decision_record) are\nshort text documents that captures an important architectural decision made\nalong with its context and consequences.\nOnly changes of type feat, fix, perf or refactor will be added to the newsletter. The reader is not interested in the others.\n```\n\n## GitHub Action\n\n\u003e TODO\n\n```yaml\nname: github pages\n\non:\npush:\n    branches:\n    - master\nschedule:\n    - cron: 11 08 * * *\n\njobs:\ndeploy:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v4\n        with:\n        persist-credentials: false\n        # Number of commits to fetch. 0 indicates all history.\n        # Default: 1\n        fetch-depth: 0\n\n    - name: Setup Python\n        # https://github.com/actions/virtual-environments/issues/1202\n        # uses: actions/setup-python@v1\n        # with:\n        #   python-version: '3.8'\n        uses: actions/setup-python@v2\n        with:\n        python-version: 3.10\n        architecture: x64\n\n    - name: Cache dependencies\n        uses: actions/cache@v4\n        with:\n        path: ~/.cache/pip\n        key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}\n        restore-keys: |\n            ${{ runner.os }}-pip-\n\n    - name: Install dependencies\n        run: pip install pip-tools\n\n    - name: Update requirements\n        run: make update\n\n    - name: Make the site\n        run: make build-docs\n\n    - name: Commit files\n        run: |\n        git config --local user.email \"action@github.com\"\n        git config --local user.name \"GitHub Action\"\n        git add requirements.txt\n        git add docs/newsletter\n        git diff-index --quiet HEAD \\\n            || git commit -m \"chore: update dependency and publish newsletters\"\n\n    - name: Push changes\n        uses: ad-m/github-push-action@master\n        with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        branch: master\n\n    - name: Deploy\n        uses: peaceiris/actions-gh-pages@v3\n        with:\n        deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}\n        publish_dir: ./site\n```\n\n## License\n\nCopyright 2024, Manifold Finance Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanifoldfinance%2Fdocs-xga","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanifoldfinance%2Fdocs-xga","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanifoldfinance%2Fdocs-xga/lists"}