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
Right now anchor build and anchor deploy generate a keypair in the target directory. This prevents being able to generate consistent program id's across different environments.
Suggest adding something like: anchor build --program-keypair <keypair.json> and anchor deploy --program-keypair <keypair.json>
Which will use the provided keypair and not generate a file in the target directory.
The text was updated successfully, but these errors were encountered:
This new argument would need to be only allowed if --program-name is specified, otherwise anchor build and anchor deploy act on all workspace programs.
Right now
anchor build
andanchor deploy
generate a keypair in thetarget
directory. This prevents being able to generate consistent program id's across different environments.Suggest adding something like:
anchor build --program-keypair <keypair.json>
andanchor deploy --program-keypair <keypair.json>
Which will use the provided keypair and not generate a file in the
target
directory.The text was updated successfully, but these errors were encountered: