{"id":20002816,"url":"https://github.com/codewithmide/solfort","last_synced_at":"2026-02-13T01:44:23.063Z","repository":{"id":250063385,"uuid":"833365091","full_name":"codewithmide/solfort","owner":"codewithmide","description":"A command-line interface (CLI) wallet for Solana that allows users to generate keypairs, request airdrops, send SOL, and check balances.","archived":false,"fork":false,"pushed_at":"2024-07-25T01:55:53.000Z","size":41,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-12T20:45:57.567Z","etag":null,"topics":["blockchain","cli","rust","solana"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/solfort","language":"Rust","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/codewithmide.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-07-24T22:41:17.000Z","updated_at":"2025-02-02T10:36:19.000Z","dependencies_parsed_at":"2024-07-25T03:19:22.792Z","dependency_job_id":null,"html_url":"https://github.com/codewithmide/solfort","commit_stats":null,"previous_names":["codewithmide/solfort-cli","codewithmide/solfort"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codewithmide/solfort","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fsolfort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fsolfort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fsolfort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fsolfort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewithmide","download_url":"https://codeload.github.com/codewithmide/solfort/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fsolfort/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29392084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T00:53:09.511Z","status":"ssl_error","status_checked_at":"2026-02-13T00:53:09.126Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["blockchain","cli","rust","solana"],"created_at":"2024-11-13T05:23:10.429Z","updated_at":"2026-02-13T01:44:23.046Z","avatar_url":"https://github.com/codewithmide.png","language":"Rust","readme":"# SolFort\n\nSolFort is a command-line interface (CLI) wallet for Solana that allows users to generate keypairs, request airdrops, send SOL, and check balances. It's designed to be a simple yet powerful tool for interacting with the Solana blockchain.\n\n## Features\n\n- Generate new Solana keypairs\n- Request SOL airdrops (on devnet/testnet)\n- Send SOL to other addresses\n- Check the balance of any Solana address\n\n## Installation\n\n### Prerequisites\n\n- Rust and Cargo (latest stable version)\n- Solana CLI tools (optional, but recommended)\n\n### Building from source\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/codewithmide/solfort\n   cd solfort\n   ```\n\n2. Build the project:\n\n   ```bash\n   cargo build --release\n   ```\n\n3. The binary will be available at `target/release/solfort`\n\n## Usage\n\n### General Command Structure\n\n```bash\nsolfort [COMMAND] [ARGUMENTS]\n```\n\nUse `solfort --help` to see a list of all available commands.\n\n### Generate a new keypair\n\n```bash\nsolfort generate-keypair\n```\n\nThis will create a new Solana keypair and save it in the `solfort` directory.\n\n### Request an airdrop\n\n```bash\nsolfort airdrop \u003cAMOUNT\u003e \u003cRECIPIENT_PUBKEY\u003e\n```\n\nExample:\n\n```bash\nsolfort airdrop 1.5 7dE8vUD3vz3jwL6H3kfei2thNwopKGC99H7XE3mfcQu7\n```\n\nThis requests an airdrop of 1.5 SOL to the specified public key. Note that airdrops are only available on devnet and testnet.\n\n### Send SOL\n\n```bash\nsolfort send \u003cAMOUNT\u003e \u003cSENDER_PUBKEY\u003e \u003cRECIPIENT_PUBKEY\u003e\n```\n\nExample:\n\n```bash\nsolfort send 0.1 7dE8vUD3vz3jwL6H3kfei2thNwopKGC99H7XE3mfcQu7 AnotherValidPublicKeyHere\n```\n\nThis sends 0.1 SOL from the sender's address to the recipient's address.\n\n### Check balance\n\n```bash\nsolfort balance \u003cPUBKEY\u003e\n```\n\nIf no public key is provided, it will use the default from the config file.\n\nExample:\n\n```bash\nsolfort balance 7dE8vUD3vz3jwL6H3kfei2thNwopKGC99H7XE3mfcQu7\n```\n\nThis checks the balance of the specified Solana address.\n\n## Configuration\n\nSolFort uses a configuration file to store default settings. The config file is located at `solfort/config.json` and is created automatically when you first run a command.\n\nYou can manually edit this file to change settings such as the default Solana cluster (e.g., devnet, testnet, or mainnet-beta).\n\n## Error Handling\n\nSolFort provides detailed error messages to help you troubleshoot issues. If you encounter an error, read the message carefully for information on how to resolve it.\n\n## Development\n\nSolFort is open source and contributions are welcome! If you're interested in contributing, please fork the repository and submit a pull request.\n\n### Running Tests\n\nTo run the test suite:\n\n```bash\ncargo test\n```\n\n## Contact\n\nFor questions, issues, or contributions, please open an issue on the GitHub repository or contact the maintainer at \u003ccodewithmide@gmail.com\u003e.\n\n---\n\nThank you for using SolFort! We hope this tool makes your Solana development experience smoother and more enjoyable.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmide%2Fsolfort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewithmide%2Fsolfort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmide%2Fsolfort/lists"}