Module move_bytecode_verifier::script_signature
source · [−]Expand description
This module implements a checker for verifying that a script or entry function a valid signature, which entails
- (DEPRECATED) All signer arguments are occur before non-signer arguments
- (DEPRECATED) All types non-signer arguments have a type that is valid for constants
- (DEPRECATED) Has an empty return type
- All return types are not references
- Satisfies the additional checks provided as an argument via
check_signature
check_signature
should be used by adapters to quickly and easily verify custom signature rules for entrypoints
Functions
This function checks the extra requirements on the signature of the script visible function when it serves as an entry point for script execution
This function checks the extra requirements on the signature of the main function of a script.