CramiumLabs Docs
  • Feature List
    • API Key
    • Transaction policy
    • Error code system
  • SDK MPC Android
    • Prerequisites
    • Functions
    • Adding the SDK
    • Importing and Initializing
    • API Reference
    • Usage Guide for an MPC Wallet App
      • Prerequisites
      • Creating an MPC wallet
      • Backup/Restore
      • Import/Recovery
      • Transaction
      • Export
      • Delete MPC Group
      • Transaction Policy
      • User Device Management (UDM)
      • Passkey
    • Changelog
  • SDK MPC IOS
    • Prerequisites
    • Functions
    • Adding the Framework
    • Importing and Initializing
    • API reference
    • Usage Guide for an MPC Wallet App
      • Prerequisites
      • Creating an MPC wallet
      • Backup/Restore
      • Import/Recovery
      • Transaction
      • Export
      • Delete MPC Group
      • Transaction Policy
      • User Device Management (UDM)
      • Passkey
    • Changelog
Powered by GitBook
On this page
  1. SDK MPC Android
  2. Usage Guide for an MPC Wallet App

Delete MPC Group

To delete an MPC group, use the deleteGroup() method with the following attribute: - keyGenGroupID : the keygen Group ID of master wallet

Example:


    func main() {
        // Create a request to delete the group
        va req = DeleteGroupRequest(groupID: "keyGenGroupID")
        
        // Initialize the client
        va client = MPCClient()
        
        // Delete the MPC group
        client.deleteGroup(req)
    }
PreviousExportNextTransaction Policy

Last updated 5 months ago