You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our make setup, we compile the Kakarot contracts coming from the kakarot submodule. This takes quite the time and adds complexity because we need to setup up the kakarot submodule correctly and integrate changes the submodule does to its own setup.
In order to avoid this step, we can:
Use the deployer image in the RPC and hive docker files with FROM path/to/deployer as deployer -> COPY --from=deployer kakarot/artifacts/path kakarot/artifacts/path/destination
Use the deployer coupled with docker cp in order to get the artifacts locally (this change should be made in our setup recipe)
Use the docker deployer for the end 2 end tests (script e2e_pipeline to be udpated).
Remove the Kakarot submodule from the RPC
Duration: 3 hours
The text was updated successfully, but these errors were encountered:
greged93
changed the title
dev: download contract artifacts instead of compiling
dev: download contract artifacts instead of compiling [3]
Oct 28, 2024
Describe the enhancement request
In our make setup, we compile the Kakarot contracts coming from the kakarot submodule. This takes quite the time and adds complexity because we need to setup up the kakarot submodule correctly and integrate changes the submodule does to its own setup.
In order to avoid this step, we can:
FROM path/to/deployer as deployer -> COPY --from=deployer kakarot/artifacts/path kakarot/artifacts/path/destination
docker cp
in order to get the artifacts locally (this change should be made in our setup recipe)Duration: 3 hours
The text was updated successfully, but these errors were encountered: