ERC-7683 - Intents Framework Monorepo
See the codeThe 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.
With 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).
solidity/ - Contains the smart contract code written in Solidity.typescript/solvers/ - Houses the TypeScript implementations of the solvers that execute the intents.git clone https://github.com/BootNodeDev/intents-framework.git
cd intents-framework
yarn
Run the following commands from the root directory (you need docker installed)
docker build -t solver .
Once it finish building the image
docker run -it -e [PRIVATE_KEY=SOME_PK_YOU_OWN | MNEMONIC=SOME_MNEMONIC_YOU_OWN] solver
The solver is run using pm2 inside the docker container so pm2 commands can still be used inside a container with the docker exec command:
# Monitoring CPU/Usage of each process
docker exec -it <container-id> pm2 monit
# Listing managed processes
docker exec -it <container-id> pm2 list
# Get more information about a process
docker exec -it <container-id> pm2 show
# 0sec downtime reload all applications
docker exec -it <container-id> pm2 reload all
For the versions available, see the tags on this repository.
We use changesets to release to NPM. You can use the release script in package.json to publish.
Currently the only workspace being released as an NPM package is the one in solidity, which contains the contracts and typechain artifacts.
This project is licensed under the Apache 2.0 License - see the LICENSE.md file for details.
TypeScript
51.2%
Solidity
45.7%
JavaScript
1.9%
ERC-7683 - Intents Framework Monorepo
See the codeThe 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.
With 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).
solidity/ - Contains the smart contract code written in Solidity.typescript/solvers/ - Houses the TypeScript implementations of the solvers that execute the intents.git clone https://github.com/BootNodeDev/intents-framework.git
cd intents-framework
yarn
Run the following commands from the root directory (you need docker installed)
docker build -t solver .
Once it finish building the image
docker run -it -e [PRIVATE_KEY=SOME_PK_YOU_OWN | MNEMONIC=SOME_MNEMONIC_YOU_OWN] solver
The solver is run using pm2 inside the docker container so pm2 commands can still be used inside a container with the docker exec command:
# Monitoring CPU/Usage of each process
docker exec -it <container-id> pm2 monit
# Listing managed processes
docker exec -it <container-id> pm2 list
# Get more information about a process
docker exec -it <container-id> pm2 show
# 0sec downtime reload all applications
docker exec -it <container-id> pm2 reload all
For the versions available, see the tags on this repository.
We use changesets to release to NPM. You can use the release script in package.json to publish.
Currently the only workspace being released as an NPM package is the one in solidity, which contains the contracts and typechain artifacts.
This project is licensed under the Apache 2.0 License - see the LICENSE.md file for details.
TypeScript
51.2%
Solidity
45.7%
JavaScript
1.9%