{"id":31227518,"url":"https://github.com/javadtorabikh/transferrust","last_synced_at":"2025-09-22T04:46:56.504Z","repository":{"id":286451283,"uuid":"961446417","full_name":"JavadTorabiKh/TransferRust","owner":"JavadTorabiKh","description":"A blazing-fast and secure API built with Rust to create and submit transactions on a blockchain network.","archived":false,"fork":false,"pushed_at":"2025-09-20T11:38:39.000Z","size":73,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T13:22:25.703Z","etag":null,"topics":["blockchain","blockchain-technology","move","rust","transactions"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/JavadTorabiKh.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":"roadmap.txt","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-06T14:42:31.000Z","updated_at":"2025-09-20T11:38:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"60afa3db-b1b5-4d8b-90e6-3f271d1f6ef7","html_url":"https://github.com/JavadTorabiKh/TransferRust","commit_stats":null,"previous_names":["javadtorabikh/transferrust"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JavadTorabiKh/TransferRust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavadTorabiKh%2FTransferRust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavadTorabiKh%2FTransferRust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavadTorabiKh%2FTransferRust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavadTorabiKh%2FTransferRust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JavadTorabiKh","download_url":"https://codeload.github.com/JavadTorabiKh/TransferRust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavadTorabiKh%2FTransferRust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276348299,"owners_count":25626605,"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-09-22T02:00:08.972Z","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":["blockchain","blockchain-technology","move","rust","transactions"],"created_at":"2025-09-22T04:46:51.288Z","updated_at":"2025-09-22T04:46:56.476Z","avatar_url":"https://github.com/JavadTorabiKh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔗 Rust-Language Blockchain Transaction API\n\nA blazing-fast and secure API built with **Rust** to create and submit transactions on a blockchain network.\n\n\u003e Perfect for powering wallets, dApps, backend services, or blockchain automation tools.\n\n---\n\n## 🚀 Features\n\n- 🦀 Written in **Rust** for performance and safety\n  \n- 🔐 Secure transaction signing and submission\n  \n- 🌐 Connects directly with your blockchain node\n  \n- ⚙️ Easy to integrate into any Web3 stack\n  \n- 📡 RESTful API interface for simple interaction\n\n---\n\n## 📦 Tech Stack\n\n- **Language:** Rust\n  \n- **Web Framework:** [Actix Web](https://actix.rs/)\n  \n- **Blockchain Support:** Compatible with networks like **Sui**, custom blockchains, or other Move-based chains\n  \n- **Serialization:** JSON (via `serde`)\n  \n- **Security:** Optional JWT or API key auth (configurable)\n\n---\n\n## 🛠️ Getting Started\n\n### Prerequisites\n\n- Rust (latest stable version)  \n  Install via [rustup.rs](https://rustup.rs)\n  \n- Access to a blockchain node (e.g., a Sui full node or devnet node)\n\n### Clone \u0026 Build\n\n```bash\n    git clone https://github.com/JavadTorabiKh/TransferRust.git\n    cd apiTransfer\n    cargo build --release\n```\n\n### Run the API\n```bash\n    cargo run\n```\nThe API will be available at:\nhttp://localhost:8000\n\n---\n\n## 🔧 Configuration\nYou can configure the API via environment variables or a .env file:\n\n```env\n    BLOCKCHAIN_RPC_URL=https://fullnode.devnet.sui.io\n    PRIVATE_KEY=your_private_key_here\n    PORT=8000\n```\n\n---\n\n## 📮 Example API Usage\nCreate Transaction\nPOST /transaction\n\nRequest Body:\n\n```json\n    {\n    \"recipient\": \"0xabc123...\",\n    \"amount\": 1000000,\n    \"token\": \"SUI\"\n    }\n```\nResponse:\n\n```json\n    {\n    \"status\": \"success\",\n    \"tx_hash\": \"0xdeadbeef1234567890\"\n    }\n```\n\n---\n\n## 📁 Project Structure\n\n```bash\n    src/\n    ├── main.rs          # Application entry point\n    ├── handlers.rs      # API route handlers\n    ├── blockchain.rs    # Blockchain interaction logic\n    ├── models.rs        # Request/response models\n    └── config.rs        # App configuration\n```\n\n---\n\n## 🧪 Testing\n\n```bash\n    cargo test\n```\nYou can also use Postman or curl to test endpoints manually.\n\n---\n\n## 🤝 Contributing\nPull requests are welcome! If you’d like to help improve this project, feel free to fork it and submit a PR.\n\n---\n\n## 📜 License\nLicensed under the MIT License.\n\n---\n\n## 📬 Contact\nCreated by javadtorabi462@gmail.com\n\nFeel free to reach out for questions, suggestions, or collaborations!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjavadtorabikh%2Ftransferrust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjavadtorabikh%2Ftransferrust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjavadtorabikh%2Ftransferrust/lists"}