- Fossil cairo 0: https://github.com/OilerNetwork/fossil_cairo0/tree/master
- Some utils libraries that can be reused after refacto to latest cairo updates: https://github.com/HerodotusDev/cairo-lib
The repo structure and files organisation will be reviewed once all the components will be implemented
Start Anvil in a new terminal with the command anvil.
Install dependencies:
dojoup -v 0.7.0-alpha.4
```
```bash
cd ethereum
forge soldeer install forge-std~1.8.2I a New Terminal Start the Katana StarkNet node:
katana --messaging anvil.messaging.json --disable-fee In a New Terminal Build the project and set up environment variables:
cd starknet
scarb build
source katana/katana.envDeclare the Cairo contracts:
katana/declare.shDeploy the Cairo contracts:
katana/deploy.shIn a New Terminal Set up local Ethereum testing:
cd ../ethereum
cp anvil.env .env
source .env
forge script script/LocalTesting.s.sol:LocalSetup --broadcast --rpc-url ${ETH_RPC_URL} Send a message:
forge script script/SendMessage.s.sol:Value --broadcast --rpc-url ${ETH_RPC_URL}