{"id":20844319,"url":"https://github.com/bootnodedev/intents-framework","last_synced_at":"2025-04-05T21:05:40.632Z","repository":{"id":259284364,"uuid":"876731390","full_name":"BootNodeDev/intents-framework","owner":"BootNodeDev","description":"ERC-7683 - Intents Framework Monorepo","archived":false,"fork":false,"pushed_at":"2025-03-27T12:14:32.000Z","size":2724,"stargazers_count":126,"open_issues_count":17,"forks_count":26,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-03-29T20:08:53.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://app.openintents.xyz/","language":"TypeScript","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/BootNodeDev.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}},"created_at":"2024-10-22T13:16:56.000Z","updated_at":"2025-03-29T17:31:27.000Z","dependencies_parsed_at":"2024-11-11T18:31:14.495Z","dependency_job_id":"c5d573fb-d294-4d0b-b49c-67dd00d7608e","html_url":"https://github.com/BootNodeDev/intents-framework","commit_stats":null,"previous_names":["bootnodedev/intents-framework"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fintents-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fintents-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fintents-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fintents-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BootNodeDev","download_url":"https://codeload.github.com/BootNodeDev/intents-framework/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247399871,"owners_count":20932876,"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-18T02:09:18.147Z","updated_at":"2025-04-05T21:05:40.610Z","avatar_url":"https://github.com/BootNodeDev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.openintents.xyz/\" target=\"_blank\" title=\"Open Intents Framework home\"\u003e\n      \u003cimg src=\"https://www.bootnode.dev/external/github-headers/oif.png\" alt=\"open intents framework banner\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\u003cstrong\u003eIntents For Everyone, With Everyone\u003c/strong\u003e\u003c/div\u003e\n\u003cdiv align=\"center\"\u003eA modular, open-source framework for permissionless, scalable intent execution.\u003c/div\u003e\n\u003cbr /\u003e\n\n# Open Intents Framework\n\n[![License: MIT][license-badge]][license]\n\n[license]: https://www.apache.org/licenses/LICENSE-2.0\n[license-badge]: https://img.shields.io/badge/License-Apache-blue.svg\n\n## Description\n\nThe Open Intents Framework is an open-source framework that provides a full stack of smart contracts, solvers and UI with modular abstractions for settlement to build and deploy intent protocols across EVM chains.\n\nWith out-of-the-box ERC-7683 support, the Open Intents Framework standardizes cross-chain transactions and unlocks intents on day 1 for builders in the whole Ethereum ecosystem (and beyond).\n\n## Features\n\n- **ERC-7683 Reference Implementation:** Standardizes cross-chain intent execution, making transactions more interoperable and predictable across EVM chains.\n- **Open-Source Reference Solver:** application that provides customizable protocol-independent features—such as indexing, transaction submission, and rebalancing.\n- **Composable Smart Contracts:** composable framework where developers can mix and match smart contracts, solvers, and settlement layers to fit their use case\n- **Ready-to-Use UI:** A pre-built, customizable UI template that makes intents accessible to end users.\n- **Credibly Neutral:** works across different intent-based protocols and settlement mechanisms\n\n## Directory Structure\n\n- `solidity/` - Contains the smart contract code written in Solidity.\n- `typescript/solvers/` - Houses the TypeScript implementations of the solvers that execute the intents.\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js\n- yarn\n- Git\n\n### Installation\n\n```bash\ngit clone https://github.com/BootNodeDev/intents-framework.git\ncd intents-framework\nyarn\n```\n\n### Running the Solver\n\nRun the following commands from the root directory (you need `docker` installed)\n\n```bash\ndocker build -t solver .\n```\n\nOnce it finish building the image\n\n```bash\ndocker run -it -e [PRIVATE_KEY=SOME_PK_YOU_OWN | MNEMONIC=SOME_MNEMONIC_YOU_OWN] solver\n```\n\nThe solver is run using `pm2` inside the docker container so `pm2` commands can still be used inside a container with the docker exec command:\n\n```bash\n# Monitoring CPU/Usage of each process\ndocker exec -it \u003ccontainer-id\u003e pm2 monit\n# Listing managed processes\ndocker exec -it \u003ccontainer-id\u003e pm2 list\n# Get more information about a process\ndocker exec -it \u003ccontainer-id\u003e pm2 show\n# 0sec downtime reload all applications\ndocker exec -it \u003ccontainer-id\u003e pm2 reload all\n```\n\n### Versioning\n\nFor the versions available, see the tags on this repository.\n\n### Releasing packages to NPM\n\nWe use [changesets](https://github.com/changesets/changesets) to release to NPM. You can use the `release` script in `package.json` to publish.\n\nCurrently the only workspace being released as an NPM package is the one in `solidity`, which contains the contracts and typechain artifacts.\n\n### License\n\nThis project is licensed under the Apache 2.0 License - see the LICENSE.md file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootnodedev%2Fintents-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbootnodedev%2Fintents-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootnodedev%2Fintents-framework/lists"}