Aptos Cli - adding custom static analysis to move prover. #209
-
Discord user IDDescribe your question in detail.I'm trying to add a custom static analysis for the move prover.
Maybe I got it all wrong and the aptos cli is defined somewhere else and overrides the prover cli? What error, if any, are you getting?No response What have you tried or looked at? Or how can we reproduce the error?Tried to change the prover clap command definition in here. Which operating system are you using?Linux (Ubuntu, Fedora, Windows WSL, etc.) Which SDK or tool are you using? (if any)Aptos CLI Describe your environment or tooling in detailNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yeah, the Aptos CLI wraps the prover with a different interface. The original single character args were very difficult to keep track of with the 50+ commands that were there. Here's where the Aptos CLI prover arguments are https://github.com/aptos-labs/aptos-core/blob/main/aptos-move/framework/src/prover.rs#L20-L89 |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
Yeah, the Aptos CLI wraps the prover with a different interface. The original single character args were very difficult to keep track of with the 50+ commands that were there.
Here's where the Aptos CLI prover arguments are https://github.com/aptos-labs/aptos-core/blob/main/aptos-move/framework/src/prover.rs#L20-L89