{"id":18417386,"url":"https://github.com/stellar/stellar-cli","last_synced_at":"2026-01-07T03:17:57.299Z","repository":{"id":37048118,"uuid":"495983819","full_name":"stellar/stellar-cli","owner":"stellar","description":"CLI for Stellar developers","archived":false,"fork":false,"pushed_at":"2025-05-14T16:33:45.000Z","size":28327,"stargazers_count":81,"open_issues_count":177,"forks_count":88,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-05-14T17:40:19.557Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/stellar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-05-24T20:49:39.000Z","updated_at":"2025-05-09T02:14:30.000Z","dependencies_parsed_at":"2024-02-05T23:28:27.795Z","dependency_job_id":"2a106ec4-2e9e-420a-9181-f2a734b998d9","html_url":"https://github.com/stellar/stellar-cli","commit_stats":{"total_commits":945,"total_committers":49,"mean_commits":"19.285714285714285","dds":0.8042328042328042,"last_synced_commit":"a03b1d7557251e6300b811c51f8b234f942d980a"},"previous_names":["stellar/soroban-cli","stellar/soroban-tools","stellar/stellar-cli"],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fstellar-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fstellar-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fstellar-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fstellar-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stellar","download_url":"https://codeload.github.com/stellar/stellar-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254198390,"owners_count":22030957,"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":[],"created_at":"2024-11-06T04:09:15.126Z","updated_at":"2026-01-07T03:17:57.291Z","avatar_url":"https://github.com/stellar.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stellar CLI (stellar-cli)\n\n[![Apache 2.0 licensed](https://img.shields.io/badge/license-apache%202.0-blue.svg)](LICENSE) [![Crates.io Version](https://img.shields.io/crates/v/stellar-cli?label=version\u0026color=04ac5b)](https://crates.io/crates/stellar-cli) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/stellar/stellar-cli)\n\nThis repo is home to the Stellar CLI, the command-line multi-tool for running and deploying Stellar contracts on the Stellar network.\n\n## Table of Contents\n\n- [Documentation](#documentation)\n- [Cookbook](#cookbook)\n- [Install](#install)\n- [Autocomplete](#autocomplete)\n- [Latest Release](#latest-release)\n- [Upcoming Features](#upcoming-features)\n- [To Contribute](#to-contribute)\n- [Additional Developer Resources](#additional-developer-resources)\n\n## Documentation\n\nFor installation options see below, for usage instructions [see the full help docs](FULL_HELP_DOCS.md).\n\n## Cookbook\n\nTo understand how to get the most of the Stellar CLI, see the [Stellar CLI Cookbook](https://github.com/stellar/stellar-cli/tree/main/cookbook) for recipes and a collection of resources to teach you how to use the CLI. Examples of recipes included in the CLI cookbook include: send payments, manage contract lifecycle, extend contract instance/storage/wasm, and more.\n\n## Install\n\nInstall with the install script (macOS, Linux):\n\n```sh\ncurl -fsSL https://github.com/stellar/stellar-cli/raw/main/install.sh | sh\n```\n\nFor installation options, run the script with `--help`:\n\n```sh\ncurl -fsSL https://github.com/stellar/stellar-cli/raw/main/install.sh | sh -s -- --help\n```\n\nInstall with Homebrew (macOS, Linux):\n\n```sh\nbrew install stellar-cli\n```\n\nInstall the latest version from source:\n\n```sh\ncargo install --locked stellar-cli\n```\n\nInstall without features that depend on additional libraries:\n\n```sh\ncargo install --locked stellar-cli --no-default-features\n```\n\nInstall or run the unreleased main branch with nix:\n\n```console\n$ nix run 'github:stellar/stellar-cli' -- --help\nor install\n$ nix profile install github:stellar/stellar-cli\n```\n\nFor additional information on how to install, see instructions here on the [Developer Docs](https://developers.stellar.org/docs/build/smart-contracts/getting-started/setup#install).\n\nUse GitHub Action:\n\n```yaml\nuses: stellar/stellar-cli@v23.0.1\n```\n\n## Autocomplete\n\nThe Stellar CLI supports some autocompletion. To set up, run the following commands:\n\n```sh\nstellar completion --shell \u003cSHELL\u003e\n```\n\nPossible SHELL values are `bash`, `elvish`, `fish`, `powershell`, `zsh`, etc.\n\nTo enable autocomplete in the current bash shell, run:\n\n```bash\nsource \u003c(stellar completion --shell bash)\n```\n\nTo enable autocomplete permanently, run:\n\n```bash\necho \"source \u003c(stellar completion --shell bash)\" \u003e\u003e ~/.bashrc\n```\n\n## Latest Release\n\nFor the latest release, see [releases](https://github.com/stellar/stellar-cli/releases).\n\n## Upcoming Features\n\nFor upcoming features, please see the [project board](https://github.com/orgs/stellar/projects/50).\n\n## To Contribute\n\nFind issues to contribute to [here](https://github.com/stellar/stellar-cli/contribute) and review [CONTRIBUTING.md](/CONTRIBUTING.md).\n\n## Additional Developer Resources\n\n- Developer Docs CLI Examples: https://developers.stellar.org/docs/smart-contracts/guides/cli\n- Video Tutorial on `network container`, `keys`, and `contract init`: https://developers.stellar.org/meetings/2024/06/27\n- Video Tutorial on `alias` and `snapshot`: https://developers.stellar.org/meetings/2024/09/12\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellar%2Fstellar-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstellar%2Fstellar-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellar%2Fstellar-cli/lists"}