{"id":28318312,"url":"https://github.com/arufa-research/junokit","last_synced_at":"2025-08-20T15:06:20.501Z","repository":{"id":37087337,"uuid":"453898912","full_name":"arufa-research/junokit","owner":"arufa-research","description":"Junokit is a development framework for building juno contracts. The aim of the project is to make juno contracts development process simple, efficient and scalable.","archived":false,"fork":false,"pushed_at":"2023-11-26T23:34:52.000Z","size":3816,"stargazers_count":13,"open_issues_count":23,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-26T08:03:07.950Z","etag":null,"topics":["blockchain","cosmwasm","juno","rust","smart-contracts","tooling"],"latest_commit_sha":null,"homepage":"https://junokit.arufaresearch.com/","language":"TypeScript","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/arufa-research.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}},"created_at":"2022-01-31T06:12:53.000Z","updated_at":"2023-11-22T20:09:50.000Z","dependencies_parsed_at":"2023-01-29T17:01:21.918Z","dependency_job_id":null,"html_url":"https://github.com/arufa-research/junokit","commit_stats":null,"previous_names":["arufa-research/trestle"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/arufa-research/junokit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arufa-research%2Fjunokit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arufa-research%2Fjunokit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arufa-research%2Fjunokit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arufa-research%2Fjunokit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arufa-research","download_url":"https://codeload.github.com/arufa-research/junokit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arufa-research%2Fjunokit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262026903,"owners_count":23246952,"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":["blockchain","cosmwasm","juno","rust","smart-contracts","tooling"],"created_at":"2025-05-25T07:12:24.820Z","updated_at":"2025-06-29T06:08:20.346Z","avatar_url":"https://github.com/arufa-research.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Junokit\n\nJunokit is a development framework for building juno contracts. The aim of the project is to make juno contracts development process simple, efficient and scalable. User can focus on logic of juno contract and not much about further steps in development. It facilitates features such as initiating project repo from contract templates, easy compilation of contracts, deployment, Interacting with contracts using schema and contract testing framework.\n\n## Requirements\n\nThe minimum packages/requirements are as follows:\n \n- Node 14+\n- Yarn v1.22+ or NPM `v6.0+**\n- Connection to an Juno node. \n\n## Install junokit\n\n### Installation from released version\n\nTo install junokit globally in your system you can use:\n  - Using Yarn: `yarn global add junokit`\n  - Using NPM: `npm install -g junokit`\n\n### Installation from master.\n\nThe master branch corresponds to the latest version.\n\nTo use  `junokit` on your system, follow the steps below:\n\n```bash\n$ git clone https://github.com/arufa-research/junokit.git\n$ cd junokit\n$ yarn install\n$ yarn build\n$ cd packages/junokit\n$ yarn link\n$ chmod +x $HOME/.yarn/bin/junokit\n```\n\n### Install dependencies\n\nSetup Rust compiler\n\n```bash\n$ cd infrastructure\n$ make setup-rust\n```\n\nFollow our infrastructure README for instructions how to setup a private network.\n\n## Usage\n\n### Initialize a project\n\n```bash\n$ junokit init \u003cproject-name\u003e\n```\n\nThis will create a directory \u003cproject-name\u003e inside current directory with boiler-plate code. The `contracts/` directory has all the rust files for the contract logic. `scripts/` directory contains  `.js` scripts that user can write according to the use case, a sample script has been added to give some understanding of how a user script should look like. `test/` directory contains `.js` scripts to run tests for the deployed contracts.\n\n### Listing Tasks\n\nTo see the possible tasks (commands) that are available, go to project's folder. \n\n```bash\n$ junokit\n``` \n\nThis is the list of built-in tasks. This is your starting point to find out what tasks are available to run.\n\n### Compile the project\n\nTo compile the contracts, Go to project directory:\n\n```bash\n$ cd \u003cproject-name\u003e\n$ junokit compile\n```\n\nThis command will generate compiled .wasm files in artifacts/contracts/ dir and schema .json files in artifacts/schema/ dir.\n\n### Cleanup Artifacts\n\nTo clear artifacts data, use\n\n```bash\n$ junokit clean\n``` \nThis will remove the artifacts directory completely. To clean artifacts for only one contract, use\n\n```bash\n$ junokit clean \u003ccontract-name\u003e\n``` \nThis will remove specific files related to that contract.\n\n\n### Running user scripts\n\nUser scripts are a way to define the flow of interacting with contracts on some network in form of a script. These scripts can be used to deploy a contract, query/transact with the contract.A sample script scripts/sample-script.js is available in the boilerplate.\n\n\n## Run tests\n\n```bash\n$ yarn run test\n```\n\n## License\n\nThis project is forked from hardhat, and just base on the hardhat-core part then modify it under MIT license.\n\n## Thanks\n\nhardhat - Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software. Get Solidity stack traces \u0026 console.log.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farufa-research%2Fjunokit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farufa-research%2Fjunokit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farufa-research%2Fjunokit/lists"}