{"id":36437801,"url":"https://github.com/scallop-io/sui-lending-protocol","last_synced_at":"2026-01-18T04:39:18.086Z","repository":{"id":182475304,"uuid":"613645019","full_name":"scallop-io/sui-lending-protocol","owner":"scallop-io","description":"An over collateralized lending protocol on SUI network","archived":false,"fork":false,"pushed_at":"2026-01-12T12:38:03.000Z","size":1385,"stargazers_count":83,"open_issues_count":5,"forks_count":39,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-01-12T19:44:45.682Z","etag":null,"topics":["contract","sui","suimove"],"latest_commit_sha":null,"homepage":null,"language":"Move","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/scallop-io.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-14T01:28:59.000Z","updated_at":"2026-01-12T12:36:32.000Z","dependencies_parsed_at":"2026-01-08T18:02:31.977Z","dependency_job_id":null,"html_url":"https://github.com/scallop-io/sui-lending-protocol","commit_stats":null,"previous_names":["scallop-io/sui-lending-protocol"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/scallop-io/sui-lending-protocol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scallop-io%2Fsui-lending-protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scallop-io%2Fsui-lending-protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scallop-io%2Fsui-lending-protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scallop-io%2Fsui-lending-protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scallop-io","download_url":"https://codeload.github.com/scallop-io/sui-lending-protocol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scallop-io%2Fsui-lending-protocol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28529911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["contract","sui","suimove"],"created_at":"2026-01-11T20:00:22.343Z","updated_at":"2026-01-18T04:39:18.079Z","avatar_url":"https://github.com/scallop-io.png","language":"Move","funding_links":[],"categories":["**6\\. Detailed Data Tables of Financial Projects**"],"sub_categories":["**Table 1: Sui Ecosystem Financial Projects**"],"readme":"# Core of Scallop lending protocol on SUI network\n\n## How to use\n\n1. Install npm packages\n\n```bash\npnpm install\n```\n\n2. Install SUI cli\nSee the official documentation: [How to install SUI cli](https://docs.sui.io/guides/developer/getting-started/sui-install)\n\n3. Set the envs\n  ```bash\n  cp .env.example .env\n  ```\n  - `SECRET_KEY`: The secret key of the account that will be used to deploy the contracts, make sure the account has enough SUI to pay for the transaction fees\n  - `SUI_NETWORK_TYPE`: The network type of the SUI network. It can be `devnet`, `testnet`, `mainnet` or `localnet`\n\n## Import to your Move package\n\nIf you are using move registry, you can simply run \n```bash\nmvr add lending@scallop/core\n``` \nto import scallop lending to your package.\n\n## Move package structure\nWe use typescript to publish \u0026 interact with the contracts, and we make some improvements to the package structure to make it easier to use.\n\nLet's take the `test_coin` package as an example:\n\n![img.png](img.png)\n\n- `sources` folder contains all the move contract code.\n\n- `typescript` folder usually contains the typescript code that will be used to deploy \u0026 interact with the contract.\n\n- `publish-result.${networkType}.json` contains the important object ids of the contracts for each network type.\n\n- `index.ts` export the typescript code in the `typescript` folder.\n\n- `Move.${networkType}.toml` is the toml file for each network type.\n\n- `Move.toml` is the default toml file, it will be used if the `Move.${networkType}.toml` for the current network type is not found.\n\n- `README.md` description of the package, explain the usage of the package.\n\n## Learn More About the Project with LLM \n\nWe recommend using [DeepWiki](https://deepwiki.com/scallop-io/sui-lending-protocol) to gain a deeper understanding of the project's architecture, core concepts, and implementation details.\n\n## Use Scallop SDK to interact with the contracts\n\nIt's recommended to use the Scallop SDK to interact with the contracts, see the official documentation: [How to use Scallop SDK](https://github.com/scallop-io/sui-scallop-sdk)\n\nor even generate demo code and transaction examples directly through [DeepWiki](https://deepwiki.com/scallop-io/sui-scallop-sdk) integrated LLM interface.\n\n## Integrate with Scallop Protocol in SUI Move\n\nThe protocol is designed to be simple, efficient, and secure.\n\nMoreover, the protocol is designed to be composable, meaning that other protocols can easily integrate with it.\n\n[Contract integration guide](contract-integration.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscallop-io%2Fsui-lending-protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscallop-io%2Fsui-lending-protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscallop-io%2Fsui-lending-protocol/lists"}