{"id":19927199,"url":"https://github.com/jcam1/sdks","last_synced_at":"2025-08-25T08:12:01.148Z","repository":{"id":247575789,"uuid":"822997567","full_name":"jcam1/sdks","owner":"jcam1","description":"Monorepo for JPYC SDKs","archived":false,"fork":false,"pushed_at":"2025-03-14T03:17:08.000Z","size":857,"stargazers_count":7,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-07T14:12:13.318Z","etag":null,"topics":["astar","avalanche","ethereum","gnosis","hardhat","japanese","jpy","jpyc","node-js","npm-package","polygon","sdk","stablecoin","typescript","viem"],"latest_commit_sha":null,"homepage":"","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/jcam1.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-02T08:28:59.000Z","updated_at":"2025-03-29T10:04:43.000Z","dependencies_parsed_at":"2025-02-25T04:21:29.913Z","dependency_job_id":"5f5f26df-f7c8-477c-bfe9-ccc7300c4847","html_url":"https://github.com/jcam1/sdks","commit_stats":null,"previous_names":["jcam1/sdks"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcam1%2Fsdks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcam1%2Fsdks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcam1%2Fsdks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcam1%2Fsdks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jcam1","download_url":"https://codeload.github.com/jcam1/sdks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252169009,"owners_count":21705364,"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":["astar","avalanche","ethereum","gnosis","hardhat","japanese","jpy","jpyc","node-js","npm-package","polygon","sdk","stablecoin","typescript","viem"],"created_at":"2024-11-12T22:32:40.701Z","updated_at":"2025-05-03T09:32:03.217Z","avatar_url":"https://github.com/jcam1.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JPYC SDKs\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/jcam1/sdks/issues/new/choose)\n\nMonorepo for JPYC SDKs.\n\n## 🌈 Available SDKs\n\nPlease refer to `README`s of each SDK for the version specific details.\n\n|    SDK | `README`                                   |\n| -----: | :----------------------------------------- |\n| `core` | [packages/core](./packages/core/README.md) |\n\n## 🔨 Development\n\n### Git Submodules\n\nThis repo uses [Git Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to be in sync with [JPYCv2](https://github.com/jcam1/JPYCv2/tree/main) repo.\n\nTo include submodules when cloning the repo, add `--recursive` option like below.\n\n```sh\n$ git clone --recursive https://github.com/jcam1/sdks.git\n```\n\n### Yarn Workspaces\n\nThis repo uses [Yarn Workspaces](https://yarnpkg.com/features/workspaces) primarily as a monorepo management tool. Please refer to the inserted link for details.\n\n\u003e [!NOTE]\n\u003e Please use Node `v20.12.0` for this repo.\n\nTo install dependencies for all the workspaces, run the following.\n\n```sh\n# cd into this repo\n$ cd sdks\n# Install dependencies\n$ yarn\n```\n\n### Yarn Scripts\n\nTo run yarn scripts defined in workspaces, run the following.\n\n```sh\n$ yarn workspace ${workspace_name} run ${command_name}\n```\n\n### Dependencies\n\nTo add dependencies, run one of the following.\n\n```sh\n# Add dependencies to the specified workspace\n$ yarn workspace ${workspace_name} add ${dependencies}\n\n# Add dev dependencies to the specified workspace\n$ yarn workspace ${workspace_name} add -D ${dependencies}\n\n# Add dependencies to the workspaces root\n$ yarn add -W ${dependencies}\n\n# Add dev dependencies to the workspaces root\n$ yarn add -W -D ${dependencies}\n```\n\nTo remove dependencies, run one of the following.\n\n```sh\n# Remove dependencies from the specified workspace\n$ yarn workspace ${workspace_name} remove ${dependencies}\n\n# Remove dependencies from the workspaces root\n$ yarn remove -W ${dependencies}\n```\n\n### Documentation\n\nTo generate Markdown documentation from source code, run the following.\n\n```sh\n$ yarn run docs\n```\n\n## 🔥 How to Contribute\n\nWe appreciate your interest to contribute to this project! Please read the following steps to see how to contribute to this project.\n\n### 1. Create an Issue\n\nThe first thing to do is to create a new issue. Feel free to create new issues from [here](https://github.com/jcam1/sdks/issues/new/choose) to propose/request new features or report bugs.\n\n### 2. Clone This Repository\n\nNext, clone this repo. Our default branch is `develop`.\n\n```sh\n$ git clone --recursive https://github.com/jcam1/sdks.git\n```\n\n### 3. Checkout to a New Branch\n\nYou then need to checkout to a new branch (name whatever you would like) from the cloned `develop` branch.\n\n```sh\n$ git checkout -b ${your_branch_name}\n```\n\n### 4. Write Code\n\nNow, write code to implement the proposed features and/or to fix bugs.\n\n### 5. Open a Pull Request\n\nFinally, open a new PR from your branch to `develop` branch, and describe what you'll have done.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcam1%2Fsdks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcam1%2Fsdks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcam1%2Fsdks/lists"}