{"id":28724068,"url":"https://github.com/raid-guild/partizee","last_synced_at":"2025-06-15T10:08:51.439Z","repository":{"id":294136766,"uuid":"986036045","full_name":"raid-guild/Partizee","owner":"raid-guild","description":"a cli tool for creating and deploying full stack partisia dapps","archived":false,"fork":false,"pushed_at":"2025-06-10T18:06:32.000Z","size":530,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-06-10T18:41:43.287Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raid-guild.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,"zenodo":null}},"created_at":"2025-05-19T02:30:47.000Z","updated_at":"2025-06-10T18:06:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"8a6c2f22-7e0e-4319-9b59-9b0d93a057da","html_url":"https://github.com/raid-guild/Partizee","commit_stats":null,"previous_names":["raid-guild/partizee"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raid-guild/Partizee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raid-guild%2FPartizee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raid-guild%2FPartizee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raid-guild%2FPartizee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raid-guild%2FPartizee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raid-guild","download_url":"https://codeload.github.com/raid-guild/Partizee/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raid-guild%2FPartizee/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259957277,"owners_count":22937547,"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":"2025-06-15T10:08:49.801Z","updated_at":"2025-06-15T10:08:51.422Z","avatar_url":"https://github.com/raid-guild.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Partizee\n\nPartizee is a CLI tool for creating and deploying full-stack Partisia dApps. It streamlines the process of managing accounts, wallets, and deploying decentralized applications on the Partisia blockchain.\n\n## Features\n- Generate a template projects\n- Create and manage Partisia blockchain profiles and wallets\n- Deploy and manage full-stack dApps\n- Interactive menus for profile selection and creation\n\n## Installation\n\n### Prerequisites\n\nEnsure the following dependencies are installed before using Partizee:\n\n- **Rust (version 1.86.0 required):** Install via [Rustup](https://rustup.rs/).  \n  _Note: You must use Rust v1.86.0. Newer versions may result in compiler errors._\n- **WASM Target for Rust:**  \n  After installing Rust, add the required target:\n  ```sh\n  rustup target add wasm32-unknown-unknown\n  ```\n- **Git:** Required for contract compilation. [Download Git](https://git-scm.com/downloads)\n- **OpenJDK 17:** Required for contract compilation and related tooling. [Install OpenJDK 17](https://openjdk.org/install/)\n- **Partisia Contract CLI Tool:** Install the official CLI tools as described in the [Partisia Blockchain documentation](https://partisiablockchain.gitlab.io/documentation/smart-contracts/install-the-smart-contract-compiler.html).\n- **Windows Only:** If you are on Windows, ensure [Visual Studio with C++](https://visualstudio.microsoft.com/downloads/) is installed for contract compilation.\n\n### External Documentation\n\n- [cargo-partisia-contract](https://gitlab.com/partisiablockchain/language/cargo-partisia-contract)\n- [partisia-cli](https://gitlab.com/partisiablockchain/language/partisia-cli)\n\n### Build from Source\n\nClone the repository and build the CLI:\n\n```sh\ngit clone https://github.com/yourusername/partizee.git\ncd partizee\ncargo build --release\n```\n\nthen run the install script\n```sh\nbash ./install.sh\n```\n\nThe binary will be installed to `home/.bin/partizee`\n\n## Usage\n\nRun the CLI tool:\n\n```sh\npartizee [COMMAND] [OPTIONS]\n```\n\n## Commands\n\nPartizee provides several commands for managing your Partisia dApp workflow:\n\n### Project Scaffolding\n\n- `partizee new [OPTIONS]`\n  - Scaffold a new project. If no flags are passed and no data the interactive menu will open automatically.\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to create a new dapp.\n    - `--name \u003cNAME\u003e` — Dapp name.\n    - `-o`, `--output-dir \u003cDIR\u003e` — Specify a custom output directory for the new project.\n    - `-z`, `--zero-knowledge` — Scaffold a zero-knowledge dapp (reserved for future use).\n\n### Compilation\n\n- `partizee compile [OPTIONS]`\n  - Compile your dapp. If no flags are passed and no data the interactive menu will open automatically.\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to compile.\n    - `-f`, `--files \u003cFILE\u003e` — Specify specific files to compile.\n    - `-b`, `--build-args \u003cARGS\u003e` — Additional arguments passed to `cargo build`.\n    - `-a`, `--additional-args \u003cARGS\u003e` — Additional arguments for the compile CLI command.\n\n### Deployment\n\n- `partizee deploy [OPTIONS]`\n  - Deploy your dapp. If no flags are passed and no data the interactive menu will open automatically.\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to deploy.\n    - `-c`, `--chain \u003cNETWORK\u003e` — Select mainnet or testnet (defaults to testnet if not specified).\n    - `-n`, `--names \u003cNAMES\u003e` — Names of the contracts to deploy (can specify multiple).\n    - `-d`, `--deploy-args \u003cCONTRACT NAME\u003e \u003cARGS\u003e` — Contract name followed by its arguments, e.g. `--deploy-args MyContract arg1 arg2`.  for multiple contract deployments you can use mutliple flags `-d contract-name1 arg1 arg2 -d contract-name2 arg3 arg4` or you can put the arguments all in one string seperated by the contract name `-d contract-name1 arg1 arg2 countract-name2 arg3 arg4`\n    - `-a`, `--account \u003cPATH\u003e` — Path to the account pk file.\n\n### Profile Management Commands\n\n- `partizee profile create [OPTIONS]`\n  - Create a new blockchain profile (account). If no options are provided, the interactive menu will open.  if no wallet exists on your machine it will ask to create a new wallet before the account can be made.\n\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to create a new profile.\n    - `-n`, `--network \u003cNETWORK\u003e` — Specify the network (mainnet/testnet).\n\n- `partizee profile show [OPTIONS]`\n  - Show details for a blockchain profile/account.\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to select and show a profile.\n    - `-n`, `--network \u003cNETWORK\u003e` — Specify the network.\n    - `-a`, `--address \u003cADDRESS\u003e` — Specify the account address.\n\n- `partizee profile mint-gas [OPTIONS]`\n  - Mint testnet gas for a profile/account (testnet only).\n  - Options:\n    - `-i`, `--interactive` — Use interactive menu to select a profile.\n    - `-n`, `--network \u003cNETWORK\u003e` — Specify the network.\n    - `-a`, `--address \u003cADDRESS\u003e` — Specify the account address.\n    - `-k`, `--private-key \u003cPRIVATE_KEY\u003e` — Specify the private key.\n    - `-p`, `--path \u003cPATH\u003e` — Path to the account pk file.\n\n### Example Usage\n\n```sh\n# Create a new project\npartizee new my-dapp\n# Create a wallet/account\npartizee profile create\n# Compile contracts\npartizee compile\n# Deploy using a specific profile\npartizee deploy --chain testnet --deploy-args counter 00d277aa1bf5702ab9fc690b04bd68b5a981095530\n# or with the interactive menu\npartizee deploy\n```\n\n---\n\nFor more details on each command and its options, run:\n\n```sh\npartizee --help\n```\n\nYou can copy and paste this into your README, replacing or expanding the \"Common Commands\" section. This gives users a clear overview of what each command does and what options are available.\n\n## Configuration\n\nPartizee stores private keys and account information securely in your workspace. You can specify network, address, and private key via command-line options or configuration files.\n\n## Development\n\n### Running Tests\n\n```sh\ncargo test\n```\n\n## Contributing\n\nContributions are welcome! Please open issues or pull requests for bug fixes, features, or documentation improvements.\n\n## License\n\n[MIT](LICENSE)\n\n## Disclaimer\n\nThis tool is provided as-is. Use at your own risk. Always keep your private keys secure.\n\n---\n\nFor more information, see the [Partisia Blockchain documentation](https://partisiablockchain.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraid-guild%2Fpartizee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraid-guild%2Fpartizee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraid-guild%2Fpartizee/lists"}