{"id":21607909,"url":"https://github.com/ark930/bifrost-hz-hackathon","last_synced_at":"2025-08-31T20:06:53.649Z","repository":{"id":37888438,"uuid":"210080332","full_name":"ark930/bifrost-hz-hackathon","owner":"ark930","description":null,"archived":false,"fork":false,"pushed_at":"2023-06-14T16:13:43.000Z","size":1848,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"hz-hackathon","last_synced_at":"2025-03-18T15:23:24.505Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ark930.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-09-22T02:37:57.000Z","updated_at":"2019-09-22T02:39:19.000Z","dependencies_parsed_at":"2024-11-24T20:34:39.434Z","dependency_job_id":"99d1e119-074d-417a-95c9-022ee668a857","html_url":"https://github.com/ark930/bifrost-hz-hackathon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ark930/bifrost-hz-hackathon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ark930%2Fbifrost-hz-hackathon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ark930%2Fbifrost-hz-hackathon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ark930%2Fbifrost-hz-hackathon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ark930%2Fbifrost-hz-hackathon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ark930","download_url":"https://codeload.github.com/ark930/bifrost-hz-hackathon/tar.gz/refs/heads/hz-hackathon","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ark930%2Fbifrost-hz-hackathon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273032934,"owners_count":25034067,"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-08-31T02:00:09.071Z","response_time":79,"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-24T20:34:32.247Z","updated_at":"2025-08-31T20:06:53.625Z","avatar_url":"https://github.com/ark930.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/bifrost-codes/bifrost.svg?branch=master)](https://travis-ci.org/bifrost-codes/bifrost)\n\n# Bifrost Node\n\nA parachain focused on building bridges of chains which based on PoS consensus.\n\n# Building\n\nInstall Rust:\n\n```bash\ncurl https://sh.rustup.rs -sSf | sh\n```\n\nInstall required tools:\n\n```bash\n./scripts/init.sh\n```\n\nBuild all native code:\n\n```bash\ncargo build\n```\n\n# Run\n\nYou can start a development chain with:\n\n```bash\ncargo run -- --dev\n```\n\nDetailed logs may be shown by running the node with the following environment variables set: `RUST_LOG=debug RUST_BACKTRACE=1 cargo run -- --dev`.\n\nIf you want to see the multi-node consensus algorithm in action locally, then you can create a local testnet with two validator nodes for Alice and Bob, who are the initial authorities of the genesis chain that have been endowed with testnet units. Give each node a name and expose them so they are listed on the Polkadot [telemetry site](https://telemetry.polkadot.io/#/Local%20Testnet). You'll need two terminal windows open.\n\nWe'll start Alice's bifrost node first on default TCP port 30333 with her chain database stored locally at `/tmp/alice`. The bootnode ID of her node is `QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR`, which is generated from the `--node-key` value that we specify below:\n\n```bash\ncargo run -- \\\n  --base-path /tmp/alice \\\n  --chain=local \\\n  --alice \\\n  --node-key 0000000000000000000000000000000000000000000000000000000000000001 \\\n  --telemetry-url ws://telemetry.polkadot.io:1024 \\\n  --validator\n```\n\nIn the second terminal, we'll start Bob's bifrost node on a different TCP port of 30334, and with his chain database stored locally at `/tmp/bob`. We'll specify a value for the `--bootnodes` option that will connect his node to Alice's bootnode ID on TCP port 30333:\n\n```bash\ncargo run -- \\\n  --base-path /tmp/bob \\\n  --bootnodes /ip4/127.0.0.1/tcp/30333/p2p/QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR \\\n  --chain=local \\\n  --bob \\\n  --port 30334 \\\n  --telemetry-url ws://telemetry.polkadot.io:1024 \\\n  --validator\n```\n\nAdditional CLI usage options are available and may be shown by running `cargo run -- --help`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fark930%2Fbifrost-hz-hackathon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fark930%2Fbifrost-hz-hackathon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fark930%2Fbifrost-hz-hackathon/lists"}