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
Problem
I would like to deploy the verifiable build.
anchor build builds non-verifiable program and saves the result to target/deploy/<program>.so
anchor build --verifiable builds the program in a Docker container and saves the result to target/verifiable/<program>.so
but then anchor deploy takes the non-verifiable build from target/deploy but not from target/verifiable.
I have to manually copy&replace the <program>.so from the target/verifiable to target/deploy before running the anchor deploy
Suggestion
Add a --verifiable CLI option to the anchor deploy to change the program path.
The text was updated successfully, but these errors were encountered:
Problem
I would like to deploy the verifiable build.
anchor build
builds non-verifiable program and saves the result totarget/deploy/<program>.so
anchor build --verifiable
builds the program in a Docker container and saves the result totarget/verifiable/<program>.so
but then
anchor deploy
takes the non-verifiable build fromtarget/deploy
but not fromtarget/verifiable
.I have to manually copy&replace the
<program>.so
from thetarget/verifiable
totarget/deploy
before running theanchor deploy
Suggestion
Add a
--verifiable
CLI option to theanchor deploy
to change the program path.The text was updated successfully, but these errors were encountered: