{"id":25242691,"url":"https://github.com/tangle-network/turnkey-blueprint-template","last_synced_at":"2026-04-04T07:44:29.221Z","repository":{"id":277064581,"uuid":"926992114","full_name":"tangle-network/turnkey-blueprint-template","owner":"tangle-network","description":"A Tangle Blueprint for Turnkey automations","archived":false,"fork":false,"pushed_at":"2025-04-08T00:03:37.000Z","size":413,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-04T07:44:27.958Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tangle-network.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2025-02-04T08:07:38.000Z","updated_at":"2025-02-04T08:08:01.000Z","dependencies_parsed_at":"2025-02-12T00:04:36.307Z","dependency_job_id":"a528613f-d51c-43a1-9f0b-2fc5ac172a12","html_url":"https://github.com/tangle-network/turnkey-blueprint-template","commit_stats":null,"previous_names":["tangle-network/turnkey-blueprint-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tangle-network/turnkey-blueprint-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fturnkey-blueprint-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fturnkey-blueprint-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fturnkey-blueprint-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fturnkey-blueprint-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tangle-network","download_url":"https://codeload.github.com/tangle-network/turnkey-blueprint-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fturnkey-blueprint-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31392186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T04:26:24.776Z","status":"ssl_error","status_checked_at":"2026-04-04T04:23:34.147Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-02-12T00:01:07.217Z","updated_at":"2026-04-04T07:44:29.213Z","avatar_url":"https://github.com/tangle-network.png","language":"Rust","readme":"# \u003ch1 align=\"center\"\u003eTurnkey Automation Tangle Blueprint 🔐\u003c/h1\u003e\n\n## 📚 Overview\n\nThis Tangle Blueprint provides automated wallet infrastructure services using Turnkey. Blueprints are specifications for \u003cabbr title=\"Actively Validated Services\"\u003eAVS\u003c/abbr\u003es on the Tangle Network. An AVS is an off-chain service that runs arbitrary computations for a user-specified period of time.\n\nThis blueprint includes two Rust crates for Turnkey integration:\n\n- [turnkey-rs](turnkey-rs/README.md) - High-level Rust SDK for Turnkey wallet automation\n- [turnkey-api](turnkey-api/README.md) - Generated API client from OpenAPI spec\n\nThe blueprint enables automated wallet operations such as:\n\n- Wallet creation across multiple chains\n- Transaction signing and broadcasting\n- Key management and rotation\n- Automated security policies\n- Custom wallet naming and derivation paths\n\n## 🚀 Features\n\n- Multi-chain wallet automation\n  - Ethereum (Secp256k1)\n  - Bitcoin (P2PKH, P2SH, P2WPKH, P2WSH, P2TR)\n  - Solana (Ed25519)\n- Automated wallet creation with configurable parameters\n- Type-safe API integration\n- Secure key management\n- Customizable automation policies\n\n## 📋 Prerequisites\n\nBefore you can run this project, you will need to have the following software installed on your machine:\n\n- [Rust](https://www.rust-lang.org/tools/install)\n- [Forge](https://getfoundry.sh)\n- [Turnkey Account](https://turnkey.com) with API credentials\n\nYou will also need to install [cargo-tangle](https://crates.io/crates/cargo-tangle), our CLI tool for creating and deploying Tangle Blueprints.\n\n## ⭐ Getting Started\n\n1. Copy the example environment file and set up your Turnkey credentials:\n\n```sh\ncp .env.example .env\n# Then edit .env with your credentials:\n\nexport TURNKEY_API_PUBLIC_KEY=your_public_key\nexport TURNKEY_API_PRIVATE_KEY=your_private_key\nexport TURNKEY_ORGANIZATION_ID=your_org_id\n```\n\nThe required environment variables are:\n\n- `TURNKEY_API_PUBLIC_KEY`: Your API public key from Turnkey dashboard\n- `TURNKEY_API_PRIVATE_KEY`: Your API private key from Turnkey dashboard\n- `TURNKEY_ORGANIZATION_ID`: Your organization ID from Turnkey dashboard\n\n2. Create a new project:\n\n```sh\ncargo tangle blueprint create --name \u003cproject-name\u003e\n```\n\n3. Follow the instructions to create a new project.\n\n## 🛠️ Development\n\nBefore building or running the project, make sure your environment variables are set up correctly in `.env`.\n\nBuild the project:\n\n```sh\ncargo build\n```\n","funding_links":[],"categories":["Key Management"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Fturnkey-blueprint-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftangle-network%2Fturnkey-blueprint-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Fturnkey-blueprint-template/lists"}