aptos-core icon indicating copy to clipboard operation
aptos-core copied to clipboard

Account Abstraction

Open lightmark opened this issue 8 months ago • 2 comments

Description

a function with the following signature can be used to authorize account..

/// The native function to dispatch customized move authentication function.
    native fun dispatchable_authenticate(
        account: signer,
        signature: vector<u8>,
        function: &FunctionInfo
    ): signer;

Type of Change

  • [ ] New feature
  • [ ] Bug fix
  • [ ] Breaking change
  • [ ] Performance improvement
  • [ ] Refactoring
  • [ ] Dependency update
  • [ ] Documentation update
  • [ ] Tests

Which Components or Systems Does This Change Impact?

  • [ ] Validator Node
  • [ ] Full Node (API, Indexer, etc.)
  • [ ] Move/Aptos Virtual Machine
  • [ ] Aptos Framework
  • [ ] Aptos CLI/SDK
  • [ ] Developer Infrastructure
  • [ ] Other (specify)

How Has This Been Tested?

Key Areas to Review

Checklist

  • [ ] I have read and followed the CONTRIBUTING doc
  • [ ] I have performed a self-review of my own code
  • [ ] I have commented my code, particularly in hard-to-understand areas
  • [ ] I identified and added all stakeholders and component owners affected by this change as reviewers
  • [ ] I tested both happy and unhappy path of the functionality
  • [ ] I have made corresponding changes to the documentation

lightmark avatar Jun 13 '24 20:06 lightmark